/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --bg: #f0eff9;
  --surface: #ffffff;
  --surface-2: #f7f6ff;
  --navy: #0b1d5e;
  --navy-deep: #060f38;
  --navy-mid: #162677;
  --red: #d9202d;
  --red-hover: #b81a25;
  --red-light: rgba(217, 32, 45, 0.08);
  --text: #080e2a;
  --text-muted: #5a6080;
  --text-light: #9099bb;
  --border: #dde0ef;
  --border-dark: #c8cce3;

  --font-display: 'DM Sans', sans-serif;
  --font-body: 'Instrument Sans', sans-serif;

  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.76, 0, 0.24, 1);

  --shadow-sm: 0 1px 4px rgba(11, 29, 94, 0.07), 0 4px 16px rgba(11, 29, 94, 0.06);
  --shadow-md: 0 4px 24px rgba(11, 29, 94, 0.10), 0 12px 48px rgba(11, 29, 94, 0.08);
  --shadow-lg: 0 12px 60px rgba(11, 29, 94, 0.14), 0 32px 80px rgba(11, 29, 94, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  padding: 5px 13px;
  background: var(--red-light);
  border: 1px solid rgba(217, 32, 45, 0.2);
  border-radius: 4px;
}

.tag::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text);
  letter-spacing: -0.03em;
}

.section-title .blue {
  color: var(--navy);
}

.section-title .red {
  color: var(--red);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 580px;
}

/* Buttons */
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  color: #fff;
  background: var(--red);
  padding: 14px 30px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.25s var(--ease-expo), box-shadow 0.25s var(--ease-expo);
  box-shadow: 0 4px 20px rgba(217, 32, 45, 0.28);
}

.btn-red:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(217, 32, 45, 0.38);
}

.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  background: var(--navy);
  padding: 14px 30px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.25s var(--ease-expo), box-shadow 0.25s var(--ease-expo);
  box-shadow: 0 4px 20px rgba(11, 29, 94, 0.2);
}

.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(11, 29, 94, 0.28);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  background: transparent;
  padding: 13px 26px;
  border-radius: 6px;
  border: 1.5px solid var(--border-dark);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.btn-outline:hover {
  border-color: var(--navy);
  background: rgba(11, 29, 94, 0.04);
}

/* ============================================================
   TOPBAR
   ============================================================ */
#topbar {
  background: var(--navy-deep);
  padding: 9px 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.01em;
}

#topbar strong {
  color: #fff;
}

#topbar a {
  color: #ff9eaa;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(240, 239, 249, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

#navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--navy-deep);
  flex-shrink: 0;
  letter-spacing: -0.03em;
}

.nav-logo-icon {
  width: 34px;
  height: 34px;
  background: var(--navy-deep);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.nav-logo-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red) 0%, transparent 60%);
  opacity: 0.6;
}

.nav-logo-icon svg {
  position: relative;
  z-index: 1;
}

.nav-logo-wordmark {
  color: var(--navy-deep);
}

.nav-logo-wordmark span {
  color: var(--red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: 5px;
  transition: color 0.15s, background 0.15s;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(11, 29, 94, 0.06);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-actions .btn-red {
  padding: 9px 20px;
  font-size: 0.82rem;
  box-shadow: none;
}

.nav-actions .btn-outline {
  padding: 8px 18px;
  font-size: 0.82rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--surface);
  z-index: 850;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease-expo);
}

.mobile-nav.open {
  transform: translateY(0);
}

.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.mobile-nav a:hover {
  color: var(--red);
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 0;
  background: var(--surface);
}

.hero-geo {
  position: absolute;
  pointer-events: none;
}

.geo-circle-1 {
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 29, 94, 0.05) 0%, transparent 70%);
  top: -200px;
  right: -150px;
}

.geo-circle-2 {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 32, 45, 0.06) 0%, transparent 70%);
  bottom: 100px;
  left: -100px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-left {
  padding-bottom: 80px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--red);
  border-radius: 1px;
  flex-shrink: 0;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--navy-deep);
  margin-bottom: 26px;
}

.hero-h1 em {
  font-style: normal;
  color: var(--red);
  position: relative;
  display: inline-block;
}

