/* ── DESIGN TOKENS ── */
:root {
  --blue:      #1560E8;
  --blue-dk:   #0F4EC4;
  --blue-lo:   rgba(21,96,232,.08);
  --blue-md:   rgba(21,96,232,.18);
  --blue-glow: rgba(21,96,232,.12);
  --green:     #0CA36B;
  --green-lo:  rgba(12,163,107,.09);
  --orange:    #D45A0D;
  --orange-lo: rgba(212,90,13,.09);
  --ink:       #FFFFFF;
  --text:      #0F1629;
  --ts:        #4A5B78;
  --tm:        #8899B4;
  --night:     #F5F7FB;
  --slate:     #EDF1F8;
  --bd:        #DDE4EF;
  --bd-hi:     #BCC9DF;
  --fd: 'Space Grotesk', sans-serif;
  --fb: 'Plus Jakarta Sans', sans-serif;
  --fm: 'JetBrains Mono', monospace;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--fb);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--night); }
::-webkit-scrollbar-thumb { background: var(--bd-hi); border-radius: 3px; }

/* ── UTILS ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
.tag {
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
}
a { color: inherit; }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* ══ NAV ══ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 66px;
  display: flex; align-items: center;
  transition: background .25s, border-color .25s, backdrop-filter .25s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: #fff;
  border-bottom-color: var(--bd);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 40px;
  width: 100%;
  display: flex; align-items: center; gap: 0;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-logo svg { flex-shrink: 0; }
.nav-wordmark { font-family: var(--fd); font-size: 14px; font-weight: 700; color: var(--text); letter-spacing: -.01em; }
.nav-wordmark span { font-weight: 300; color: var(--ts); }

.nav-links { display: flex; gap: 2px; margin: 0 auto; }
.nav-link {
  font-size: 13.5px; font-weight: 500; color: var(--ts);
  padding: 7px 14px; border-radius: 6px;
  text-decoration: none; transition: color .15s, background .15s;
}
.nav-link:hover { color: var(--text); background: rgba(0,0,0,.04); }

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

.btn-ghost {
  font-size: 13.5px; font-weight: 500; color: var(--ts);
  padding: 8px 16px; border-radius: 6px;
  text-decoration: none; transition: color .15s;
  cursor: pointer; background: none; border: none;
  white-space: nowrap;
}
.btn-ghost:hover { color: var(--text); }

.btn-primary {
  font-family: var(--fb); font-size: 13.5px; font-weight: 600;
  color: #fff; background: var(--blue);
  padding: 9px 18px; border-radius: 6px;
  text-decoration: none; border: none; cursor: pointer;
  transition: background .15s, box-shadow .15s;
  white-space: nowrap; display: inline-block;
}
.btn-primary:hover { background: var(--blue-dk); box-shadow: 0 4px 14px rgba(21,96,232,.3); }

.btn-lg {
  font-family: var(--fb); font-size: 15px; font-weight: 600;
  background: var(--blue); color: #fff;
  padding: 13px 26px; border-radius: 7px;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: background .15s, box-shadow .15s;
  cursor: pointer; border: none;
  white-space: nowrap;
}
.btn-lg:hover { background: var(--blue-dk); box-shadow: 0 4px 20px rgba(21,96,232,.35); }
.btn-lg svg { transition: transform .2s; }
.btn-lg:hover svg { transform: translateX(3px); }

.btn-outline {
  font-family: var(--fb); font-size: 15px; font-weight: 500;
  color: var(--ts); border: 1px solid var(--bd-hi);
  padding: 13px 24px; border-radius: 7px;
  text-decoration: none; cursor: pointer;
  transition: color .15s, border-color .15s, background .15s;
  white-space: nowrap; display: inline-block;
}
.btn-outline:hover { color: var(--text); border-color: var(--ts); background: rgba(0,0,0,.03); }

/* ══ NAV MOBILE TOGGLE ══ */
.nav-mobile-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 8px; color: var(--text); margin-left: auto;
}
.nav-mobile-menu {
  display: none;
  position: fixed; top: 66px; left: 0; right: 0;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--bd);
  padding: 16px 24px 24px;
  flex-direction: column; gap: 4px;
  z-index: 199;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-link {
  font-size: 15px; font-weight: 500; color: var(--ts);
  padding: 10px 12px; border-radius: 7px;
  text-decoration: none;
}
.nav-mobile-link:hover { background: var(--slate); color: var(--text); }
.nav-mobile-cta { margin-top: 8px; }

