/* =========================================================
   Northview Agency — Design System
   ========================================================= */

:root {
  /* Colors — ocean blue base, coral/orange warm accent, cyan cool accent */
  --bg-base: #0e3a5c;
  --bg-deep: #07273f;
  --bg-elevated: #154c75;
  --bg-card: rgba(18, 56, 87, 0.55);
  --bg-card-hover: rgba(28, 75, 110, 0.72);

  --border-subtle: rgba(130, 200, 230, 0.13);
  --border-mid: rgba(130, 200, 230, 0.28);
  --border-strong: rgba(130, 200, 230, 0.48);

  /* Warm accent — used for CTAs, tags, hover spotlights, active highlights */
  --accent: #ff7e54;
  --accent-bright: #ffa183;
  --accent-soft: #ffc9b3;
  --accent-deep: #e35d2f;
  --accent-glow: rgba(255, 126, 84, 0.45);

  /* Cool accent — used for icons, gradient text, ambient glows */
  --accent-cool: #7dc6e0;
  --accent-cool-bright: #a3e0ef;
  --accent-cool-deep: #4a98b8;
  --accent-cool-glow: rgba(125, 198, 224, 0.45);

  --text-primary: #ffffff;
  --text-secondary: #dde9f1;
  --text-muted: #8eafc4;
  --text-dim: #5e7b94;

  /* Typography — system font stack (matches Bottarini exactly: Segoe UI Variable on Windows, SF Pro on Mac, Roboto on Android) */
  --font: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI Variable", "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji";

  /* Spacing */
  --container: 1240px;
  --pad-x: clamp(20px, 5vw, 64px);

  /* Radii */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-card: 0 30px 60px -30px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 40px -10px var(--accent-glow);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul, ol { list-style: none; }

/* Gradient text utility — cool cyan/teal ocean gradient */
.grad {
  background: linear-gradient(180deg, #eaf7fc 0%, #a3e0ef 55%, #7dc6e0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

/* =========================================================
   Nav (floating pill)
   ========================================================= */
.nav {
  position: fixed;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 8px 8px 14px;
  background: rgba(8, 14, 28, 0.7);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-pill);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.6);
  transition: padding 0.3s ease, top 0.3s ease;
}

.nav.is-scrolled {
  top: 14px;
  background: rgba(5, 10, 22, 0.85);
}

.nav__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.nav__logo:hover { transform: rotate(-4deg) scale(1.05); }

.nav__mark {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #fff;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__links a {
  display: inline-block;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text-secondary);
  border-radius: var(--r-pill);
  transition: color 0.2s ease, background 0.2s ease;
}
.nav__links a:hover { color: var(--text-primary); background: rgba(255, 255, 255, 0.04); }

.nav__cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%) !important;
  color: #fff !important;
  font-weight: 700 !important;
  box-shadow: 0 8px 24px -8px var(--accent-glow);
}
.nav__cta:hover { transform: translateY(-1px); box-shadow: 0 12px 32px -8px var(--accent-glow); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.nav__burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px var(--pad-x) 100px;
  overflow: hidden;
  isolation: isolate;
}

/* Static "planet" composition — mouse-interactive shine + cyan glow matching site palette */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  /* Default highlight position (used until JS sets --mx / --my from mousemove) */
  background:
    /* Layer 1 (top): small dim sun gleam — FOLLOWS THE MOUSE via --mx / --my */
    radial-gradient(circle 60px at var(--mx, 70%) var(--my, 22%),
      rgba(255, 255, 255, 0.55) 0%,
      rgba(195, 235, 245, 0.25) 50%,
      transparent 100%),
    /* Layer 2: softer narrower halo */
    radial-gradient(circle 180px at var(--mx, 70%) var(--my, 22%),
      rgba(163, 224, 239, 0.10) 0%,
      rgba(125, 198, 224, 0.05) 50%,
      transparent 100%),
    /* Layer 3: darken the unlit side to create the crescent illusion */
    radial-gradient(circle 760px at 26% 80%,
      rgba(7, 39, 63, 0.85) 0%,
      rgba(7, 39, 63, 0.42) 38%,
      transparent 72%),
    /* Layer 4: bright cyan rim — the planet's lit edge (uses --accent-cool-bright tone) */
    radial-gradient(circle 820px at 58% 48%,
      transparent 76%,
      rgba(163, 224, 239, 0.62) 80%,
      rgba(125, 198, 224, 0.30) 86%,
      rgba(74, 152, 184, 0.14) 92%,
      transparent 97%),
    /* Layer 5: planet body — cyan-blue glow (uses --accent-cool family) */
    radial-gradient(circle 820px at 58% 48%,
      rgba(125, 198, 224, 0.30) 0%,
      rgba(74, 152, 184, 0.22) 38%,
      rgba(14, 58, 92, 0.12) 72%,
      transparent 92%),
    /* Layer 6 (bottom): ocean-blue space base (matches --bg-base / --bg-deep) */
    radial-gradient(ellipse 110% 110% at 50% 50%,
      #0e3a5c 0%,
      #082843 55%,
      #07273f 100%);
}

/* Hide the old WebGL canvas + grid — we're going static now */
#hero-canvas { display: none; }
.hero__grid { display: none; }

/* Fallback (unused now, kept for cleanliness) */
.hero__bg.no-webgl::before { display: none; }

.hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(96, 165, 250, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 165, 250, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 80%);
}

.hero__inner {
  max-width: var(--container);
  width: 100%;
  text-align: center;
  position: relative;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(15, 28, 50, 0.6);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-pill);
  backdrop-filter: blur(10px);
  margin-bottom: 32px;
}
.hero__eyebrow .dot {
  width: 8px;
  height: 8px;
  background: var(--accent-bright);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-glow);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.9); }
}

.hero__title {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  /* Two stacked gradients: a sweeping diagonal glare on top, base vertical gradient underneath */
  background-image:
    linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.92) 50%, transparent 62%),
    linear-gradient(180deg, #ffffff 0%, #c8edf7 45%, #7dc6e0 100%);
  background-size: 220% 100%, 100% 100%;
  background-position: -130% 0%, 0% 0%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  will-change: background-position;
  animation: heroGlare 9s cubic-bezier(0.22, 0.61, 0.36, 1) 0.4s infinite;
}

@keyframes heroGlare {
  /* Slower sweep across the first ~65% of the cycle (~5.85s), then off-screen rest for ~35% (~3.15s) */
  0%   { background-position: -130% 0%, 0% 0%; }
  65%  { background-position:  230% 0%, 0% 0%; }
  100% { background-position:  230% 0%, 0% 0%; }
}

.hero__sub {
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--text-secondary);
  line-height: 1.65;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--r-pill);
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.2s ease; }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
  box-shadow: 0 14px 40px -10px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px -10px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn--ghost {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-mid);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--border-strong); }

.btn--lg { padding: 20px 38px; font-size: 16px; }

/* =========================================================
   Section base
   ========================================================= */
.section {
  position: relative;
  padding: clamp(80px, 12vh, 140px) var(--pad-x);
  max-width: var(--container);
  margin: 0 auto;
}

.section__head {
  max-width: 760px;
  margin-bottom: 70px;
}
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }

.tag {
  display: inline-block;
  padding: 6px 16px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent-bright);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-pill);
  margin-bottom: 22px;
  text-transform: uppercase;
}

.section__title {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 22px;
}

.section__sub {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 620px;
}
.section__head--center .section__sub { margin-left: auto; margin-right: auto; }

/* Card base */
.card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: border-color 0.3s ease, transform 0.35s ease, background 0.3s ease;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(96, 165, 250, 0.06) 50%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.card:hover { border-color: var(--border-mid); transform: translateY(-4px); background: var(--bg-card-hover); }
.card:hover::before { opacity: 1; }

/* =========================================================
   Services
   ========================================================= */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  perspective: 1500px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 460px;
  /* 3D tilt — driven by JS via --rx and --ry custom properties */
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition:
    transform 0.28s cubic-bezier(0.2, 0.8, 0.3, 1),
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

/* Override .card:hover transform to compose 3D rotation with the lift,
   and add a bright thin outline + soft blue glow */
.service-card:hover {
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-4px);
  border-color: rgba(255, 160, 130, 0.85);
  box-shadow:
    0 0 0 1px rgba(255, 160, 130, 0.55),
    0 0 38px -2px rgba(96, 165, 250, 0.32),
    var(--shadow-card);
}

/* Cursor-following spotlight — radial gradient positioned at mouse coordinates */
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    320px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 160, 130, 0.26),
    rgba(255, 160, 130, 0.09) 30%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  border-radius: inherit;
  z-index: 3;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card__visual {
  position: relative;
  height: 220px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(59, 130, 246, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(29, 78, 216, 0.12) 0%, transparent 60%),
    linear-gradient(135deg, rgba(15, 28, 50, 0.5) 0%, rgba(8, 14, 28, 0.7) 100%);
  border-bottom: 1px solid var(--border-subtle);
}
.service-card__visual::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -20%;
  right: -20%;
  bottom: -20%;
  background: linear-gradient(115deg, transparent 45%, rgba(255, 255, 255, 0.04) 50%, transparent 55%);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}
.service-card:hover .service-card__visual::after { transform: translateX(100%); }

/* Visual bubbles (SEO card) */
.vis-bubble {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(96, 165, 250, 0.12);
  border: 1px solid var(--border-mid);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  color: var(--accent-bright);
  animation: float 6s ease-in-out infinite;
}
.vis-bubble--lg {
  width: 90px; height: 90px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(59, 130, 246, 0.15);
  box-shadow: 0 0 60px var(--accent-glow);
}
.vis-bubble--lg svg { width: 38px; height: 38px; }

.vis-chip {
  position: absolute;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(15, 28, 50, 0.85);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-pill);
  backdrop-filter: blur(8px);
  animation: float 5s ease-in-out infinite;
}
.vis-chip--1 { top: 30px; left: 30px; animation-delay: 0.5s; }
.vis-chip--2 { top: 55px; right: 28px; animation-delay: 1.2s; }
.vis-chip--3 { bottom: 30px; left: 50%; transform: translateX(-50%); animation-delay: 1.8s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.vis-chip--3 {
  animation-name: floatX;
}
@keyframes floatX {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* AI card stack */
.vis-stack {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) perspective(600px) rotateX(8deg) rotateY(-6deg);
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 220px;
}
.vis-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(15, 28, 50, 0.85);
  border: 1px solid var(--border-mid);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  backdrop-filter: blur(10px);
  animation: stackFade 4s ease-in-out infinite;
}
.vis-row:nth-child(1) { animation-delay: 0s; }
.vis-row:nth-child(2) { animation-delay: 0.5s; }
.vis-row:nth-child(3) { animation-delay: 1s; }
.vis-row:nth-child(4) { animation-delay: 1.5s; }

@keyframes stackFade {
  0%, 100% { opacity: 0.5; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(4px); }
}

.vis-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
}
.vis-logo--gpt { background: #10a37f; }
.vis-logo--gem { background: linear-gradient(135deg, #4285f4, #9b72cb); }
.vis-logo--cld { background: #d97757; }
.vis-logo--prp { background: #20b8a6; }

/* SMS card phone */
.vis-phone {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 250px;
}
.vis-msg {
  padding: 9px 14px;
  border-radius: 16px;
  font-size: 12.5px;
  max-width: 75%;
  animation: msgIn 0.5s ease forwards;
  opacity: 0;
}
.vis-msg--in {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.vis-msg--out {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.vis-phone .vis-msg:nth-child(1) { animation-delay: 0.2s; }
.vis-phone .vis-msg:nth-child(2) { animation-delay: 0.8s; }
.vis-phone .vis-msg:nth-child(3) { animation-delay: 1.4s; }

@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.vis-pulse {
  position: absolute;
  bottom: 25px;
  right: 30px;
  width: 14px; height: 14px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulseRing 2s infinite;
}
@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
  100% { box-shadow: 0 0 0 16px rgba(34, 197, 94, 0); }
}

/* AI Integration card nodes */
.vis-node {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(15, 28, 50, 0.85);
  border: 1px solid var(--border-mid);
  border-radius: 10px;
  backdrop-filter: blur(8px);
  animation: nodeBob 4s ease-in-out infinite;
}
.vis-node--core {
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 58px; height: 58px;
  padding: 0;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.18);
  color: var(--accent-bright);
  box-shadow: 0 0 40px var(--accent-glow);
}
.vis-node--core svg { width: 26px; height: 26px; }
.vis-node--1 { top: 22px; left: 28px; animation-delay: 0.2s; }
.vis-node--2 { top: 22px; right: 28px; animation-delay: 0.6s; }
.vis-node--3 { bottom: 22px; left: 30px; animation-delay: 1s; }
.vis-node--4 { bottom: 22px; right: 28px; animation-delay: 1.4s; }

@keyframes nodeBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.vis-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  stroke: var(--accent);
  stroke-width: 1;
  fill: none;
  opacity: 0.35;
  stroke-dasharray: 4 4;
  animation: dash 12s linear infinite;
}
@keyframes dash {
  to { stroke-dashoffset: -100; }
}

.service-card__body {
  padding: 32px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.service-card__tag {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-bright);
  text-transform: uppercase;
}

.service-card h3 {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--text-primary);
}

.service-card p {
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.65;
  flex: 1;
}

.learn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-pill);
  color: var(--text-primary);
  width: fit-content;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.learn span { transition: transform 0.2s ease; }
.learn:hover { background: rgba(59, 130, 246, 0.15); border-color: var(--border-strong); }
.learn:hover span { transform: translateX(4px); }

/* =========================================================
   Process
   ========================================================= */
.process__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.process__list {
  position: relative;
  display: flex;
  flex-direction: column;
}

.process__step {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid var(--border-subtle);
  cursor: pointer;
  transition:
    transform 0.45s cubic-bezier(0.2, 0.8, 0.3, 1),
    padding 0.3s ease;
}

/* Animated accent line that slides in along the top edge on hover/active */
.process__step::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-bright) 0%, rgba(96, 165, 250, 0.5) 65%, transparent 100%);
  transition: width 0.55s cubic-bezier(0.2, 0.8, 0.3, 1);
  pointer-events: none;
}
.process__step:hover::before,
.process__step.is-active::before {
  width: 240px;
}