.hero-h1 em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  opacity: 0.25;
  border-radius: 1px;
}

.hero-p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 38px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: stretch;
  border-top: 1px solid var(--border);
  padding-top: 28px;
  gap: 0;
}

.trust-stat {
  flex: 1;
  padding: 0 20px;
  border-right: 1px solid var(--border);
}

.trust-stat:first-child {
  padding-left: 0;
}

.trust-stat:last-child {
  border-right: none;
}

.trust-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--navy-deep);
  line-height: 1;
  margin-bottom: 3px;
  letter-spacing: -0.04em;
}

.trust-val .r {
  color: var(--red);
}

.trust-label {
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Hero right */
.hero-right {
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  padding-top: 20px;
}

.alert-chip {
  position: absolute;
  top: 40px;
  right: -24px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(217, 32, 45, 0.35);
  display: flex;
  flex-direction: column;
  gap: 2px;
  animation: chipFloat 5s ease-in-out infinite;
  z-index: 5;
}

.alert-chip .a-label {
  font-size: 0.58rem;
  opacity: 0.75;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.alert-chip .a-val {
  font-size: 1rem;
}

@keyframes chipFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

.dash-panel {
  background: var(--navy-deep);
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  flex: 1;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: none;
}

.dash-toolbar {
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.d-dots {
  display: flex;
  gap: 6px;
}

.d-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.d-dot:nth-child(1) {
  background: #ff5f56;
}

.d-dot:nth-child(2) {
  background: #ffbd2d;
}

.d-dot:nth-child(3) {
  background: #27c93f;
}

.d-title {
  font-size: 0.72rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  margin-left: auto;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.dash-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.d-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.d-kpi {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 14px 12px;
}

.d-kpi-lbl {
  font-size: 0.64rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 5px;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.d-kpi-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  color: #fff;
  line-height: 1;
}

.d-kpi-val.g {
  color: #34d399;
}

.d-kpi-delta {
  font-size: 0.64rem;
  color: #34d399;
  margin-top: 3px;
}

.d-kpi-delta.dim {
  color: rgba(255, 255, 255, 0.3);
}

.d-chart-block {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 14px;
}

.d-chart-label {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.d-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 56px;
}

.d-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: rgba(255, 255, 255, 0.15);
}

.d-bar.hi {
  background: rgba(217, 32, 45, 0.75);
}

.d-bar.md {
  background: rgba(59, 102, 255, 0.6);
}

.d-feed {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.d-feed-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.d-src-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.d-feed-text {
  flex: 1;
}

.d-badge {
  font-size: 0.6rem;
  font-weight: 700;
  font-family: var(--font-display);
  padding: 2px 8px;
  border-radius: 3px;
  white-space: nowrap;
}

.b-pos {
  background: rgba(52, 211, 153, 0.15);
  color: #34d399;
}

.b-neg {
  background: rgba(252, 129, 129, 0.18);
  color: #fc8181;
}

.b-neu {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
#marquee-strip {
  background: var(--navy-deep);
  padding: 14px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.marquee-item .sep {
  color: rgba(255, 255, 255, 0.15);
}

.marquee-item .mi-val {
  color: rgba(255, 255, 255, 0.8);
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ============================================================
   STATS BAR
   ============================================================ */
#stats-bar {
  background: var(--navy);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

#stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg,
      transparent,
      transparent calc(100%/4 - 1px),
      rgba(255, 255, 255, 0.04) calc(100%/4 - 1px),
      rgba(255, 255, 255, 0.04) calc(100%/4));
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.stat-cell {
  padding: 0 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-cell:first-child {
  padding-left: 0;
}

.stat-cell:last-child {
  border-right: none;
}

.s-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: #fff;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.s-num .r {
  color: var(--red);
}

.s-num .dim {
  color: rgba(255, 255, 255, 0.35);
}

.s-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.45;
  font-weight: 500;
}

/* ============================================================
   SERVICES
   ============================================================ */
#services {
  padding: 120px 0;
  background: var(--bg);
}

.services-hd {
  margin-bottom: 64px;
}

.services-hd .tag {
  margin-bottom: 20px;
}

.services-hd .section-title {
  margin-bottom: 14px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s var(--ease-expo);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.svc-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0;
  background: var(--red);
  border-radius: 0 2px 2px 0;
  transition: height 0.35s var(--ease-expo);
}

.svc-card:hover {
  border-color: var(--border-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.svc-card:hover::after {
  height: 100%;
}

.svc-icon {
  width: 48px;
  height: 48px;
  background: rgba(11, 29, 94, 0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
  transition: background 0.2s;
}

.svc-card:hover .svc-icon {
  background: rgba(217, 32, 45, 0.08);
}

.svc-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-deep);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.svc-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.svc-chip {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.4;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
#how {
  padding: 120px 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.how-bg-shape {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 29, 94, 0.03) 0%, transparent 70%);
  right: -300px;
  top: -200px;
  pointer-events: none;
}

.how-hd {
  text-align: center;
  margin-bottom: 80px;
}

.how-hd .tag {
  margin-bottom: 20px;
}

.how-hd .section-sub {
  margin-inline: auto;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  position: relative;
}

.how-connector {
  position: absolute;
  top: 32px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  z-index: 0;
}

.how-connector-line {
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--border-dark) 0, var(--border-dark) 6px, transparent 6px, transparent 14px);
}

.how-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 12px;
}

.how-step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy-deep);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  position: relative;
  z-index: 2;
  background: var(--bg);
}

