/* ─── Tokens ─────────────────────────────────────────────
   Restokk — visual system v2
   Navy mantido como cor base; adicionamos:
   - acento azul elétrico (oklch) para CTA/linhas vivas
   - papel quente (off-white) para seções claras
   - verde sinal e coral para compare-cards
────────────────────────────────────────────────────────── */
:root {
  --navy-950: #0B1438;
  --navy-900: #111F4D;
  --navy-800: #1B2D6B;
  --navy-600: #2E4299;

  --accent:   oklch(62% 0.19 258);      /* azul elétrico */
  --accent-2: oklch(74% 0.14 258);
  --accent-soft: oklch(95% 0.03 258);

  --sand-50:  #FAF6F1;
  --sand-100: #F3ECE3;
  --sand-200: #E7DDD0;

  --ink:      #0F1428;
  --ink-2:    #2A3052;
  --muted:    #5A5F78;
  --muted-2:  #8188A3;
  --hair:     #E7E9F0;
  --hair-2:   #EFEFF4;

  --success:  oklch(60% 0.14 155);
  --danger:   oklch(58% 0.18 25);
  --warn:     oklch(68% 0.15 70);

  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-2xl: 36px;

  --shadow-sm: 0 1px 2px rgba(16,20,40,.04), 0 1px 0 rgba(16,20,40,.02);
  --shadow-md: 0 6px 24px rgba(16,20,40,.06), 0 1px 0 rgba(16,20,40,.02);
  --shadow-lg: 0 24px 60px rgba(16,20,40,.10), 0 2px 0 rgba(16,20,40,.03);
  --shadow-glow: 0 30px 80px oklch(62% 0.19 258 / .18);

  --font-display: 'Fraunces', 'Plus Jakarta Sans', system-ui, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

/* Fraunces opcional? Usaremos Plus Jakarta apenas para manter CSP.
   Títulos ganham tratamento de peso + letter-spacing. */
:root { --font-display: var(--font-sans); }

/* ─── Base ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
img { max-width: 100%; display: block; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 16px; background: #fff; padding: 8px 12px; border-radius: 8px; z-index: 200; }

::selection { background: oklch(62% 0.19 258 / .18); color: var(--ink); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
@media (max-width: 640px) { .container { padding: 0 20px; } }

/* ─── Tag / pill ────────────────────────────────────────── */
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-2);
  background: #fff;
  border: 1px solid var(--hair);
  padding: 6px 12px 6px 10px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.tag::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px oklch(62% 0.19 258 / .18);
}

/* ─── Buttons ───────────────────────────────────────────── */
.btn-primary {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--ink);
  color: #fff;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14.5px; font-weight: 600; line-height: 1;
  border: none;
  letter-spacing: -.005em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 1px 0 rgba(255,255,255,.12) inset, 0 10px 24px rgba(11,20,56,.18);
}
.btn-primary::after {
  content: '→'; font-size: 15px; margin-left: 2px;
  transition: transform .25s ease;
}
.btn-primary:hover { transform: translateY(-1px); background: var(--navy-900); box-shadow: 0 1px 0 rgba(255,255,255,.14) inset, 0 18px 36px rgba(11,20,56,.28); }
.btn-primary:hover::after { transform: translateX(3px); }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; color: var(--ink-2);
  padding: 13px 22px; border-radius: 999px;
  font-size: 14.5px; font-weight: 600; line-height: 1;
  border: 1px solid var(--hair);
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.btn-outline:hover { background: var(--sand-50); border-color: var(--sand-200); color: var(--ink); }

/* ─── Nav ───────────────────────────────────────────────── */
#site-nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
#site-nav.is-scrolled {
  border-color: var(--hair);
  background: rgba(255,255,255,.86);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px; max-width: 1200px; margin: 0 auto;
}
.nav-logo img { width: auto; height: 26px; display: block; }