.process__step:hover {
  transform: translateX(32px);
}

.process__step h3 {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0;
  transition: color 0.3s ease;
}
.process__step:hover h3,
.process__step.is-active h3 { color: var(--text-primary); }

.process__step p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-top: 10px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.35s ease, margin 0.3s ease;
}
.process__step.is-active p {
  max-height: 200px;
  opacity: 1;
}

.process__num {
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 700;
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
  transition: color 0.3s ease;
  flex-shrink: 0;
}
.process__step:hover .process__num,
.process__step.is-active .process__num { color: var(--accent-bright); }

.process__preview {
  position: sticky;
  top: 100px;
  height: 480px;
  border-radius: var(--r-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.process__panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.5s ease;
  pointer-events: none;
}
.process__panel.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.process__panel-step {
  position: absolute;
  top: 28px;
  left: 32px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.process__icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-bright);
  margin-bottom: 32px;
  box-shadow: 0 0 60px var(--accent-glow);
}
.process__icon svg { width: 38px; height: 38px; }

.process__panel h4 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  max-width: 360px;
  margin-bottom: 20px;
}

.process__panel-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* =========================================================
   Trust
   ========================================================= */
.trust {
  position: relative;
  isolation: isolate;
}

/* Ambient blue glows behind the section content */
.trust::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 50% at 18% 45%, rgba(59, 130, 246, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 30%, rgba(96, 165, 250, 0.08) 0%, transparent 65%),
    radial-gradient(ellipse 40% 35% at 50% 90%, rgba(29, 78, 216, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.trust__bgword {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(180px, 28vw, 360px);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(96, 165, 250, 0.13);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
  animation: trustGlow 8s ease-in-out infinite;
}
@keyframes trustGlow {
  0%, 100% { opacity: 0.55; -webkit-text-stroke-color: rgba(96, 165, 250, 0.10); }
  50%      { opacity: 0.95; -webkit-text-stroke-color: rgba(96, 165, 250, 0.24); }
}

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

.trust__copy { max-width: 480px; }

.trust__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  perspective: 1500px;
}

.trust-card {
  position: relative;
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 220px;
  /* 3D tilt driven by JS via --rx and --ry */
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition:
    transform 0.32s cubic-bezier(0.2, 0.8, 0.3, 1),
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.35s ease;
}

.trust-card:hover {
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-6px);
  border-color: rgba(255, 160, 130, 0.85);
  box-shadow:
    0 0 0 1px rgba(255, 160, 130, 0.55),
    0 0 50px -2px rgba(96, 165, 250, 0.40),
    var(--shadow-card);
}

/* Cursor-following spotlight */
.trust-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    280px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 160, 130, 0.30),
    rgba(255, 160, 130, 0.10) 35%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  border-radius: inherit;
  z-index: 2;
}
.trust-card:hover::after { opacity: 1; }

/* Bottom accent line — grows from left on hover */
.trust-card .trust-card__line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-bright) 0%, rgba(96, 165, 250, 0.45) 70%, transparent);
  transition: width 0.55s cubic-bezier(0.2, 0.8, 0.3, 1);
  z-index: 3;
  pointer-events: none;
}
.trust-card:hover .trust-card__line { width: 85%; }

.trust-card__icon {
  position: relative;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-bright);
  background: rgba(59, 130, 246, 0.10);
  border: 1px solid var(--border-mid);
  border-radius: 14px;
  transition:
    transform 0.45s cubic-bezier(0.2, 0.8, 0.3, 1),
    background 0.3s ease,
    box-shadow 0.4s ease;
  z-index: 2;
  flex-shrink: 0;
}
.trust-card__icon svg { width: 28px; height: 28px; }

/* Two expanding rings that bloom outward on hover */
.trust-card__icon::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(96, 165, 250, 0.35);
  border-radius: 20px;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.4s ease, transform 0.55s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.trust-card__icon::after {
  content: "";
  position: absolute;
  inset: -20px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: 26px;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.5s ease 0.06s, transform 0.7s cubic-bezier(0.2, 0.8, 0.3, 1) 0.06s;
}

.trust-card:hover .trust-card__icon {
  transform: scale(1.1) rotate(-4deg);
  background: rgba(59, 130, 246, 0.22);
  box-shadow: 0 0 28px rgba(96, 165, 250, 0.45);
}
.trust-card:hover .trust-card__icon::before {
  opacity: 1;
  transform: scale(1);
}
.trust-card:hover .trust-card__icon::after {
  opacity: 1;
  transform: scale(1);
}

.trust-card h4 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
  position: relative;
  z-index: 2;
  letter-spacing: -0.005em;
}

.trust-card p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* =========================================================
   CTA
   ========================================================= */
.cta {
  text-align: center;
  position: relative;
  isolation: isolate;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(59, 130, 246, 0.18) 0%, transparent 70%);
}

.cta__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px var(--pad-x);
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-lg);
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.8);
}
.cta__inner .section__title { margin-bottom: 18px; }
.cta__inner .section__sub { margin-left: auto; margin-right: auto; margin-bottom: 32px; }

.cta__buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  padding: 80px var(--pad-x) 40px;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-deep);
}

.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer__brand .nav__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
}
.footer__name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.footer__links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}
.footer__links a:hover { color: var(--accent-bright); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  font-size: 13.5px;
  color: var(--text-muted);
}
.footer__tagline { color: var(--text-dim); }

/* =========================================================
   Reveal on scroll
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   Hero Entry Animations (staggered on page load)
   !important is required because script.js sets inline transition-delay; we override that here for the hero specifically
   ========================================================= */
.hero .reveal {
  transition-duration: 0.75s !important;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.3, 1) !important;
}
.hero .hero__guarantee.reveal { transition-delay: 60ms !important; }
.hero .hero__title.reveal     { transition-delay: 180ms !important; }
.hero .hero__sub.reveal       { transition-delay: 380ms !important; }
.hero .hero__cta.reveal       { transition-delay: 560ms !important; }

/* Slightly larger upward translate for the hero entrance — feels more cinematic */
.hero .reveal { transform: translateY(36px); }
.hero .reveal.is-visible { transform: translateY(0); }

/* =========================================================
   Hero Guarantee Badge
   ========================================================= */
.hero__guarantee {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-cool-bright);
  background: rgba(125, 198, 224, 0.10);
  border: 1px solid rgba(125, 198, 224, 0.32);
  border-radius: var(--r-pill);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 28px;
  box-shadow: 0 8px 30px -10px rgba(125, 198, 224, 0.25);
}
.hero__guarantee svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex-shrink: 0;
}
.hero__sub strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* =========================================================
   Social Proof Strip
   ========================================================= */
/* Register the angle as an animatable custom property so the conic-gradient can transition smoothly */
@property --proof-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.proof-strip {
  padding: 30px var(--pad-x) 80px;
  max-width: var(--container);
  margin: 0 auto;
}

.proof-strip__inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 18px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  flex-wrap: wrap;
}

/* Hide the inline dividers — each stat is now its own card */
.proof-stat__divider { display: none; }

