/* ==========================================
   Deep-Y — site3
   Light design system from site2 adapted to
   white/light backgrounds + centered hero
   ========================================== */

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

:root {
  /* Light palette */
  --bg:       #ffffff;
  --bg-alt:   #f0f5ff;
  --surface:  #f8faff;
  --border:   rgba(0,26,64,0.08);
  --border2:  rgba(0,26,64,0.15);
  --text:     #001A40;
  --muted:    #526070;
  --dim:      #8fa0b8;
  --accent:   #0068FF;
  --accent2:  #267FFF;
  --accent3:  #60a5fa;
  --green:    #059669;
  --navy:     #001A40;
  --white:    #ffffff;

  /* Typography */
  --font:         'Manrope', 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Sora', sans-serif;

  /* Misc */
  --radius:     6px;
  --radius-lg:  12px;
  --shadow-sm:  0 2px 8px rgba(0,26,64,0.06);
  --shadow-md:  0 4px 20px rgba(0,26,64,0.09);
  --shadow-lg:  0 8px 40px rgba(0,26,64,0.12);

  /* Aliases used in landing pages */
  --blue:       #0068FF;
  --blue-pale:  #f0f5ff;
  --blue-faint: #f8faff;
  --gray-50:    #f8faff;
  --gray-100:   rgba(0,26,64,0.08);
  --gray-200:   rgba(0,26,64,0.12);
  --gray-400:   #8fa0b8;
  --gray-500:   #526070;
  --section-pad: 96px 60px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

::selection { background: rgba(0,104,255,0.14); color: var(--navy); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Subtle grid pattern on body */
body::before {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(0,104,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,104,255,0.015) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* ─── TOPBAR ─── */
.topbar {
  background: linear-gradient(90deg, #001A40 0%, #0068FF 60%, #267FFF 100%);
  border-bottom: 1px solid rgba(0,104,255,0.25);
  padding: 10px 60px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.9);
  position: fixed; top: 0; left: 0; right: 0; z-index: 1002;
}
.topbar__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
.topbar__text { flex: 1; text-align: center; }
.topbar__link { color: white; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.topbar__close {
  background: none; border: none; color: rgba(255,255,255,0.6);
  font-size: 18px; cursor: pointer; margin-left: auto; padding: 0 4px;
  line-height: 1; flex-shrink: 0;
}
.topbar__close:hover { color: white; }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: 72px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, backdrop-filter .3s ease, top .3s ease;
  overflow: visible;
}

/* Mega-menu - showcases slideshow */
.nav__mega {
  position: absolute; top: 100%; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(0,26,64,0.14);
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .22s cubic-bezier(.16,1,.3,1), transform .22s cubic-bezier(.16,1,.3,1);
  z-index: 1001;
}
.nav__mega.mega-open {
  opacity: 1; pointer-events: auto;
  transform: translateY(0);
}
.nav__mega__inner {
  max-width: 1200px; margin: 0 auto;
  padding: 24px 60px 28px;
}
.nav__mega__label {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 16px;
}
.nav__mega__track {
  display: flex; gap: 14px; overflow-x: auto;
  scrollbar-width: none; -ms-overflow-style: none;
  padding-bottom: 2px;
}
.nav__mega__track::-webkit-scrollbar { display: none; }
.nav__mega-card {
  display: flex; flex-direction: column;
  min-width: 148px; max-width: 148px; flex-shrink: 0;
  text-decoration: none; color: inherit;
  padding: 10px; border-radius: 10px;
  border: 1px solid var(--border);
  transition: border-color .2s, box-shadow .2s, transform .2s;
  background: var(--white);
}
.nav__mega-card:hover {
  border-color: rgba(0,104,255,0.25);
  box-shadow: 0 6px 24px rgba(0,104,255,0.10);
  transform: translateY(-3px);
}
.nav__mega-card__img {
  width: 100%; height: 72px; object-fit: cover;
  border-radius: 6px; background: var(--bg-alt); display: block;
}
.nav__mega-card__name {
  font-family: var(--font-display); font-size: 12px; font-weight: 800;
  color: var(--navy); margin-top: 8px; line-height: 1.2;
}
.nav__mega-card__stat {
  font-size: 11px; color: var(--accent); font-weight: 700;
  margin-top: 3px;
}
.nav__mega__footer {
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.nav__mega__footer-link {
  font-size: 13px; font-weight: 700; color: var(--accent);
  text-decoration: none; padding-bottom: 1px;
  border-bottom: 1.5px solid currentColor;
  transition: opacity .2s;
}
.nav__mega__footer-link:hover { opacity: 0.7; }
.nav__mega__footer-count {
  font-size: 12px; color: var(--muted); font-weight: 600;
}
.nav__has-mega { position: relative; }
.nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(0,26,64,0.07);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 900; letter-spacing: -0.5px;
  color: var(--navy); text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}
.nav__logo img { height: 40px; width: auto; }
.nav__logo-dash { color: var(--accent); }
.nav__logo-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.6; transform:scale(1.3); } }
.nav__links { display: flex; gap: 32px; align-items: center; }
.nav__links a {
  font-size: 14px; font-weight: 600; color: var(--muted);
  transition: color .2s;
}
.nav__links a:hover { color: var(--navy); }
.nav__cta {
  background: linear-gradient(135deg, #0068FF, #267FFF); color: var(--white);
  padding: 10px 24px; font-size: 13px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase;
  border-radius: var(--radius);
  box-shadow: 0 3px 14px rgba(0,104,255,0.28);
  transition: opacity .2s, box-shadow .2s;
}
.nav__cta:hover { opacity: .9; box-shadow: 0 5px 22px rgba(0,104,255,0.4); }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.nav__hamburger span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; display: block; }
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 1002;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 100px 40px 40px;
  display: flex; flex-direction: column;
  opacity: 0; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .28s ease, transform .28s ease;
}
.nav__mobile.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
body.menu-open { overflow: hidden; }
.nav__mobile ul { display: flex; flex-direction: column; gap: 8px; }
.nav__mobile ul li a {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 800; color: var(--navy);
  letter-spacing: -1px; padding: 8px 0;
  display: block; transition: color .2s;
}
.nav__mobile ul li a:hover { color: var(--accent); }
.nav__mobile-cta {
  display: inline-flex !important; margin-top: 24px !important;
  background: linear-gradient(135deg, var(--accent), var(--accent2)) !important;
  color: white !important;
  padding: 16px 28px !important; border-radius: 100px;
  font-size: 16px !important;
  box-shadow: 0 8px 24px rgba(0,104,255,0.35);
}
body.has-topbar .nav__mobile { padding-top: 112px; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 15px 30px; border-radius: var(--radius);
  background: linear-gradient(135deg, #0068FF 0%, #267FFF 100%);
  color: var(--white);
  font-size: 14px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(0,104,255,0.3);
  transition: transform .2s, box-shadow .2s, opacity .2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,104,255,0.45); opacity: .9; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 14px 24px; border-radius: var(--radius);
  background: transparent; color: var(--muted);
  font-size: 14px; font-weight: 600;
  border: 1.5px solid var(--border2);
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-text-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-size: 15px; font-weight: 700;
  color: var(--accent); text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1.5px solid currentColor;
  transition: opacity .2s, gap .2s;
}
.btn-text-link:hover { opacity: 0.7; gap: 10px; }

/* ─── SECTION BASE ─── */
section { padding: 100px 60px; position: relative; z-index: 1; }

.section-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent2); margin-bottom: 20px;
  display: block;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--text);
}
.section-sub {
  font-size: 18px; color: var(--muted);
  margin-top: 16px; max-width: 65ch; line-height: 1.7;
}