.nav-links {
  display: flex; gap: 2px;
  background: var(--sand-50);
  padding: 4px;
  border-radius: 999px;
  border: 1px solid var(--hair-2);
}
.nav-links a {
  font-size: 13.5px; font-weight: 500; color: var(--muted);
  padding: 8px 16px; border-radius: 999px;
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--ink); background: #fff; box-shadow: var(--shadow-sm); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .btn-primary { padding: 11px 18px; font-size: 13.5px; }

#mobile-menu-button {
  display: none; background: none; border: 1px solid var(--hair);
  padding: 9px; border-radius: 10px; color: var(--ink);
  transition: background .15s;
}
#mobile-menu-button:hover { background: var(--sand-50); }

#mobile-menu {
  display: none; flex-direction: column; gap: 2px;
  padding: 14px 24px 22px;
  border-top: 1px solid var(--hair);
  background: rgba(255,255,255,.98);
}
#mobile-menu.open { display: flex; }
#mobile-menu a { font-size: 15px; font-weight: 500; color: var(--muted); padding: 11px 14px; border-radius: 10px; }
#mobile-menu a:hover { color: var(--ink); background: var(--sand-50); }
#mobile-menu .btn-primary { width: 100%; margin-top: 8px; }

/* ─── Hero ──────────────────────────────────────────────── */
#hero {
  position: relative; overflow: hidden;
  padding: 132px 0 96px;
  background:
    radial-gradient(ellipse 60% 60% at 85% 12%, oklch(62% 0.19 258 / .08), transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 90%, oklch(82% 0.05 60 / .35), transparent 70%),
    linear-gradient(180deg, #fbf8f4 0%, #f6f1ea 55%, #fbf8f4 100%);
}
/* grid de pontos sutil */
#hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(11,20,56,.045) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 120% 90% at 50% 30%, black 20%, transparent 78%);
}
/* linha horizontal guia */
#hero::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--hair), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy { max-width: 580px; position: relative; }
.hero-tag { margin-bottom: 24px; }
#hero .hero-tag .tag {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  color: var(--muted-2);
  font-size: 11px;
  letter-spacing: .18em;
  font-weight: 500;
  text-transform: uppercase;
  gap: 0;
}
#hero .hero-tag .tag::before {
  display: none !important;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.035em;
  color: var(--ink);
  margin: 0 0 24px;
  text-wrap: balance;
}
.hero-title-line { display: block; }
#typewriter-text .hero-title-line { display: inline; }
#typewriter-text {
  display: block;
  background: linear-gradient(92deg, var(--accent) 0%, oklch(50% 0.22 272) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  min-height: 1.02em;
}

.hero-sub {
  font-size: 18px; line-height: 1.6;
  color: var(--muted);
  margin: 0 0 36px; max-width: 520px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.hero-footnote {
  font-size: 13px; color: var(--muted-2);
  margin-top: 22px; display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap;
}
.hero-footnote::before {
  content: ''; width: 28px; height: 1px; background: var(--hair);
}

/* Hero visual — imagem emoldurada + card de métrica flutuante */
.hero-visual {
  position: relative;
  width: 100%;
  height: 580px;
  border-radius: var(--r-2xl);
  overflow: visible;
}
.hero-visual .hv-frame {
  position: absolute; inset: 0;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,.6) inset,
    0 1px 3px rgba(16,20,40,.06),
    0 30px 80px rgba(16,20,40,.18);
  border: 1px solid rgba(255,255,255,.5);
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 62% 18%;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,.5);
  box-shadow:
    0 1px 0 rgba(255,255,255,.6) inset,
    0 1px 3px rgba(16,20,40,.06),
    0 30px 80px rgba(16,20,40,.18);
}
.hv-frame::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,20,56,0) 55%, rgba(11,20,56,.42) 100%);
}