/* Each stat is now a self-contained bordered card with its OWN traveling wrap-around glow */
.proof-stat {
  position: relative;
  flex: 1;
  min-width: 170px;
  padding: 32px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  isolation: isolate;
}

/* Traveling glow that wraps around each stat individually */
.proof-stat::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(
    from var(--proof-angle, 0deg),
    transparent 0deg,
    transparent 220deg,
    rgba(125, 198, 224, 0.22) 265deg,
    rgba(125, 198, 224, 0.60) 305deg,
    rgba(195, 235, 245, 0.95) 342deg,
    rgba(255, 255, 255, 1) 355deg,
    transparent 360deg
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
  animation: proofWrap 5s linear infinite;
  z-index: 1;
  filter: drop-shadow(0 0 5px rgba(125, 198, 224, 0.45));
}

/* All four cards animate in sync — same delay, same duration, peak at the same moment */

@keyframes proofWrap {
  to { --proof-angle: 360deg; }
}

/* Fallback for browsers without @property support */
@supports not (background: paint(something)) {
  .proof-stat::before {
    background: linear-gradient(90deg, transparent, rgba(125, 198, 224, 0.5), transparent);
    animation: none;
  }
}

.proof-stat {
  flex: 1;
  min-width: 130px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.proof-stat__num {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.proof-stat__label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.proof-stat__divider {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, transparent, var(--border-mid), transparent);
  flex-shrink: 0;
}

/* =========================================================
   Offer Summary Box
   ========================================================= */
.offer-box {
  position: relative;
  max-width: 840px;
  margin: 0 auto 90px;
  padding: 48px clamp(24px, 4vw, 56px);
  background: linear-gradient(135deg, rgba(28, 75, 110, 0.65) 0%, rgba(18, 56, 87, 0.50) 100%);
  border: 1px solid rgba(255, 126, 84, 0.30);
  border-radius: var(--r-lg);
  text-align: center;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card), 0 0 60px -20px var(--accent-glow);
}

.offer-box__top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-bright) 50%, var(--accent) 100%);
}

.offer-box__title {
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.offer-box__sub {
  font-size: 15.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 auto 22px;
  max-width: 580px;
}

.offer-box__price {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 18px;
}
.offer-box__price strong {
  color: var(--accent-bright);
  font-weight: 800;
  font-size: 1.2em;
  letter-spacing: -0.01em;
}
.offer-box__price span {
  font-size: 0.7em;
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 2px;
}

.offer-box__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.30);
  border-radius: var(--r-pill);
  color: #4ade80;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 30px;
}
.offer-box__badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* =========================================================
   Engine Headers + Cards
   ========================================================= */
.engine-header {
  text-align: center;
  margin: 70px auto 36px;
  max-width: 640px;
}

.engine-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255, 126, 84, 0.10);
  border: 1px solid rgba(255, 126, 84, 0.30);
  border-radius: var(--r-pill);
  margin-bottom: 20px;
}
.engine-tag svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.engine-header__title {
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.engine-header__sub {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.engine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-bottom: 30px;
}

.engine-card {
  position: relative;
  padding: 28px 26px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition:
    transform 0.32s cubic-bezier(0.2, 0.8, 0.3, 1),
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.engine-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 160, 130, 0.55);
  background: var(--bg-card-hover);
  box-shadow: 0 0 0 1px rgba(255, 160, 130, 0.32), 0 18px 50px -20px var(--accent-glow);
}

.engine-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: rgba(255, 126, 84, 0.12);
  border: 1px solid rgba(255, 126, 84, 0.25);
  color: var(--accent-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.3, 1), background 0.3s ease;
}
.engine-card__icon svg {
  width: 22px;
  height: 22px;
}
.engine-card:hover .engine-card__icon {
  transform: scale(1.08) rotate(-4deg);
  background: rgba(255, 126, 84, 0.22);
}

.engine-card h4 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.005em;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.engine-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.engine-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.engine-chip {
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(125, 198, 224, 0.12);
  color: var(--accent-cool-bright);
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.engine-chip--hot {
  background: rgba(255, 126, 84, 0.14);
  color: var(--accent-bright);
}

/* =========================================================
   Engine Comparison
   ========================================================= */
.engine-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 820px;
  margin: 70px auto 20px;
}

.compare-card {
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  backdrop-filter: blur(20px);
  text-align: center;
}

.compare-card__tag {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.compare-card__timeline {
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.compare-card p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.engine-compare__footer {
  text-align: center;
  font-size: 16.5px;
  color: var(--text-secondary);
  margin-top: 4px;
}
.engine-compare__footer strong {
  color: var(--accent-bright);
  font-weight: 800;
}

/* =========================================================
   Pricing
   ========================================================= */
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto 20px;
}

.pricing-card {
  position: relative;
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--r-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card--featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(28, 75, 110, 0.7) 0%, var(--bg-card) 100%);
  box-shadow: 0 0 80px -20px var(--accent-glow), 0 0 0 1px rgba(255, 126, 84, 0.25);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 18px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  box-shadow: 0 10px 24px -6px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.pricing-card__head {
  margin-bottom: 26px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-card__name {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.005em;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-card__amount {
  font-size: clamp(38px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.025em;
}

.pricing-card__period {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 600;
}

.pricing-card__features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.pricing-card__features li svg {
  width: 16px;
  height: 16px;
  color: var(--accent-cool-bright);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card__highlight {
  color: var(--accent-bright) !important;
  font-weight: 600;
}
.pricing-card__highlight svg {
  color: var(--accent) !important;
}

.pricing-card__cta {
  width: 100%;
  justify-content: center;
}

.pricing__note {
  text-align: center;
  font-size: 13.5px;
  color: var(--text-muted);
  margin-top: 18px;
}

/* Responsive */
@media (max-width: 760px) {
  .proof-strip__inner { flex-direction: column; gap: 24px; padding: 28px 24px; }
  .proof-stat__divider { width: 60%; height: 1px; background: linear-gradient(90deg, transparent, var(--border-mid), transparent); }
  .engine-compare { grid-template-columns: 1fr; margin-top: 50px; }
  .pricing__grid { grid-template-columns: 1fr; }
  .offer-box { padding: 36px 24px; margin-bottom: 60px; }
  .engine-header { margin: 50px auto 30px; }
}

/* =========================================================
   Funnel — Multi-step intake quiz
   ========================================================= */

.funnel {
  position: relative;
  isolation: isolate;
}
.funnel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(255, 126, 84, 0.10) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 20%, rgba(125, 198, 224, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.funnel__card {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 36px clamp(24px, 4vw, 48px) 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card), 0 0 60px -20px rgba(255, 126, 84, 0.18);
}

/* Progress bar */
.funnel__progress {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
}
.funnel__progress-track {
  flex: 1;
  height: 6px;
  background: rgba(130, 200, 230, 0.10);
  border-radius: var(--r-pill);
  overflow: hidden;
}
.funnel__progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-bright) 100%);
  border-radius: var(--r-pill);
  transition: width 0.55s cubic-bezier(0.2, 0.8, 0.3, 1);
  box-shadow: 0 0 14px var(--accent-glow);
}
.funnel__progress-label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

/* Steps container */
.funnel__steps {
  position: relative;
  min-height: 480px;
}

.funnel__step {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.funnel__step.is-active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.funnel__q {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.funnel__qsub {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 26px;
  max-width: 600px;
}

/* Option grid */
.funnel__options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.funnel__option {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 18px 22px;
  text-align: left;
  background: rgba(255, 255, 255, 0.025);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--r-md);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.25s ease;
  font: inherit;
  color: var(--text-primary);
}

.funnel__option:hover {
  border-color: rgba(255, 160, 130, 0.5);
  background: rgba(255, 126, 84, 0.06);
  transform: translateY(-1px);
}

.funnel__option:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 126, 84, 0.3);
}

.funnel__option.is-selected {
  border-color: var(--accent);
  background: rgba(255, 126, 84, 0.14);
  box-shadow: 0 0 0 1px var(--accent), 0 10px 30px -10px var(--accent-glow);
}

/* Checkmark indicator for selected state */
.funnel__option.is-selected::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 13px;
  background-position: center;
  background-repeat: no-repeat;
}