/* ─── HERO ENTRANCE ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── HERO ─── */
.hero {
  background:
    radial-gradient(ellipse 72% 88% at 18% 6%, rgba(65,148,255,0.82) 0%, rgba(10,85,230,0.28) 36%, transparent 64%),
    radial-gradient(ellipse 42% 50% at 84% 92%, rgba(0,5,22,0.72) 0%, transparent 55%),
    radial-gradient(ellipse 50% 52% at 88% 12%, rgba(0,40,130,0.42) 0%, transparent 58%),
    radial-gradient(ellipse 82% 68% at 50% 50%, rgba(0,68,185,0.30) 0%, transparent 65%),
    linear-gradient(158deg, #000a1a 0%, #001228 15%, #001e6a 48%, #0635a8 100%);
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 100px 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 30%, transparent 90%);
  animation: hero-breathe 12s ease-in-out infinite;
}
@keyframes hero-breathe {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 1.0; }
}
body.has-topbar .hero { padding-top: 190px; }
.hero__bg {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  opacity: 0.38; z-index: 0;
  mix-blend-mode: screen;
}
/* Blue glow halos behind the SVG bubble positions */
.hero__bg-glow {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 48% 55% at 12% 32%, rgba(0,104,255,0.38) 0%, rgba(38,127,255,0.10) 42%, transparent 68%),
    radial-gradient(ellipse 35% 40% at 82% 18%, rgba(0,104,255,0.30) 0%, rgba(38,127,255,0.08) 45%, transparent 65%);
}
.hero__inner {
  max-width: 860px; margin: 0 auto;
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
}
.hero__text {
  display: flex; flex-direction: column; align-items: center; text-align: center;
}

/* Hero badge */
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgba(0,104,255,0.08), rgba(38,127,255,0.12));
  border: 1px solid rgba(0,104,255,0.22);
  border-radius: 100px; padding: 6px 16px;
  margin-bottom: 32px; width: fit-content;
}
.hero__badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 1.5s ease-in-out infinite;
}
.hero__badge-text {
  font-size: 12px; font-weight: 600;
  color: var(--accent2); letter-spacing: .5px;
}

/* Hero heading */
.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.2vw, 50px);
  font-weight: 800; line-height: 1.08;
  color: var(--white); letter-spacing: -2px;
  max-width: 22ch;
  animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}
.hero__heading em { color: #7ab8ff; font-style: normal; }

/* Rotating word */
.hero__rotate-wrap { display: inline-block; position: relative; }
.hero__rotate {
  display: inline-block; color: var(--accent2);
  transition: opacity .3s ease, transform .3s ease;
}
.hero__rotate.fade-out { opacity: 0; transform: translateY(-8px); }

/* Hero copy */
.hero__sub {
  margin-top: 28px; font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255,255,255,0.6); font-weight: 400;
  max-width: 54ch; line-height: 1.75;
  animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}
.hero__sub strong { color: var(--white); font-weight: 700; }
.hero__byline {
  margin-top: 12px; font-size: 13px;
  color: var(--dim); font-style: italic;
}
.hero__actions {
  display: flex; gap: 16px; margin-top: 48px;
  align-items: center; flex-wrap: wrap;
  justify-content: center;
  position: relative;
  animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}
.hero__actions::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 520px; height: 180px;
  background: radial-gradient(ellipse, rgba(0,104,255,0.32) 0%, rgba(38,127,255,0.12) 45%, transparent 72%);
  filter: blur(38px);
  pointer-events: none; z-index: -1;
}
.hero .btn-ghost { border-color: rgba(255,255,255,0.35); color: rgba(255,255,255,0.8); }
.hero .btn-ghost:hover { border-color: var(--white); color: var(--white); }
.hero__cta-micro {
  margin-top: 14px; font-size: 13px; color: var(--dim); letter-spacing: .2px;
  animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}
.hero__cta-micro strong { color: var(--navy); }

/* Hero tags */
.hero__tags {
  display: flex; gap: 10px; margin-top: 40px;
  flex-wrap: wrap; justify-content: center;
  animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
}
.hero__tag {
  border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.5);
  padding: 5px 14px; font-size: 12px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  border-radius: 100px; transition: border-color .2s, color .2s;
}
.hero__tag:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

/* Hero visual - product screenshot column */
.hero__visual { position: relative; }
.hero__visual::after {
  content: '';
  position: absolute; bottom: 40px; left: 5%; right: 15%;
  height: 60px;
  background: radial-gradient(ellipse, rgba(0,104,255,0.22) 0%, transparent 70%);
  filter: blur(28px); z-index: -1; pointer-events: none;
}
.hero__screen {
  background: #0a1628; border-radius: 14px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,26,64,0.28), 0 0 0 1px rgba(0,104,255,0.15);
  transform: perspective(1000px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.hero__screen:hover {
  transform: perspective(1000px) rotateY(-3deg) rotateX(1deg);
}
.hero__screen-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px; background: #0d1f3a;
}
.hero__screen-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.hero__screen-dot:nth-child(1) { background: #ff5f57; }
.hero__screen-dot:nth-child(2) { background: #febc2e; }
.hero__screen-dot:nth-child(3) { background: #28c840; }
.hero__screen-url {
  font-size: 11px; color: rgba(255,255,255,0.3);
  font-family: var(--font); margin-left: 8px; letter-spacing: 0.3px;
}
.hero__screen img { width: 100%; display: block; }
.hero__visual-stats {
  display: flex; gap: 0; margin-top: 20px;
  background: white; border-radius: 12px;
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.hero__visual-stat { flex: 1; padding: 14px 16px; text-align: center; }
.hero__visual-stat:not(:last-child) { border-right: 1px solid var(--border); }
.hero__visual-stat-num {
  display: block; font-family: var(--font-display);
  font-size: 22px; font-weight: 800; color: var(--navy);
  letter-spacing: -0.8px; line-height: 1;
}
.hero__visual-stat-label {
  display: block; font-size: 11px; color: var(--muted);
  font-weight: 500; margin-top: 4px; letter-spacing: 0.3px;
}

/* ─── HERO STATS SECTION ─── */
.hero-stats {
  background: linear-gradient(180deg, #dde8fc 0%, var(--white) 48%);
  border-bottom: 1px solid var(--border);
  padding: 60px 60px;
  position: relative; z-index: 1;
}
.hero-stats__inner { max-width: 1200px; margin: 0 auto; }
.hero-stats .stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.stat-card {
  background: var(--white);
  padding: 48px 36px; border-right: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: background .2s;
}
.stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent3));
  opacity: 0; transition: opacity .3s;
}
.stat-card:hover { background: var(--surface); }
.stat-card:hover::before { opacity: 1; }
.stat-card:last-child { border-right: none; }
.stat-card__num {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.5vw, 64px); font-weight: 800;
  letter-spacing: -2.5px; color: var(--navy); line-height: 1;
}
.stat-card--featured { background: linear-gradient(135deg, rgba(0,104,255,0.06) 0%, rgba(38,127,255,0.10) 100%); }
.stat-card--featured .stat-card__num { color: var(--accent2); }
.stat-card--featured::before { background: linear-gradient(90deg, var(--accent), var(--accent2)) !important; opacity: 1 !important; }
.stat-card--green .stat-card__num  { color: var(--green); }
.stat-card--green::before { background: var(--green) !important; opacity: 1 !important; }
.stat-card__label {
  font-size: 13px; color: var(--muted); margin-top: 12px; line-height: 1.4;
}

/* ─── TRUST STRIP / MARQUEE ─── */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0 30px;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  position: relative; z-index: 1;
}
.trust-strip__label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.4px; text-transform: uppercase;
  color: var(--dim);
  display: inline-flex; align-items: center; gap: 10px;
}
.trust-strip__label::before,
.trust-strip__label::after {
  content: ''; width: 20px; height: 1.5px;
  background: var(--border2);
}
.marquee {
  width: 100%; overflow: hidden; position: relative;
  mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%);
}
.marquee__track {
  display: flex; width: max-content;
  animation: marquee-scroll 42s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group {
  display: flex; align-items: center;
  gap: 16px; padding-right: 16px; flex-shrink: 0;
}
.marquee__item {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700; color: var(--muted);
  letter-spacing: -.2px; padding: 9px 20px;
  border-radius: 100px; border: 1px solid var(--border);
  white-space: nowrap; transition: border-color .2s, color .2s;
}
.marquee__item:hover { border-color: rgba(0,104,255,0.25); color: var(--navy); }
.marquee__wordmark {
  display: flex; align-items: center; justify-content: center;
  padding: 9px 20px; border-radius: 100px; border: 1px solid var(--border);
  background: var(--bg); white-space: nowrap; flex-shrink: 0;
  font-family: var(--font-display); font-size: 13px; font-weight: 800;
  color: var(--muted); letter-spacing: .6px; text-transform: uppercase;
  opacity: 0.6; transition: opacity .2s, border-color .2s, color .2s;
}
.marquee__wordmark:hover { opacity: 1; border-color: rgba(0,104,255,0.25); color: var(--navy); }
.marquee__logo {
  display: flex; align-items: center; justify-content: center;
  padding: 9px 20px; border-radius: 100px; border: 1px solid var(--border);
  background: var(--bg); white-space: nowrap; flex-shrink: 0;
}
.marquee__logo img { height: 24px; width: auto; object-fit: contain; filter: grayscale(1); opacity: 0.6; transition: opacity .2s, filter .2s; }
.marquee__logo:hover img { filter: grayscale(0); opacity: 1; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50%)); }
}