/* KPI flutuante no hero */
.hv-kpi {
  position: absolute; left: -28px; bottom: 36px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 18px;
  padding: 14px 18px 14px 14px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 20px 50px rgba(16,20,40,.22);
  min-width: 220px;
}
.hv-kpi-dot {
  width: 36px; height: 36px; border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), oklch(50% 0.22 272));
  display: grid; place-items: center;
  color: #fff; font-size: 18px; font-weight: 700;
  box-shadow: 0 8px 20px oklch(50% 0.22 272 / .35);
}
.hv-kpi-text { display: flex; flex-direction: column; }
.hv-kpi-k { font-size: 20px; font-weight: 700; color: var(--ink); letter-spacing: -.02em; line-height: 1.1; }
.hv-kpi-l { font-size: 12px; font-weight: 500; color: var(--muted); }

/* Tag flutuante em cima */
.hv-chip {
  position: absolute; top: 24px; right: 24px;
  background: rgba(11,20,56,.78);
  backdrop-filter: blur(14px);
  color: #fff;
  font-size: 11.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 7px 12px; border-radius: 999px;
  display: flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,.14);
}
.hv-chip .pulse {
  width: 6px; height: 6px; border-radius: 50%; background: #5BE684;
  box-shadow: 0 0 0 3px rgba(91,230,132,.28);
  animation: pulse 1.8s ease infinite;
}

/* ─── Section header ────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 72px; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-header .tag { margin-bottom: 22px; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.08;
  color: var(--ink);
  margin: 0 auto 18px;
  max-width: none;
  text-wrap: balance;
}
.section-sub {
  font-size: 17.5px; line-height: 1.6;
  color: var(--muted);
  margin: 0 auto;
  text-wrap: pretty;
}

/* ─── Comparison ────────────────────────────────────────── */
#comparison { padding: 120px 0; background: #fff; position: relative; }
#comparison::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 10% 10%, var(--sand-50), transparent 60%),
    radial-gradient(ellipse 40% 50% at 92% 90%, var(--accent-soft), transparent 60%);
  pointer-events: none;
}
#comparison > .container { position: relative; z-index: 1; }

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px; margin-bottom: 64px;
  position: relative;
}

/* Divisor VS central */
.compare-vs {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px; border-radius: 999px;
  background: var(--ink);
  color: #fff;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 800;
  letter-spacing: .1em;
  z-index: 2;
  box-shadow: 0 12px 28px rgba(11,20,56,.28), 0 0 0 6px #fff;
}

.compare-card {
  background: #fff;
  border-radius: var(--r-2xl);
  padding: 40px 36px 36px;
  border: 1px solid var(--hair);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.compare-card.bad {
  background:
    linear-gradient(180deg, #fff 0%, #fff 100%);
  border-color: var(--hair);
}
.compare-card.bad::before {
  content: ''; position: absolute; top: 0; left: 36px; right: 36px; height: 2px;
  background: linear-gradient(90deg, transparent, oklch(70% 0.12 25 / .4), transparent);
  border-radius: 2px;
}
.compare-card.good {
  background: linear-gradient(180deg, #fff 0%, oklch(98% 0.015 258) 100%);
  border-color: oklch(88% 0.06 258);
  box-shadow:
    0 1px 0 rgba(255,255,255,.8) inset,
    0 30px 60px oklch(62% 0.19 258 / .10),
    0 2px 6px rgba(16,20,40,.04);
}
.compare-card.good::before {
  content: ''; position: absolute; top: 0; left: 36px; right: 36px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 2px;
}

.compare-head { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
.compare-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 14px;
  display: grid; place-items: center;
}
.compare-icon svg { width: 22px; height: 22px; }
.compare-icon.red {
  background: oklch(95% 0.03 25);
  color: oklch(52% 0.16 25);
  box-shadow: 0 0 0 3px oklch(52% 0.16 25 / .12);
}
.compare-icon.green {
  background: oklch(95% 0.04 155);
  color: oklch(46% 0.14 155);
  box-shadow: 0 0 0 3px oklch(46% 0.14 155 / .14);
}
.compare-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 8px;
}
.compare-eyebrow.good { color: var(--accent); }
.compare-head-text h3 { font-size: 22px; font-weight: 700; margin: 0 0 6px; letter-spacing: -.02em; }
.compare-head-text p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.55; }
.compare-title-bad { color: var(--ink); }
.compare-title-good { color: var(--ink); }

.compare-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 22px; }
.compare-item { display: flex; gap: 14px; align-items: flex-start; }
.compare-bullet {
  width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0;
  margin-top: 1px; display: grid; place-items: center;
  font-size: 11px; font-weight: 800;
  letter-spacing: .02em;
}
.compare-bullet.x { background: oklch(96% 0.02 25); color: oklch(52% 0.16 25); }
.compare-bullet.v { background: var(--accent); color: #fff; box-shadow: 0 6px 14px oklch(62% 0.19 258 / .32); }
.compare-num { font-variant-numeric: tabular-nums; }
.compare-item-title { font-size: 15px; font-weight: 700; color: var(--ink); margin: 0 0 4px; letter-spacing: -.005em; }
.compare-item-desc { font-size: 13.5px; line-height: 1.6; color: var(--muted); margin: 0; }

.compare-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 32px; padding-top: 22px; border-top: 1px dashed var(--hair);
}
.compare-footer-label { font-size: 13px; font-weight: 700; color: var(--ink); letter-spacing: -.005em; }
.compare-live { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); font-weight: 500; }
.compare-live-dot { width: 7px; height: 7px; border-radius: 50%; background: #22C55E; box-shadow: 0 0 0 3px rgba(34,197,94,.22); animation: pulse 1.6s ease infinite; }

.section-cta { text-align: center; margin-top: 32px; }
.section-cta p { font-size: 16px; color: var(--muted); margin: 0 0 22px; }

/* ─── Features ──────────────────────────────────────────── */
#features {
  padding: 120px 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, var(--sand-50), transparent 60%),
    #fff;
  position: relative;
}

