/* ─── Starting Landing — Design System ───────────────────────── */
:root{
  /* Brand */
  --brand-50:  #e8f2ff;
  --brand-100: #cfe3ff;
  --brand-200: #a6caff;
  --brand-300: #74acff;
  --brand-400: #4793ff;
  --brand-500: #1A7CFF;   /* primary */
  --brand-600: #0e62db;
  --brand-700: #0b4eae;
  --brand-800: #0c4188;
  --brand-900: #0a346b;

  /* Neutrals (cool slate) */
  --ink-0:  #ffffff;
  --ink-25: #fbfcfe;
  --ink-50: #f5f7fb;
  --ink-100:#eef1f7;
  --ink-150:#e3e8f1;
  --ink-200:#d4dbe7;
  --ink-300:#b2bccb;
  --ink-400:#8390a5;
  --ink-500:#5d6a82;
  --ink-600:#3f4a60;
  --ink-700:#2a3245;
  --ink-800:#181d2c;
  --ink-900:#0b0f1c;

  /* Accent (only for highlight uses) */
  --acc-mint: oklch(74% 0.10 175);
  --acc-amber: oklch(78% 0.13 78);

  /* Semantic */
  --bg: var(--ink-25);
  --bg-alt: var(--ink-50);
  --surface: var(--ink-0);
  --text: var(--ink-900);
  --text-2: var(--ink-600);
  --text-3: var(--ink-400);
  --border: var(--ink-150);
  --border-strong: var(--ink-200);
  --primary: var(--brand-500);
  --primary-deep: var(--brand-700);
  --primary-soft: var(--brand-50);

  /* Type */
  --font-sans: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-mono: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Radius */
  --r-xs: 6px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 22px;
  --r-2xl: 28px;

  /* Shadows */
  --sh-xs: 0 1px 2px rgba(15,23,42,.04), 0 0 0 1px rgba(15,23,42,.04);
  --sh-sm: 0 2px 4px rgba(15,23,42,.04), 0 1px 2px rgba(15,23,42,.06);
  --sh-md: 0 6px 16px -4px rgba(15,23,42,.08), 0 2px 4px rgba(15,23,42,.04);
  --sh-lg: 0 24px 48px -16px rgba(20,44,108,.18), 0 8px 16px -8px rgba(20,44,108,.10);
  --sh-glow: 0 18px 60px -20px rgba(47,102,246,.45);

  /* Layout */
  --maxw: 1180px;
  --pad-x: clamp(20px, 4vw, 48px);

  /* Breakpoints — use in @media (sm ≤600, md ≤768, lg ≥900) */
  --bp-sm: 600px;
  --bp-md: 768px;
  --bp-lg: 900px;
}

[data-theme="dark"]{
  --bg:        #0a0e1a;
  --bg-alt:    #0f1422;
  --surface:   #141a2a;
  --text:      #f1f4fa;
  --text-2:    #b2bccb;
  --text-3:    #5d6a82;
  --border:    #1f2638;
  --border-strong: #2a3245;
  --primary-soft: #131c36;
  --logo-pill-bg:       #dde2ec;
  --logo-pill-bg-hover: #e8ecf4;
  --sh-md: 0 6px 16px -4px rgba(0,0,0,.4), 0 2px 4px rgba(0,0,0,.3);
  --sh-lg: 0 24px 48px -16px rgba(0,0,0,.5), 0 8px 16px -8px rgba(0,0,0,.3);
}

*,*::before,*::after{ box-sizing: border-box; }
html{ overflow-x: clip; scroll-behavior: smooth; }
html, body{ margin: 0; padding: 0; }
body{
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01","cv11";
  line-height: 1.5;
  letter-spacing: -0.01em;
  font-size: 16px;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: default; }
a { color: inherit; text-decoration: none; }

main{
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

/* ─── Layout helpers ─────────────────────────────────────────── */
.wrap{ width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }
.eyebrow{
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--primary-deep);
  padding: 6px 10px; border-radius: 999px;
  background: var(--primary-soft);
  border: 1px solid color-mix(in oklab, var(--primary) 16%, transparent);
}
[data-theme="dark"] .eyebrow{ color: var(--brand-300); }
.section-title{
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin: 0;
  text-wrap: balance;
}
.section-sub{
  font-size: 16px;
  color: var(--text-2);
  margin: 14px 0 0;
  text-wrap: pretty;
  max-width: 620px;
}
.section-head{ display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; margin-bottom: 56px; }
.section-head .section-sub{ text-align: center; }

section{ padding: clamp(72px, 9vw, 128px) 0; position: relative; }
section.tight{ padding: clamp(48px, 6vw, 80px) 0; }