/* ─── LIVE ACTIVITY ─── */
.live-activity {
  background: rgba(5,150,105,0.04);
  border-top: 1px solid rgba(5,150,105,0.12);
  border-bottom: 1px solid rgba(5,150,105,0.12);
  padding: 10px 60px; position: relative; z-index: 1;
}
.live-activity__inner { max-width: 1200px; margin: 0 auto; }
.live-activity__item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--muted);
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
  animation: pulse-dot 1.2s ease-in-out infinite;
}
#liveMsg { transition: opacity .4s ease; }

/* ─── HOW IT WORKS ─── */
.flow {
  background:
    radial-gradient(ellipse 65% 70% at 85% 20%, rgba(0,52,180,0.32) 0%, transparent 58%),
    radial-gradient(ellipse 55% 60% at 15% 80%, rgba(0,104,255,0.22) 0%, transparent 58%),
    linear-gradient(170deg, #000c1c 0%, var(--navy) 40%, #001e58 100%);
  padding: 100px 60px;
  position: relative; overflow: hidden;
}
.flow__bg-whale {
  position: absolute; right: -80px; top: 50%;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  object-fit: contain; opacity: 0.05;
  pointer-events: none;
  filter: brightness(10);
}
.flow::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: 0;
}
.flow .section-label { color: rgba(255,255,255,0.45); }
.flow .section-heading { color: var(--white); }
.flow .section-sub { color: rgba(255,255,255,0.6); }
.flow__inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.flow-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-top: 60px; position: relative;
}
/* Color progression for steps */
.flow-grid .flow-step:nth-child(1) { --step: #0068FF; }
.flow-grid .flow-step:nth-child(2) { --step: #8b5cf6; }
.flow-grid .flow-step:nth-child(3) { --step: #06b6d4; }
.flow-grid .flow-step:nth-child(4) { --step: #059669; }

.flow-step {
  text-align: left; padding: 36px 32px; position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 4px 20px rgba(0,0,0,0.2);
  border-radius: var(--radius-lg);
  transition: border-color .3s, box-shadow .3s, transform .3s;
  overflow: hidden;
}
.flow-step::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--step, var(--accent));
}
.flow-step:hover {
  border-color: rgba(255,255,255,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.12);
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
}
.flow-step__num {
  font-family: var(--font-display); font-size: 112px; font-weight: 800;
  color: rgba(255,255,255,0.08);
  letter-spacing: -6px; line-height: 0.88; margin-bottom: 14px;
}
.flow-step__title {
  font-family: var(--font-display); font-size: 16px; font-weight: 700;
  color: var(--white); letter-spacing: -.3px;
}
.flow__depth-echo {
  margin-top: 56px; padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center; max-width: 680px; margin-left: auto; margin-right: auto;
  font-size: 17px; color: rgba(255,255,255,0.38); font-style: italic;
  line-height: 1.7; letter-spacing: 0.1px;
}
.flow__depth-echo em { color: rgba(255,255,255,0.72); font-style: normal; font-weight: 600; }
.flow-step__desc {
  font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 8px; line-height: 1.6;
}

/* ─── SERVICES ─── */
.services { background: var(--white); }
.services__inner { max-width: 1200px; margin: 0 auto; }
.services__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px; margin-top: 60px;
}
.service-card {
  background: var(--surface); padding: 40px 36px;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: 0 2px 14px rgba(0,26,64,0.05), 0 0 0 1px rgba(0,104,255,0.04);
  transition: border-color .3s cubic-bezier(.16,1,.3,1), box-shadow .3s cubic-bezier(.16,1,.3,1), transform .3s cubic-bezier(.16,1,.3,1);
  position: relative; overflow: hidden;
}
.service-card:nth-child(odd)  { border-radius: 40px 0 40px 0; }
.service-card:nth-child(even) { border-radius: 0 40px 0 40px; }
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--svc, var(--accent)); opacity: 1;
}
.service-card[data-service="outreach"]       { --svc: #0068FF; }
.service-card[data-service="intelligence"]   { --svc: #8b5cf6; }
.service-card[data-service="workflow"]       { --svc: #06b6d4; }
.service-card[data-service="content"]        { --svc: #059669; }
.service-card[data-service="deliverability"] { --svc: #3b82f6; }
.service-card[data-service="analytics"]      { --svc: #f59e0b; }
.service-card[data-service="paid-media"]     { --svc: #f59e0b; }
.service-card[data-service="video"]          { --svc: #ef4444; }
.service-card:hover {
  border-color: color-mix(in srgb, var(--svc, var(--accent)) 50%, transparent);
  box-shadow: 0 16px 60px rgba(0,26,64,0.14), 0 8px 32px rgba(0,104,255,0.16), 0 0 0 1px rgba(0,104,255,0.14);
  transform: translateY(-8px);
}
.service-card:hover .service-card__title {
  color: var(--svc, var(--accent2)); transition: color .2s;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 800; color: var(--navy); letter-spacing: -.5px; line-height: 1.2;
}
.service-card__desc { font-size: 14px; color: var(--muted); margin-top: 14px; line-height: 1.75; max-width: 65ch; }
.service-card__features { margin-top: 24px; display: flex; flex-direction: column; gap: 8px; }
.service-card__feature {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: var(--muted);
}
.service-card__feature::before {
  content: '▸'; color: var(--svc, var(--accent));
  flex-shrink: 0; font-size: 10px; margin-top: 3px;
}
.service-card__link {
  display: inline-block; margin-top: 14px;
  font-size: 13px; font-weight: 600;
  color: var(--accent); letter-spacing: -.1px;
  transition: color .2s;
}
.service-card__link:hover { color: var(--accent2); }
.service-card__img-wrap {
  width: 64px; height: 64px; margin-bottom: 20px;
  border-radius: 14px; overflow: hidden;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
}
.service-card__img {
  width: 48px; height: 48px; object-fit: contain;
}
.services__differentiator {
  margin-top: 48px; text-align: center;
  font-size: 16px; color: var(--muted); font-style: italic;
  max-width: 680px; margin-left: auto; margin-right: auto;
  line-height: 1.7;
}

/* ─── ROI SECTION ─── */
.roi { background: var(--bg-alt); }
.roi__inner { max-width: 1200px; margin: 0 auto; }
.roi__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; margin-top: 60px;
}
.roi__visual {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.roi__visual-label {
  font-size: 13px; font-weight: 700; color: var(--muted);
  margin-bottom: 24px; letter-spacing: 1px; text-transform: uppercase;
}
.roi__bar-chart { display: flex; flex-direction: column; gap: 16px; }
.roi__bar-row { display: flex; align-items: center; gap: 16px; }
.roi__bar-label { font-size: 13px; color: var(--muted); width: 110px; flex-shrink: 0; }
.roi__bar-track {
  flex: 1; height: 10px; background: var(--bg-alt);
  border-radius: 100px; overflow: hidden;
}
.roi__bar-fill {
  height: 100%; border-radius: 100px; width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent3));
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
}
.roi__bar-val { font-size: 13px; font-weight: 700; color: var(--navy); width: 46px; text-align: right; }
.roi__heading {
  font-family: var(--font-display); font-size: 36px; font-weight: 800;
  color: var(--navy); letter-spacing: -1.5px; line-height: 1.2;
}
.roi__text { font-size: 16px; color: var(--muted); margin-top: 20px; line-height: 1.8; max-width: 65ch; }
.roi__items { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.roi__item { display: flex; align-items: flex-start; gap: 12px; }
.roi__item-icon { color: var(--green); font-size: 16px; flex-shrink: 0; margin-top: 2px; font-weight: 800; }
.roi__item-text { font-size: 15px; color: var(--muted); line-height: 1.5; }

/* ROI comparison table */
.roi__compare {
  margin-top: 36px; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.roi__compare-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr; font-size: 13px;
}
.roi__compare-row--header {
  background: var(--surface); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; color: var(--muted);
}
.roi__compare-row:not(.roi__compare-row--header) { border-top: 1px solid var(--border); }
.roi__compare-row span { padding: 12px 16px; display: flex; align-items: center; }
.roi__compare-row span:nth-child(1) { color: var(--muted); font-weight: 600; }
.roi__compare-row span:nth-child(2) { border-left: 1px solid var(--border); }
.roi__compare-row span:nth-child(3) { border-left: 1px solid var(--border); }
.roi__compare-bad { color: var(--dim) !important; }
.roi__compare-good { color: var(--green) !important; font-weight: 700; }

/* ─── CASES ─── */
.cases { background: var(--white); }
.cases__inner { max-width: 1200px; margin: 0 auto; }
.cases__header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
.cases__story-img {
  position: relative; border-radius: 20px; overflow: hidden;
  margin-bottom: 52px; max-height: 320px;
}
.cases__story-img img {
  width: 100%; height: 320px;
  object-fit: cover; object-position: center top; display: block;
}
.cases__story-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 28px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,26,64,0.82) 100%);
  color: rgba(255,255,255,0.9); font-size: 14px; font-weight: 600; letter-spacing: 0.2px;
}
.cases__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
a.case-card { text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.case-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .3s, border-color .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.case-card:nth-child(odd)  { border-radius: 40px 0 40px 0; }
.case-card:nth-child(even) { border-radius: 0 40px 0 40px; }
.case-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,104,255,0.2);
  box-shadow: 0 8px 32px rgba(0,104,255,0.12), 0 20px 56px rgba(0,26,64,0.09);
}
.case-card__img { height: 220px; overflow: hidden; background: var(--bg-alt); }
.case-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.case-card:hover .case-card__img img { transform: scale(1.04); }
.case-card__body { padding: 28px 30px 26px; flex: 1; display: flex; flex-direction: column; }
.case-card__name { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent2); }
.case-card__title {
  font-family: var(--font-display); font-size: 20px; font-weight: 800;
  color: var(--navy); margin-top: 10px; letter-spacing: -.5px; line-height: 1.28;
}
.case-card__stats {
  display: flex; gap: 0; margin-top: 24px;
  padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.case-stat { flex: 1; padding: 0 16px; border-right: 1px solid var(--border); }
.case-stat:first-child { padding-left: 0; }
.case-stat:last-child { border-right: none; padding-right: 0; }
.case-stat__num {
  font-family: var(--font-display); font-size: 26px; font-weight: 800;
  color: var(--accent); letter-spacing: -1px; display: block;
}
.case-stat__label {
  font-size: 10px; color: var(--dim); margin-top: 6px;
  font-weight: 700; text-transform: uppercase; letter-spacing: .6px; display: block;
}
.case-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; align-self: flex-start;
  font-size: 13px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
  color: var(--accent2); transition: color .2s;
}
.case-card__link:hover { color: var(--accent); }

/* ─── TESTIMONIALS ─── */
.testimonials { background: var(--navy); }
.testimonials .section-label { color: rgba(255,255,255,0.45); }
.testimonials .section-heading { color: var(--white); }
.testimonials .section-sub { color: rgba(255,255,255,0.6); }
.testimonials__inner { max-width: 1200px; margin: 0 auto; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }
.testimonial-card {
  background: rgba(255,255,255,0.055); border-radius: var(--radius-lg);
  padding: 36px 32px; border: 1px solid rgba(255,255,255,0.11);
  position: relative;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.testimonial-card:hover {
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  transform: translateY(-3px);
}
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 8px; left: 22px;
  font-family: var(--font-display); font-size: 96px; font-weight: 800;
  line-height: 1; color: var(--accent); opacity: .18;
}
.testimonial-card__quote {
  font-size: 15px; color: rgba(255,255,255,0.78); line-height: 1.8;
  font-style: italic; position: relative; z-index: 1;
}
.testimonial-card__author { margin-top: 24px; display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.testimonial-card__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.2);
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.testimonial-card__avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.testimonial-card__name { font-size: 14px; font-weight: 800; color: var(--white); letter-spacing: -.2px; }
.testimonial-card__role { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 2px; font-weight: 600; }

/* ─── FIT QUALIFIER ─── */
.fit-section { background: var(--white); }
.fit-section__inner { max-width: 1200px; margin: 0 auto; }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 60px; }
.fit-panel {
  border-radius: var(--radius-lg); padding: 40px 36px;
  border: 1px solid var(--border);
}
.fit-panel--yes {
  background: rgba(5,150,105,0.03);
  border-color: rgba(5,150,105,0.18);
}
.fit-panel--no {
  background: var(--surface);
  border-color: var(--border);
}
.fit-panel__header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px; padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.fit-panel__marker {
  font-family: var(--font-display); font-size: 11px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
}
.fit-panel__marker--yes {
  background: rgba(5,150,105,0.1); color: var(--green);
  border: 1px solid rgba(5,150,105,0.25);
}
.fit-panel__marker--no {
  background: var(--bg-alt); color: var(--dim);
  border: 1px solid var(--border2);
}
.fit-panel__heading {
  font-family: var(--font-display); font-size: 18px; font-weight: 800;
  color: var(--navy); letter-spacing: -.4px;
}
.fit-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.fit-item { font-size: 14px; line-height: 1.6; padding-left: 22px; position: relative; color: var(--muted); }
.fit-item::before {
  position: absolute; left: 0; top: 1px;
  font-size: 13px; font-weight: 800; line-height: 1.6;
}
.fit-item--yes::before { content: '✓'; color: var(--green); }
.fit-item--no::before { content: '×'; color: var(--dim); font-size: 16px; }
.fit-panel__note {
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 13px; color: var(--muted); line-height: 1.6; font-style: italic;
}

/* ─── ROI CALCULATOR ─── */
.roi-calc { background: var(--bg-alt); }
.roi-calc__inner { max-width: 1200px; margin: 0 auto; }
.roi-calc__layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; margin-top: 64px; align-items: start;
}
.roi-calc__inputs {
  background: var(--white); border-radius: 18px; padding: 40px 36px;
  border: 1px solid var(--border); box-shadow: var(--shadow-md);
}
.calc-field { margin-bottom: 32px; }
.calc-field:last-child { margin-bottom: 0; }
.calc-field__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.calc-field__header label { font-size: 14px; font-weight: 700; color: var(--navy); }
.calc-field__val {
  font-family: var(--font-display); font-size: 14px; font-weight: 800;
  color: var(--accent); padding: 4px 12px;
  border-radius: 100px; background: rgba(0,104,255,0.07);
}
.calc-slider {
  -webkit-appearance: none; width: 100%; height: 5px; border-radius: 100px; outline: none;
  background: linear-gradient(to right, var(--accent) 0%, var(--accent) var(--val, 15%), var(--border2) var(--val, 15%), var(--border2) 100%);
  cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--accent);
  box-shadow: 0 4px 12px rgba(0,104,255,0.35); cursor: grab;
  transition: transform .2s, box-shadow .2s;
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.12); box-shadow: 0 6px 18px rgba(0,104,255,0.45); }
.calc-slider::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%; background: var(--white);
  border: 3px solid var(--accent); box-shadow: 0 4px 12px rgba(0,104,255,0.35); cursor: grab;
}
.calc-field__range {
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--dim); margin-top: 8px; font-weight: 600;
}
.roi-calc__results { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.calc-result-card {
  background: var(--white); border-radius: 14px; padding: 26px 22px;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: transform .2s; position: relative; overflow: hidden;
}
.calc-result-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent3)); opacity: .4;
}
.calc-result-card:hover { transform: translateY(-2px); }
.calc-result-card--accent {
  background: linear-gradient(135deg, var(--navy) 0%, rgba(0,26,64,0.92) 100%);
  border: 1.5px solid rgba(0,104,255,0.35);
  grid-column: 1 / -1; padding: 36px 30px;
  box-shadow: 0 20px 60px rgba(0,26,64,0.18);
}
.calc-result-card--accent::before { background: var(--accent); opacity: 1; height: 3px; }
.calc-result-card__label {
  font-size: 11px; font-weight: 800;
  letter-spacing: 1.2px; text-transform: uppercase; color: var(--dim);
}
.calc-result-card--accent .calc-result-card__label { color: rgba(255,255,255,0.55); }
.calc-result-card__num {
  font-family: var(--font-display); font-size: 38px; font-weight: 800;
  color: var(--navy); letter-spacing: -1.8px; margin-top: 10px; line-height: 1;
  transition: transform .2s;
}
.calc-result-card--accent .calc-result-card__num { color: var(--white); font-size: 54px; letter-spacing: -2.5px; text-align: center; }
.calc-result-card__sub { font-size: 12px; color: var(--dim); margin-top: 6px; }
.calc-result-card--accent .calc-result-card__sub { color: rgba(255,255,255,0.5); text-align: center; }
.calc-cta-wrap {
  grid-column: 1 / -1; margin-top: 8px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.calc-cta-micro { font-size: 12px; color: var(--dim); font-weight: 600; letter-spacing: .2px; }

/* ─── PRICING ─── */
.pricing { background: var(--white); }
.pricing__inner { max-width: 1200px; margin: 0 auto; }
.pricing__grid {
  display: grid; grid-template-columns: 1fr 1.1fr 1fr;
  gap: 24px; margin-top: 80px; align-items: start;
}
.pricing-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 18px; padding: 44px 34px 38px;
  transition: box-shadow .3s, transform .3s, border-color .3s;
  position: relative; display: flex; flex-direction: column;
}
.pricing-card:not(.pricing-card--featured):hover {
  box-shadow: var(--shadow-md); border-color: var(--border2);
  transform: translateY(-3px);
}
.pricing-card--featured {
  background: linear-gradient(160deg, rgba(0,26,64,0.97) 0%, var(--navy) 100%);
  border: 1.5px solid rgba(0,104,255,0.45);
  box-shadow: 0 0 0 5px rgba(0,104,255,0.07), 0 24px 70px rgba(0,26,64,0.22), 0 0 0 1px rgba(0,104,255,0.15);
  transform: translateY(-10px);
  padding: 56px 38px 44px;
  z-index: 1;
}
.pricing-card--featured:hover { border-color: rgba(0,104,255,0.65); }
.pricing-card__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  padding: 6px 18px; border-radius: 100px;
  background: var(--accent); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(0,104,255,0.4); white-space: nowrap;
}
.pricing-card__tier {
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--dim); margin-bottom: 16px;
}
.pricing-card--featured .pricing-card__tier { color: var(--accent2); }
.pricing-card__price { font-size: 15px; color: var(--dim); margin-bottom: 18px; font-weight: 500; line-height: 1; }
.pricing-card__num {
  font-family: var(--font-display); font-size: 44px; font-weight: 800;
  color: var(--navy); letter-spacing: -2px; display: inline-block; line-height: 1;
}
.pricing-card--featured .pricing-card__num { color: var(--white); }
.pricing-card__per { font-size: 16px; font-weight: 500; color: var(--dim); margin-left: 2px; }
.pricing-card--featured .pricing-card__per { color: rgba(255,255,255,0.4); }
.pricing-card__desc {
  font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 24px;
  padding-bottom: 24px; border-bottom: 1px solid var(--border);
}
.pricing-card--featured .pricing-card__desc { color: rgba(255,255,255,0.65); border-bottom-color: rgba(255,255,255,0.1); }
.pricing-card__features {
  list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1;
}
.pricing-card__features li {
  font-size: 14px; color: var(--muted); padding-left: 20px; position: relative; line-height: 1.5;
}
.pricing-card--featured .pricing-card__features li { color: rgba(255,255,255,0.75); }
.pricing-card__features li::before {
  content: '✓'; position: absolute; left: 0; color: var(--green);
  font-size: 12px; font-weight: 700; top: 1px;
}
.pricing-card--featured .pricing-card__features li::before { color: var(--accent3); }
.pricing-card__cta {
  display: block; text-align: center; padding: 13px 24px;
  border: 1px solid var(--border2); border-radius: var(--radius);
  font-size: 13px; font-weight: 700; letter-spacing: .5px;
  color: var(--muted); transition: border-color .2s, color .2s;
}
.pricing-card__cta:hover { border-color: var(--accent); color: var(--accent2); }
.pricing-card__cta--primary {
  background: linear-gradient(135deg, #0068FF, #267FFF); border-color: var(--accent);
  color: var(--white); box-shadow: 0 4px 20px rgba(0,104,255,0.35);
}
.pricing-card__cta--primary:hover { opacity: .9; color: var(--white); }
.pricing-card__micro {
  margin-top: 10px; text-align: center; font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.45); letter-spacing: .2px;
}
.pricing__note {
  margin-top: 40px; text-align: center; font-size: 14px; color: var(--muted); line-height: 1.6;
}
.pricing__note a { color: var(--accent2); text-decoration: underline; text-underline-offset: 3px; }