.features-groups { display: flex; flex-direction: column; gap: 72px; }

.features-group-head {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--hair);
}
.features-group-num {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 700;
  letter-spacing: -.03em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.features-group-title {
  font-size: 22px; font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
  margin: 0 0 4px;
}
.features-group-sub {
  font-size: 14px; color: var(--muted); margin: 0;
}

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

.feature-card {
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: var(--r-xl);
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
  position: relative;
  display: flex; flex-direction: column;
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: oklch(88% 0.06 258);
}
.feature-card::before { display: none; }

.feature-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 22px;
  position: relative;
}
.feature-icon svg { width: 22px; height: 22px; position: relative; z-index: 1; }

.feature-title {
  font-size: 17px; font-weight: 700; color: var(--ink);
  margin: 0 0 8px; letter-spacing: -.01em;
}
.feature-desc {
  font-size: 14px; line-height: 1.6; color: var(--muted);
  margin: 0 0 18px;
}

.feature-bullets {
  list-style: none; padding: 0; margin: auto 0 0;
  display: flex; flex-direction: column; gap: 8px;
  padding-top: 18px;
  border-top: 1px dashed var(--hair);
}
.feature-bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--ink-2); font-weight: 500;
  line-height: 1.5;
}
.feature-bullets li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 2.5px oklch(62% 0.19 258 / .2);
  flex-shrink: 0;
  margin-top: 7px;
}
.fi-blue { background: oklch(95% 0.04 258); color: var(--accent); }
.fi-green { background: oklch(95% 0.04 155); color: oklch(46% 0.14 155); }
.fi-amber { background: oklch(95% 0.04 75); color: oklch(52% 0.14 75); }
.fi-purple { background: oklch(95% 0.04 295); color: oklch(50% 0.16 295); }
.fi-red { background: oklch(95% 0.04 25); color: oklch(52% 0.16 25); }
.fi-indigo { background: oklch(95% 0.04 270); color: oklch(48% 0.16 270); }

.feature-title {
  font-size: 17px; font-weight: 700; color: var(--ink);
  margin: 0 0 10px; letter-spacing: -.01em;
}
.feature-desc { font-size: 14.5px; line-height: 1.65; color: var(--muted); margin: 0; }