.how-step:hover .how-step-num {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: #fff;
}

.how-step-num.red-step {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.how-step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy-deep);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.how-step-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   SHOWCASE
   ============================================================ */
#showcase {
  padding: 120px 0;
  background: var(--bg);
}

.showcase-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.showcase-content .tag {
  margin-bottom: 20px;
}

.showcase-content .section-title {
  margin-bottom: 16px;
}

.showcase-content .section-sub {
  margin-bottom: 36px;
}

.feat-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feat-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}

.feat-item:hover {
  border-color: var(--border);
  background: var(--surface);
}

.feat-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(11, 29, 94, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.6rem;
  color: var(--navy);
  font-weight: 700;
}

.feat-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy-deep);
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}

.feat-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.big-ui {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.big-ui-header {
  background: var(--navy-deep);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.big-ui-tabs {
  display: flex;
  gap: 2px;
  margin-left: 12px;
}

.ui-tab {
  padding: 6px 14px;
  font-size: 0.7rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.ui-tab.on {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.big-ui-body {
  padding: 20px;
}

.sent-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.sent-c {
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
}

.sent-c-lbl {
  font-size: 0.65rem;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.sent-c-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1;
}

.pos {
  color: #16a34a;
}

.neg {
  color: var(--red);
}

.neu {
  color: var(--navy);
  opacity: 0.5;
}

.sent-bar {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  margin-top: 8px;
  overflow: hidden;
}

.sent-fill {
  height: 100%;
  border-radius: 2px;
}

.vol-section {
  margin-bottom: 14px;
}

.vol-label {
  font-size: 0.65rem;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.vol-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 52px;
}

.v-bar {
  flex: 1;
  background: rgba(11, 29, 94, 0.1);
  border-radius: 3px 3px 0 0;
  transition: background 0.2s;
}

.v-bar:hover {
  background: rgba(11, 29, 94, 0.25);
}

.v-bar.spike {
  background: rgba(217, 32, 45, 0.55);
}

.mention-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.m-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 7px;
  background: var(--bg);
  font-size: 0.76rem;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.m-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.m-text {
  flex: 1;
}

.m-badge {
  font-size: 0.6rem;
  font-weight: 700;
  font-family: var(--font-display);
  padding: 2px 7px;
  border-radius: 3px;
  white-space: nowrap;
}

.mb-pos {
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
}

.mb-neg {
  background: rgba(217, 32, 45, 0.1);
  color: var(--red);
}

.mb-neu {
  background: rgba(11, 29, 94, 0.07);
  color: var(--navy);
}

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
#proof {
  background: var(--surface);
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proof-lbl {
  text-align: center;
  font-size: 0.72rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 36px;
}

.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
  flex-wrap: wrap;
  opacity: 0.4;
}

.logo-ent {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy-deep);
  letter-spacing: -0.04em;
}

.logo-ent em {
  font-style: normal;
  color: var(--red);
}

/* ============================================================
   PRICING
   ============================================================ */
#pricing {
  padding: 120px 0;
  background: var(--bg);
}

.pricing-hd {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-hd .tag {
  margin-bottom: 20px;
}

.pricing-hd .section-sub {
  margin-inline: auto;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-expo), box-shadow 0.3s;
}

.plan:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.plan.featured {
  border-color: var(--navy);
  background: var(--navy-deep);
}

.plan.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}