/* ─── TIMELINE ─── */
.timeline-section { background: var(--bg-alt); }
.timeline-section__inner { max-width: 1200px; margin: 0 auto; }
.timeline-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 60px;
  background: var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.timeline-card {
  background: var(--white); padding: 40px 36px;
  display: flex; flex-direction: column;
}
.timeline-card--accent { background: linear-gradient(160deg, #f0f7ff 0%, var(--surface) 100%); }
.timeline-card__day {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent2); margin-bottom: 6px;
}
.timeline-card__phase {
  font-family: var(--font-display); font-size: 13px; font-weight: 800;
  letter-spacing: 3px; text-transform: uppercase; color: var(--dim);
  margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border);
}
.timeline-card--accent .timeline-card__phase { color: var(--accent); }
.timeline-card__heading {
  font-family: var(--font-display); font-size: 20px; font-weight: 800;
  color: var(--navy); letter-spacing: -.5px; line-height: 1.25; margin-bottom: 20px;
}
.timeline-card__list { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.timeline-card__list li {
  font-size: 13px; color: var(--muted); line-height: 1.5;
  padding-left: 16px; position: relative;
}
.timeline-card__list li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent2); opacity: .7;
}
.timeline-card--accent .timeline-card__list li::before { background: var(--green); opacity: 1; }
.timeline-card__result {
  margin-top: 24px; padding: 10px 16px;
  background: rgba(5,150,105,0.07);
  border: 1px solid rgba(5,150,105,0.18);
  border-radius: var(--radius);
  font-size: 12px; font-weight: 700; color: var(--green);
  letter-spacing: .5px; text-transform: uppercase;
}