/* ══ HERO ══ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--bd) 1px, transparent 1px),
    linear-gradient(90deg, var(--bd) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .6;
}
.hero-glow {
  position: absolute;
  top: -10%; left: 30%;
  width: 800px; height: 700px;
  background: radial-gradient(ellipse, rgba(21,96,232,.10) 0%, transparent 65%);
  pointer-events: none;
  animation: orb 8s ease-in-out infinite;
}
@keyframes orb {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%       { transform: translate(-40px,30px) scale(1.08); }
}
.hero-fade {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 80% at 50% 55%, transparent 30%, var(--ink) 80%);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1180px; margin: 0 auto; padding: 0 40px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-lo);
  border: 1px solid var(--blue-md);
  border-radius: 99px;
  padding: 5px 14px;
  margin-bottom: 24px;
}
.hero-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }
.hero-eyebrow-text { font-family: var(--fm); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); }
.hero-h1 {
  font-family: var(--fd);
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.08;
  margin-bottom: 20px;
  text-wrap: pretty;
}
.hero-sub {
  font-size: 17px; color: var(--ts); line-height: 1.7;
  max-width: 480px; margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 12px; align-items: center; margin-bottom: 40px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.avatars { display: flex; }
.avatar {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid #fff; margin-right: -8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fd); font-size: 10px; font-weight: 700; flex-shrink: 0;
}
.hero-trust-text { font-size: 13px; color: var(--ts); margin-left: 16px; }
.hero-trust-text strong { color: var(--text); font-weight: 600; }

/* Hero product preview */
.hero-preview { position: relative; }
.hero-preview-glow {
  position: absolute; inset: -40px;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(21,96,232,.10), transparent 70%);
  pointer-events: none;
}
.preview-card {
  background: var(--ink);
  border: 1px solid var(--bd);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(15,22,41,.10), 0 4px 16px rgba(15,22,41,.06);
  transform: perspective(1200px) rotateX(3deg) rotateY(-4deg);
  transition: transform .4s ease;
}
.preview-card:hover { transform: perspective(1200px) rotateX(1deg) rotateY(-1deg); }
.pc-topbar {
  background: var(--night); border-bottom: 1px solid var(--bd);
  padding: 10px 16px; display: flex; align-items: center; gap: 8px;
}
.pc-dot { width: 9px; height: 9px; border-radius: 50%; }
.pc-brand { display: flex; align-items: center; gap: 7px; margin-left: 8px; }
.pc-pname { font-family: var(--fd); font-size: 12px; font-weight: 700; }
.pc-psub { font-family: var(--fm); font-size: 9px; color: var(--tm); }
.pc-badge {
  margin-left: auto;
  background: var(--blue-lo); border: 1px solid rgba(21,96,232,.2);
  font-family: var(--fm); font-size: 9px; letter-spacing: .08em;
  color: var(--blue); padding: 3px 8px; border-radius: 99px;
}
.pc-toolbar {
  padding: 10px 16px; display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--bd); background: var(--ink);
}
.pc-search {
  background: var(--night); border: 1px solid var(--bd);
  border-radius: 5px; padding: 6px 10px;
  display: flex; align-items: center; gap: 6px; flex: 1;
}
.pc-search-text { font-size: 11px; color: var(--tm); }
.pc-filter {
  font-family: var(--fm); font-size: 9px; letter-spacing: .06em;
  padding: 5px 10px; border-radius: 5px; cursor: default;
  border: 1px solid var(--bd); color: var(--ts); white-space: nowrap;
}
.pc-filter.active { background: var(--blue); border-color: var(--blue); color: #fff; box-shadow: 0 2px 6px rgba(21,96,232,.2); }
.pc-table { width: 100%; }
.pc-th {
  display: grid; grid-template-columns: 1fr 80px 50px 70px 20px;
  gap: 8px; padding: 7px 16px;
  font-family: var(--fm); font-size: 9px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--tm);
  border-bottom: 1px solid var(--bd);
}
.pc-row {
  display: grid; grid-template-columns: 1fr 80px 50px 70px 20px;
  gap: 8px; padding: 10px 16px;
  border-bottom: 1px solid var(--bd); align-items: center;
}
.pc-row:last-child { border-bottom: none; }
.pc-lead { display: flex; flex-direction: column; gap: 1px; }
.pc-name { font-size: 12px; font-weight: 600; color: var(--text); }
.pc-role { font-size: 10px; color: var(--tm); }
.pc-score-wrap { display: flex; flex-direction: column; gap: 3px; }
.pc-score-num { font-family: var(--fm); font-size: 11px; font-weight: 600; }
.pc-score-bar { height: 3px; background: var(--slate); border-radius: 2px; overflow: hidden; }
.pc-score-fill { height: 100%; border-radius: 2px; }
.pc-tier {
  font-family: var(--fm); font-size: 9px; font-weight: 700;
  padding: 2px 7px; border-radius: 4px; text-align: center;
}
.tier-a { background: var(--green-lo); color: var(--green); }
.tier-b { background: var(--blue-lo); color: var(--blue); }
.tier-c { background: rgba(136,153,180,.14); color: var(--ts); }
.pc-status { font-size: 10px; color: var(--ts); }
.pc-chevron { font-size: 14px; color: var(--bd-hi); text-align: center; }