.plan-tier {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.plan.featured .plan-tier {
  color: rgba(255, 255, 255, 0.4);
}

.plan-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--navy-deep);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 4px;
}

.plan.featured .plan-price {
  color: #fff;
}

.plan-price sup {
  font-size: 1.1rem;
  font-weight: 600;
  vertical-align: super;
}

.plan-cadence {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.plan.featured .plan-cadence {
  color: rgba(255, 255, 255, 0.35);
}

.plan-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.plan.featured .plan-desc {
  color: rgba(255, 255, 255, 0.45);
  border-color: rgba(255, 255, 255, 0.1);
}

.plan-feats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.plan-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--text);
}

.plan.featured .plan-feat {
  color: rgba(255, 255, 255, 0.8);
}

.pf-check {
  font-size: 0.68rem;
  color: #16a34a;
  flex-shrink: 0;
  font-weight: 700;
}

.plan.featured .pf-check {
  color: #34d399;
}

.plan-feat.off {
  color: var(--text-muted);
}

.plan-feat.off .pf-check {
  color: var(--text-light);
}

.plan .btn-navy {
  width: 100%;
  justify-content: center;
}

.plan .btn-red {
  width: 100%;
  justify-content: center;
}

.plan-ghost-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  padding: 13px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.plan-ghost-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* ============================================================
   CTA BAND
   ============================================================ */
#cta-band {
  background: var(--navy-deep);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cbs-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 32, 45, 0.2) 0%, transparent 70%);
  top: -150px;
  right: 10%;
  pointer-events: none;
}

.cbs-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  bottom: -100px;
  left: 5%;
  pointer-events: none;
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-band-inner .tag {
  margin-bottom: 24px;
  background: rgba(217, 32, 45, 0.15);
  color: #ff7b87;
  border-color: rgba(217, 32, 45, 0.3);
}

.cta-band-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 18px;
  max-width: 680px;
  margin-inline: auto;
}

.cta-band-h em {
  font-style: normal;
  color: #ff7b87;
}

.cta-band-p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 42px;
  line-height: 1.7;
}

.cta-band-acts {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-note {
  margin-top: 22px;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.02em;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 30px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
}

.ft-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 260px;
}

.ft-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ft-contact a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.38);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.ft-contact a:hover {
  color: rgba(255, 255, 255, 0.75);
}

.ft-col-h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ft-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ft-links a {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.32);
  transition: color 0.2s;
}

.ft-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  padding-top: 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ft-copy {
  font-size: 0.77rem;
  color: rgba(255, 255, 255, 0.22);
}

.ft-copy em {
  font-style: normal;
  color: var(--red);
  opacity: 0.8;
}

.ft-socials {
  display: flex;
  gap: 8px;
}

.soc-btn {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.soc-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-expo), transform 0.75s var(--ease-expo);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: 0.08s;
}

.d2 {
  transition-delay: 0.16s;
}

.d3 {
  transition-delay: 0.24s;
}

.d4 {
  transition-delay: 0.32s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-left {
    padding-bottom: 0;
  }

  .hero-right {
    display: none;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 0;
  }

  .stat-cell {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 0 32px;
  }

  .stat-cell:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 32px;
  }

  .stat-cell:nth-child(even) {
    padding-left: 32px;
  }

  .stat-cell:nth-child(3),
  .stat-cell:nth-child(4) {
    border-bottom: none;
    padding-top: 32px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-connector {
    display: none;
  }

  .showcase-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-inline: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .how-grid {
    grid-template-columns: 1fr;
  }

  .trust-stat {
    padding: 0 12px;
  }

  .trust-val {
    font-size: 1.3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-trust {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .trust-stat {
    border-right: none !important;
    padding: 0 !important;
  }

  .plans-grid {
    max-width: 100%;
  }
}