/* ─── FAQ ─── */
.faq { background: var(--white); }
.faq__inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: 80px; align-items: start;
}
.faq__intro { position: sticky; top: 100px; }
.faq__intro .section-heading { margin-top: 6px; }
.faq__intro .section-sub { margin-top: 20px; }
.faq__intro-cta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 32px; padding: 14px 26px; border-radius: 100px;
  background: var(--accent); color: var(--white);
  font-size: 14px; font-weight: 700; letter-spacing: .3px;
  box-shadow: 0 8px 24px rgba(0,104,255,0.28);
  transition: transform .2s, box-shadow .2s;
}
.faq__intro-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,104,255,0.4); }
.faq__accordion { display: flex; flex-direction: column; }
.faq__item {
  border-top: 1px solid var(--border);
  padding: 0;
}
.faq__item:last-child { border-bottom: 1px solid var(--border); }
.faq__item { transition: background .2s; }
.faq__item[open] { background: var(--surface); border-radius: var(--radius); }
.faq__item[open] .faq__q { padding-left: 16px; }
.faq__item[open] .faq__a { padding-left: 16px; }
.faq__q {
  list-style: none; display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
  padding: 22px 0; font-size: 17px; font-weight: 700;
  color: var(--navy); letter-spacing: -.3px; line-height: 1.3;
  cursor: pointer; user-select: none;
  transition: color .2s, padding .2s;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: '+'; font-size: 22px; font-weight: 300;
  color: var(--accent2); flex-shrink: 0;
  transition: transform .25s ease; line-height: 1;
}
details[open] > .faq__q::after { transform: rotate(45deg); }
details[open] > .faq__q { color: var(--accent2); }
.faq__a {
  font-size: 15px; color: var(--muted); padding: 0 0 22px;
  line-height: 1.8; max-width: 680px;
}