/* ─── Buttons ────────────────────────────────────────────────── */
.btn{
  display: inline-flex; align-items: center; gap: 8px;
  height: 48px; padding: 0 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 600; font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn.lg{ height: 56px; padding: 0 28px; font-size: 16px; }
.btn.sm{ height: 38px; padding: 0 14px; font-size: 13px; border-radius: 8px; }

.btn-primary{
  background: var(--primary);
  color: #fff;
  box-shadow: var(--sh-glow), 0 1px 0 rgba(255,255,255,.15) inset;
}
.btn-primary:hover{ background: var(--brand-600); transform: translateY(-1px); }
.btn-ghost{
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover{ background: var(--bg-alt); border-color: var(--ink-300); }
.btn-soft{
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
  box-shadow: var(--sh-xs);
}
.btn-soft:hover{ border-color: var(--ink-300); }

.btn .arrow{ transition: transform .2s ease; }
.btn:hover .arrow{ transform: translateX(3px); }

/* ─── Nav ────────────────────────────────────────────────────── */
.nav{
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid color-mix(in oklab, var(--border) 70%, transparent);
}
/* Blur on ::before so fixed drawer/backdrop anchor to the viewport, not .nav */
.nav::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  background: color-mix(in oklab, var(--bg) 80%, transparent);
}
.nav-inner{ display: flex; align-items: center; justify-content: space-between; height: 68px; }
section[id]{ scroll-margin-top: 80px; }
.nav-logo{ display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 18px; letter-spacing: -0.02em; }
.starting-logo{ display: inline-flex; line-height: 0; }
.starting-logo-img{ display: block; width: auto; }
.starting-logo-img--light{ display: none; }
.starting-logo-img--dark{ display: block; }
[data-theme="light"] .starting-logo-img--light{ display: block; }
[data-theme="light"] .starting-logo-img--dark{ display: none; }
.nav-logo-mark{
  width: 26px; height: 26px; border-radius: 7px;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 13px;
  box-shadow: 0 4px 10px -2px color-mix(in oklab, var(--brand-500) 50%, transparent);
}
.nav-links{ gap: 32px; font-size: 14px; color: var(--text-2); }
.nav-links a:hover{ color: var(--text); }
.nav-cta{ display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.nav-toggle{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  margin-left: 4px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  flex-shrink: 0;
}
.nav-toggle:hover{ border-color: var(--border-strong); background: var(--bg-alt); }
.nav-backdrop{
  display: none;
  position: fixed;
  inset: 0;
  top: 68px;
  z-index: 48;
  border: 0;
  padding: 0;
  margin: 0;
  background: color-mix(in oklab, var(--ink-900) 45%, transparent);
  cursor: default;
}
body.nav-open{ overflow: hidden; }
@media (max-width: 899px){
  .nav.is-open{
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
  }
  .nav-links{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 68px;
    right: calc(-1 * min(320px, 100%));
    width: min(320px, 100%);
    height: calc(100dvh - 68px);
    padding: 20px var(--pad-x) 32px;
    gap: 2px;
    background: var(--bg);
    border-left: 1px solid var(--border);
    box-shadow: var(--sh-lg);
    transform: none;
    visibility: hidden;
    pointer-events: none;
    transition: right .25s ease, visibility .25s ease;
    z-index: 49;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links a{
    padding: 14px 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    border-radius: var(--r-sm);
  }
  .nav-links a:hover{ background: var(--bg-alt); }
  .nav.is-open .nav-links{
    right: 0;
    visibility: visible;
    pointer-events: auto;
  }
  .nav.is-open .nav-backdrop{ display: block; }
}
@media (min-width: 900px){
  .nav-toggle,
  .nav-backdrop{ display: none !important; }
  .nav-links{
    display: flex;
    flex-direction: row;
    align-items: center;
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
    visibility: visible;
    pointer-events: auto;
    overflow: visible;
  }
  .nav-links a{
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-2);
    border-radius: 0;
  }
  .nav-links a:hover{ background: transparent; color: var(--text); }
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero{
  padding-top: clamp(72px, 9vw, 120px);
  padding-bottom: clamp(40px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.hero-grid{
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, color-mix(in oklab, var(--ink-200) 35%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in oklab, var(--ink-200) 35%, transparent) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 30%, transparent 70%);
          mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 30%, transparent 70%);
  pointer-events: none;
}
[data-theme="dark"] .hero-grid{
  background-image:
    linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px);
}
.hero-glow{
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse at center, color-mix(in oklab, var(--primary) 22%, transparent), transparent 60%);
  pointer-events: none;
}
.hero-inner{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.hero-headline{
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 24px 0 0;
  text-wrap: balance;
  max-width: 920px;
}
.hero-headline .accent{
  display: block;
  margin-top: 0.22em;
  background: linear-gradient(120deg, var(--brand-500), var(--brand-700));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub{
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--text-2);
  margin: 22px 0 0;
  max-width: 600px;
  text-wrap: pretty;
}
.hero-cta{ display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; justify-content: center; }
.hero-meta{
  display: flex; gap: 18px; margin-top: 22px; font-size: 13px; color: var(--text-3);
  align-items: center; flex-wrap: wrap; justify-content: center;
}
.hero-meta .dot{ width: 4px; height: 4px; border-radius: 50%; background: var(--ink-300); }

.hero-product{
  position: relative;
  margin-top: clamp(48px, 6vw, 72px);
  border-radius: var(--r-xl);
  background: var(--surface);
  box-shadow: var(--sh-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  width: 100%;
  max-width: 1080px;
}

/* ─── Logos marquee ─────────────────────────────────────────── */
.logos{ padding: 56px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-alt); }
.logos-label{ text-align: center; font-size: 13px; color: var(--text-3); letter-spacing: .02em; margin-bottom: 28px; }
.logos-marquee-wrap{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.logos-marquee{
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 48px, #000 calc(100% - 48px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 48px, #000 calc(100% - 48px), transparent 100%);
}
.logos-track{
  display: flex;
  gap: 20px;
  width: max-content;
}
.logos-marquee--ltr .logos-track{
  animation: logosMarqueeLTR 40s linear infinite;
}
.logos-marquee--rtl .logos-track{
  animation: logosMarqueeRTL 40s linear infinite;
}
.logos-marquee:hover .logos-track{ animation-play-state: paused; }
@keyframes logosMarqueeLTR{
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
@keyframes logosMarqueeRTL{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-pill{
  display: flex; align-items: center; justify-content: center;
  flex: none;
  width: 140px;
  height: 48px;
  padding: 0 12px;
  border-radius: 10px;
  opacity: .9;
  transition: opacity .2s ease, background .2s ease;
}
.logo-pill img{
  max-height: 100%; max-width: 100%;
  width: auto; height: auto;
  object-fit: contain;
}
.logo-pill:hover{ opacity: 1; }

[data-theme="dark"] .logo-pill{
  background: var(--logo-pill-bg);
  padding: 8px 14px;
  height: 56px;
  opacity: .9;
}
[data-theme="dark"] .logo-pill:hover{ opacity: 1; background: var(--logo-pill-bg-hover); }

/* ─── Stats ──────────────────────────────────────────────────── */
.stats-section{
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}
.stats-grid{
  display: grid; grid-template-columns: 1fr; gap: 16px;
  margin-top: 56px;
}
@media (min-width: 720px){ .stats-grid{ grid-template-columns: repeat(3, 1fr); } }
.stat-card{
  position: relative;
  padding: 36px 28px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  overflow: hidden;
}
.stat-card::before{
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-300));
  opacity: .9;
}
.stat-num{
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--text);
  line-height: 1;
  font-feature-settings: "tnum";
}
.stat-num .unit{ font-size: 0.55em; color: var(--text-2); margin-left: 4px; }
.stat-num .plus{ color: var(--primary); }
.stat-label{ font-size: 15px; color: var(--text-2); margin-top: 12px; font-weight: 500; }
.stat-bar{ margin-top: 18px; height: 6px; background: var(--ink-100); border-radius: 999px; overflow: hidden; }
[data-theme="dark"] .stat-bar{ background: var(--ink-700); }
  .stat-bar-fill{
    height: 100%; background: linear-gradient(90deg, var(--brand-400), var(--brand-600));
    border-radius: 999px;
  }

  /* Hero pulse for product card on load */
  @keyframes heroFloat{
    from { opacity: 0; transform: translateY(28px) scale(.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }
  .hero-product{ animation: heroFloat 1s cubic-bezier(.2,.7,.2,1) .3s both; }

  @keyframes heroTextIn{
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-headline{ animation: heroTextIn .9s cubic-bezier(.2,.7,.2,1) .05s both; }
  .hero-sub{      animation: heroTextIn .9s cubic-bezier(.2,.7,.2,1) .18s both; }
  .hero-cta{      animation: heroTextIn .9s cubic-bezier(.2,.7,.2,1) .28s both; }
  .hero-meta{     animation: heroTextIn .9s cubic-bezier(.2,.7,.2,1) .36s both; }
  .hero-inner > .eyebrow{ animation: heroTextIn .9s cubic-bezier(.2,.7,.2,1) both; }

  /* Section title fade on view — handled by Reveal wrapper if needed */

  /* Product UI inner bars: 0→target on hero in-view */
  .pu-prog-bar i, .rc-bar i, .stat-bar-fill {
    transition: width 1.4s cubic-bezier(.2,.7,.2,1);
  }
  .pu.armed .pu-prog-bar i, .pu.armed .rc-bar i { width: var(--w, 0%); }
  .pu:not(.armed) .pu-prog-bar i { width: 0% !important; }

  /* Logo wordmark in nav */
  .nav-logo{ color: var(--text); }

  /* Avatar pop-in for matched candidates */
  @keyframes popIn{
    0%   { opacity: 0; transform: scale(.5); }
    60%  { opacity: 1; transform: scale(1.08); }
    100% { transform: scale(1); }
  }
  .fv-pool.in .fv-avatar{ animation: popIn .5s cubic-bezier(.3,1.4,.6,1) both; }
  .fv-pool.in .fv-avatar:nth-child(n){ animation-delay: calc(var(--i,0) * 30ms); }
  .fv-pool.in .fv-avatar.match{ animation-delay: calc(700ms + var(--mi, 0) * 100ms); }

  /* Pulse on hero CTA dot */
  @keyframes ringPulse{
    0%   { box-shadow: 0 0 0 0 color-mix(in oklab, var(--primary) 35%, transparent); }
    70%  { box-shadow: 0 0 0 10px transparent; }
    100% { box-shadow: 0 0 0 0 transparent; }
  }
  .eyebrow > span:first-child{ animation: ringPulse 2.4s infinite; }


/* ─── Features ───────────────────────────────────────────────── */
.features-grid{
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 800px){
  .features-grid{ grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: auto auto; }
  .feature-card.f1{ grid-column: 1; grid-row: 1 / span 2; }
  .feature-card.f2{ grid-column: 2 / span 2; grid-row: 1; }
  .feature-card.f3{ grid-column: 2 / -1; grid-row: 2; min-width: 0; }
}
.feature-card.f3 .fv-cost-chart{
  --fv-cost-bar-max: 96px;
  --fv-cost-plot-h: clamp(120px, 22vw, 148px);
  --fv-cost-gap: clamp(8px, 3vw, 40px);
}
.feature-card.f3 .fv-cost-cols{
  max-width: none;
  margin-inline: 0;
  width: 100%;
}
.feature-card{
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--sh-xs);
  display: flex; flex-direction: column; gap: 16px;
  min-width: 0;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  overflow: hidden;
}
.feature-card:hover{ border-color: var(--border-strong); transform: translateY(-2px); box-shadow: var(--sh-md); }
.feature-icon{
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary-deep);
  display: grid; place-items: center;
}
[data-theme="dark"] .feature-icon{ color: var(--brand-300); }
.feature-title{ font-size: 18px; font-weight: 700; margin: 0; letter-spacing: -0.015em; }
.feature-desc{ color: var(--text-2); font-size: 14px; margin: 0; line-height: 1.55; }
.feature-card .visual{ margin-top: auto; }

/* ─── Process ───────────────────────────────────────────────── */
.process-section{ background: var(--bg-alt); }
.process-list{
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
  margin-top: 56px;
}
.process-row{
  display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-xs);
  position: relative;
}
@media (min-width: 800px){
  .process-row{ grid-template-columns: 0.95fr 1.1fr; padding: 36px 40px; gap: 48px; }
  .process-row.reverse > .process-text{ order: 2; }
  .process-row.reverse > .process-vis{ order: 1; }
}
.process-step{
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: .08em;
  color: var(--primary-deep);
  background: var(--primary-soft);
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-block;
  font-weight: 600;
}
[data-theme="dark"] .process-step{ color: var(--brand-300); }
.process-title{ font-size: clamp(22px, 2.4vw, 28px); font-weight: 700; letter-spacing: -0.02em; margin: 14px 0 10px; line-height: 1.2; }
.process-desc{ color: var(--text-2); font-size: 15px; margin: 0; line-height: 1.6; }
.process-vis{
  background: linear-gradient(180deg, var(--ink-50), var(--ink-100));
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  min-height: 260px;
  padding: 24px;
  display: flex; align-items: center; justify-content: center;
}
[data-theme="dark"] .process-vis{ background: linear-gradient(180deg, var(--ink-800), var(--ink-700)); }

/* ─── Testimonials (marquee) ──────────────────────────────── */
.t-marquee{
  margin-top: 48px;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
}
.t-track{
  display: flex;
  gap: 20px;
  width: max-content;
  animation: tMarquee 28s linear infinite;
}
.t-marquee:hover .t-track{ animation-play-state: paused; }
@keyframes tMarquee{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.t-card{
  width: 320px;
  flex: none;
  color: inherit;
  text-decoration: none;
  display: block;
  cursor: pointer;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  transition: border-color .2s ease, transform .25s ease, box-shadow .25s ease;
}
.t-card:hover{ transform: translateY(-3px); border-color: color-mix(in oklab, var(--primary) 30%, var(--border)); box-shadow: var(--sh-md); }

.t-cover{
  position: relative;
  aspect-ratio: 320 / 170;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  overflow: hidden;
}
.t-cover::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 80% 20%, rgba(255,255,255,.5), transparent 60%),
    radial-gradient(80% 60% at 10% 90%, rgba(0,0,0,.06), transparent 70%);
  pointer-events: none;
}
.t-cover-brand{
  position: relative;
  display: inline-flex;
  align-items: center;
  z-index: 1;
}
.t-cover-logo{
  position: relative;
  z-index: 1;
  display: block;
  margin: auto;
  max-width: 70%;
  max-height: 60%;
  width: auto; height: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(15,23,42,.06));
}
.t-cover-sub{
  position: relative;
  z-index: 1;
  font-size: 12px;
  color: rgba(15,23,42,.55);
  font-weight: 600;
  letter-spacing: -0.005em;
}

