/* ============================================================
   Lead Control — landing
   Dark · clean · charcoal + white · one signal-blue accent (finup-ref).
   --ok token now holds the brand blue (positive / open / delivered / FTD);
   --warn = queued, --bad = closed/lost.
   ============================================================ */

@font-face {
  font-family: 'Satoshi';
  src: url('fonts/Satoshi-Variable.woff2') format('woff2');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* surfaces — neutral near-black, NOT navy */
  --bg:      #09090B;
  --bg-1:    #0D0D10;
  --bg-2:    #131316;
  --card:    #141418;
  --card-2:  #1B1B20;

  /* ink */
  --text:    #FAFAFA;
  --muted:   #9B9BA5;
  --subtle:  #6B6B75;

  /* lines */
  --line:    rgba(255,255,255,.08);
  --line-2:  rgba(255,255,255,.14);

  /* status tones (mirror product) */
  --ok:      #3B82F6;
  --ok-ink:  #FFFFFF;
  --warn:    #FFB020;
  --bad:     #FF4D5E;

  --mono: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;
  --maxw: 1140px;
  --pad: clamp(20px, 5vw, 48px);
  --radius: 18px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Satoshi', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 16px;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
b, strong { font-weight: 700; color: var(--text); }
i { font-style: normal; }
::selection { background: var(--ok); color: var(--ok-ink); }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

/* film grain / atmosphere overlay */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* soft global atmosphere behind sections */
body::before {
  content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(28% 22% at 84% 14%, rgba(59,130,246,.05), transparent 60%),
    radial-gradient(30% 24% at 12% 50%, rgba(99,102,241,.04), transparent 60%),
    radial-gradient(32% 24% at 64% 86%, rgba(59,130,246,.045), transparent 60%);
}

/* lifted card shadow (clean depth) */
.pillar, .fcard, .case, .tcard, .step, .vcard, .stat, .tier {
  box-shadow: 0 26px 54px -34px rgba(0,0,0,.72);
}

/* ============ TYPOGRAPHY PRIMITIVES ============ */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px; letter-spacing: .14em; color: var(--muted);
  display: inline-flex; align-items: center; gap: 10px; text-transform: uppercase;
}
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 12px var(--ok); }

.kicker {
  font-family: var(--mono); font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
  display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
}
.kicker span { color: var(--ok); }
.kicker.center { justify-content: center; }

.h2 {
  font-size: clamp(28px, 4.4vw, 46px);
  line-height: 1.06; font-weight: 800; letter-spacing: -0.03em;
  max-width: 18ch;
}
.h2.center { margin-inline: auto; text-align: center; max-width: 22ch; }

.lead { font-size: clamp(16px, 1.7vw, 19px); color: var(--muted); max-width: 56ch; margin-top: 18px; }
.lead b { color: var(--text); }
.lead--mute { color: var(--subtle); }

.section { position: relative; z-index: 2; padding-block: clamp(92px, 12vw, 158px); }

/* ============ BUTTONS ============ */
.btn {
  --bh: 52px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: var(--bh); padding-inline: 26px; border-radius: 999px;
  font-weight: 700; font-size: 15px; letter-spacing: -0.01em;
  cursor: pointer; border: 1px solid transparent; white-space: nowrap;
  transition: transform .18s var(--ease), background .2s, border-color .2s, box-shadow .2s;
}
.btn--sm { --bh: 40px; padding-inline: 18px; font-size: 14px; }
.btn--block { width: 100%; }
.btn--primary {
  background: var(--ok); color: var(--ok-ink);
  box-shadow: 0 8px 30px -10px rgba(59,130,246,.5);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 38px -10px rgba(59,130,246,.6); }