.funnel__option-main {
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.3;
}

.funnel__option-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-bright);
  letter-spacing: 0.04em;
  line-height: 1.3;
}

/* Form */
.funnel__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.funnel__field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

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

.funnel__field label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
}
.funnel__field .req { color: var(--accent); margin-left: 2px; }
.funnel__field .opt { color: var(--text-muted); font-weight: 500; }

.funnel__field input,
.funnel__field textarea {
  font: inherit;
  font-size: 15px;
  color: var(--text-primary);
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--r-sm);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.25s ease;
  width: 100%;
  resize: vertical;
}
.funnel__field textarea { min-height: 80px; }

.funnel__field input::placeholder,
.funnel__field textarea::placeholder {
  color: var(--text-dim);
}

.funnel__field input:focus,
.funnel__field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(255, 126, 84, 0.18);
}

.funnel__field input.is-invalid,
.funnel__field textarea.is-invalid {
  border-color: #f87171;
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.15);
}

.funnel__error {
  padding: 12px 14px;
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.35);
  border-radius: var(--r-sm);
  color: #fca5a5;
  font-size: 13.5px;
  font-weight: 500;
}

/* Nav buttons */
.funnel__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.funnel__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.25s ease, color 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}
.funnel__btn svg { width: 16px; height: 16px; transition: transform 0.2s ease; }

.funnel__btn--prev {
  background: transparent;
  border: 1.5px solid var(--border-mid);
  color: var(--text-secondary);
}
.funnel__btn--prev:hover:not(:disabled) {
  border-color: var(--border-strong);
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}
.funnel__btn--prev:hover:not(:disabled) svg { transform: translateX(-3px); }
.funnel__btn--prev:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.funnel__btn--next {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  border: none;
  color: #fff;
  box-shadow: 0 12px 30px -10px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.funnel__btn--next:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px -10px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.funnel__btn--next:hover:not(:disabled) svg { transform: translateX(3px); }
.funnel__btn--next:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}
.funnel__btn--next.is-submit {
  padding: 14px 28px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 13.5px;
}
.funnel__btn--next.is-loading {
  cursor: wait;
  opacity: 0.7;
}
.funnel__btn--next.is-loading svg { animation: funnelSpin 0.9s linear infinite; }

@keyframes funnelSpin {
  to { transform: rotate(360deg); }
}

/* Thank-you screen */
.funnel__thanks {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 60px clamp(24px, 4vw, 48px);
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-lg);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card), 0 0 80px -20px var(--accent-glow);
  animation: funnelAppear 0.6s cubic-bezier(0.2, 0.8, 0.3, 1);
}

.funnel__thanks-icon {
  font-size: 56px;
  margin-bottom: 20px;
  display: inline-block;
  animation: funnelBounce 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.funnel__thanks-title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #ffffff 0%, #c8edf7 60%, #7dc6e0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}

.funnel__thanks-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto 32px;
}

.funnel__thanks-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