/* ─── Process (implantação) ─────────────────────────────── */
#process {
  padding: 120px 0;
  background: var(--sand-50);
  position: relative; overflow: hidden;
  border-top: 1px solid var(--hair);
}
#process::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(11,20,56,.035) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 100% 60% at 50% 30%, black 30%, transparent 80%);
  pointer-events: none;
}
#process > .container { position: relative; z-index: 1; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.process-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: var(--r-xl);
  padding: 36px 30px 32px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.process-step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: oklch(88% 0.06 258);
}

.process-step.featured {
  background: linear-gradient(180deg, #fff, var(--accent-soft));
  border-color: oklch(82% 0.08 258);
  box-shadow: var(--shadow-md), 0 0 0 1px oklch(62% 0.19 258 / .12) inset;
}

.process-badge {
  position: absolute;
  top: 18px; right: 18px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent);
  background: #fff;
  border: 1px solid oklch(86% 0.06 258);
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.process-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px oklch(62% 0.19 258 / .22);
}

.step-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  margin-bottom: 22px;
  display: inline-block;
}
.step-num-1 { color: var(--accent); }
.step-num-2 { color: oklch(56% 0.18 258); }
.step-num-3 { color: oklch(50% 0.16 258); }

.step-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 10px;
  letter-spacing: -.01em;
}
.step-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 22px;
}

.step-checks {
  list-style: none;
  padding: 18px 0 0;
  margin: auto 0 0;
  border-top: 1px dashed var(--hair);
  display: flex; flex-direction: column; gap: 10px;
}
.step-checks li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; line-height: 1.5;
  color: var(--ink-2); font-weight: 500;
}
.step-checks li::before {
  content: '';
  flex-shrink: 0;
  width: 14px; height: 14px;
  margin-top: 3px;
  border-radius: 50%;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--accent) border-box;
  border: 2px solid var(--accent);
  box-shadow:
    inset 0 0 0 3px var(--accent),
    0 0 0 3px oklch(62% 0.19 258 / .12);
}

/* ─── Deployment (editorial) ────────────────────────────── */
#deployment {
  padding: 120px 0;
  background: var(--sand-50);
  position: relative; overflow: hidden;
  border-top: 1px solid var(--hair);
}
#deployment::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(11,20,56,.035) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 100% 60% at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}
.deployment-inner {
  position: relative; z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding-top: 8px;
}
.deployment-inner .tag { margin-bottom: 20px; }
.deployment-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 24px;
  letter-spacing: -.035em;
  line-height: 1.1;
  text-wrap: balance;
}
.deployment-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
  text-wrap: pretty;
}

/* ─── CTA Band ──────────────────────────────────────────── */
#cta-band {
  padding: 120px 0; position: relative; overflow: hidden;
  background: var(--navy-950);
  color: #fff;
  text-align: center;
}
#cta-band::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, oklch(52% 0.22 265 / .55), transparent 65%),
    radial-gradient(ellipse 40% 40% at 15% 10%, oklch(62% 0.19 258 / .25), transparent 65%),
    radial-gradient(ellipse 40% 40% at 90% 5%, oklch(72% 0.12 50 / .22), transparent 65%);
  pointer-events: none;
}
#cta-band::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 20%, transparent 80%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta-inner .tag {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
  color: #fff;
  margin-bottom: 24px;
}
.cta-inner .tag::before { background: #5BE684; box-shadow: 0 0 0 3px rgba(91,230,132,.28); }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 56px); font-weight: 700;
  color: #fff; letter-spacing: -.035em; line-height: 1.05;
  margin: 0 0 20px;
  text-wrap: balance;
}
.cta-sub {
  font-size: 18px; color: oklch(82% 0.04 258); margin: 0 auto 36px;
  max-width: 540px; line-height: 1.6;
}
#cta-band .btn-primary {
  background: #fff; color: var(--navy-950);
  box-shadow: 0 20px 50px rgba(0,0,0,.35), 0 1px 0 rgba(255,255,255,.6) inset;
  padding: 16px 28px; font-size: 15px;
}
#cta-band .btn-primary:hover { background: var(--sand-50); }
.cta-footnote { font-size: 13px; color: oklch(68% 0.04 258); margin-top: 20px; }