.btn--primary:active { transform: translateY(0); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--text); transform: translateY(-2px); }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(9,9,11,.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav__inner { display: flex; align-items: center; gap: 28px; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -0.02em; font-size: 17px; color: var(--text); }
.brand__mark { color: var(--muted); transition: transform .6s var(--ease); }
.brand:hover .brand__mark { transform: rotate(140deg); }
.brand__dot { fill: var(--ok); }
.nav__links { display: flex; gap: 26px; margin-left: auto; font-size: 14.5px; color: var(--muted); }
.nav__links a { transition: color .2s; }
.nav__links a:hover { color: var(--text); }
.nav__cta { }
.nav__burger { display: none; background: none; border: 0; width: 40px; height: 40px; cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav__burger span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* ============ HERO ============ */
.hero { position: relative; z-index: 2; padding-top: clamp(112px, 13vw, 150px); padding-bottom: clamp(64px, 9vw, 100px); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero__bg::before {
  content: ''; position: absolute; inset: -25%;
  background:
    radial-gradient(46% 42% at 50% 2%, rgba(59,130,246,.18), transparent 62%),
    radial-gradient(34% 40% at 84% 34%, rgba(99,102,241,.10), transparent 66%),
    radial-gradient(34% 40% at 16% 40%, rgba(59,130,246,.07), transparent 66%);
  filter: blur(10px);
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 72% 62% at 50% 18%, #000 14%, transparent 68%);
  mask-image: radial-gradient(ellipse 72% 62% at 50% 18%, #000 14%, transparent 68%);
}
.hero__inner { position: relative; z-index: 1; }
.hero__inner { display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 940px; margin-inline: auto; }

.hero__rating { display: inline-flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--muted); }
.hero__stars { color: var(--ok); letter-spacing: 1.5px; font-size: 12.5px; }
.hero__rating b { color: var(--text); }
.avatars { display: inline-flex; }
.avatars span { width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--bg); margin-left: -9px; background: linear-gradient(135deg, #3B82F6, #6366F1); }
.avatars span:first-child { margin-left: 0; }
.avatars span:nth-child(2) { background: linear-gradient(135deg, #6366F1, #8B5CF6); }
.avatars span:nth-child(3) { background: linear-gradient(135deg, #2BEB78, #3B82F6); }
.avatars span:nth-child(4) { background: linear-gradient(135deg, #F59E0B, #EF4444); }

.hero__title {
  font-size: clamp(38px, 6.4vw, 76px); line-height: 1.03; font-weight: 900;
  letter-spacing: -0.045em; margin-top: 26px; max-width: 18ch;
}
.hero__title--accent { color: var(--ok); }
.hero__sub { font-size: clamp(16px, 1.9vw, 20px); color: var(--muted); max-width: 50ch; margin: 26px auto 0; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; justify-content: center; }

/* ---- phone mock ---- */
.hero__art { position: relative; justify-self: center; }
.phone {
  position: relative; width: clamp(244px, 26vw, 296px); aspect-ratio: 300 / 600;
  background: linear-gradient(180deg, #1a1a1f, #0f0f12);
  border: 1px solid var(--line-2); border-radius: 40px; padding: 12px;
  box-shadow: 0 50px 90px -40px rgba(0,0,0,.9), 0 0 0 1px rgba(255,255,255,.02) inset,
              0 1px 0 rgba(255,255,255,.06) inset;
}
.phone__notch { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 86px; height: 6px; background: #000; border-radius: 999px; opacity: .7; }
.phone__screen {
  height: 100%; border-radius: 30px; background: var(--bg-1);
  border: 1px solid var(--line); padding: 26px 16px 18px; overflow: hidden;
  display: flex; flex-direction: column; gap: 14px;
}
.app__bar { display: flex; align-items: baseline; justify-content: space-between; }
.app__title { font-weight: 800; font-size: 18px; letter-spacing: -0.02em; }
.app__period { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.kpi { background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px; padding: 10px 11px; display: flex; flex-direction: column; gap: 2px; }
.kpi__k { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: var(--subtle); }
.kpi__v { font-weight: 800; font-size: 17px; letter-spacing: -0.02em; }
.kpi--accent .kpi__v { color: var(--ok); }
.spark { background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px; padding: 8px; }
.spark svg { display: block; }
.qlist { display: flex; flex-direction: column; gap: 7px; margin-top: 2px; }
.qrow { display: flex; align-items: center; gap: 8px; font-size: 11.5px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px; padding: 7px 9px; }
.qrow__geo { font-family: var(--mono); font-size: 10px; color: var(--muted); width: 18px; }
.qrow__name { font-weight: 600; flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.qrow__st { font-family: var(--mono); font-size: 10px; white-space: nowrap; }
.st--ok { color: var(--ok); }
.st--warn { color: var(--warn); }

.dot { width: 7px; height: 7px; border-radius: 50%; flex: none; display: inline-block; }
.dot--ok { background: var(--ok); box-shadow: 0 0 8px rgba(59,130,246,.7); }
.dot--warn { background: var(--warn); box-shadow: 0 0 8px rgba(255,176,32,.6); }
.dot--bad { background: var(--bad); }

/* ---- product showcase: phone + floating cards (centered) ---- */
.hero__show { margin-top: clamp(48px, 6vw, 88px); width: 100%; display: flex; justify-content: center; }
.showcase { position: relative; width: min(700px, 100%); display: flex; justify-content: center; }
.showcase__glow { position: absolute; inset: -6% 6%; z-index: 0; pointer-events: none;
  background: radial-gradient(44% 52% at 50% 42%, rgba(59,130,246,.20), transparent 70%); filter: blur(34px); }
.showcase .phone { position: relative; z-index: 2; }
.fc {
  position: absolute; z-index: 3;
  background: rgba(24,24,30,.94); border: 1px solid var(--line-2); border-radius: 15px;
  padding: 13px 15px; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 28px 55px -24px rgba(0,0,0,.92), inset 0 1px 0 rgba(255,255,255,.05);
}
.fc__cap { display: block; font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .07em; color: var(--subtle); }
.fc--ftd { top: 22%; right: 0; display: flex; align-items: center; gap: 10px; animation: float 7s ease-in-out infinite .4s; }
.fc__dot { width: 9px; height: 9px; }
.fc__txt { display: flex; flex-direction: column; }
.fc__lbl { font-family: var(--mono); font-size: 10px; color: var(--muted); }
.fc__val { font-size: 16px; font-weight: 800; color: var(--ok); letter-spacing: -0.02em; }
.fc--buyer { bottom: 16%; left: 0; display: flex; flex-direction: column; gap: 3px; max-width: 188px; animation: float 7.5s ease-in-out infinite .8s; }
.fc__val2 { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; margin-top: 2px; }
.fc__hint { font-size: 11px; color: var(--subtle); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ============ STRIP ============ */
.strip { position: relative; z-index: 2; border-block: 1px solid var(--line); background: var(--bg-1); }
.strip__inner { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; justify-content: center; padding-block: 20px; font-family: var(--mono); font-size: 13px; color: var(--muted); letter-spacing: .04em; }
.strip i { color: var(--subtle); }
.strip span:nth-child(odd) { color: var(--text); }

/* ============ PROBLEM ============ */
.problem__grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.problem__bullets { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.problem__bullets li { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 15.5px; }
.problem__bullets .x { color: var(--bad); font-weight: 800; width: 18px; flex: none; text-align: center; }

/* 24h ring */
.ring { justify-self: center; display: flex; flex-direction: column; align-items: center; }
.ring__viz { position: relative; width: 220px; height: 220px; }
.ring__viz svg { display: block; }
.ring__track { fill: none; stroke: var(--line); stroke-width: 10; }
.ring__closed, .ring__open { fill: none; stroke-width: 10; stroke-linecap: round; transform: rotate(-90deg); transform-origin: 110px 110px; }
.ring__closed { stroke: var(--bad); opacity: .85; stroke-dasharray: 346 578; }
.ring__open { stroke: var(--ok); stroke-dasharray: 231 578; stroke-dashoffset: -347; filter: drop-shadow(0 0 6px rgba(59,130,246,.5)); }
.ring__lead { fill: var(--warn); animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; r: 5; } 50% { opacity: .4; r: 6.5; } }
.ring__center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; text-align: center; }
.ring__big { font-size: 36px; font-weight: 900; letter-spacing: -0.04em; }
.ring__small { font-family: var(--mono); font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; }
.ring__legend { margin-top: 22px; font-family: var(--mono); font-size: 11px; color: var(--subtle); display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: center; }
.ring__legend span { display: inline-flex; align-items: center; }
.lg { width: 8px; height: 8px; border-radius: 2px; display: inline-block; margin-right: 6px; vertical-align: middle; }
.lg--ok { background: var(--ok); }
.lg--bad { background: var(--bad); }

/* ============ HOW / STEPS ============ */
.steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.step { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px 26px; overflow: hidden; }
.step::before { content: ''; position: absolute; inset: 0 auto auto 0; width: 100%; height: 2px; background: linear-gradient(90deg, var(--ok), transparent); opacity: .5; }
.step__n { font-family: var(--mono); font-size: 12px; color: var(--ok); letter-spacing: .1em; }
.step__tag { font-family: var(--mono); font-size: 11px; color: var(--muted); background: var(--bg-2); border: 1px solid var(--line); border-radius: 999px; padding: 3px 10px; position: absolute; top: 24px; right: 22px; }
.step__h { font-size: 19px; font-weight: 800; letter-spacing: -0.02em; margin-top: 20px; }
.step p { color: var(--muted); font-size: 15px; margin-top: 10px; }

.flow { margin-top: 30px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; }
.flow__node { font-family: var(--mono); font-size: 12.5px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; display: inline-flex; align-items: center; gap: 7px; color: var(--muted); }
.flow__node--q { color: var(--warn); }
.flow__node--ok { color: var(--ok); }
.flow__node--money { color: var(--text); border-color: var(--ok); }
.flow__arr { color: var(--subtle); font-size: 13px; }

/* ============ WHY ============ */
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.vcard { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; transition: border-color .25s, transform .25s; }
.vcard:hover { border-color: var(--line-2); transform: translateY(-4px); }
.vcard__ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(59,130,246,.10); color: var(--ok); border: 1px solid rgba(59,130,246,.22); margin-bottom: 20px; }
.vcard h3 { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; }
.vcard p { color: var(--muted); font-size: 15px; margin-top: 10px; }

/* ============ FEATURES ============ */
.fgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 52px; }
.fcard { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px 22px; transition: border-color .25s, background .25s, transform .25s; }
.fcard:hover { border-color: var(--line-2); background: var(--card-2); transform: translateY(-4px); }
.fcard__tag { font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: .1em; color: var(--ok); }
.fcard h3 { font-size: 16.5px; font-weight: 800; letter-spacing: -0.02em; margin-top: 14px; }
.fcard p { color: var(--muted); font-size: 14px; margin-top: 9px; line-height: 1.5; }

/* ============ COMPARE ============ */
.table__scroll { margin-top: 48px; overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
.ctable { width: 100%; border-collapse: collapse; min-width: 720px; }
.ctable th, .ctable td { padding: 16px 18px; text-align: center; border-bottom: 1px solid var(--line); }
.ctable thead th { font-size: 13.5px; font-weight: 700; color: var(--muted); vertical-align: bottom; }
.ctable thead th span { display: block; font-family: var(--mono); font-size: 10.5px; font-weight: 400; color: var(--subtle); margin-top: 4px; letter-spacing: .03em; }
.ctable .ctable__feat { width: 34%; }
.ctable td:first-child, .ctable th:first-child { text-align: left; font-size: 14.5px; color: var(--text); }
.ctable__us { color: var(--text) !important; }
.ctable thead .ctable__us { position: relative; }
.ctable thead .ctable__us::after { content: ''; position: absolute; left: 8px; right: 8px; bottom: -1px; height: 2px; background: var(--ok); }
.ctable tbody td.us { background: rgba(59,130,246,.05); }
.ctable tbody tr:last-child td { border-bottom: 0; }
.ctable .ck { color: var(--ok); font-weight: 800; }
.ctable .cr { color: var(--subtle); }
.ctable .cm { color: var(--warn); }
.compare__note { text-align: center; font-family: var(--mono); font-size: 12px; color: var(--subtle); margin-top: 18px; }

/* ============ TG BAND ============ */
.tgband__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.tgband__copy .btn { margin-top: 28px; }
.tgband__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; }
.stat__v { display: block; font-size: clamp(30px, 4vw, 42px); font-weight: 900; letter-spacing: -0.04em; }
.stat:nth-child(1) .stat__v, .stat:nth-child(4) .stat__v { color: var(--ok); }
.stat__k { display: block; color: var(--muted); font-size: 14px; margin-top: 6px; }

/* ============ FAQ ============ */
.faq__wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(36px, 6vw, 72px); align-items: start; }
.faq__head { position: sticky; top: 100px; }
.faq__list { display: flex; flex-direction: column; }
.qa { border-bottom: 1px solid var(--line); }
.qa summary {
  list-style: none; cursor: pointer; padding: 22px 0; font-size: 17px; font-weight: 700;
  letter-spacing: -0.02em; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  transition: color .2s;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--ok); }
.qa__sign { position: relative; width: 16px; height: 16px; flex: none; }
.qa__sign::before, .qa__sign::after { content: ''; position: absolute; background: currentColor; border-radius: 2px; transition: transform .25s var(--ease), opacity .25s; }
.qa__sign::before { top: 7px; left: 0; width: 16px; height: 2px; }
.qa__sign::after { left: 7px; top: 0; width: 2px; height: 16px; }
.qa[open] .qa__sign::after { transform: rotate(90deg); opacity: 0; }
.qa[open] summary { color: var(--ok); }
.qa p { color: var(--muted); font-size: 15.5px; padding-bottom: 22px; max-width: 60ch; animation: fade .3s var(--ease); }
.qa p b { color: var(--text); }
@keyframes fade { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* ============ ACCESS / FORM ============ */
.access { position: relative; overflow: hidden; }
.access__glow { position: absolute; bottom: -40%; left: 50%; transform: translateX(-50%); width: min(900px, 120vw); height: 600px; background: radial-gradient(50% 50% at 50% 50%, rgba(59,130,246,.09), transparent 70%); pointer-events: none; }
.access__inner { position: relative; display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
.access__list { list-style: none; margin-top: 26px; display: flex; flex-direction: column; gap: 13px; }
.access__list li { display: flex; align-items: center; gap: 11px; color: var(--muted); font-size: 15.5px; }

.form { background: var(--card); border: 1px solid var(--line-2); border-radius: 20px; padding: clamp(24px, 3vw, 34px); box-shadow: 0 40px 80px -40px rgba(0,0,0,.8); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field__label { font-family: var(--mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.field__opt { text-transform: none; letter-spacing: 0; color: var(--subtle); }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg-1); border: 1px solid var(--line-2); border-radius: 11px;
  color: var(--text); font-family: inherit; font-size: 15px; padding: 13px 14px;
  transition: border-color .2s, box-shadow .2s; resize: vertical;
}
.field textarea { margin-bottom: 14px; }
.field input::placeholder, .field textarea::placeholder { color: var(--subtle); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ok); box-shadow: 0 0 0 3px rgba(59,130,246,.15); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239B9BA5' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.field.is-invalid input, .field.is-invalid select { border-color: var(--bad); box-shadow: 0 0 0 3px rgba(255,77,94,.14); }
.form .btn { margin-top: 6px; }
.form__fine { font-size: 12px; color: var(--subtle); margin-top: 14px; text-align: center; }
.form__ok { display: flex; align-items: center; gap: 10px; margin-top: 16px; padding: 14px 16px; border-radius: 12px; background: rgba(59,130,246,.10); border: 1px solid rgba(59,130,246,.3); color: var(--ok); font-weight: 600; font-size: 14.5px; }
.form__ok-ico { display: grid; place-items: center; }

/* honeypot — visually removed, off-screen (bots still fill it) */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ============ SUCCESS MODAL ============ */
.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 24px; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(5,5,8,.74); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); opacity: 0; transition: opacity .24s var(--ease); }
.modal.is-open .modal__backdrop { opacity: 1; }
.modal__card {
  position: relative; width: 100%; max-width: 410px; text-align: center;
  background: var(--card); border: 1px solid var(--line-2); border-radius: 22px;
  padding: 40px 30px 30px; box-shadow: 0 40px 90px -30px rgba(0,0,0,.85);
  transform: translateY(14px) scale(.97); opacity: 0;
  transition: transform .28s var(--ease), opacity .28s var(--ease);
}
.modal.is-open .modal__card { transform: none; opacity: 1; }
.modal__close { position: absolute; top: 14px; right: 16px; background: none; border: 0; color: var(--muted); font-size: 26px; line-height: 1; cursor: pointer; width: 34px; height: 34px; border-radius: 10px; transition: color .2s, background .2s; }
.modal__close:hover { color: var(--text); background: var(--bg-2); }
.modal__check { width: 60px; height: 60px; margin: 0 auto 20px; border-radius: 50%; display: grid; place-items: center; color: var(--ok); background: rgba(59,130,246,.12); border: 1px solid rgba(59,130,246,.3); }
.modal__title { font-size: 24px; font-weight: 800; letter-spacing: -0.03em; }
.modal__text { color: var(--muted); font-size: 15px; margin-top: 10px; max-width: 34ch; margin-inline: auto; }
.modal__actions { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.modal__actions .btn { gap: 10px; }
.modal__handles { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 18px; font-family: var(--mono); font-size: 12px; color: var(--subtle); }
.modal__handles a { transition: color .2s; }
.modal__handles a:hover { color: var(--ok); }
.modal__handles i { color: var(--line-2); }

/* ============ FOOTER ============ */
.footer { position: relative; z-index: 2; border-top: 1px solid var(--line); background: var(--bg-1); padding-top: 64px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer__tag { color: var(--muted); font-size: 14.5px; margin-top: 16px; max-width: 42ch; }
.footer__links { display: flex; flex-wrap: wrap; gap: 14px 28px; align-content: start; font-size: 14.5px; color: var(--muted); }
.footer__links a { transition: color .2s; }
.footer__links a:hover { color: var(--text); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-block: 24px; border-top: 1px solid var(--line); font-size: 13px; color: var(--subtle); }
.footer__mono { font-family: var(--mono); letter-spacing: .04em; }

/* ============ PROOF BAND ============ */
.proof { position: relative; z-index: 2; border-block: 1px solid var(--line); background: var(--bg-1); padding-block: clamp(36px, 5vw, 52px); }
.proof__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pstat { text-align: center; padding: 6px 8px; border-right: 1px solid var(--line); }
.pstat:last-child { border-right: 0; }
.pstat__v { display: block; font-size: clamp(28px, 3.6vw, 40px); font-weight: 900; letter-spacing: -0.04em; }
.pstat__v--accent { color: var(--ok); }
.pstat__k { display: block; color: var(--muted); font-size: 13.5px; margin-top: 6px; }
.logos { margin-top: clamp(28px, 4vw, 40px); display: flex; flex-direction: column; align-items: center; gap: 18px; }
.logos__label { font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--subtle); }
.logos__row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px 36px; }
.logo { font-weight: 800; font-size: 16px; letter-spacing: .06em; color: var(--muted); opacity: .6; transition: opacity .2s, color .2s; }
.logo:hover { opacity: 1; color: var(--text); }

/* ============ PILLARS ============ */
.pillars__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 52px; }
.pillar { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 30px; transition: border-color .25s, transform .25s; }
.pillar:hover { border-color: var(--line-2); transform: translateY(-4px); }
.pillar__ico { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: rgba(59,130,246,.10); color: var(--ok); border: 1px solid rgba(59,130,246,.22); margin-bottom: 18px; }
.pillar__tag { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--ok); }
.pillar h3 { font-size: 21px; font-weight: 800; letter-spacing: -0.02em; margin-top: 8px; }
.pillar p { color: var(--muted); font-size: 15.5px; margin-top: 12px; line-height: 1.55; }

/* ============ CASES ============ */
.cases__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 52px; }
.case { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; }
.case__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.case__geo { font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: .03em; }
.case__badge { font-family: var(--mono); font-size: 12px; font-weight: 700; color: var(--ok); background: rgba(59,130,246,.12); border: 1px solid rgba(59,130,246,.28); border-radius: 999px; padding: 5px 12px; white-space: nowrap; }
.case__lead { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.4; }
.case__body { color: var(--muted); font-size: 15px; margin-top: 12px; line-height: 1.55; }
.case__metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.case__metrics > div { display: flex; flex-direction: column; gap: 3px; }
.case__m { font-size: 22px; font-weight: 900; letter-spacing: -0.03em; }
.case__metrics > div:first-child .case__m { color: var(--ok); }
.case__mk { font-size: 12px; color: var(--subtle); }
.cases__note { text-align: center; font-size: 13px; color: var(--subtle); margin-top: 22px; }

/* ============ TESTIMONIALS ============ */
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.tcard { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; display: flex; flex-direction: column; gap: 16px; }
.tcard__stars { color: var(--ok); font-size: 14px; letter-spacing: 2px; }
.tcard blockquote { font-size: 16px; line-height: 1.55; color: var(--text); flex: 1; }
.tcard figcaption { display: flex; flex-direction: column; gap: 2px; border-top: 1px solid var(--line); padding-top: 16px; }
.tcard__who { font-weight: 700; font-size: 14.5px; }
.tcard__role { font-family: var(--mono); font-size: 12px; color: var(--muted); }

/* ============ OFFER ============ */
.offer { position: relative; overflow: hidden; }
.offer__glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: min(800px, 110vw); height: 460px; background: radial-gradient(50% 50% at 50% 50%, rgba(59,130,246,.08), transparent 70%); pointer-events: none; }
.offer__inner { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
.offer__list { list-style: none; display: grid; gap: 14px; }
.offer__list li { display: flex; align-items: flex-start; gap: 12px; color: var(--text); font-size: 16px; }
.offer__list .ck { color: var(--ok); font-weight: 800; flex: none; }
.offer__sub { text-align: center; color: var(--muted); font-size: clamp(16px, 1.7vw, 18px); max-width: 52ch; margin: 18px auto 0; }

/* ============ PRICING TIERS ============ */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; align-items: stretch; }
.tier { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: 32px 28px; display: flex; flex-direction: column; }
.tier--featured { border-color: rgba(59,130,246,.5); background: linear-gradient(180deg, rgba(59,130,246,.07), var(--card)); box-shadow: 0 34px 64px -30px rgba(59,130,246,.4); }
.tier__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--ok); color: var(--ok-ink); font-family: var(--mono); font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; padding: 5px 13px; border-radius: 999px; white-space: nowrap; }
.tier__name { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; }
.tier__for { color: var(--muted); font-size: 13.5px; margin-top: 5px; }
.tier__price { margin: 20px 0 4px; display: flex; align-items: baseline; gap: 5px; }
.tier__price span { font-size: 30px; font-weight: 900; letter-spacing: -0.03em; }
.tier__price i { color: var(--muted); font-size: 14px; }
.tier__list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 24px 0 28px; flex: 1; }
.tier__list li { position: relative; padding-left: 26px; color: var(--muted); font-size: 14.5px; }
.tier__list li::before { content: '✓'; position: absolute; left: 0; color: var(--ok); font-weight: 800; }
.tier .btn { margin-top: auto; }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: calc(var(--d, 0) * 80ms); }
.reveal.is-in { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { margin-top: 12px; }
  .problem__grid, .access__inner, .faq__wrap, .offer__inner { grid-template-columns: 1fr; }
  .faq__head { position: static; }
  .steps { grid-template-columns: 1fr; }
  .pillars__grid, .cases__grid, .tcards { grid-template-columns: 1fr; }
  .tiers { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .fgrid { grid-template-columns: repeat(2, 1fr); }
  .proof__stats { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .pstat { border-right: 0; }
  .ring { order: -1; }
}
@media (max-width: 680px) {
  .hero__title span { white-space: normal; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; margin-left: auto; }
  .nav.is-open {
    background: var(--bg);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border-bottom-color: var(--line);
  }
  .nav.is-open .nav__inner { height: auto; flex-wrap: wrap; padding-bottom: 18px; }
  .nav.is-open .brand { order: 1; }
  .nav.is-open .nav__burger { order: 2; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; gap: 0; order: 3; width: 100%; margin-top: 6px;
  }
  .nav.is-open .nav__links a { padding: 15px 2px; border-bottom: 1px solid var(--line); font-size: 16px; color: var(--text); }
  .nav.is-open .nav__cta { display: inline-flex; order: 4; width: 100%; margin-top: 14px; }
  .form__row { grid-template-columns: 1fr; }
  .tgband__stats { grid-template-columns: 1fr 1fr; }
  .showcase { width: 100%; }
  .fc--ftd { top: 14%; right: -1%; }
  .fc--buyer { bottom: 10%; left: -1%; max-width: 166px; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 8px; }
}
@media (max-width: 420px) {
  .fgrid { grid-template-columns: 1fr; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