/* ══ SECTION BASE ══ */
.section {
  padding: 96px 0;
}
.section-alt { background: var(--night); }
.section-center { text-align: center; }
.section-eyebrow { font-family: var(--fm); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
.section-h2 {
  font-family: var(--fd);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700; letter-spacing: -.025em; line-height: 1.12;
  color: var(--text); margin-bottom: 16px;
}
.section-sub {
  font-size: 17px; color: var(--ts); line-height: 1.7;
  max-width: 600px; margin-bottom: 56px;
}
.section-center .section-sub { margin-left: auto; margin-right: auto; }

/* ══ POSITIONING / TRUST STRIP ══ */
.trust-strip {
  padding: 48px 0;
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
}
.trust-strip-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--blue-lo); border: 1px solid var(--blue-md);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trust-text { font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.35; }
.trust-text span { display: block; font-size: 12px; font-weight: 400; color: var(--ts); }

/* ══ POSITIONING BLOCK ══ */
.positioning {
  padding: 96px 0;
  background: var(--text);
  color: #fff;
  position: relative; overflow: hidden;
}
.positioning-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.positioning-glow {
  position: absolute; top: -80px; right: -60px;
  width: 640px; height: 540px;
  background: radial-gradient(ellipse, rgba(21,96,232,.22), transparent 65%);
  pointer-events: none;
}
.positioning-inner {
  position: relative; z-index: 1;
  max-width: 1180px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.positioning-h2 {
  font-family: var(--fd);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700; letter-spacing: -.03em; line-height: 1.1;
  color: #fff; margin-bottom: 24px;
}
.positioning-body {
  font-size: 17px; color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: 36px;
}
.positioning-stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.stat-block { }
.stat-num {
  font-family: var(--fd); font-size: 36px; font-weight: 700;
  color: var(--blue); letter-spacing: -.04em;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 4px; }

/* ══ WHO IT'S FOR ══ */
.audience-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
  margin-top: 48px;
}
.audience-card {
  background: var(--ink); border: 1px solid var(--bd);
  border-radius: 14px; padding: 32px 28px;
  transition: box-shadow .2s, transform .2s;
}
.audience-card:hover { box-shadow: 0 8px 32px rgba(15,22,41,.08); transform: translateY(-2px); }
.ac-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--blue-lo); border: 1px solid var(--blue-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--blue);
}
.ac-title { font-family: var(--fd); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.ac-body { font-size: 14px; color: var(--ts); line-height: 1.7; }

/* ══ HOW IT WORKS ══ */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.step {
  background: var(--ink); border: 1px solid var(--bd);
  border-radius: 14px; padding: 32px 28px; position: relative;
}
.step-num {
  font-family: var(--fm); font-size: 10px; letter-spacing: .1em;
  color: var(--blue); background: var(--blue-lo); border: 1px solid var(--blue-md);
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; margin-bottom: 20px;
}
.step-title { font-family: var(--fd); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step-body { font-size: 14px; color: var(--ts); line-height: 1.7; }

/* ══ RESULTS / PROOF ══ */
.results-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.result-card {
  background: var(--ink); border: 1px solid var(--bd);
  border-radius: 14px; padding: 28px; overflow: hidden; position: relative;
}
.result-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--blue);
}
.result-tag { font-family: var(--fm); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: var(--ts); margin-bottom: 16px; }
.result-metric {
  font-family: var(--fd); font-size: 32px; font-weight: 700;
  letter-spacing: -.03em; color: var(--text); margin-bottom: 6px; line-height: 1;
}
.result-label { font-size: 13px; color: var(--ts); line-height: 1.5; }