@keyframes funnelAppear {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes funnelBounce {
  0%   { transform: scale(0) rotate(-30deg); }
  60%  { transform: scale(1.15) rotate(8deg); }
  100% { transform: scale(1) rotate(0); }
}

/* Responsive */
@media (max-width: 720px) {
  .funnel__card { padding: 28px 20px 24px; }
  .funnel__steps { min-height: 420px; }
  .funnel__options { grid-template-columns: 1fr; }
  .funnel__field-row { grid-template-columns: 1fr; }
  .funnel__nav { gap: 10px; }
  .funnel__btn { padding: 12px 20px; font-size: 13.5px; }
  .funnel__progress-label { font-size: 11.5px; }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq__list {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.faq__item {
  position: relative;
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s ease;
}
.faq__item:first-child {
  border-top: 1px solid var(--border-subtle);
}

/* Accent line that grows in along the top edge when the item opens */
.faq__item::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-bright) 0%, rgba(96, 165, 250, 0.4) 70%, transparent);
  transition: width 0.55s cubic-bezier(0.2, 0.8, 0.3, 1);
  pointer-events: none;
}
.faq__item[open]::before { width: 220px; }

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 6px;
  font-size: clamp(16px, 1.55vw, 20px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.25s ease, padding 0.35s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::marker { content: ""; }
.faq__q > span:first-child { flex: 1; }

.faq__item:hover .faq__q { padding-left: 14px; color: var(--accent-bright); }
.faq__item[open] .faq__q { color: var(--text-primary); padding-left: 14px; }

/* +/− icon — animated rotation on open */
.faq__icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--accent-bright);
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.3, 1), opacity 0.25s ease;
}
.faq__icon::before {
  width: 2px;
  height: 16px;
  transform: translate(-50%, -50%);
}
.faq__icon::after {
  width: 16px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.faq__item[open] .faq__icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq__item[open] .faq__icon::after {
  transform: translate(-50%, -50%) rotate(180deg);
}

.faq__a {
  padding: 0 6px 28px;
  max-width: 780px;
  animation: faqFade 0.45s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.faq__a p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

@keyframes faqFade {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   About Page
   ========================================================= */

/* Active nav link state */
.nav__links a.is-active,
.nav__links a[aria-current="page"] {
  color: var(--text-primary);
  background: rgba(96, 165, 250, 0.12);
}

/* ----- About hero ----- */
.about-hero {
  position: relative;
  padding: 180px var(--pad-x) 80px;
  min-height: 68vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 70% 50% at 50% 25%, rgba(59, 130, 246, 0.22) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 85%, rgba(29, 78, 216, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse 50% 35% at 85% 75%, rgba(96, 165, 250, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, #00060f 0%, #000814 60%, #00060f 100%);
}

.about-hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(96, 165, 250, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 165, 250, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 80%);
}

.about-hero__inner {
  max-width: var(--container);
  width: 100%;
  position: relative;
}

.about-hero__inner .tag {
  margin-bottom: 28px;
}

.about-hero__name {
  font-size: clamp(56px, 10vw, 140px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.about-hero__title {
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.about-hero__sub {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto;
}

/* Cascade the hero reveals — name lands first, supporting text follows */
.about-hero .reveal { transition-duration: 0.65s; transition-timing-function: cubic-bezier(0.2, 0.8, 0.3, 1); }
.about-hero .tag.reveal { transition-delay: 0ms; }
.about-hero .about-hero__name.reveal { transition-delay: 80ms; }
.about-hero .about-hero__title.reveal { transition-delay: 200ms; }
.about-hero .about-hero__sub.reveal { transition-delay: 280ms; }

/* ----- About intro: text + photo ----- */
.about-intro__layout {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.about-intro__copy .section__title {
  margin-bottom: 32px;
}

.about-intro__copy p {
  font-size: clamp(15px, 1.15vw, 17px);
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 22px;
}
.about-intro__copy p:last-child { margin-bottom: 0; }

/* Hockey photo — magazine-style asymmetric framing */
.hayden-photo {
  position: relative;
  max-width: 540px;
  margin-left: auto;
  padding: 0 28px 28px 0;
}

.hayden-photo__bg {
  position: absolute;
  top: 28px;
  left: 26px;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  border-radius: var(--r-md);
  z-index: 0;
  opacity: 0.85;
  box-shadow: 0 40px 80px -30px rgba(59, 130, 246, 0.45);
}

.hayden-photo__img {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  transform: rotate(-1.5deg);
  border-radius: var(--r-md);
  box-shadow:
    0 30px 70px -20px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.3, 1);
}

.hayden-photo:hover .hayden-photo__img {
  transform: rotate(0deg) translateY(-6px);
}

.hayden-photo__caption {
  position: relative;
  z-index: 2;
  margin: 18px 8px 0 auto;
  font-size: 13.5px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.55;
  text-align: right;
  max-width: 90%;
  font-family: ui-serif, "Iowan Old Style", "Apple Garamond", Georgia, serif;
}

/* ----- Stats strip ----- */
.about-stats {
  padding: 30px var(--pad-x) 60px;
  position: relative;
}

.about-stats__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 5vw, 60px);
  padding: 48px clamp(30px, 5vw, 60px);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
}

.stat {
  flex: 1;
  text-align: center;
}

.stat__num {
  display: block;
  font-size: clamp(42px, 5.8vw, 76px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.025em;
  background: linear-gradient(180deg, #ffffff 0%, #c8edf7 50%, #7dc6e0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}
.stat__num small {
  font-size: 0.5em;
  font-weight: 700;
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
  background: none;
  margin-left: 4px;
  vertical-align: 0.25em;
}

.stat__label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.stat__divider {
  width: 1px;
  height: 64px;
  background: linear-gradient(180deg, transparent, var(--border-mid), transparent);
  flex-shrink: 0;
}

/* ----- Pull quote ----- */
.about-quote {
  position: relative;
  padding: clamp(90px, 14vh, 160px) var(--pad-x);
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  isolation: isolate;
}

.about-quote__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(59, 130, 246, 0.14) 0%, transparent 70%);
}

.about-quote__mark {
  display: block;
  font-family: ui-serif, "Iowan Old Style", Georgia, serif;
  font-size: clamp(80px, 12vw, 140px);
  line-height: 0.3;
  color: var(--accent-bright);
  opacity: 0.6;
  margin-bottom: 6px;
  font-style: normal;
}

.about-quote__text {
  position: relative;
  font-family: ui-serif, "Iowan Old Style", "Apple Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4.4vw, 58px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  max-width: 920px;
  margin: 0 auto 32px;
  font-style: italic;
}

.about-quote__attribution {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ----- Mission ----- */
.about-mission__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.about-mission__head .section__title {
  margin-bottom: 0;
}

.about-mission__copy p {
  font-size: clamp(15px, 1.15vw, 17px);
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 22px;
}
.about-mission__copy p:last-child { margin-bottom: 0; }

/* =========================================================
   Landing Page (get-plan.html) — single-conversion ad page
   ========================================================= */
.page-landing {
  background: var(--bg-base);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Minimal header — logo only, no nav links */
.landing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 44px);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  gap: 16px;
}
.landing-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
}
.landing-logo .nav__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--accent-cool) 0%, var(--accent-cool-deep) 100%);
  border-radius: 10px;
  font-weight: 800;
  font-size: 13px;
  color: #fff;
}
.landing-logo-name {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
}

.landing-trust-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255, 126, 84, 0.10);
  border: 1px solid rgba(255, 126, 84, 0.30);
  border-radius: var(--r-pill);
  white-space: nowrap;
  cursor: help;
}
.landing-trust-pill__bolt {
  width: 13px;
  height: 13px;
  fill: var(--accent);
  flex-shrink: 0;
}
.landing-trust-pill__info {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  opacity: 0.7;
  flex-shrink: 0;
  margin-left: 2px;
  transition: opacity 0.2s ease;
}
.landing-trust-pill:hover .landing-trust-pill__info,
.landing-trust-pill:focus .landing-trust-pill__info { opacity: 1; }

/* Guarantee tooltip — popover on desktop hover, expanded on mobile tap (focus) */
.landing-trust-pill__tooltip {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 320px;
  max-width: calc(100vw - 32px);
  padding: 14px 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-md);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: normal;
  text-transform: none;
  color: var(--text-secondary);
  text-align: left;
  white-space: normal;
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 100;
  pointer-events: none;
}
.landing-trust-pill--has-tooltip:hover .landing-trust-pill__tooltip,
.landing-trust-pill--has-tooltip:focus .landing-trust-pill__tooltip,
.landing-trust-pill--has-tooltip:focus-visible .landing-trust-pill__tooltip,
.landing-trust-pill--has-tooltip:focus-within .landing-trust-pill__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Desktop/mobile option text swap (Step 2 — shorter labels on mobile) */
.opt-short { display: none; }
@media (max-width: 768px) {
  .opt-full { display: none; }
  .opt-short { display: inline; }
}

/* Field helper text below optional form inputs */
.funnel__field-help {
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Main container — narrower than the marketing site, focuses attention */
.landing-main {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  padding: clamp(36px, 7vh, 70px) clamp(20px, 4vw, 40px) clamp(40px, 6vh, 60px);
  flex: 1;
}

/* Hook hero above the funnel */
.landing-hero {
  text-align: center;
  margin-bottom: 40px;
}
.landing-hero .tag {
  margin-bottom: 22px;
}
.landing-hero h1 {
  font-size: clamp(30px, 5.2vw, 54px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.landing-sub {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto 28px;
}

/* Compact trust strip — visible right before the funnel */
.landing-trust-row {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  padding: 12px 22px;
  background: rgba(125, 198, 224, 0.10);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-pill);
  font-size: 13.5px;
  color: var(--text-secondary);
  backdrop-filter: blur(10px);
}
.landing-trust-row strong {
  color: var(--accent-cool-bright);
  font-weight: 700;
  margin-right: 4px;
}
.landing-trust-row .dot {
  color: var(--text-muted);
  opacity: 0.6;
}

/* Funnel section override — strip the marketing-site padding so it sits closer to the hook */
.landing-funnel {
  padding: 0 !important;
  max-width: none !important;
  margin: 0 !important;
}

/* Founder card — small inline trust signal */
.landing-founder {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  max-width: 680px;
  margin: 56px auto 0;
  padding: 28px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
}

.landing-founder__photo {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}
.landing-founder__photo-bg {
  position: absolute;
  inset: 0;
  transform: translate(8px, 8px);
  background: linear-gradient(135deg, var(--accent-cool) 0%, var(--accent-cool-deep) 100%);
  border-radius: var(--r-md);
  opacity: 0.85;
  z-index: 0;
  box-shadow: 0 18px 40px -16px rgba(125, 198, 224, 0.5);
}
.landing-founder__photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-md);
  transform: rotate(-2deg);
  box-shadow:
    0 18px 40px -14px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.landing-founder__photo:hover img {
  transform: rotate(0deg) translateY(-2px);
}

.landing-founder__text {
  min-width: 0;
}
.landing-founder__role {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-cool-bright);
  margin-bottom: 6px;
}
.landing-founder__name {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.landing-founder__text p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

.landing-reassurance {
  margin: 24px auto 0;
  max-width: 560px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Quiet single-line footer — only exit path */
.landing-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 28px 20px 26px;
  font-size: 13px;
  color: var(--text-muted);
  border-top: 1px solid var(--border-subtle);
}
.landing-footer a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}
.landing-footer a:hover { color: var(--accent-cool-bright); }