/* ─── WHY ANCHOR (The Y = Why philosophy interstitial) ─── */
.why-anchor {
  background:
    radial-gradient(ellipse 60% 80% at 10% 50%, rgba(0,52,180,0.28) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 92% 40%, rgba(0,20,80,0.55) 0%, transparent 55%),
    linear-gradient(180deg, #000d28 0%, #001438 60%, var(--navy) 100%);
  padding: 88px 60px 96px;
  position: relative;
  overflow: hidden;
}
.why-anchor::before {
  content: 'Y';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: min(520px, 58vw);
  font-weight: 800;
  color: rgba(0,104,255,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -20px;
}
.why-anchor::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 680px; height: 680px;
  background: radial-gradient(ellipse at center, rgba(0,104,255,0.11) 0%, rgba(0,68,185,0.04) 45%, transparent 65%);
  pointer-events: none;
  border-radius: 50%;
}
.why-anchor__inner {
  max-width: 1080px; margin: 0 auto;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 72px;
  align-items: center;
  position: relative; z-index: 1;
}
.why-anchor__founder {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.why-anchor__founder-img {
  width: 140px; border-radius: 16px;
  filter: brightness(0.95) contrast(1.05);
}
.why-anchor__founder-tag {
  font-size: 11px; color: rgba(255,255,255,0.35);
  text-align: center; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
}
.why-anchor__left {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.why-anchor__glyph {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(96px, 12vw, 148px);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -6px; line-height: 0.88;
  animation: glyphFloat 6s ease-in-out infinite;
}
@keyframes glyphFloat {
  0%, 100% { transform: translateY(0); opacity: 0.9; }
  50% { transform: translateY(8px); opacity: 1; }
}
.why-anchor__equals {
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.22); letter-spacing: 3.5px; text-transform: uppercase;
}
.why-anchor__label {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(0,104,255,0.75);
  margin-bottom: 18px;
}
.why-anchor__heading {
  font-family: var(--font-display);
  font-size: clamp(23px, 2.8vw, 36px); font-weight: 800;
  color: #fff; letter-spacing: -0.8px; line-height: 1.22;
  margin-bottom: 22px;
}
.why-anchor__heading em { color: var(--accent); font-style: normal; }
.why-anchor__text {
  font-size: 16px; color: rgba(255,255,255,0.46); line-height: 1.8;
  max-width: 58ch;
}
.why-anchor__text em { color: rgba(255,255,255,0.76); font-style: italic; }
@media (max-width: 700px) {
  .why-anchor { padding: 60px 24px 64px; }
  .why-anchor__inner { grid-template-columns: 1fr; gap: 36px; }
  .why-anchor__left { flex-direction: row; gap: 20px; align-items: baseline; justify-content: center; }
  .why-anchor__glyph { font-size: 80px; letter-spacing: -3px; }
  .why-anchor__founder { display: none; }
}

/* ─── DEPTH THREAD — vertical accent line for flowing descent ─── */
.depth-thread {
  display: flex; align-items: center; justify-content: center;
  padding: 0; margin: 0; height: 96px;
  background: linear-gradient(180deg, var(--navy) 0%, #002060 30%, var(--bg-alt) 100%);
  position: relative; overflow: hidden;
}
.depth-thread::before {
  content: '';
  position: absolute;
  left: 50%; top: 0;
  transform: translateX(-50%);
  width: 280px; height: 100%;
  background: radial-gradient(ellipse 100% 80% at 50% 30%, rgba(0,104,255,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.depth-thread__line {
  width: 1px; height: 100%;
  background: linear-gradient(180deg, rgba(100,168,255,0.6) 0%, rgba(0,104,255,0.15) 100%);
  position: absolute;
}
.depth-thread__whale {
  width: 22px; height: 22px; z-index: 1;
  opacity: 0.65; filter: brightness(0) invert(1);
  animation: whaleDescend 3s ease-in-out infinite;
}
@keyframes whaleDescend {
  0%, 100% { transform: translateY(-4px) rotate(-8deg); }
  50% { transform: translateY(4px) rotate(8deg); }
}

/* Services philosophy echo */
.services__why-echo {
  display: flex; align-items: center; gap: 14px;
  margin-top: 44px; padding-top: 36px;
  border-top: 1px solid rgba(0,26,64,0.08);
  font-size: 15px; color: var(--muted); font-style: italic;
  max-width: 680px;
}
.services__why-echo::before {
  content: 'Y';
  font-family: var(--font-display);
  font-size: 32px; font-weight: 800; color: var(--accent);
  letter-spacing: -1px; line-height: 1; flex-shrink: 0;
  opacity: 0.7;
}

/* ─── HERO WHY LINE ─── */
.hero__why-line {
  margin-top: 22px;
  font-size: 13px; color: rgba(255,255,255,0.3);
  letter-spacing: 0.1px; font-style: italic;
  animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.65s both;
}
.hero__why-line a {
  color: rgba(255,255,255,0.6); text-decoration: none; font-style: normal; font-weight: 600;
  transition: opacity .2s;
}
.hero__why-line a:hover { opacity: 0.75; }

/* ─── REVOLUTION SECTION ─── */
.revolution {
  padding: 96px 0 80px;
  background: linear-gradient(180deg, #dce8fa 0%, var(--bg-alt) 30%, #e4eeff 70%, #dce8fa 100%);
}
.revolution__inner { max-width: 1160px; margin: 0 auto; padding: 0 60px; }
.revolution__inner .section-heading { text-align: center; }
.revolution__inner .section-sub { text-align: center; max-width: 640px; margin: 12px auto 0; }
.revolution__grid {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: 0;
  margin-top: 56px;
  align-items: start;
}
.revolution__col { padding: 32px 36px; }
.revolution__col--old {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 40px 0 40px 0;
}
.revolution__col--new {
  background: linear-gradient(145deg, #001A40 0%, #0a3080 60%, #0068FF 100%);
  color: white;
  border-radius: 0 40px 0 40px;
}
.revolution__col-label {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: #8a9ab5; margin-bottom: 24px;
}
.revolution__col-label.revolution__col-label--new { color: rgba(255,255,255,0.55); }
.revolution__roles { display: flex; flex-direction: column; gap: 0; }
.revolution__role {
  display: grid; grid-template-columns: 1fr auto;
  padding: 11px 0;
  border-bottom: 1px solid #edf0f7;
  align-items: start; gap: 4px;
}
.revolution__role--new {
  grid-template-columns: 20px 1fr;
  border-bottom-color: rgba(255,255,255,0.08);
  gap: 12px; align-items: center;
}
.revolution__role-title {
  font-family: var(--font-display); font-size: 14px; font-weight: 600;
  color: var(--navy); line-height: 1.3;
}
.revolution__role--new .revolution__role-title { color: #e8f0ff; }
.revolution__role-cost {
  font-size: 12px; font-weight: 700; color: #c43535;
  text-align: right; white-space: nowrap; padding-top: 2px;
}
.revolution__role-job {
  font-size: 12px; color: #8a9ab5; line-height: 1.3; margin-top: 2px;
  grid-column: 1 / -1;
}
.revolution__role--new .revolution__role-job { color: rgba(255,255,255,0.5); margin-top: 1px; }
.revolution__role-check {
  color: #3de898; font-size: 13px; font-weight: 800; line-height: 1; padding-top: 1px;
}
.revolution__total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0 6px; margin-top: 4px;
}
.revolution__total-label { font-size: 12px; font-weight: 600; color: #8a9ab5; }
.revolution__total-num {
  font-family: var(--font-display); font-size: 24px; font-weight: 800; color: #c43535;
}
.revolution__caveat { font-size: 11px; color: #a0aec0; line-height: 1.5; }
.revolution__benefit { padding: 20px 0 0; }
.revolution__benefit-label {
  display: block; font-family: var(--font-display);
  font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 6px;
}
.revolution__benefit-sub { font-size: 13px; color: rgba(255,255,255,0.6); }

/* Revolution timeline (new hire vs agent framing) */
.rev-timeline { display: flex; flex-direction: column; gap: 0; margin: 20px 0; }
.rev-step {
  display: grid; grid-template-columns: 80px 1fr; gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(0,26,64,0.09);
}
.rev-step:last-child { border-bottom: none; }
.rev-step__time {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  color: var(--accent); text-transform: uppercase; letter-spacing: 0.5px;
  padding-top: 2px; line-height: 1.3;
}
.rev-step--warn .rev-step__time { color: #c43535; }
.revolution__col--new .rev-step { border-bottom: 1px solid rgba(255,255,255,0.08); }
.revolution__col--new .rev-step:last-child { border-bottom: none; }
.revolution__col--new .rev-step__time { color: #3de898; }
.rev-step__text { font-size: 13px; line-height: 1.5; color: var(--muted); }
.revolution__col--new .rev-step__text { color: rgba(255,255,255,0.65); }
.rev-verdict {
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  padding: 16px 0 0; line-height: 1.3;
}
.rev-verdict--neg { color: #c43535; }
.rev-verdict--pos { color: #3de898; }
.revolution__philosophy {
  text-align: center; margin-top: 48px; padding-top: 32px;
  border-top: 1px solid rgba(0,26,64,0.1);
  font-family: var(--font-display); font-size: 20px; font-weight: 600;
  color: var(--navy); font-style: italic; letter-spacing: -0.3px;
}

.revolution__vs {
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 108px;
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); opacity: 0.5;
}
.btn-primary-inv {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: var(--navy);
  padding: 12px 24px; border-radius: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  text-decoration: none; transition: opacity .2s, transform .2s;
}
.btn-primary-inv:hover { opacity: .9; transform: translateY(-1px); }

/* Revolution mini performance chart */
.rev-chart {
  border-radius: 10px; padding: 14px 14px 10px;
  margin: 0 0 20px; background: rgba(0,26,64,0.04);
}
.revolution__col--new .rev-chart { background: rgba(255,255,255,0.07); }
.rev-chart__bars {
  display: flex; align-items: flex-end; gap: 5px; height: 64px;
}
.rev-chart__bar {
  flex: 1; border-radius: 3px 3px 0 0;
  background: rgba(0,26,64,0.14); min-height: 4px;
}
.rev-chart__bar--drop { background: rgba(196,53,53,0.38); }
.rev-chart--agent .rev-chart__bar {
  background: linear-gradient(180deg, rgba(0,104,255,0.85) 0%, rgba(0,104,255,0.45) 100%);
}
.rev-chart__labels {
  display: flex; gap: 5px; margin-top: 6px;
}
.rev-chart__labels span {
  flex: 1; text-align: center; font-size: 9px;
  color: rgba(0,26,64,0.32); font-weight: 700;
}
.revolution__col--new .rev-chart__labels span { color: rgba(255,255,255,0.32); }
.rev-chart__caption {
  font-size: 11px; font-weight: 700; margin-top: 8px;
  text-align: right; color: rgba(0,26,64,0.38);
  letter-spacing: 0.3px;
}
.revolution__col--new .rev-chart__caption { color: rgba(255,255,255,0.38); }
.rev-chart__caption--drop { color: rgba(196,53,53,0.65) !important; }
.revolution__col--new .rev-chart__caption--grow { color: rgba(61,232,152,0.8) !important; }

/* Blog preview section on homepage */
.blog-preview { padding: 96px 0; background: var(--bg-alt); }
.blog-preview__inner { max-width: 1200px; margin: 0 auto; padding: 0 60px; }
.blog-preview__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 48px;
}
.bp-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}
.bp-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
  border-color: rgba(0,104,255,0.18);
}
.bp-card__img {
  width: 100%; height: 180px; object-fit: cover; display: block;
}
.bp-card__body {
  padding: 24px 26px 26px; flex: 1; display: flex; flex-direction: column;
}
.bp-card__tag {
  display: inline-flex; padding: 3px 10px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: .6px;
  text-transform: uppercase; background: rgba(0,104,255,0.1);
  color: var(--accent); margin-bottom: 14px; width: fit-content;
}
.bp-card__headline {
  font-family: var(--font-display); font-size: 16px; font-weight: 800;
  color: var(--navy); letter-spacing: -.4px; line-height: 1.35;
  margin-bottom: 10px;
}
.bp-card__desc {
  font-size: 13.5px; color: var(--muted); line-height: 1.65; flex: 1;
}
.bp-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid var(--border); font-size: 12px;
}
.bp-card__read-time { color: var(--gray-400); font-weight: 600; }
.bp-card__read-time::before { content: '◷ '; }
.bp-card__link {
  font-weight: 700; color: var(--accent);
  display: flex; align-items: center; gap: 4px;
  transition: gap .2s;
}
.bp-card:hover .bp-card__link { gap: 8px; }
.blog-preview__cta-wrap { text-align: center; margin-top: 44px; }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(150deg, #e8f2ff 0%, #ddeaff 40%, #f4f8ff 100%);
  padding: 100px 60px 140px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(0,26,64,0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent 85%);
}
.cta-banner__inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 1; }
.cta-banner__heading {
  font-family: var(--font-display); font-size: clamp(36px, 5vw, 70px);
  font-weight: 800; color: var(--navy); letter-spacing: -2px; line-height: 1.05;
}
.cta-banner__heading .accent-line { color: var(--accent); }
.cta-banner__sub { font-size: 18px; color: var(--muted); margin-top: 20px; line-height: 1.6; }
.cta-banner__guarantee {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  margin-top: 20px; font-size: 14px; color: var(--muted);
}
.cta-banner__guarantee-icon { font-size: 15px; font-weight: 800; color: var(--accent); }
.cta-banner__actions { display: flex; gap: 16px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.cta-banner .btn-primary { font-size: 15px; padding: 17px 32px; }
.cta-banner .btn-ghost { border-color: var(--border2); color: var(--muted); }
.cta-banner .btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ─── FOOTER ─── */
.footer {
  background:
    radial-gradient(ellipse 80% 60% at 15% 80%, rgba(0,52,180,0.22) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 10%, rgba(0,104,255,0.14) 0%, transparent 55%),
    linear-gradient(160deg, #000c1e 0%, #001228 30%, #001A40 70%, #00205a 100%);
  padding: 0 60px 48px;
  position: relative; overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 36px 36px; pointer-events: none;
}
.footer > * { position: relative; z-index: 1; }

.footer__cta {
  max-width: 1200px; margin: 0 auto;
  padding: 56px 56px; border-radius: 20px;
  background: linear-gradient(135deg, rgba(0,68,200,0.18) 0%, rgba(255,255,255,0.05) 100%);
  border: 1px solid rgba(255,255,255,0.16);
  transform: translateY(-80px); margin-bottom: -24px;
  box-shadow: 0 28px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(0,104,255,0.18), inset 0 1px 0 rgba(255,255,255,0.10);
  position: relative; overflow: hidden;
}
.footer__cta::after {
  content: '';
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 220px;
  background: radial-gradient(ellipse 100% 100% at 50% 0%, rgba(0,104,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.footer__cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.footer__cta-eyebrow {
  font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent2);
}
.footer__cta-heading {
  font-family: var(--font-display); font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 800; color: var(--white); letter-spacing: -1.5px; line-height: 1.1; margin-top: 10px;
}
.footer__cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 32px; border-radius: 100px;
  background: var(--accent); color: var(--white);
  font-size: 15px; font-weight: 700; letter-spacing: .3px;
  box-shadow: 0 12px 40px rgba(0,104,255,0.45);
  transition: transform .3s, box-shadow .3s; white-space: nowrap;
}
.footer__cta-btn:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(0,104,255,0.6); }
.footer__cta-btn:hover .footer__cta-arrow { transform: translateX(4px); }
.footer__cta-arrow { transition: transform .3s cubic-bezier(.16,1,.3,1); display: inline-block; }

.footer__inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 60px;
}
.footer__logo { height: 28px; width: auto; opacity: .8; filter: brightness(0) invert(1); margin-bottom: 14px; }
.footer__brand__tagline {
  font-size: 11px; color: var(--accent2); margin-top: 2px;
  letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700;
}
.footer__brand__desc { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 18px; line-height: 1.7; max-width: 280px; }
.footer__brand__stat {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 22px;
  padding: 8px 16px; border-radius: 100px;
  background: rgba(0,104,255,0.15); border: 1px solid rgba(0,104,255,0.28);
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.85);
}
.footer__brand__stat-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 0 4px rgba(5,150,105,0.25);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
.footer__col-title {
  font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a {
  font-size: 14px; color: rgba(255,255,255,0.55);
  transition: color .2s, padding-left .2s; position: relative;
  padding-left: 0;
}
.footer__links a:hover { color: var(--white); padding-left: 14px; }
.footer__links a::before {
  content: '→'; position: absolute; left: 0; top: 0;
  opacity: 0; transition: opacity .2s, left .2s; color: var(--accent2);
}
.footer__links a:hover::before { opacity: 1; }
.footer__bottom {
  max-width: 1200px; margin: 48px auto 0;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
}
.footer__bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer__tagline { font-style: italic; }

/* ─── STICKY CTA ─── */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: var(--navy);
  border-top: 1px solid rgba(0,104,255,0.35);
  padding: 14px 60px; display: flex; align-items: center; gap: 20px;
  transform: translateY(100%); transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta__text { flex: 1; font-size: 14px; color: rgba(255,255,255,0.85); }
.sticky-cta__text strong { color: white; }
.sticky-cta__btn {
  background: var(--accent); color: white; padding: 10px 24px;
  font-size: 13px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
  border-radius: var(--radius); white-space: nowrap; flex-shrink: 0;
  transition: opacity .2s; box-shadow: 0 4px 16px rgba(0,104,255,0.4);
}
.sticky-cta__btn:hover { opacity: .9; }
.sticky-cta__close {
  background: none; border: none; color: rgba(255,255,255,0.4);
  font-size: 20px; cursor: pointer; padding: 0 4px; flex-shrink: 0;
}
.sticky-cta__close:hover { color: white; }

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ─── RESPONSIVE ─── */
@media (min-width: 1280px) {
  .revolution__inner { padding: 0 80px; }
  .revolution__grid { grid-template-columns: 1fr 60px 1fr; gap: 0; }
  .section-heading { font-size: clamp(34px, 3.2vw, 58px); line-height: 1.1; }
  .revolution__col { padding: 40px 44px; }
  .revolution__role-title { font-size: 15px; }
  .revolution__benefit-label { font-size: 20px; }
}

@media (max-width: 1024px) {
  .nav { padding: 0 32px; }
  section { padding: 80px 32px; }
  .hero { padding: 120px 32px 60px; }
  body.has-topbar .hero { padding-top: 160px; }
  .hero-stats { padding: 60px 32px; }
  .hero-stats .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .roi__grid { grid-template-columns: 1fr; }
  .blog-preview__inner { padding: 0 32px; }
  .blog-preview__grid { grid-template-columns: repeat(2, 1fr); }
  .cases__grid { grid-template-columns: 1fr 1fr; }
  .flow-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-grid { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .pricing-card--featured { transform: none; }
  .faq__inner { grid-template-columns: 1fr; gap: 40px; }
  .faq__intro { position: static; }
  .roi-calc__layout { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .topbar { padding: 10px 32px; }
}

@media (max-width: 900px) {
  /* hero__inner is already flex column centered — no overrides needed */
}

@media (max-width: 768px) {
  .depth-thread { height: 40px; }
  .depth-thread__whale { width: 16px; height: 16px; }
  .why-anchor::after { width: 280px; height: 280px; }
  .nav { padding: 0 24px; height: 64px; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .hero { min-height: 100svh; padding: 90px 24px 56px; }
  body.has-topbar .hero { padding-top: 130px; }
  .hero__heading { font-size: clamp(30px, 7vw, 46px); letter-spacing: -1.6px; line-height: 1.09; }
  .hero__sub { font-size: 15px; line-height: 1.65; }
  .hero__actions { flex-direction: column; gap: 12px; width: 100%; }
  .hero__actions .btn-primary,
  .hero__actions .btn-ghost { width: 100%; justify-content: center; min-height: 52px; font-size: 15px; }
  .hero__cta-micro { font-size: 13px; text-align: center; }
  .hero__badge-text { font-size: 12px; line-height: 1.4; }
  section { padding: 60px 24px; }
  .hero-stats { padding: 48px 24px; }
  .hero-stats .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat-card { padding: 32px 22px; }
  .trust-strip { padding: 20px 24px; }
  .live-activity { padding: 10px 24px; }
  .flow-grid { grid-template-columns: 1fr; gap: 8px; }
  .flow-step { padding: 24px 20px; }
  .flow-step__num { font-size: 56px; letter-spacing: -4px; }
  .services__grid { grid-template-columns: 1fr; }
  .roi__grid { grid-template-columns: 1fr; }
  .blog-preview { padding: 60px 0; }
  .blog-preview__inner { padding: 0 24px; }
  .blog-preview__grid { grid-template-columns: 1fr; gap: 20px; }
  .revolution { padding: 60px 0 48px; }
  .revolution__inner { padding: 0 24px; }
  .revolution__grid { grid-template-columns: 1fr; gap: 20px; }
  .revolution__vs { padding-top: 0; padding-bottom: 0; font-size: 12px; }
  .fit-grid { grid-template-columns: 1fr; }
  .cases__grid { grid-template-columns: 1fr; }
  .cases__header { flex-direction: column; gap: 16px; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .roi-calc__results { grid-template-columns: 1fr 1fr; }
  .pricing__grid { max-width: 100%; }
  .pricing-card { padding: 32px 24px; }
  .timeline-grid { grid-template-columns: 1fr; }
  .timeline-card { padding: 32px 24px; }
  .faq__q { font-size: 15px; padding: 18px 0; min-height: 48px; }
  .faq__a { font-size: 14px; line-height: 1.7; }
  .faq__item summary::-webkit-details-marker { display: none; }
  .case-card__body { padding: 20px; }
  .case-card__title { font-size: 16px; }
  .case-card:nth-child(odd), .case-card:nth-child(even) { border-radius: var(--radius-lg); }
  .timeline-card__day { font-size: 12px; }
  .cta-banner { padding: 60px 24px; }
  .cta-banner__heading { font-size: clamp(28px, 7vw, 48px); }
  .cases__story-img { margin-bottom: 32px; max-height: 200px; }
  .cases__story-img img { height: 200px; }
  .sticky-cta { padding: 12px 20px; flex-wrap: wrap; gap: 10px; }
  .sticky-cta__text { font-size: 13px; }
  .footer { padding: 0 24px 40px; }
  .footer__cta { padding: 40px 28px; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .topbar { padding: 10px 20px; }
}

@media (max-width: 600px) {
  .hero-stats .stats__grid { grid-template-columns: repeat(2, 1fr); }
  /* Revolution roles: show cost below title on narrow screens */
  .revolution__role {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .revolution__role-cost { text-align: left; }
  /* Revolution section compact */
  .revolution__col { padding: 24px 20px; }
  .revolution__total-num { font-size: 20px; }
}

@media (max-width: 480px) {
  section { padding: 48px 20px; }
  .hero { min-height: 100svh; padding: 80px 20px 48px; }
  .hero__heading { font-size: clamp(28px, 8.5vw, 42px); letter-spacing: -1.2px; }
  .hero__badge { max-width: 100%; }
  .hero__badge-text { font-size: 12px; }
  .hero__tags { gap: 8px; }
  .hero__tag { font-size: 11px; padding: 4px 12px; }
  /* Ensure primary buttons are easy tap targets */
  .btn-primary, .btn-ghost { min-height: 48px; padding: 14px 24px; }
  .btn-primary-inv { min-height: 48px; }
  /* Revolution mobile */
  .revolution__grid { gap: 16px; }
  .revolution__col { padding: 20px 16px; }
  /* Stats responsive */
  .roi-calc__results { grid-template-columns: 1fr; }
  .guarantee-row { grid-template-columns: repeat(2, 1fr); }
}