/* ══ CASE STUDIES ══ */
.case-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.case-card {
  background: var(--ink); border: 1px solid var(--bd);
  border-radius: 14px; padding: 36px 32px;
  transition: box-shadow .2s;
}
.case-card:hover { box-shadow: 0 8px 32px rgba(15,22,41,.08); }
.case-tag {
  font-family: var(--fm); font-size: 9px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 16px;
}
.case-title { font-family: var(--fd); font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.case-body { font-size: 14px; color: var(--ts); line-height: 1.75; margin-bottom: 20px; }
.case-metrics { display: flex; gap: 20px; flex-wrap: wrap; }
.case-metric { }
.cm-num { font-family: var(--fd); font-size: 22px; font-weight: 700; color: var(--text); }
.cm-label { font-size: 11px; color: var(--ts); }

/* ══ WHY US ══ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.why-list { display: flex; flex-direction: column; gap: 16px; }
.why-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--ink); border: 1px solid var(--bd);
  border-radius: 12px; padding: 20px 22px;
}
.why-check {
  width: 22px; height: 22px; border-radius: 6px;
  background: var(--green-lo); border: 1px solid rgba(12,163,107,.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px; color: var(--green);
}
.why-text { font-size: 14px; color: var(--ts); line-height: 1.6; }
.why-text strong { color: var(--text); font-weight: 600; }
.why-cta-block { background: var(--night); border: 1px solid var(--bd); border-radius: 16px; padding: 40px 36px; }
.why-cta-title { font-family: var(--fd); font-size: 22px; font-weight: 700; margin-bottom: 14px; }
.why-cta-body { font-size: 14px; color: var(--ts); line-height: 1.7; margin-bottom: 28px; }
.why-cta-actions { display: flex; flex-direction: column; gap: 12px; }
.why-cta-actions .btn-lg { justify-content: center; }
.why-cta-actions .btn-outline { text-align: center; }
.why-note { font-size: 12px; color: var(--tm); text-align: center; margin-top: 14px; }

/* ══ FAQ ══ */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 2px; }
.faq-item { border: 1px solid var(--bd); border-radius: 10px; overflow: hidden; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer;
  font-size: 15px; font-weight: 600; color: var(--text);
  background: var(--ink);
  list-style: none;
  transition: background .15s;
  gap: 16px;
}
.faq-q:hover { background: var(--night); }
.faq-q::after {
  content: '+'; font-size: 20px; font-weight: 300;
  color: var(--ts); flex-shrink: 0; transition: transform .25s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  display: none; padding: 0 24px 20px;
  font-size: 14px; color: var(--ts); line-height: 1.75;
  background: var(--ink);
}
.faq-item.open .faq-a { display: block; }