@media (max-width: 600px) {
  .landing-header { padding: 14px 18px; gap: 10px; }
  .landing-logo-name { display: none; }
  .landing-trust-pill { font-size: 10.5px; padding: 7px 12px; letter-spacing: 0.04em; }
  .landing-trust-row { font-size: 12.5px; gap: 6px 10px; padding: 10px 16px; }
  .landing-hero { margin-bottom: 28px; }
  .landing-main { padding-top: 28px; }
  /* Founder card stacks vertically on mobile */
  .landing-founder {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 26px 22px;
    gap: 20px;
  }
  .landing-founder__photo {
    width: 110px;
    height: 110px;
    margin: 0 auto;
  }
}

/* =========================================================
   Funnel — Cal.com CTA on the Thank You screen
   ========================================================= */
.funnel__thanks-cta {
  margin: 28px 0 14px;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(255, 126, 84, 0.10), rgba(255, 126, 84, 0.04));
  border: 1px solid rgba(255, 126, 84, 0.30);
  border-radius: var(--r-md);
  text-align: center;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.funnel__thanks-cta-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 14px;
}
.funnel__thanks-cta-btn {
  width: 100%;
  justify-content: center;
}

/* =========================================================
   Mobile Sticky CTA — appears when user scrolls past the funnel mid-quiz
   ========================================================= */
.funnel-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 12px 16px calc(14px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, transparent 0%, rgba(7, 39, 63, 0.85) 35%, rgba(7, 39, 63, 0.95) 100%);
  display: flex;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
/* Same fix — respect the [hidden] attribute */
.funnel-sticky[hidden] {
  display: none !important;
}
.funnel-sticky.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.funnel-sticky__btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 380px;
  padding: 15px 26px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  border: none;
  border-radius: var(--r-pill);
  box-shadow: 0 16px 40px -10px rgba(255, 126, 84, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.funnel-sticky__btn:active {
  transform: scale(0.97);
}
.funnel-sticky__btn svg {
  width: 17px;
  height: 17px;
}

/* Sticky CTA is mobile-only — desktop never sees it */
@media (min-width: 761px) {
  .funnel-sticky { display: none !important; }
}

/* =========================================================
   Exit-Intent Popup — desktop only, fires once per session
   ========================================================= */
.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: exitPopupFadeIn 0.35s cubic-bezier(0.2, 0.8, 0.3, 1);
}
/* CRITICAL: explicit hidden state — without this, [hidden] is overridden by display:flex above */
.exit-popup[hidden] {
  display: none !important;
}

.exit-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 27, 50, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.exit-popup__card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 500px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-lg);
  padding: 40px 38px 34px;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.85);
  animation: exitPopupCardIn 0.45s cubic-bezier(0.2, 0.8, 0.3, 1);
}

.exit-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  color: var(--text-secondary);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.exit-popup__close:hover {
  background: rgba(255, 255, 255, 0.10);
  color: var(--text-primary);
}
.exit-popup__close:active { transform: scale(0.95); }

.exit-popup__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.exit-popup__title {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.exit-popup__sub {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 22px;
}

.exit-popup__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.exit-popup__input {
  width: 100%;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 15px;
  background: var(--bg-base);
  border: 1px solid var(--border-mid);
  border-radius: 10px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.exit-popup__input::placeholder { color: var(--text-muted); }
.exit-popup__input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 126, 84, 0.15);
}

.exit-popup__submit {
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 28px -10px rgba(255, 126, 84, 0.5);
}
.exit-popup__submit:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px -10px rgba(255, 126, 84, 0.6);
}
.exit-popup__submit:disabled { opacity: 0.6; cursor: not-allowed; }

.exit-popup__success {
  margin-top: 14px;
  padding: 14px 16px;
  background: rgba(34, 197, 94, 0.10);
  border: 1px solid rgba(34, 197, 94, 0.30);
  border-radius: 10px;
  color: #4ade80;
  font-size: 14px;
  text-align: center;
  font-weight: 600;
}

.exit-popup__error {
  margin-top: 10px;
  font-size: 13px;
  color: #fca5a5;
  text-align: center;
}

@keyframes exitPopupFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes exitPopupCardIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Exit popup is desktop-only — never shown on mobile/tablet */
@media (max-width: 768px) {
  .exit-popup { display: none !important; }
}

/* =========================================================
   SEO Websites — pitch section (replaces Pricing)
   ========================================================= */
.seo-pitch {
  position: relative;
  isolation: isolate;
}
.seo-pitch::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 55% 45% at 18% 28%, rgba(125, 198, 224, 0.10) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 82% 72%, rgba(255, 126, 84, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

/* ----- Comparison split ----- */
.seo-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: var(--container);
  margin: 0 auto 70px;
}

.seo-compare__col {
  position: relative;
  padding: 36px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.seo-compare__col:hover { transform: translateY(-4px); }

.seo-compare__col--bad {
  opacity: 0.78;
}
.seo-compare__col--bad::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 126, 84, 0.55), transparent);
}

.seo-compare__col--good {
  border-color: var(--border-mid);
  box-shadow: 0 0 0 1px rgba(125, 198, 224, 0.18), 0 30px 60px -30px rgba(125, 198, 224, 0.25);
}
.seo-compare__col--good::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cool-bright), var(--accent-cool), transparent);
}
.seo-compare__col--good:hover {
  border-color: var(--border-strong);
  box-shadow: 0 0 0 1px rgba(125, 198, 224, 0.35), 0 36px 70px -30px rgba(125, 198, 224, 0.40);
}

.seo-compare__label {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.seo-compare__col--good .seo-compare__label { color: var(--accent-cool-bright); }

.seo-compare__title {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 22px;
}

.seo-compare__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.seo-compare__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-secondary);
}
.seo-compare__col--bad .seo-compare__list li { color: var(--text-muted); }

.seo-compare__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  margin-top: 1px;
}
.seo-compare__icon--bad {
  background: rgba(255, 126, 84, 0.12);
  color: var(--accent);
}
.seo-compare__icon--good {
  background: rgba(125, 198, 224, 0.16);
  color: var(--accent-cool-bright);
}