/* ─── Benefits ──────────────────────────────────────────── */
#benefits { padding: 120px 0; background: #fff; }
.benefits-title { font-size: clamp(28px, 3.4vw, 40px); }

.benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.benefit-card {
  padding: 36px 30px;
  border-radius: var(--r-xl);
  background: #fff;
  border: 1px solid var(--hair);
  transition: box-shadow .25s ease, transform .25s ease;
  position: relative;
}
.benefit-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.benefit-icon-wrap {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 22px;
}
.benefit-icon-wrap svg { width: 20px; height: 20px; }
.bi-blue { background: oklch(95% 0.04 258); color: var(--accent); }
.bi-green { background: oklch(95% 0.04 155); color: oklch(46% 0.14 155); }
.bi-purple { background: oklch(95% 0.04 295); color: oklch(50% 0.16 295); }
.benefit-title { font-size: 16.5px; font-weight: 700; color: var(--ink); margin: 0 0 10px; letter-spacing: -.01em; }
.benefit-desc { font-size: 14px; line-height: 1.65; color: var(--muted); margin: 0; }

/* ─── Compliance ────────────────────────────────────────── */
#compliance { padding: 40px 0; background: var(--sand-50); border-top: 1px solid var(--hair); }
.compliance-inner {
  display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap;
}
.compliance-item { display: flex; align-items: center; gap: 10px; }
.compliance-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 3px oklch(62% 0.19 258 / .2);
}
.compliance-item span { font-size: 13px; font-weight: 600; color: var(--ink-2); letter-spacing: .005em; }

/* ─── Footer ────────────────────────────────────────────── */
footer { padding: 64px 0 32px; background: #fff; border-top: 1px solid var(--hair); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { width: auto; height: 26px; margin-bottom: 18px; display: block; }
.footer-brand p { font-size: 14px; line-height: 1.65; color: var(--muted); margin: 0; max-width: 320px; }
.footer-col h4 {
  font-size: 12px; font-weight: 700; color: var(--ink);
  margin: 0 0 16px; letter-spacing: .1em; text-transform: uppercase;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--muted); transition: color .15s; }
.footer-col ul li a:hover { color: var(--ink); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid var(--hair); flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; color: var(--muted); margin: 0; }
.footer-bottom-meta { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--muted); }
.footer-bottom-meta .dot { width: 6px; height: 6px; border-radius: 50%; background: #5BE684; box-shadow: 0 0 0 3px rgba(91,230,132,.24); }

/* ─── Animations ────────────────────────────────────────── */
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: .82; }
}

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { max-width: 100%; }
  .hero-visual { height: 420px; max-width: 620px; margin: 0 auto; }
  .hv-kpi { left: 8px; bottom: 20px; }
  .compare-grid { grid-template-columns: 1fr; max-width: 580px; margin-left: auto; margin-right: auto; }
  .compare-vs { display: none; }
  .features-grid, .features-grid-2 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; max-width: 580px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta .btn-primary { display: none; }
  #mobile-menu-button { display: flex; }
  #hero { padding: 110px 0 72px; }
  .hero-grid { gap: 40px; }
  .hero-title { letter-spacing: -.03em; }
  .hero-visual { height: 360px; border-radius: var(--r-xl); }
  .hero-visual img { border-radius: var(--r-md); }
  .hv-frame { border-radius: var(--r-xl); }
  .hv-kpi { min-width: unset; padding: 10px 14px 10px 10px; }
  .hv-kpi-k { font-size: 17px; }
  #comparison, #features, #process, #deployment, #cta-band, #benefits { padding: 88px 0; }
  .section-header { margin-bottom: 52px; }
  .features-grid { grid-template-columns: 1fr; }
  .features-grid-2 { grid-template-columns: 1fr; }
  .features-groups { gap: 56px; }
  .process-step { padding: 28px 24px 26px; }
  .step-num { font-size: 34px; margin-bottom: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .compliance-inner { gap: 28px; }
  .compare-card { padding: 32px 28px 28px; }
}