/* ══ OUTREACH FORM ══ */
.form-section { padding: 96px 0; background: var(--night); }
.form-box {
  max-width: 560px; margin: 0 auto;
  background: var(--ink); border: 1px solid var(--bd);
  border-radius: 16px; padding: 44px 40px;
  box-shadow: 0 4px 24px rgba(15,22,41,.06);
}
.form-title { font-family: var(--fd); font-size: 26px; font-weight: 700; margin-bottom: 8px; letter-spacing: -.02em; }
.form-sub { font-size: 14px; color: var(--ts); line-height: 1.6; margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-input {
  width: 100%; font-family: var(--fb); font-size: 14px;
  border: 1px solid var(--bd-hi); border-radius: 8px;
  padding: 11px 14px; color: var(--text); background: var(--ink);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}
.form-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(21,96,232,.12); }
.form-submit {
  width: 100%; font-family: var(--fb); font-size: 15px; font-weight: 600;
  background: var(--blue); color: #fff;
  padding: 13px 24px; border-radius: 8px;
  border: none; cursor: pointer;
  transition: background .15s, box-shadow .15s;
  margin-top: 8px;
}
.form-submit:hover { background: var(--blue-dk); box-shadow: 0 4px 16px rgba(21,96,232,.3); }
.form-submit:disabled { opacity: .6; cursor: default; }
.form-success { display: none; text-align: center; padding: 24px 0; }
.form-success.visible { display: block; }
.form-fields.hidden { display: none; }
.success-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--green-lo); border: 1px solid rgba(12,163,107,.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; color: var(--green);
}
.form-success-title { font-family: var(--fd); font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.form-success-body { font-size: 14px; color: var(--ts); line-height: 1.65; }
.form-note { font-size: 11px; color: var(--tm); text-align: center; margin-top: 14px; }

/* ══ CTA SECTION ══ */
.cta-section {
  background: var(--text);
  padding: 96px 0;
  position: relative; overflow: hidden;
}
.cta-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.cta-glow {
  position: absolute; top: -80px; left: 20%;
  width: 640px; height: 540px;
  background: radial-gradient(ellipse, rgba(21,96,232,.22), transparent 65%);
  pointer-events: none;
}
.cta-inner {
  position: relative; z-index: 1;
  max-width: 680px; margin: 0 auto; padding: 0 40px;
  text-align: center;
}
.cta-h2 {
  font-family: var(--fd);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 700; letter-spacing: -.03em; line-height: 1.1;
  color: #fff; margin-bottom: 20px;
}
.cta-sub { font-size: 17px; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 40px; }
.cta-actions { display: flex; gap: 12px; align-items: center; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.cta-actions .btn-outline { border-color: rgba(255,255,255,.25); color: rgba(255,255,255,.8); }
.cta-actions .btn-outline:hover { border-color: rgba(255,255,255,.6); color: #fff; background: rgba(255,255,255,.06); }
.cta-note { font-size: 13px; color: rgba(255,255,255,.35); }

/* ══ FOOTER ══ */
.footer {
  background: var(--ink); border-top: 1px solid var(--bd);
  padding: 56px 0 32px;
}
.footer-inner { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid var(--bd);
}
.footer-brand-desc { font-size: 13px; color: var(--ts); line-height: 1.7; max-width: 280px; margin-top: 12px; }
.footer-logo { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; text-decoration: none; }
.footer-wordmark { font-family: var(--fd); font-size: 14px; font-weight: 700; color: var(--text); }
.footer-wordmark span { font-weight: 300; color: var(--ts); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social-link {
  width: 34px; height: 34px; border-radius: 8px;
  border: 1px solid var(--bd); display: flex; align-items: center; justify-content: center;
  color: var(--ts); text-decoration: none;
  transition: border-color .15s, color .15s;
}
.footer-social-link:hover { border-color: var(--ts); color: var(--text); }
.footer-col-title { font-family: var(--fd); font-size: 12px; font-weight: 700; color: var(--text); margin-bottom: 16px; letter-spacing: .01em; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 13px; color: var(--ts); text-decoration: none; transition: color .15s; }
.footer-link:hover { color: var(--text); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: var(--tm); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: var(--tm); text-decoration: none; transition: color .15s; }
.footer-legal a:hover { color: var(--ts); }

/* ══ LEGAL PAGES ══ */
.legal-page { padding: 120px 0 80px; }
.legal-inner { max-width: 780px; margin: 0 auto; padding: 0 40px; }
.legal-eyebrow { font-family: var(--fm); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); margin-bottom: 16px; }
.legal-h1 { font-family: var(--fd); font-size: clamp(30px, 4vw, 48px); font-weight: 700; letter-spacing: -.025em; margin-bottom: 12px; }
.legal-meta { font-size: 13px; color: var(--tm); margin-bottom: 48px; padding-bottom: 32px; border-bottom: 1px solid var(--bd); }
.legal-body h2 { font-family: var(--fd); font-size: 20px; font-weight: 700; margin: 36px 0 12px; color: var(--text); }
.legal-body p { font-size: 15px; color: var(--ts); line-height: 1.8; margin-bottom: 16px; }
.legal-body ul { margin: 0 0 16px 20px; }
.legal-body li { font-size: 15px; color: var(--ts); line-height: 1.8; margin-bottom: 6px; }
.legal-body a { color: var(--blue); text-decoration: none; }
.legal-body a:hover { text-decoration: underline; }

/* ══ THANK YOU PAGE ══ */
.thankyou-page {
  min-height: 100vh; display: flex; align-items: center;
  padding: 80px 0;
}
.thankyou-inner {
  max-width: 560px; margin: 0 auto; padding: 0 40px; text-align: center;
}
.thankyou-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--green-lo); border: 1px solid rgba(12,163,107,.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px; color: var(--green);
}
.thankyou-h1 { font-family: var(--fd); font-size: clamp(26px, 4vw, 40px); font-weight: 700; letter-spacing: -.025em; margin-bottom: 16px; }
.thankyou-body { font-size: 16px; color: var(--ts); line-height: 1.7; margin-bottom: 36px; }
.thankyou-back { font-size: 13px; color: var(--ts); margin-top: 24px; }
.thankyou-back a { color: var(--blue); text-decoration: none; }
.thankyou-back a:hover { text-decoration: underline; }

/* ══ RESPONSIVE ══ */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-preview { display: none; }
  .positioning-inner { grid-template-columns: 1fr; gap: 40px; }
  .positioning-stats { grid-template-columns: repeat(3,1fr); }
  .audience-grid { grid-template-columns: 1fr; gap: 16px; }
  .steps { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-mobile-toggle { display: flex; }
  .trust-strip-inner { flex-direction: column; gap: 20px; align-items: flex-start; }
}
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .hero { padding: 100px 0 60px; }
  .hero-inner { padding: 0 24px; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-inner { padding: 0 24px; }
  .trust-strip-inner { padding: 0 24px; }
  .results-grid { grid-template-columns: repeat(2,1fr); }
}