/* ----- Feature cards ----- */
.seo-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 60px;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.seo-feature {
  position: relative;
  padding: 28px 24px 30px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}
.seo-feature:hover {
  transform: translateY(-5px);
  border-color: var(--border-mid);
  box-shadow: 0 0 0 1px rgba(125, 198, 224, 0.30), 0 22px 50px -20px rgba(125, 198, 224, 0.30);
}

.seo-feature__icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(125, 198, 224, 0.10);
  border: 1px solid var(--border-mid);
  border-radius: 14px;
  color: var(--accent-cool-bright);
  margin-bottom: 18px;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.3, 1), background 0.3s ease, box-shadow 0.4s ease;
}
.seo-feature__icon svg { width: 26px; height: 26px; transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.3, 1); }

/* Per-icon hover animations — each card's icon has its own personality */
.seo-feature:hover .seo-feature__icon {
  background: rgba(125, 198, 224, 0.20);
  box-shadow: 0 0 22px rgba(125, 198, 224, 0.40);
}
.seo-feature:hover .seo-feature__icon--search svg { transform: scale(1.15) rotate(-8deg); }
.seo-feature:hover .seo-feature__icon--bolt svg    { transform: scale(1.18) rotate(6deg); }
.seo-feature:hover .seo-feature__icon--calendar svg{ transform: scale(1.12) translateY(-1px); }
.seo-feature:hover .seo-feature__icon--shield svg  { transform: scale(1.14); }

.seo-feature h4 {
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.seo-feature p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ----- Closing CTA callout ----- */
.seo-pitch__cta {
  max-width: 720px;
  margin: 0 auto;
  padding: 36px 32px;
  text-align: center;
  background: linear-gradient(135deg, rgba(125, 198, 224, 0.10), rgba(125, 198, 224, 0.04));
  border: 1px solid var(--border-mid);
  border-radius: var(--r-lg);
  backdrop-filter: blur(16px);
}
.seo-pitch__line {
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
  margin-bottom: 22px;
}
.seo-pitch__line strong {
  font-weight: 800;
  letter-spacing: -0.005em;
}

/* ----- Responsive ----- */
@media (max-width: 1024px) {
  .seo-features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .seo-compare { grid-template-columns: 1fr; gap: 16px; margin-bottom: 50px; }
  .seo-compare__col { padding: 28px 24px; }
  .seo-features { grid-template-columns: 1fr; gap: 14px; }
  .seo-feature { padding: 24px 22px; }
  .seo-pitch__cta { padding: 28px 22px; }
}

/* =========================================================
   Mobile conversion fixes (≤768px) — landing page + funnel
   ========================================================= */
@media (max-width: 768px) {
  /* 1a + 1b: Hero typography tighter on mobile, line-height 1.15, less padding */
  .landing-main {
    padding-top: clamp(20px, 4vh, 36px) !important;
  }
  .landing-hero {
    margin-bottom: 28px;
  }
  .landing-hero h1 {
    font-size: clamp(26px, 7.2vw, 36px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
  }
  .landing-sub {
    font-size: 14.5px;
    line-height: 1.4;
    margin-bottom: 22px;
    max-width: 100%;
  }
  .landing-hero .tag {
    margin-bottom: 16px;
  }
  .landing-trust-row {
    font-size: 12px;
    padding: 9px 14px;
  }

  /* 1d: Reduce quiz option card padding ~20% on mobile */
  .funnel__option {
    padding: 14px 16px;
  }
  .funnel__option-tag {
    font-size: 11.5px;
  }

  /* 1e: Sticky progress bar within each quiz card */
  .funnel__progress {
    position: sticky;
    top: 0;
    z-index: 5;
    background: var(--bg-elevated);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    padding: 14px 4px 12px;
    margin: -8px -4px 16px;
    border-radius: var(--r-md);
    box-shadow: 0 4px 12px -8px rgba(0, 0, 0, 0.4);
  }

  /* 1h: Inputs must be ≥16px to prevent iOS Safari auto-zoom; thumb-friendly tap targets */
  .funnel__field input,
  .funnel__field textarea {
    font-size: 16px !important;
    min-height: 52px;
    padding: 14px 16px;
  }
  .funnel__field textarea {
    min-height: 96px;
  }

  /* 2: Submit button tap feedback */
  .funnel__btn--next:active,
  .funnel__btn.is-submit:active {
    transform: scale(0.97);
  }

  /* Guarantee tooltip — full-width-ish on mobile, anchored below the pill */
  .landing-trust-pill__tooltip {
    width: calc(100vw - 32px);
    right: -8px;
    font-size: 12.5px;
    padding: 12px 16px;
  }
}

/* =========================================================
   Founder card — shrink and tighten on mobile
   ========================================================= */
@media (max-width: 768px) {
  /* 1f: Smaller founder photo + circular crop on mobile, tighter spacing */
  .landing-founder {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px 22px;
    gap: 18px;
    margin-top: 40px;
  }
  .landing-founder__photo {
    width: 140px;
    height: 140px;
    margin: 0 auto;
    border-radius: 50%;
  }
  .landing-founder__photo-bg {
    border-radius: 50%;
    transform: translate(6px, 6px);
  }
  .landing-founder__photo img {
    border-radius: 50%;
    transform: rotate(0deg);
    object-position: center 20%;
  }
  .landing-founder__name {
    font-size: 22px;
    margin-bottom: 8px;
  }
  .landing-founder__text p {
    font-size: 13.5px;
    line-height: 1.5;
  }
  .landing-founder__role {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .process__layout, .trust__layout { grid-template-columns: 1fr; }
  .process__preview { position: relative; top: 0; height: 380px; }

  /* About page */
  .about-intro__layout,
  .about-mission__layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hayden-photo { margin: 0 auto; max-width: 540px; }
  .hayden-photo__caption { text-align: center; max-width: 100%; margin: 18px auto 0; }
}

@media (max-width: 760px) {
  .nav { gap: 6px; padding: 6px 6px 6px 10px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__links.is-open {
    display: flex;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 14px;
    background: rgba(8, 14, 28, 0.95);
    border: 1px solid var(--border-mid);
    border-radius: var(--r-md);
    backdrop-filter: blur(20px);
  }
  .nav__links.is-open a { display: block; text-align: center; }

  .services__grid, .trust__cards { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .service-card__visual { height: 200px; }
  .hero { padding-top: 120px; min-height: auto; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .section { padding: 80px var(--pad-x); }
  .section__head { margin-bottom: 48px; }
  .trust__bgword { font-size: 80px; }

  /* About page mobile */
  .about-hero { padding: 130px var(--pad-x) 60px; min-height: auto; }
  .about-hero__name { font-size: clamp(44px, 12vw, 76px); }
  .about-stats__inner {
    flex-direction: column;
    gap: 32px;
    padding: 36px 26px;
  }
  .stat__divider {
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-mid), transparent);
  }
  .hayden-photo { padding: 0 18px 18px 0; }
  .hayden-photo__bg { top: 18px; left: 18px; }
  .about-quote { padding: 70px var(--pad-x); }
  .about-quote__text { font-size: clamp(22px, 6.5vw, 34px); }
}