.t-body{
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.t-quote{
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.5;
  color: var(--text);
  margin: 0;
  white-space: pre-line;
  text-wrap: pretty;
}
.t-role{
  font-size: 12.5px;
  color: var(--text-3);
  font-weight: 500;
  margin-top: auto;
}

/* ─── Pricing ───────────────────────────────────────────────── */
.pricing-grid{
  display: grid; grid-template-columns: 1fr; gap: 20px;
  margin-top: 56px;
  align-items: stretch;
}
@media (min-width: 800px){ .pricing-grid{ grid-template-columns: 1fr 1fr; } }
.price-card{
  position: relative;
  padding: 36px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  display: flex; flex-direction: column; gap: 18px;
  box-shadow: var(--sh-xs);
}
.price-card.featured{
  border: 1px solid color-mix(in oklab, var(--primary) 50%, var(--border));
  box-shadow: var(--sh-md), 0 0 0 4px color-mix(in oklab, var(--primary) 8%, transparent);
}
.price-badge{
  position: absolute; top: -12px; right: 28px;
  background: var(--primary); color: #fff;
  font-size: 12px; font-weight: 600; letter-spacing: .02em;
  padding: 5px 12px; border-radius: 999px;
}
.price-eyebrow{
  font-size: 13px; font-weight: 600; color: var(--primary-deep);
  text-transform: uppercase; letter-spacing: .05em;
}
[data-theme="dark"] .price-eyebrow{ color: var(--brand-300); }
.price-title{ font-size: 22px; font-weight: 700; margin: 0; letter-spacing: -0.015em; }
.price-amount{
  display: flex; align-items: baseline; gap: 6px;
  font-size: 44px; font-weight: 800; letter-spacing: -0.03em;
  font-feature-settings: "tnum"; line-height: 1;
}
.price-amount .currency{ font-size: 18px; font-weight: 700; color: var(--text-2); }
.price-amount .won{ font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin-left: 2px; }
.price-amount .unit{ font-size: 15px; font-weight: 500; color: var(--text-2); margin-left: 4px; }
.price-meta{ font-size: 13px; color: var(--text-3); }
.price-features{ list-style: none; padding: 0; margin: 8px 0 0; display: flex; flex-direction: column; gap: 10px; }
.price-features li{ display: flex; gap: 10px; font-size: 14px; color: var(--text-2); line-height: 1.5; }
.price-features li .check{ flex: none; color: var(--primary); margin-top: 2px; }
.price-pay{
  font-size: 13px; color: var(--text-3);
  padding-top: 18px; border-top: 1px dashed var(--border);
  display: flex; justify-content: space-between;
  margin-top: auto;
}
.price-pay b{ font-weight: 600; color: var(--text); }

.licenses{
  display: grid; grid-template-columns: 1fr; gap: 12px;
  margin-top: 28px;
}
@media (min-width: 700px){ .licenses{ grid-template-columns: 1fr 1fr; } }
.license{
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: 13px;
}
.license-mark{
  width: 36px; height: 36px; border-radius: 9px;
  background: color-mix(in oklab, var(--acc-mint) 25%, transparent);
  color: oklch(38% 0.08 175);
  display: grid; place-items: center;
}
[data-theme="dark"] .license-mark{ color: oklch(80% 0.10 175); background: color-mix(in oklab, var(--acc-mint) 18%, var(--ink-800)); }
.license-name{ font-weight: 600; font-size: 14px; }
.license-id{ color: var(--text-3); font-family: var(--font-mono); font-size: 11px; }

/* ─── FAQ ──────────────────────────────────────────────────── */
.faq-list{ max-width: 820px; margin: 56px auto 0; display: flex; flex-direction: column; gap: 8px; }
.faq-item{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item[open]{ border-color: var(--border-strong); }
.faq-item summary{
  list-style: none;
  cursor: default;
  padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-weight: 600; font-size: 16px; letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-icon{
  width: 24px; height: 24px; flex: none;
  display: grid; place-items: center;
  color: var(--text-3);
  transition: transform .25s ease, color .2s ease;
}
.faq-item[open] .faq-icon{ transform: rotate(45deg); color: var(--primary); }
.faq-body{
  padding: 0 24px 22px;
  color: var(--text-2); font-size: 15px; line-height: 1.65;
}

/* ─── Final CTA ────────────────────────────────────────────── */
.cta-section{ padding-bottom: clamp(48px, 6vw, 72px); }
.cta-card{
  position: relative;
  overflow: hidden;
  border-radius: var(--r-2xl);
  background: linear-gradient(135deg, var(--brand-700) 0%, var(--brand-500) 60%, var(--brand-400) 100%);
  color: #fff;
  padding: clamp(48px, 6vw, 80px) clamp(28px, 5vw, 64px);
  display: block;
  box-shadow: var(--sh-lg);
}
.cta-card::before{
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(255,255,255,.18), transparent 40%),
    radial-gradient(circle at 10% 100%, rgba(255,255,255,.12), transparent 40%);
  pointer-events: none;
}
.cta-h{
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0;
  text-wrap: balance;
}
.cta-sub{ margin: 16px 0 0; opacity: .85; font-size: 16px; line-height: 1.55; }
.cta-actions{ display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.cta-actions .btn-primary{ background: #fff; color: var(--primary-deep); box-shadow: 0 12px 24px -8px rgba(0,0,0,.3); }
.cta-actions .btn-primary:hover{ background: #fff; color: var(--brand-800); transform: translateY(-1px); }
.cta-actions .btn-ghost{ background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.cta-actions .btn-ghost:hover{ background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }

/* ─── Footer ────────────────────────────────────────────────── */
footer{
  border-top: 1px solid var(--border);
  padding: 56px 0 36px;
  font-size: 13px;
  color: var(--text-3);
  background: var(--bg);
}
.footer-top{ display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 36px; }
@media (min-width: 800px){ .footer-top{ grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-col h5{ font-size: 13px; font-weight: 600; color: var(--text); margin: 0 0 16px; letter-spacing: -0.01em; }
.footer-col ul{ list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a:hover{ color: var(--text); }
.footer-bottom{ display: flex; justify-content: space-between; padding-top: 28px; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 12px; }
.footer-meta{ line-height: 1.7; opacity: .8; }
.footer-company{ font-weight: 600; opacity: 1; margin: 0; max-width: 360px; }
.footer-legal a{ color: inherit; text-decoration: none; }
.footer-legal a:hover{ color: var(--text); text-decoration: underline; }
.footer-legal-mobile{ display: none; }
.footer-legal-line{ margin: 0; }
.footer-legal-company{ font-weight: 600; opacity: 1; margin-bottom: 2px; }

/* ─── Product UI mock — recruiter dashboard ────────────────────── */
.pu{
  background: #fff;
  font-size: 12.5px;
  color: var(--ink-900);
  border-radius: inherit;
  overflow: hidden;
  position: relative;
}

/* Top app bar */
.pu-top{
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px;
  background: #fff;
  border-bottom: 1px solid #eef1f7;
}
.pu-top-logo{
  font-weight: 800; font-size: 17px; letter-spacing: -0.02em; color: #181d2c;
}
.pu-top-user{
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid #e3e8f1; color: #5d6a82;
  display: grid; place-items: center;
}

/* Body grid: side rail + main */
.pu-body{ display: grid; grid-template-columns: 84px 1fr; min-height: 520px; background: #fff; }

/* Vertical icon nav rail */
.pu-rail{
  background: #fff; padding: 16px 8px 24px;
  display: flex; flex-direction: column; gap: 14px;
  border-right: 1px solid #eef1f7;
}
.pu-rail-item{
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 8px 4px; border-radius: 8px;
  color: #8390a5; font-size: 11px; font-weight: 500;
  text-align: center; line-height: 1.2;
}
.pu-rail-item.active{ color: #1A7CFF; }
.pu-rail-item.active .pu-rail-ic{ background: #e8f2ff; color: #1A7CFF; }
.pu-rail-ic{
  width: 36px; height: 36px; border-radius: 9px;
  display: grid; place-items: center;
  color: #5d6a82;
}

/* Main column */
.pu-main{
  padding: 24px 28px 28px;
  display: flex; flex-direction: column; gap: 20px;
  min-width: 0; background: #fff;
}

/* Welcome */
.pu-welcome-title{
  font-size: 18px; font-weight: 700; letter-spacing: -0.015em; color: #181d2c;
  margin: 0; display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.pu-welcome-sub{
  font-size: 12.5px; color: #8390a5; margin: 6px 0 0;
}
.pu-badge{
  display: inline-flex; align-items: center;
  padding: 3px 9px; border-radius: 999px;
  background: #e8f2ff; color: #1A7CFF;
  font-size: 11px; font-weight: 600; letter-spacing: -0.01em;
}

/* Stat strip (one card, vertical dividers) */
.pu-stats{
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid #eef1f7; border-radius: 12px;
  background: #fff; overflow: hidden;
}
.pu-stat{
  padding: 18px 22px;
  display: flex; flex-direction: column; gap: 10px;
  border-left: 1px solid #eef1f7;
}
.pu-stat:first-child{ border-left: 0; }
.pu-stat-label{
  font-size: 12px; color: #8390a5; font-weight: 500;
  display: flex; align-items: center; gap: 8px;
}
.pu-stat-val{
  font-size: 22px; font-weight: 700; letter-spacing: -0.02em; color: #181d2c;
  font-feature-settings: "tnum";
}
.pu-stat-val em{
  font-size: 13px; font-weight: 500; font-style: normal;
  color: #5d6a82; margin-left: 2px;
}
.pu-pill{
  display: inline-flex; align-items: center;
  padding: 2px 8px; border-radius: 999px;
  background: #e8f2ff; color: #1A7CFF;
  font-size: 10.5px; font-weight: 600;
}

/* Dark promo banner */
.pu-promo{
  position: relative; overflow: hidden;
  border-radius: 12px;
  padding: 26px 28px;
  background: linear-gradient(110deg, #0b1226 0%, #0f1c3d 55%, #0b1226 100%);
  color: #fff;
  isolation: isolate;
}
.pu-promo-lines{
  position: absolute; inset: 0; pointer-events: none;
  opacity: .55;
}
.pu-promo-lines span{
  position: absolute; height: 1px; background: linear-gradient(90deg, transparent, #4ea0ff, transparent);
  width: 200px;
}
.pu-promo-lines span:nth-child(1){ top: 18%;  left: 30%; width: 280px; }
.pu-promo-lines span:nth-child(2){ top: 32%;  left: 55%; width: 200px; }
.pu-promo-lines span:nth-child(3){ top: 48%;  left: 38%; width: 240px; opacity: .7; }
.pu-promo-lines span:nth-child(4){ top: 62%;  left: 62%; width: 180px; }
.pu-promo-lines span:nth-child(5){ top: 76%;  left: 44%; width: 220px; opacity: .5; }
.pu-promo-lines span:nth-child(6){ top: 24%;  left: 75%; width: 160px; opacity: .8; }
.pu-promo-lines span:nth-child(7){ top: 56%;  left: 22%; width: 140px; opacity: .4; }
.pu-promo-lines span:nth-child(8){ top: 84%;  left: 68%; width: 200px; opacity: .6; }
.pu-promo-glow{
  position: absolute; right: 8%; top: 28%;
  width: 8px; height: 8px; border-radius: 50%;
  background: #cfe3ff;
  box-shadow: 0 0 24px 8px rgba(207,227,255,.5);
}
.pu-promo-title{
  font-size: 16px; font-weight: 700; letter-spacing: -0.02em;
  position: relative; z-index: 1;
}
.pu-promo-sub{
  font-size: 12.5px; color: rgba(207,227,255,.7); margin-top: 8px;
  position: relative; z-index: 1;
}

/* Two-up panels */
.pu-cols{ display: grid; grid-template-columns: 1.15fr 1fr; gap: 18px; }
.pu-panel{
  background: #fff; border: 1px solid #eef1f7; border-radius: 12px;
  padding: 20px 22px; display: flex; flex-direction: column; gap: 14px;
  min-width: 0;
}
.pu-panel-h{
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
}
.pu-panel-title{ font-size: 14.5px; font-weight: 700; color: #181d2c; letter-spacing: -0.015em; }
.pu-panel-sub{ font-size: 11.5px; color: #8390a5; margin-top: 4px; }
.pu-panel-sub .pu-em{ color: #1A7CFF; font-weight: 700; }
.pu-panel-more{ color: #b2bccb; }
.pu-panel-tools{ display: flex; align-items: center; gap: 6px; }
.pu-select{
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px; border: 1px solid #e3e8f1; border-radius: 7px;
  background: #fff; color: #5d6a82; font-size: 11.5px; font-weight: 500;
}
.pu-iconbtn{
  width: 26px; height: 26px; border-radius: 7px;
  border: 1px solid #e3e8f1; background: #fff;
  display: grid; place-items: center; color: #5d6a82; cursor: pointer;
}

/* Matches mini-table */
.pu-mtable{ display: flex; flex-direction: column; }
.pu-mtr{
  display: grid; grid-template-columns: 1.4fr 0.9fr 0.9fr 1fr;
  padding: 11px 6px; align-items: center;
  font-size: 12px; color: #5d6a82;
  border-top: 1px solid #f3f5fa;
}
.pu-mtr.head{
  color: #8390a5; font-size: 11px; font-weight: 500;
  border-top: 0; padding-top: 8px; padding-bottom: 8px;
  background: transparent;
}
.pu-mtr-job{ color: #181d2c; font-weight: 500; }
.pu-mtr-date{ color: #5d6a82; font-feature-settings: "tnum"; }

/* Pass-rate vertical bar chart */
.pu-chart{
  position: relative;
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 14px; padding: 8px 4px 0;
  height: 220px;
}
.pu-chart-guide{
  position: absolute; left: 0; right: 0; bottom: 67%;
  border-top: 1px dashed #d4dbe7;
  pointer-events: none;
}
.pu-pb{
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  min-width: 0;
}
.pu-pb-track{
  position: relative;
  width: 100%; max-width: 56px;
  flex: 1; min-height: 0;
  background: #f1f3f9; border-radius: 8px 8px 4px 4px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.pu-pb-fill{
  position: relative;
  width: 100%;
  background: #1A7CFF;
  border-radius: 8px 8px 0 0;
  transition: height 1.4s cubic-bezier(.2,.7,.2,1);
  display: flex; justify-content: center;
  padding-top: 10px;
}
.pu-pb-num{
  color: #fff; font-size: 11.5px; font-weight: 700;
  font-feature-settings: "tnum"; letter-spacing: -0.01em;
}
.pu-pb-lbl{
  font-size: 11px; color: #181d2c; font-weight: 500;
  max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.pu-pb-sub{ font-size: 10.5px; color: #8390a5; }

/* Responsive */
@media (max-width: 760px){
  .pu-body{ grid-template-columns: 72px 1fr; }
  .pu-rail-item{ font-size: 10px; }
  .pu-rail-ic{ width: 32px; height: 32px; }
  .pu-main{ padding: 18px 16px 22px; }
  .pu-stats{ grid-template-columns: repeat(2, 1fr); }
  .pu-stat{ border-top: 1px solid #eef1f7; }
  .pu-stat:nth-child(-n+2){ border-top: 0; }
  .pu-stat:nth-child(odd){ border-left: 0; }
  .pu-cols{ grid-template-columns: 1fr; }
  .pu-chart{ height: 200px; }
}

/* Decorative chip with candidate avatar */
.pu-chip{
  position: absolute;
  right: -16px; top: 24%;
  background: #fff; border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 20px 40px -16px rgba(20,44,108,.25), 0 0 0 1px rgba(20,44,108,.06);
  display: flex; align-items: center; gap: 10px;
  font-size: 12px;
  z-index: 2;
  animation: float 5s ease-in-out infinite;
}
.pu-chip.b{ top: 60%; right: auto; left: -20px; animation-delay: -2.5s; }
.pu-chip-avatar{
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, #74acff, #0e62db);
  color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 12px;
}
.pu-chip-match{ font-weight: 700; color: #0e62db; font-size: 14px; line-height: 1; margin-bottom: 2px; }
.pu-chip-text{ color: #5d6a82; font-size: 11px; }
.pu-chip-text b{ color: #181d2c; font-weight: 600; }
@keyframes float{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-8px); }
}

/* Filter card mock (process step 1) */
.fc{ width: 100%; max-width: 480px; }
.fc-h{ font-size: 12px; font-weight: 600; color: var(--primary-deep); margin-bottom: 6px; }
[data-theme="dark"] .fc-h{ color: var(--brand-300); }
.fc-title{ font-size: 16px; font-weight: 700; color: var(--text); margin: 0 0 16px; }

.fc-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px 18px;
  box-shadow: var(--sh-sm);
}
.fc-card-h{
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--border);
}

/* Scanning visual — looks like a job posting being analyzed */
.fc-scan{
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.fc-scan-doc{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: none;
  padding: 4px 9px;
  background: color-mix(in oklab, var(--primary) 16%, transparent);
  color: var(--primary);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 0 12px -4px color-mix(in oklab, var(--primary) 50%, transparent);
}
.fc-scan-lines{
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}
.fc-scan-line{
  display: block;
  height: 5px;
  border-radius: 3px;
  background: linear-gradient(90deg,
    var(--ink-100) 0%,
    color-mix(in oklab, var(--primary) 22%, var(--ink-100)) 40%,
    var(--ink-100) 80%) 0/200% 100%;
  animation: jpShimmer 1.8s linear infinite;
}
[data-theme="dark"] .fc-scan-line{
  background: linear-gradient(90deg,
    var(--ink-700) 0%,
    color-mix(in oklab, var(--primary) 28%, var(--ink-700)) 40%,
    var(--ink-700) 80%) 0/200% 100%;
}
.fc-scan-line:nth-child(2){ animation-delay: .15s; }
.fc-scan-line:nth-child(3){ animation-delay: .3s; }

.fc-scan-sweep{
  position: absolute;
  top: 0; bottom: 0;
  left: -35%;
  width: 35%;
  background: linear-gradient(90deg,
    transparent 0%,
    color-mix(in oklab, var(--primary) 35%, transparent) 50%,
    transparent 100%);
  filter: blur(6px);
  pointer-events: none;
  animation: fcScanSweep 2.4s linear infinite;
}
@keyframes fcScanSweep{
  0%   { left: -35%; }
  100% { left: 100%; }
}
.fc-card-meta{
  margin-left: auto;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-3);
  font-feature-settings: "tnum";
}
.fc-keywords{ display: flex; flex-direction: column; }

.fc-row{ display: grid; grid-template-columns: 60px 1fr; gap: 12px; padding: 10px 0; align-items: center; }
.fc-row + .fc-row{ border-top: 1px dashed var(--border); }
.fc-label{ font-size: 12px; color: var(--text-3); font-weight: 600; }
.fc-pills{ display: flex; flex-wrap: wrap; gap: 6px; }
.fc-pill{
  position: relative;
  font-size: 12px; padding: 6px 12px;
  background: var(--ink-100); color: var(--text-2);
  border: 1px solid transparent;
  border-radius: 999px; font-weight: 500;
  transition:
    background .35s cubic-bezier(.2,.7,.2,1),
    color .35s ease,
    border-color .35s ease,
    box-shadow .45s ease,
    transform .35s cubic-bezier(.2,1.3,.4,1);
}
[data-theme="dark"] .fc-pill{ background: var(--ink-700); }
.fc-pill.active{
  background: var(--primary);
  color: #fff;
  border-color: color-mix(in oklab, var(--primary) 60%, transparent);
  box-shadow:
    0 0 0 2px color-mix(in oklab, var(--primary) 22%, transparent),
    0 0 18px -2px color-mix(in oklab, var(--primary) 55%, transparent);
}
.fc-pill.just-clicked{
  animation: fcClickPulse .55s cubic-bezier(.2,1.4,.4,1);
}
@keyframes fcClickPulse{
  0%   { transform: scale(1); }
  35%  { transform: scale(1.18); }
  100% { transform: scale(1); }
}
.fc-pill.just-clicked::after{
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 2px solid var(--primary);
  opacity: .6;
  animation: fcClickRing .55s ease-out;
  pointer-events: none;
}
@keyframes fcClickRing{
  from { transform: scale(.6); opacity: .8; }
  to   { transform: scale(1.4); opacity: 0; }
}

/* Progress bar with tick marks (in fc-card-h) */
.fc-progress-bar{
  position: relative;
  width: 100%;
  height: 10px;
  background: var(--ink-100);
  border-radius: 999px;
  overflow: visible;
}
[data-theme="dark"] .fc-progress-bar{ background: var(--ink-700); }
.fc-progress-bar > i{
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--brand-400), var(--brand-600));
  border-radius: 999px;
  box-shadow:
    0 0 12px color-mix(in oklab, var(--primary) 50%, transparent),
    0 0 22px color-mix(in oklab, var(--primary) 30%, transparent);
  transition: width .5s cubic-bezier(.2,.7,.2,1);
}
.fc-tick{
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid var(--ink-200);
  transform: translate(-50%, -50%);
  transition: background .4s ease, border-color .4s ease, box-shadow .4s ease;
}
[data-theme="dark"] .fc-tick{ border-color: var(--ink-600); }
.fc-tick.is-on{
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 10px color-mix(in oklab, var(--primary) 60%, transparent);
}

/* Report card — match analysis table (process step 4) */
.fc{ width: 100%; max-width: 600px; }

.rep{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4px 16px;
  box-shadow: var(--sh-sm);
  font-size: 12px;
}

.rep-table-h,
.rep-row{
  display: grid;
  grid-template-columns: 64px 1.2fr 1.6fr 56px;
  gap: 12px;
  align-items: start;
  padding: 12px 0;
}
.rep-table-h{
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-3);
  border-bottom: 1px solid var(--border);
}
.rep-row{
  border-bottom: 1px solid var(--border);
}
.rep-row:last-child{ border-bottom: 0; }

.rep-tag{
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  padding-top: 1px;
}
.rep-req{
  font-size: 12px;
  color: var(--text);
  line-height: 1.45;
}
.rep-res{
  font-size: 11.5px;
  color: var(--text-2);
  line-height: 1.45;
}
.rep-lines{
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 4px;
}
.rep-lines .jp-line{
  height: 6px;
}
.rep-check{
  align-self: start;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 9px;
  background: color-mix(in oklab, var(--primary) 14%, transparent);
  color: var(--primary);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

@media (max-width: 720px){
  .rep-table-h{ display: none; }
  .rep-row{
    grid-template-columns: 56px 1fr auto;
    grid-template-areas:
      "tag req result"
      "tag res result";
    column-gap: 10px;
    row-gap: 2px;
  }
  .rep-tag{ grid-area: tag; }
  .rep-req{ grid-area: req; }
  .rep-res{ grid-area: res; }
  .rep-check{ grid-area: result; align-self: center; }
}

/* Invoice mock (process step 3) */
.inv{ width: 100%; max-width: 360px; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 18px; box-shadow: var(--sh-sm); }
.inv-h{ display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid var(--border); margin-bottom: 14px; }
.inv-title{ font-weight: 700; font-size: 14px; }
.inv-id{ font-family: var(--font-mono); font-size: 11px; color: var(--text-3); }
.inv-row{ display: flex; justify-content: space-between; padding: 8px 0; font-size: 13px; color: var(--text-2); }
.inv-row b{ color: var(--text); font-weight: 600; }
.inv-total{
  display: flex; justify-content: space-between;
  padding-top: 14px; margin-top: 6px;
  border-top: 1px dashed var(--border);
  font-weight: 700;
}
.inv-total .amt{ font-size: 22px; color: var(--primary); letter-spacing: -0.02em; font-feature-settings: "tnum"; }
.inv-stamp{
  margin-top: 14px; padding: 10px 12px; border-radius: 8px;
  background: color-mix(in oklab, var(--acc-mint) 18%, transparent);
  color: oklch(38% 0.08 175);
  font-size: 12px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
[data-theme="dark"] .inv-stamp{ color: oklch(80% 0.10 175); background: color-mix(in oklab, var(--acc-mint) 12%, var(--ink-800)); }

/* Screening card (Process step 2) */
.scrn-pair{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: stretch;
}
.scrn-card{
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px 16px;
  box-shadow: var(--sh-sm);
  overflow: hidden;
  min-width: 0;
}
.scrn-card--before{ opacity: .85; }
.scrn-card--after{
  border-color: color-mix(in oklab, var(--primary) 45%, transparent);
  background: color-mix(in oklab, var(--primary) 5%, var(--surface));
  box-shadow:
    0 0 0 1px color-mix(in oklab, var(--primary) 30%, transparent),
    0 0 24px -6px color-mix(in oklab, var(--primary) 50%, transparent);
}
.scrn-card-h{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.scrn-card-tag{
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-3);
}
.scrn-card-tag--ai{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary);
}
.scrn-badge{
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: -0.005em;
}
.scrn-badge--warn{
  background: color-mix(in oklab, var(--acc-amber) 22%, transparent);
  color: oklch(78% 0.13 78);
}
.scrn-card-title{
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.scrn-card-body{
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0;
}
.scrn-mark{
  background: color-mix(in oklab, var(--primary) 22%, transparent);
  color: var(--primary);
  padding: 1px 5px;
  border-radius: 3px;
  font-weight: 600;
}
.scrn-mark--warn{
  background: color-mix(in oklab, var(--acc-amber) 30%, transparent);
  color: oklch(78% 0.13 78);
  text-decoration: line-through;
  text-decoration-color: oklch(78% 0.13 78);
}
.scrn-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.scrn-list li{
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--text);
}
.scrn-list li b{ font-weight: 700; color: var(--primary); }
.scrn-dot{
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  margin-top: 6px;
  box-shadow: 0 0 6px color-mix(in oklab, var(--primary) 60%, transparent);
}
.scrn-dot--muted{
  background: var(--ink-300);
  box-shadow: none;
}
[data-theme="dark"] .scrn-dot--muted{ background: var(--ink-500); }
.scrn-list--muted li{ color: var(--text-2); }
.scrn-list--muted li b{ color: var(--text); font-weight: 600; }

.scrn-note{
  margin-top: 12px;
  display: flex;
  gap: 9px;
  padding: 11px 14px;
  background: color-mix(in oklab, var(--acc-amber) 14%, var(--surface));
  border: 1px solid color-mix(in oklab, var(--acc-amber) 28%, transparent);
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text);
}

/* AI chat-style suggestion (Process step 2) */
.scrn-chat-card{
  position: relative;
  height: 320px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 100%);
}
.scrn-chat-stack{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
}
.scrn-chat{
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.scrn-chat--in{
  animation: scrnChatIn .55s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes scrnChatIn{
  0%   { opacity: 0; transform: translateY(18px); }
  100% { opacity: 1; transform: translateY(0); }
}
.scrn-chat-av{
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-400), var(--brand-700));
  box-shadow:
    0 0 0 2px color-mix(in oklab, var(--primary) 20%, transparent),
    0 0 14px -2px color-mix(in oklab, var(--primary) 55%, transparent);
}
.scrn-chat-bubble{
  position: relative;
  flex: 1;
  background: var(--surface);
  border: 1px solid color-mix(in oklab, var(--primary) 30%, var(--border));
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  padding: 11px 14px 12px;
  box-shadow: 0 0 18px -6px color-mix(in oklab, var(--primary) 35%, transparent);
}
.scrn-chat-bubble::before{
  content: "";
  position: absolute;
  bottom: 6px;
  left: -7px;
  width: 12px; height: 12px;
  background: var(--surface);
  border-left: 1px solid color-mix(in oklab, var(--primary) 30%, var(--border));
  border-bottom: 1px solid color-mix(in oklab, var(--primary) 30%, var(--border));
  transform: rotate(45deg);
  border-bottom-left-radius: 3px;
}
.scrn-chat-bubble--typing{ padding: 12px 16px; max-width: 64px; }
.scrn-chat-name{
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.scrn-chat-time{
  font-size: 10.5px;
  font-weight: 500;
  color: var(--text-3);
}
.scrn-chat-msg{
  font-size: 12px;
  line-height: 1.55;
  color: var(--text);
  margin: 0;
}
.scrn-chat-msg b{
  color: var(--primary);
  font-weight: 700;
}
.scrn-chat-typing{
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.scrn-chat-dot{
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--primary);
  opacity: .4;
  animation: aiBlink 1.2s ease-in-out infinite;
}
.scrn-chat-dot:nth-child(2){ animation-delay: .15s; }
.scrn-chat-dot:nth-child(3){ animation-delay: .3s; }
.scrn-note b{
  color: oklch(78% 0.13 78);
  font-weight: 700;
}
.scrn-note-icon{
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: color-mix(in oklab, var(--acc-amber) 30%, transparent);
  color: oklch(78% 0.13 78);
}

.scrn-arrow{
  display: grid;
  place-items: center;
  color: var(--primary);
  filter: drop-shadow(0 0 6px color-mix(in oklab, var(--primary) 50%, transparent));
}

/* Sweep highlight on after-card */
.scrn-sweep{
  position: absolute;
  top: 0; bottom: 0;
  left: -50%;
  width: 55%;
  background: linear-gradient(90deg,
    transparent 0%,
    color-mix(in oklab, var(--primary) 38%, transparent) 50%,
    transparent 100%);
  filter: blur(8px);
  pointer-events: none;
  animation: scrnSweep 3.6s ease-in-out infinite;
}
@keyframes scrnSweep{
  0%, 20% { left: -50%; opacity: 0; }
  35%     { opacity: 1; }
  60%     { opacity: 1; }
  80%, 100% { left: 110%; opacity: 0; }
}

@media (max-width: 720px){
  .scrn-pair{ grid-template-columns: 1fr; }
  .scrn-arrow{ transform: rotate(90deg); justify-self: center; }
}

/* Job post card (Process step 3) */
.jp{
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
.jp-cover{
  position: relative;
  height: 80px;
  background:
    linear-gradient(135deg,
      color-mix(in oklab, var(--primary) 55%, #000 0%) 0%,
      color-mix(in oklab, var(--primary) 35%, #000 30%) 60%,
      color-mix(in oklab, var(--brand-700) 80%, #000 0%) 100%);
  overflow: hidden;
}
.jp-cover-shape{
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
  opacity: .7;
}
.jp-cover-shape--a{
  top: -30px; right: -10px;
  width: 140px; height: 140px;
  background: color-mix(in oklab, var(--brand-300) 70%, transparent);
}
.jp-cover-shape--b{
  bottom: -40px; left: 10%;
  width: 180px; height: 180px;
  background: color-mix(in oklab, var(--brand-500) 70%, transparent);
}
.jp-h{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px 14px;
  margin-top: -22px;
  position: relative;
  z-index: 1;
}
.jp-logo{
  width: 48px; height: 48px;
  flex: none;
  border-radius: 10px;
  background: var(--surface);
  border: 2px solid var(--surface);
  display: grid;
  place-items: center;
  color: var(--primary);
  box-shadow: var(--sh-md);
}
.jp-h-meta{ display: flex; flex-direction: column; gap: 2px; padding-top: 16px; min-width: 0; }
.jp-title{ font-size: 15px; font-weight: 700; color: var(--text); letter-spacing: -0.015em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.jp-meta{ font-size: 11.5px; color: var(--text-3); }
.jp-section{ display: flex; flex-direction: column; gap: 6px; padding: 0 18px; }
.jp-section-h{ font-size: 11.5px; font-weight: 700; color: var(--text-2); }
.jp-line{
  height: 7px;
  border-radius: 4px;
  background: linear-gradient(90deg,
    var(--ink-100) 0%,
    color-mix(in oklab, var(--primary) 22%, var(--ink-100)) 40%,
    var(--ink-100) 80%) 0/200% 100%;
  animation: jpShimmer 1.8s linear infinite;
}
[data-theme="dark"] .jp-line{
  background: linear-gradient(90deg,
    var(--ink-700) 0%,
    color-mix(in oklab, var(--primary) 28%, var(--ink-700)) 40%,
    var(--ink-700) 80%) 0/200% 100%;
}
.jp-line.short{ width: 64%; }
.jp-line:nth-child(3){ animation-delay: .15s; }
.jp-line:nth-child(4){ animation-delay: .3s; }
@keyframes jpShimmer{
  0%   { background-position: -120% 0; }
  100% { background-position: 220% 0; }
}
.jp-gen{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 4px 18px 18px;
  padding: 8px 14px;
  background: color-mix(in oklab, var(--primary) 12%, var(--surface));
  border: 1px solid color-mix(in oklab, var(--primary) 28%, transparent);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--primary);
  width: fit-content;
  box-shadow: 0 0 14px -4px color-mix(in oklab, var(--primary) 50%, transparent);
}
.jp-gen-dot{
  width: 4px; height: 4px;
  background: var(--primary);
  border-radius: 50%;
  animation: aiBlink 1.2s ease-in-out infinite;
}
.jp-gen-dot:nth-child(3){ animation-delay: .2s; }
.jp-gen-dot:nth-child(4){ animation-delay: .4s; }

/* Feature decorative visuals */
.fv-pool{
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px;
  margin-top: 8px;
}
.fv-pool--cards .fn-card{
  aspect-ratio: 1;
  border-radius: 8px;
  opacity: 1;
  transform: none;
}
.fv-pool--cards .fn-card .fn-pi{ width: 60%; height: 60%; }
@media (max-width: 799px){
  .feature-card.f1 .fv-pool{
    gap: 6px;
    padding-inline: 4px;
  }
}
@media (min-width: 800px){
  .feature-card.f1 .fv-pool{ gap: 6px; }
}
.fv-avatar{
  aspect-ratio: 1; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-300), var(--brand-600));
  display: grid; place-items: center; color: #fff; font-weight: 600; font-size: 11px;
  position: relative;
}
.fv-avatar.muted{ background: var(--ink-200); color: var(--text-3); }
[data-theme="dark"] .fv-avatar.muted{ background: var(--ink-700); }
.fv-avatar.match::after{
  content: "✓"; position: absolute; bottom: -2px; right: -2px;
  width: 14px; height: 14px; border-radius: 50%;
  background: oklch(60% 0.13 155); color: #fff;
  font-size: 9px; font-weight: 700;
  display: grid; place-items: center;
  border: 2px solid var(--surface);
}

.fv-timer{
  margin-top: 8px;
  display: flex; align-items: center; gap: 12px;
  padding: 14px; background: var(--ink-50); border-radius: 10px;
}
[data-theme="dark"] .fv-timer{ background: var(--ink-800); }
.fv-timer-num{ font-size: 28px; font-weight: 800; color: var(--primary); letter-spacing: -0.03em; font-feature-settings: "tnum"; line-height: 1; }
.fv-timer-lbl{ font-size: 12px; color: var(--text-2); }
.fv-timer-arrow{ color: var(--text-3); font-size: 18px; }

/* Time reduction visual (feature f2) */
.fv-time{
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.fv-time-icon{
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: color-mix(in oklab, var(--primary) 12%, var(--surface));
  border: 1px solid color-mix(in oklab, var(--primary) 22%, transparent);
  box-shadow: 0 0 18px -4px color-mix(in oklab, var(--primary) 45%, transparent);
  flex: none;
}
.fv-time-num{
  display: flex;
  align-items: baseline;
  gap: 3px;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--primary);
  font-feature-settings: "tnum";
  line-height: 1;
  text-shadow: 0 0 14px color-mix(in oklab, var(--primary) 30%, transparent);
}
.fv-time-arrow{
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  margin-right: 2px;
}
.fv-time-unit{ font-size: 18px; font-weight: 700; }
.fv-time-lbl{
  font-size: 12.5px;
  color: var(--text-2);
  margin-top: 6px;
  font-weight: 500;
}

/* AI Agent visual (feature f2) */
.fv-ai-stack{
  margin-top: 8px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 10px;
}
.fv-ai-stack .fv-ai{
  flex: 1;
  min-width: 0;
}
.fv-ai{
  padding: 14px 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fv-ai--recruiter .fv-ai-av{
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
  box-shadow: 0 0 12px -2px color-mix(in oklab, #7c3aed 50%, transparent);
}
.fv-ai--recruiter .fv-ai-tag{
  background: color-mix(in oklab, #7c3aed 16%, transparent);
  color: #6d28d9;
}
.fv-ai--recruiter .fv-ai-check{
  background: color-mix(in oklab, #7c3aed 16%, transparent);
  color: #7c3aed;
}
.fv-ai-head{
  display: flex;
  align-items: center;
  gap: 10px;
}
.fv-ai-av{
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand-400), var(--brand-700));
  color: #fff;
  box-shadow: 0 0 12px -2px color-mix(in oklab, var(--primary) 55%, transparent);
  flex: none;
}
.fv-ai-name{
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.005em;
}
.fv-ai-tag{
  margin-left: auto;
  padding: 3px 8px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: color-mix(in oklab, var(--primary) 18%, transparent);
  color: var(--primary);
  border-radius: 999px;
}
.fv-ai-steps{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fv-ai-steps li{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-2);
  font-weight: 500;
}
.fv-ai-check{
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: color-mix(in oklab, var(--primary) 18%, transparent);
  color: var(--primary);
  flex: none;
}
.fv-ai-check--typing{
  gap: 2px;
  display: inline-flex;
  background: transparent;
}
.fv-ai-dot{
  width: 3.5px;
  height: 3.5px;
  border-radius: 50%;
  background: var(--primary);
  opacity: .4;
  animation: aiBlink 1.2s ease-in-out infinite;
}
.fv-ai-dot:nth-child(2){ animation-delay: .2s; }
.fv-ai-dot:nth-child(3){ animation-delay: .4s; }
@keyframes aiBlink{
  0%, 80%, 100% { opacity: .25; transform: translateY(0); }
  40%           { opacity: 1;   transform: translateY(-2px); }
}

.fv-price{
  margin-top: 8px; display: flex; align-items: flex-end; gap: 8px;
  font-feature-settings: "tnum";
}
.fv-price-strike{ font-size: 16px; color: var(--text-3); text-decoration: line-through; }
.fv-price-now{ font-size: 24px; font-weight: 800; color: var(--text); letter-spacing: -0.025em; }
.fv-price-tag{
  font-size: 11px; font-weight: 600;
  background: color-mix(in oklab, var(--acc-amber) 25%, transparent);
  color: oklch(40% 0.13 78);
  padding: 4px 8px; border-radius: 6px; margin-left: auto;
}
[data-theme="dark"] .fv-price-tag{ color: oklch(80% 0.13 78); background: color-mix(in oklab, var(--acc-amber) 18%, var(--ink-800)); }

.fv-price-labels{
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 12px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.fv-price-label{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
}
.fv-price-label svg{ color: var(--primary); flex: none; }

/* Feature card — cost compare bar chart */
.fv-cost-chart{
  --fv-cost-plot-h: clamp(112px, 28vw, 132px);
  --fv-cost-bar-max: 96px;
  --fv-cost-gap: clamp(6px, 2.5vw, 18px);
  --fv-cost-max: 1000;
  container-type: inline-size;
  min-width: 0;
  margin-top: 4px;
  padding: 12px 10px 10px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.fv-cost-note{
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: -0.01em;
  text-align: left;
}
.fv-cost-plot{
  position: relative;
  width: 100%;
}
.fv-cost-cols{
  position: relative;
  z-index: 1;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: var(--fv-cost-gap);
  align-items: end;
  width: 100%;
  min-width: 0;
}
.fv-cost-col{
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-width: 0;
}
.fv-cost-grid{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  height: var(--fv-cost-plot-h);
  pointer-events: none;
  background:
    linear-gradient(var(--ink-200) 1px, transparent 1px) 0 0 / 100% 33px;
  opacity: .5;
}
[data-theme="dark"] .fv-cost-grid{
  background:
    linear-gradient(var(--ink-700) 1px, transparent 1px) 0 0 / 100% 33px;
  opacity: .65;
}
.fv-cost-bar-area{
  position: relative;
  width: 100%;
  max-width: var(--fv-cost-bar-max);
  height: var(--fv-cost-plot-h);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.fv-cost-fill{
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 9px;
  border-radius: 12px 12px 0 0;
  font-feature-settings: "tnum";
  box-sizing: border-box;
  transition: height 1.4s cubic-bezier(.2,.7,.2,1);
}
.fv-cost-fill--hunt{ background: var(--ink-400); }
.fv-cost-fill--platform{ background: #555; }
.fv-cost-fill--starting{ background: var(--primary); }
[data-theme="dark"] .fv-cost-fill--hunt{ background: var(--ink-500); }
[data-theme="dark"] .fv-cost-fill--platform{ background: var(--ink-600); }
.fv-cost-amt{
  font-size: clamp(8.5px, 3.2cqi, 11px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  white-space: nowrap;
  line-height: 1;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fv-cost-lbl{
  margin: 0;
  width: 100%;
  max-width: var(--fv-cost-bar-max);
  font-size: clamp(9px, 2.8cqi, 10.5px);
  font-weight: 600;
  color: var(--ink-600);
  line-height: 1.4;
  text-align: center;
  letter-spacing: -0.02em;
}
.fv-cost-lbl-sub{
  display: block;
  font-weight: 500;
  color: var(--text-3);
}
.fv-cost-lbl--accent{
  color: var(--primary);
}
.fv-cost-lbl--accent .fv-cost-lbl-sub{
  color: color-mix(in oklab, var(--primary) 65%, var(--text-3));
}
@container (max-width: 260px){
  .fv-cost-fill{ padding-top: 6px; border-radius: 8px 8px 0 0; }
  .fv-cost-amt{ white-space: normal; text-align: center; line-height: 1.15; }
}

/* Accent variants applied via [data-accent] */
[data-accent="indigo"]{
  --brand-50:  #eef0ff;
  --brand-100: #dde1ff;
  --brand-300: #9aa3ff;
  --brand-400: #6e79f5;
  --brand-500: #4c56e2;
  --brand-600: #3b43c4;
  --brand-700: #2d3499;
  --brand-800: #252b7d;
  --brand-900: #1d2160;
}
[data-accent="teal"]{
  --brand-50:  #e6f7f5;
  --brand-100: #c8ede9;
  --brand-300: #6dccc3;
  --brand-400: #2eb3a7;
  --brand-500: #109a8d;
  --brand-600: #0a7c73;
  --brand-700: #0a625d;
  --brand-800: #0b4f4b;
  --brand-900: #093f3c;
}
[data-accent="charcoal"]{
  --brand-50:  #f1f3f7;
  --brand-100: #dde1ea;
  --brand-300: #98a1b5;
  --brand-400: #5a657f;
  --brand-500: #2a3245;
  --brand-600: #1d2333;
  --brand-700: #141927;
  --brand-800: #0d111c;
  --brand-900: #070a13;
}

/* ─── Hero Funnel (vertical, neon) ─────────────────────────── */
.hero-funnel-wrap{
  width: 100%;
  max-width: min(720px, 100%);
  margin: clamp(40px, 5vw, 72px) auto 0;
  padding: 0;
  overflow-x: clip;
  min-width: 0;
}

.fn{
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(8px, 1.2vw, 14px);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  transition: opacity .45s ease, filter .45s ease;
}
.fn.is-resetting{ opacity: .25; filter: blur(2px); }

/* ─── Tier (row of profile cards) ─────────────────────────── */
.fn-tier{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 18px 18px 22px;
  border-radius: 16px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.2,.7,.2,1);
}
.fn-tier.is-shown{
  opacity: 1;
  transform: translateY(0);
}

.fn-tier-head{
  display: flex;
  align-items: baseline;
  gap: 14px;
  justify-content: center;
}
.fn-tier-label{
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-3);
}
.fn-tier-count{
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--text);
  line-height: 1;
  font-feature-settings: "tnum";
}
.fn-tier-unit{
  font-size: 0.45em;
  font-weight: 700;
  color: var(--text-2);
  margin-left: 2px;
}

/* Final tier — neon counter + glow background */
.fn-tier--lg{
  background:
    radial-gradient(60% 100% at 50% 50%,
      color-mix(in oklab, var(--primary) 5%, transparent),
      transparent 80%);
}
.fn-tier--lg .fn-tier-label{
  color: var(--primary);
  text-shadow: 0 0 10px color-mix(in oklab, var(--primary) 30%, transparent);
}
.fn-tier--lg .fn-tier-count{
  color: var(--primary);
  text-shadow:
    0 0 10px color-mix(in oklab, var(--primary) 30%, transparent);
}

/* ─── Grid of profile cards ───────────────────────────────── */
.fn-grid{
  display: grid;
  grid-template-columns: repeat(var(--fn-cols, 10), minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.fn-tier--sm .fn-grid{ max-width: 460px; gap: 8px; }
.fn-tier--md .fn-grid{ max-width: 520px; gap: 10px; }
.fn-tier--lg .fn-grid{ max-width: 460px; gap: 14px; }

.fn-cell{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.fn-card{
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  background: var(--ink-100);
  color: var(--ink-300);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(.6);
  transition:
    opacity .5s cubic-bezier(.2,.7,.2,1),
    transform .55s cubic-bezier(.2,1.4,.4,1),
    background .4s ease,
    color .4s ease,
    box-shadow .4s ease;
  will-change: transform, opacity, box-shadow;
}
[data-theme="dark"] .fn-card{ background: rgba(255,255,255,.06); color: var(--ink-500); }

.fn-tier.is-shown .fn-card{
  opacity: 1;
  transform: scale(1);
}

/* Tier 20 sizing */
.fn-tier--sm .fn-card{ border-radius: 8px; }
.fn-tier--sm .fn-pi{ width: 60%; height: 60%; }

/* Tier 10 sizing */
.fn-tier--md .fn-card{ border-radius: 10px; }
.fn-tier--md .fn-pi{ width: 58%; height: 58%; }

/* Tier 5 sizing */
.fn-tier--lg .fn-card{ border-radius: 14px; }
.fn-tier--lg .fn-pi{ width: 55%; height: 55%; }

/* States */
.fn-card.is-on{
  background: linear-gradient(160deg,
    color-mix(in oklab, var(--primary) 18%, var(--surface)),
    color-mix(in oklab, var(--primary) 8%, var(--surface)));
  color: var(--primary);
  box-shadow:
    inset 0 0 0 1px color-mix(in oklab, var(--primary) 30%, transparent),
    0 0 12px -2px color-mix(in oklab, var(--primary) 35%, transparent);
}
.fn-card.is-glow{
  background: linear-gradient(160deg,
    color-mix(in oklab, var(--primary) 70%, #fff 0%),
    var(--brand-600));
  color: #fff;
  box-shadow:
    inset 0 0 0 1px color-mix(in oklab, #fff 25%, transparent),
    0 0 5px color-mix(in oklab, var(--primary) 45%, transparent),
    0 0 12px color-mix(in oklab, var(--primary) 25%, transparent);
}
.fn-card.is-bright{
  background: linear-gradient(160deg,
    color-mix(in oklab, var(--primary) 32%, #fff 0%),
    var(--brand-500));
  color: #fff;
  box-shadow:
    inset 0 0 0 1px color-mix(in oklab, #fff 35%, transparent),
    0 0 0 1px color-mix(in oklab, var(--primary) 18%, transparent),
    0 0 8px color-mix(in oklab, var(--primary) 55%, transparent),
    0 0 18px color-mix(in oklab, var(--primary) 35%, transparent);
  animation: fnBrightPulse 2.4s ease-in-out infinite;
}
@keyframes fnBrightPulse{
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}

.fn-pi{
  display: block;
}

.fn-name{
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.005em;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .5s ease, transform .5s cubic-bezier(.2,.7,.2,1);
  transition-delay: 600ms;
}
.fn-tier.is-shown .fn-name{ opacity: 1; transform: translateY(0); }

/* ─── Step (arrow + filter + arrow) ───────────────────────── */
.fn-step{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.fn-arrow{
  color: var(--ink-200);
  opacity: 0;
  transition: color .4s ease, opacity .4s ease, transform .4s ease;
  line-height: 0;
}
[data-theme="dark"] .fn-arrow{ color: var(--ink-700); }
.fn-arrow.is-on{
  color: var(--primary);
  opacity: 1;
  filter: drop-shadow(0 0 6px color-mix(in oklab, var(--primary) 60%, transparent));
}

/* ─── Filter card ─────────────────────────────────────────── */
.fn-filter{
  position: relative;
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 16px 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity .5s ease,
    transform .5s cubic-bezier(.2,.7,.2,1),
    border-color .5s ease,
    box-shadow .5s ease,
    background .5s ease,
    visibility .5s ease;
  overflow: hidden;
}
.fn-filter.is-on,
.fn-filter.is-done{
  visibility: visible;
}
.fn-filter.is-on{
  opacity: 1;
  transform: translateY(0);
  border-color: color-mix(in oklab, var(--primary) 55%, transparent);
  background: color-mix(in oklab, var(--primary) 4%, var(--surface));
  box-shadow:
    0 0 0 1px color-mix(in oklab, var(--primary) 35%, transparent),
    0 0 22px -4px color-mix(in oklab, var(--primary) 55%, transparent),
    0 14px 32px -16px color-mix(in oklab, var(--primary) 40%, transparent);
}
.fn-filter.is-done{
  opacity: .75;
  border-color: color-mix(in oklab, var(--primary) 22%, var(--border));
  background: var(--surface);
  box-shadow: 0 0 0 1px color-mix(in oklab, var(--primary) 14%, transparent);
}
[data-theme="dark"] .fn-filter.is-on{
  background: color-mix(in oklab, var(--primary) 14%, var(--surface));
}

.fn-filter-head{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.fn-filter-tag{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.005em;
}
.fn-filter-num{
  display: inline-grid;
  place-items: center;
  width: 20px; height: 20px;
  border-radius: 6px;
  background: var(--ink-100);
  color: var(--text-2);
  font-size: 11px;
  font-weight: 800;
  font-feature-settings: "tnum";
  transition: all .3s ease;
}
[data-theme="dark"] .fn-filter-num{ background: var(--ink-700); }
.fn-filter.is-on .fn-filter-num,
.fn-filter.is-done .fn-filter-num{
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 12px color-mix(in oklab, var(--primary) 60%, transparent);
}
.fn-filter-pass{
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 11px 4px 9px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid color-mix(in oklab, var(--primary) 40%, transparent);
  color: var(--primary-deep);
  font-size: 11.5px;
  font-weight: 700;
  font-feature-settings: "tnum";
  opacity: 0;
  transform: translateY(-3px) scale(.9);
  transition: opacity .35s ease, transform .35s cubic-bezier(.2,1.5,.4,1);
  box-shadow: 0 0 14px -4px color-mix(in oklab, var(--primary) 50%, transparent);
}
.fn-filter-pass.is-on{ opacity: 1; transform: translateY(0) scale(1); }
.fn-filter-pass svg{ color: var(--primary); }
[data-theme="dark"] .fn-filter-pass{ color: var(--brand-300); }

.fn-chips{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.fn-chip{
  padding: 6px 13px;
  background: var(--ink-50);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-2);
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity .45s cubic-bezier(.2,.7,.2,1),
    transform .45s cubic-bezier(.2,.7,.2,1),
    background .35s ease,
    border-color .35s ease,
    color .35s ease,
    box-shadow .35s ease;
}
.fn-chip--more{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 13px;
  min-width: 44px;
}
.fn-chip--more svg{ display: block; }
[data-theme="dark"] .fn-chip{ background: rgba(255,255,255,.04); }
.fn-filter.is-on .fn-chip{
  opacity: 1;
  transform: translateY(0);
  background: var(--surface);
  border-color: color-mix(in oklab, var(--primary) 50%, transparent);
  color: var(--primary-deep);
  box-shadow: 0 0 12px -4px color-mix(in oklab, var(--primary) 40%, transparent);
}
[data-theme="dark"] .fn-filter.is-on .fn-chip{ color: var(--brand-300); }
.fn-filter.is-done .fn-chip{
  opacity: 1;
  transform: translateY(0);
  background: var(--ink-50);
  border-color: var(--border);
  color: var(--text-3);
  box-shadow: none;
}
[data-theme="dark"] .fn-filter.is-done .fn-chip{ background: rgba(255,255,255,.03); color: var(--text-3); }

.fn-sweep{
  position: absolute;
  top: 0; bottom: 0;
  left: -50%;
  width: 55%;
  background: linear-gradient(90deg,
    transparent 0%,
    color-mix(in oklab, var(--primary) 45%, transparent) 50%,
    transparent 100%);
  filter: blur(6px);
  pointer-events: none;
  opacity: 0;
}
.fn-filter.is-on .fn-sweep{ animation: fnSweep 1.1s cubic-bezier(.4,0,.2,1) forwards; }
@keyframes fnSweep{
  0%   { left: -50%; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { left: 100%;  opacity: 0; }
}

/* Product preview section */
.product-preview{ padding: clamp(56px, 7vw, 88px) 0; }
.product-preview .pu{ border-radius: 10px; }
[data-theme="light"] .product-preview .pu{
  border: 1px solid var(--border);
  box-shadow:
    0 2px 4px rgba(15, 23, 42, 0.04),
    0 16px 40px -12px rgba(15, 23, 42, 0.14);
}

/* ─── Comparison section ────────────────────────────────────── */
.compare-section{
  position: relative;
  padding: clamp(80px, 10vw, 128px) 0;
  background:
    radial-gradient(60% 80% at 50% 0%, color-mix(in oklab, var(--primary) 6%, transparent), transparent 60%),
    var(--bg);
  overflow: hidden;
}
.compare-title{ color: #fff; }
[data-theme="light"] .compare-title{ color: var(--text); }

.compare-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 56px;
  align-items: stretch;
}
@media (min-width: 900px){
  .compare-grid{ grid-template-columns: 1fr 1.06fr 1fr; gap: 20px; }
}

.compare-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform .25s ease, border-color .25s ease;
}

.compare-card.is-featured{
  background: var(--surface);
  border-color: color-mix(in oklab, var(--primary) 50%, transparent);
  box-shadow:
    0 0 0 1px color-mix(in oklab, var(--primary) 30%, transparent),
    0 0 40px -4px color-mix(in oklab, var(--primary) 35%, transparent),
    0 30px 60px -20px color-mix(in oklab, var(--primary) 30%, transparent);
}
[data-theme="dark"] .compare-card.is-featured{
  background:
    radial-gradient(80% 60% at 50% 0%, color-mix(in oklab, var(--primary) 18%, transparent), transparent 70%),
    linear-gradient(180deg, color-mix(in oklab, var(--primary) 10%, var(--surface)), var(--surface) 70%);
}
@media (min-width: 900px){
  .compare-card.is-featured{ transform: scale(1.03); z-index: 2; }
}

.compare-tag{
  align-self: flex-start;
  padding: 5px 10px;
  background: var(--ink-100);
  color: var(--text-2);
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
  letter-spacing: -0.005em;
}
[data-theme="dark"] .compare-tag{ background: var(--ink-700); color: var(--text); }
.compare-card.is-featured .compare-tag{
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 14px -2px color-mix(in oklab, var(--primary) 60%, transparent);
}

.compare-fee{
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
  font-feature-settings: "tnum";
  line-height: 1.15;
}
.compare-card.is-featured .compare-fee{
  color: var(--primary);
  text-shadow: 0 0 18px color-mix(in oklab, var(--primary) 35%, transparent);
}

.compare-card-title{
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--text-2);
}
.compare-card.is-featured .compare-card-title{
  color: var(--primary);
}

.compare-flow-label{
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 6px;
}

.compare-flow{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.compare-flow li{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.compare-card.is-featured .compare-flow li{
  background: color-mix(in oklab, var(--primary) 10%, var(--surface));
  border-color: color-mix(in oklab, var(--primary) 30%, transparent);
}
.compare-step-num{
  flex: none;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  background: var(--ink-100);
  color: var(--text-2);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  font-feature-settings: "tnum";
}
[data-theme="dark"] .compare-step-num{ background: var(--ink-700); color: var(--text); }
.compare-card.is-featured .compare-step-num{
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 10px color-mix(in oklab, var(--primary) 60%, transparent);
}

.compare-divider{
  height: 1px;
  background: var(--border);
  margin: 8px 0 2px;
}
.compare-card.is-featured .compare-divider{
  background: color-mix(in oklab, var(--primary) 30%, transparent);
}

.compare-footer{
  font-size: 13.5px;
  color: var(--text-2);
  margin: 0;
  line-height: 1.6;
  text-wrap: pretty;
  white-space: pre-line;
}
.compare-card.is-featured .compare-footer{
  color: var(--text);
  font-weight: 500;
}

/* ─── Mobile polish (≤768 / ≤600) ─────────────────────────────── */
@media (max-width: 768px){
  .product-preview{ display: none; }
  .section-head{ margin-bottom: 40px; gap: 12px; }
  .section-head .section-sub{ font-size: 15px; }
  .compare-section{ padding-top: clamp(56px, 8vw, 96px); }
  .compare-grid{ margin-top: 40px; gap: 14px; }
  .compare-card{ padding: 22px 18px; }
  .compare-fee{ font-size: 22px; }
  .process-list{
    gap: 48px;
  }
  .process-row{
    padding: 0;
    gap: 28px;
    background: transparent;
    border: none;
    box-shadow: none;
  }
  .process-vis{ min-height: 200px; padding: 16px; }
  /* Agent 01~04 — match feature f3 chart box (.fv-cost-chart) */
  .process-vis--match-f3{
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 10px 10px;
  }
  [data-theme="dark"] .process-vis--match-f3{
    background: var(--bg-alt);
  }
  .process-vis--match-f3 .fc-card{
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
  }
  .feature-card{ padding: 22px; }
  .fv-ai-stack{ flex-direction: column; }
  .price-card{ padding: 28px 22px; }
  .price-amount{ font-size: 36px; }
  .faq-item summary{ padding: 18px 18px; font-size: 15px; }
  .faq-body{ padding: 0 18px 18px; font-size: 14px; }
  .cta-card{ padding: 36px 22px; }
  .cta-actions{ flex-direction: column; }
  .cta-actions .btn{ width: 100%; justify-content: center; min-height: 48px; }
  .footer-top{ grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .footer-col:first-child{ grid-column: 1 / -1; }
  .footer-bottom{ flex-direction: column; align-items: flex-start; }
  .footer-company{ display: none; }
  .footer-legal-desktop{ display: none; }
  .footer-legal-mobile{
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .t-marquee{
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
            mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
  }
  .t-card{ width: min(300px, 100%); }
  .pu-chip{ display: none; }
  .hero-funnel-wrap{ margin-top: 32px; padding: 0; }
  .fn-tier-head{
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
  }
  .fn-tier--sm .fn-grid,
  .fn-tier--md .fn-grid,
  .fn-tier--lg .fn-grid{ max-width: 100%; }
  /* Final 3 — same card size as 5-person row (no lg enlarge) */
  .fn-tier--final .fn-grid{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 6px;
  }
  .fn-tier--final .fn-cell{
    flex: 0 1 calc((100% - 24px) / 5);
    max-width: calc((100% - 24px) / 5);
    min-width: 0;
  }
  .fn-card.is-bright{ transform: scale(1); animation: none; }
  .fn-filter-tag{ flex-wrap: wrap; justify-content: center; text-align: center; }
}

@media (max-width: 600px){
  .hero-headline{ font-size: clamp(30px, 8.5vw, 40px); }
  .hero-cta{
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta .btn{ width: 100%; justify-content: center; min-height: 48px; }
  .hero-meta{ gap: 10px; font-size: 12px; }
  .logos{ padding: 40px 0; }
  .logos-marquee{
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
            mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
  }
  .logos-marquee-wrap{ gap: 12px; }
  .logos-track{ gap: 14px; }
  .logo-pill{ width: 120px; height: 40px; }
  [data-theme="dark"] .logo-pill{ height: 44px; }
  .stat-card{ padding: 28px 22px; }
  .fn-tier{ padding: 14px 8px 18px; }
  .fn-tier-label{ font-size: 11.5px; }
  .fn-tier-count{ font-size: 28px; }
  .fn-tier--sm .fn-grid{ gap: 5px; }
  .fn-tier--md .fn-grid{ gap: 6px; }
  .fn-tier--lg .fn-grid{ gap: 8px; }
  .fn-filter{ padding: 11px 13px 12px; }
  .fn-filter-tag{ font-size: 12px; }
  .fn-chip{ font-size: 11.5px; padding: 5px 11px; }
  .fn-name{ font-size: 11px; }
  .nav-inner{ height: 60px; }
  .nav-backdrop{ top: 60px; }
  .nav-links{ top: 60px; height: calc(100dvh - 60px); }
  .nav-cta .nav-login{ display: none; }
  .footer-top{ grid-template-columns: 1fr; }
}

/* Channel.io launcher typically uses z-index > 9999; nav stays at 49–50 */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .t-track{ animation: none; }
  .logos-track{ animation: none; }
  .fn-card.is-bright{ animation: none; }
  .pu-chip{ animation: none; }
  .fn-filter.is-on .fn-sweep{ animation: none; }
}
