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

:root {
  --black: #000;
  --surface: #0c0c0c;
  --surface2: #131313;
  --surface3: #1a1a1a;
  --border: rgba(255,255,255,0.06);
  --border2: rgba(255,255,255,0.11);
  --t1: #ffffff;
  --t2: #888;
  --t3: #444;
  --green: #1D9E75;
  --green-dim: rgba(29,158,117,0.08);
  --green-glow: rgba(29,158,117,0.14);
  --max: 1160px;
}

html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--t1);
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
  font-size: 15px; line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Headings — geometric, sharp, precision-cut */
h1 {
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 800; line-height: 0.92; letter-spacing: -0.04em;
}
h2 {
  letter-spacing: -0.03em; font-weight: 800;
}
h3 {
  letter-spacing: -0.025em; font-weight: 700;
}

/* Body copy */
p, li, .lead { font-weight: 400; letter-spacing: -0.005em; }

/* Labels — all caps, wide tracking, clinical */
.eyebrow, .step-n, .for-who, .data-pt-head,
.price-badge, .proof-l, .bstat-lbl, .atab-n {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
}

/* Nav */
.nav-links a { font-size: 13px; font-weight: 500; letter-spacing: -0.01em; }
.nav-cta { font-size: 13px; font-weight: 700; letter-spacing: 0.01em; }

/* Tags — monospace */
.tag { font-family: 'JetBrains Mono', 'SF Mono', monospace; font-size: 10px; font-weight: 500; letter-spacing: 0.05em; }

/* ── TOP ACCENT ── */
body::before {
  content: ''; display: block; position: fixed; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(29,158,117,0.6) 30%, rgba(29,158,117,0.8) 50%, rgba(29,158,117,0.6) 70%, transparent 100%);
  z-index: 300; pointer-events: none;
}

/* ── SCROLL PROGRESS BAR ── */
#scroll-progress {
  position: fixed; top: 0; left: 0; width: 3px; height: 0%;
  background: linear-gradient(to bottom, var(--green), rgba(29,158,117,0.4));
  z-index: 400; pointer-events: none;
  transition: height 0.05s linear;
  box-shadow: 0 0 8px rgba(29,158,117,0.5);
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 62px; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.logo { font-size: 15px; font-weight: 800; color: var(--t1); text-decoration: none; letter-spacing: -0.03em; }
.logo-dot { color: var(--green); }
.nav-links { display: flex; gap: 2px; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--t2); text-decoration: none; padding: 6px 14px; border-radius: 7px; transition: color 0.15s, background 0.15s; }
.nav-links a:hover { color: var(--t1); background: rgba(255,255,255,0.05); }
.nav-cta { font-size: 13px; font-weight: 700; background: var(--green); color: #fff; padding: 8px 20px; border-radius: 8px; text-decoration: none; transition: opacity 0.15s; }
.nav-cta:hover { opacity: 0.88; }
.nav-login { font-size: 13px; font-weight: 500; color: var(--t2); padding: 8px 16px; border-radius: 8px; text-decoration: none; border: 1px solid var(--border2); transition: color 0.15s, border-color 0.15s; }
.nav-login:hover { color: var(--t1); border-color: rgba(255,255,255,0.22); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 140px 40px 0;
  position: relative; overflow: hidden;
}

/* Animated mesh gradient background */
.hero-mesh {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  overflow: hidden;
}
.hero-mesh::before {
  content: '';
  position: absolute;
  width: 140%; height: 140%;
  top: -20%; left: -20%;
  background:
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(29,158,117,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 10%, rgba(29,158,117,0.05) 0%, transparent 55%),
    radial-gradient(ellipse 70% 40% at 50% 80%, rgba(29,158,117,0.07) 0%, transparent 60%);
  animation: meshDrift 18s ease-in-out infinite alternate;
}
.hero-mesh::after {
  content: '';
  position: absolute;
  width: 140%; height: 140%;
  top: -20%; left: -20%;
  background:
    radial-gradient(ellipse 40% 50% at 70% 30%, rgba(29,158,117,0.06) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 30% 70%, rgba(29,158,117,0.04) 0%, transparent 60%);
  animation: meshDrift2 24s ease-in-out infinite alternate;
}
@keyframes meshDrift {
  0%   { transform: translate(0, 0) rotate(0deg) scale(1); }
  33%  { transform: translate(3%, 2%) rotate(2deg) scale(1.02); }
  66%  { transform: translate(-2%, 4%) rotate(-1deg) scale(0.99); }
  100% { transform: translate(2%, -2%) rotate(1.5deg) scale(1.03); }
}
@keyframes meshDrift2 {
  0%   { transform: translate(0, 0) rotate(0deg) scale(1); }
  50%  { transform: translate(-3%, -2%) rotate(-2deg) scale(1.04); }
  100% { transform: translate(2%, 3%) rotate(1deg) scale(0.98); }
}

.glow-top {
  position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(29,158,117,0.1) 0%, transparent 65%);
  pointer-events: none; filter: blur(40px); z-index: 0;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green); border: 1px solid rgba(29,158,117,0.25); background: rgba(29,158,117,0.05);
  padding: 5px 16px; border-radius: 100px; margin-bottom: 36px;
  animation: fadeUp 0.7s ease 0.1s both;
  position: relative; z-index: 1;
}
.hero-label::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--green); animation: blink 2s ease infinite; }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

h1 {
  color: var(--t1); margin-bottom: 28px; max-width: 920px;
  animation: fadeUp 0.7s ease 0.2s both;
  position: relative; z-index: 1;
}
h1 .g { color: var(--green); }
h1 .d { color: #333; }

.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px); color: var(--t2); font-weight: 400;
  max-width: 500px; margin: 0 auto 44px; line-height: 1.65;
  animation: fadeUp 0.7s ease 0.3s both;
  position: relative; z-index: 1;
}
.hero-btns {
  display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
  margin-bottom: 14px; animation: fadeUp 0.7s ease 0.4s both;
  position: relative; z-index: 1;
}
.btn-main { font-size: 15px; font-weight: 700; background: var(--green); color: #fff; padding: 14px 30px; border-radius: 10px; text-decoration: none; transition: opacity 0.15s, transform 0.15s; }
.btn-main:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-ghost { font-size: 15px; font-weight: 500; color: var(--t2); padding: 14px 22px; border-radius: 10px; text-decoration: none; border: 1px solid var(--border2); transition: color 0.15s, border-color 0.15s, transform 0.15s; }
.btn-ghost:hover { color: var(--t1); border-color: rgba(255,255,255,0.2); transform: translateY(-1px); }
.hero-note { font-size: 12px; color: var(--t3); margin-bottom: 72px; animation: fadeUp 0.7s ease 0.45s both; position: relative; z-index: 1; }

/* Hero screenshot — wide, cinematic, fades into page */
.hero-img-wrap {
  width: calc(100% + 80px); max-width: 1400px; position: relative;
  animation: heroUp 1s cubic-bezier(0.16,1,0.3,1) 0.5s both;
}
@keyframes heroUp { from { opacity:0; transform: translateY(60px) scale(0.96); } to { opacity:1; transform: translateY(0) scale(1); } }
.hero-img-wrap::before {
  content: ''; position: absolute; inset: -80px;
  background: radial-gradient(ellipse at center 25%, rgba(29,158,117,0.12) 0%, transparent 55%);
  pointer-events: none; z-index: 0;
}
.hero-browser {
  position: relative; z-index: 1;
  border-radius: 14px 14px 0 0; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12); border-bottom: none;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 60px 140px rgba(0,0,0,0.85), 0 0 120px rgba(29,158,117,0.08);
}
.hero-browser img { width: 100%; display: block; }
.hero-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 260px;
  background: linear-gradient(transparent, var(--black));
  z-index: 2;
}

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

/* ── SOCIAL PROOF BAR ── */
.proof-bar {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--surface); padding: 20px 40px;
  display: flex; align-items: center; justify-content: center;
  gap: 56px; flex-wrap: wrap;
}
.proof-stat { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.proof-n { font-size: 28px; font-weight: 900; color: var(--t1); letter-spacing: -0.04em; font-family: monospace; line-height: 1; }
.proof-n span { color: var(--green); }
.proof-l { font-size: 11px; color: var(--t3); letter-spacing: 0.06em; text-transform: uppercase; }
.proof-div { width: 1px; height: 32px; background: var(--border2); }

/* ── TICKER ── */
.ticker {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--surface); padding: 18px 0; overflow: hidden; position: relative;
}
.ticker::before, .ticker::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--surface), transparent); }
.ticker::after  { right: 0; background: linear-gradient(-90deg, var(--surface), transparent); }
.ticker-track { display: flex; animation: scroll 36s linear infinite; width: max-content; }
@keyframes scroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.tick { display: flex; align-items: center; gap: 10px; padding: 0 36px; white-space: nowrap; font-size: 13px; color: var(--t3); font-weight: 500; }
.tick strong { color: var(--t2); }
.tick-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--t3); }

/* ── SECTION BASE ── */
section { padding: 120px 40px; }
.wrap { max-width: var(--max); margin: 0 auto; }
.eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 18px; }
h2 { font-size: clamp(32px, 4.5vw, 58px); font-weight: 900; line-height: 1.0; letter-spacing: -0.035em; color: var(--t1); margin-bottom: 20px; }
h2 .g { color: var(--green); }
.lead { font-size: 18px; color: var(--t2); line-height: 1.65; max-width: 520px; }

/* ── PROCESS ── */
#process { background: var(--surface); border-top: 1px solid var(--border); padding: 120px 40px; }
#process .head { max-width: var(--max); margin: 0 auto 64px; }
.steps-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px;
}
.step {
  padding: 32px 26px;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 0; position: relative;
  transition: background 0.25s, border-color 0.25s;
}
.step:first-child { border-radius: 14px 0 0 14px; }
.step:last-child { border-radius: 0 14px 14px 0; }
.step:hover { background: #1a1a1a; border-color: rgba(29,158,117,0.25); }
.step-connector {
  position: absolute; top: 44px; right: -2px; width: 2px; height: 2px;
  background: var(--border);
}
.step-n { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--green); font-family: monospace; margin-bottom: 22px; }
.step svg { width: 32px; height: 32px; color: var(--green); margin-bottom: 16px; display: block; stroke-width: 1.6; }
.step h4 { font-size: 15px; font-weight: 700; color: var(--t1); margin-bottom: 10px; letter-spacing: -0.02em; }
.step p { font-size: 12.5px; color: var(--t2); line-height: 1.65; }

/* ── FEATURE BLOCKS — cinematic full-bleed layout ── */
#features { padding: 0; }

.feat {
  padding: 120px 0 0;
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.feat:nth-child(even) { background: var(--surface); }

/* Text header — constrained, centered */
.feat-head {
  max-width: var(--max); margin: 0 auto 64px;
  padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.feat-head.solo { grid-template-columns: 1fr; max-width: 680px; }

.feat-head h3 {
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 900; line-height: 1.0; letter-spacing: -0.035em;
  color: var(--t1); margin-bottom: 0;
}
.feat-head h3 .g { color: var(--green); }

.feat-right p { font-size: 18px; color: var(--t2); line-height: 1.8; margin-bottom: 24px; }
.bullets { list-style: none; }
.bullets li {
  font-size: 16px; color: var(--t2); padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 14px; line-height: 1.55;
}
.bullets li:last-child { border-bottom: none; }
.bullets li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--green); flex-shrink: 0; margin-top: 7px;
}
.tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 22px; }
.tag { font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 6px; background: var(--surface2); border: 1px solid var(--border2); color: var(--t2); letter-spacing: 0.02em; }
.tag.g { background: rgba(29,158,117,0.08); border-color: rgba(29,158,117,0.22); color: var(--green); }

/* Screenshot — full page width, bleeds to edges */
.feat-shot {
  position: relative;
  width: 100%; overflow: hidden;
  border-top: 1px solid var(--border2);
}
.feat-shot img {
  width: 100%; display: block;
}
/* Top fade — blends shot into section, tall enough to cover page picker bar */
.feat-shot::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 240px;
  background: linear-gradient(var(--black), transparent);
  z-index: 2; pointer-events: none;
}
.feat:nth-child(even) .feat-shot::before { background: linear-gradient(var(--surface), transparent); height: 240px; }
/* Bottom fade — blends shot out at bottom */
.feat-shot::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 140px;
  background: linear-gradient(transparent, var(--black));
  z-index: 2; pointer-events: none;
}
.feat:nth-child(even) .feat-shot::after { background: linear-gradient(transparent, var(--surface)); }

/* ── ANALYTICS ── */
#analytics {
  background: var(--black); border-top: 1px solid var(--border); padding: 120px 0; overflow: hidden;
}
.analytics-layout {
  max-width: var(--max); margin: 0 auto; padding: 0 40px;
}
.analytics-top {
  display: grid; grid-template-columns: 5fr 7fr; gap: 64px; align-items: center; margin-bottom: 72px;
}
.big-stats { display: flex; gap: 40px; margin-top: 36px; }
.bstat-num { font-size: 56px; font-weight: 900; color: var(--green); letter-spacing: -0.04em; line-height: 1; font-family: monospace; }
.bstat-lbl { font-size: 11px; color: var(--t3); letter-spacing: 0.04em; margin-top: 6px; }

.analytics-shot {
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border2);
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 60px rgba(29,158,117,0.07);
}
.analytics-shot img { width: 100%; display: block; }

/* Second analytics screenshot — full bleed */
.analytics-fullshot {
  width: 100%; margin-top: 56px; overflow: hidden;
  border-top: 1px solid var(--border2);
  position: relative;
}
.analytics-fullshot img { width: 100%; display: block; }
.analytics-fullshot::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 60px;
  background: linear-gradient(var(--black), transparent); z-index: 2; pointer-events: none;
}
.analytics-fullshot::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 160px;
  background: linear-gradient(transparent, var(--black)); z-index: 2; pointer-events: none;
}

.tab-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
  margin-top: 56px;
}
.atab {
  background: var(--surface); padding: 32px 26px;
  transition: background 0.35s, border-color 0.35s;
  cursor: pointer; position: relative;
}
.atab::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--green); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.atab.active { background: rgba(29,158,117,0.06); }
.atab.active::after { transform: scaleX(1); }
.atab:hover { background: var(--surface2); }
.atab-n { font-size: 22px; font-weight: 900; color: var(--green); font-family: monospace; letter-spacing: -0.03em; line-height: 1; margin-bottom: 6px; }
.atab h4 { font-size: 14px; font-weight: 700; color: var(--t1); margin-bottom: 10px; letter-spacing: -0.01em; }
.atab p { font-size: 12px; color: var(--t2); line-height: 1.65; }

/* Analytics scroll-driven screenshot switcher */
.analytics-sticky-wrap {
  position: relative;
}
.analytics-screens {
  position: relative; width: 100%; overflow: hidden;
  border-top: 1px solid var(--border2);
}
.analytics-screen {
  position: absolute; top: 0; left: 0; width: 100%;
  opacity: 0; transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
}
.analytics-screen.active {
  opacity: 1; position: relative; pointer-events: auto;
}
.analytics-screen img { width: 100%; display: block; }
.analytics-screen::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 60px;
  background: linear-gradient(var(--black), transparent); z-index: 2; pointer-events: none;
}
.analytics-screen::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 160px;
  background: linear-gradient(transparent, var(--black)); z-index: 2; pointer-events: none;
}

/* ── WHO IT'S FOR ── */
#for { background: var(--surface); border-top: 1px solid var(--border); padding: 100px 40px; }
.for-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 52px; }
.for-card { background: var(--surface2); border: 1px solid var(--border); padding: 36px 32px; transition: border-color 0.2s; }
.for-card:first-child { border-radius: 14px 0 0 14px; }
.for-card:last-child { border-radius: 0 14px 14px 0; }
.for-card:hover { border-color: rgba(29,158,117,0.25); }
.for-who { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 18px; }
.for-card h4 { font-size: 20px; font-weight: 800; color: var(--t1); margin-bottom: 14px; letter-spacing: -0.025em; line-height: 1.2; }
.for-card p { font-size: 13px; color: var(--t2); line-height: 1.75; }

/* ── QUOTE ── */
.quote-strip {
  background: var(--black); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 72px 40px; text-align: center;
}
.quote-mark { font-size: 80px; line-height: 0.5; color: rgba(29,158,117,0.2); font-weight: 900; margin-bottom: 16px; }
.quote-text { font-size: clamp(18px, 2.5vw, 26px); font-weight: 600; color: var(--t1); max-width: 760px; margin: 0 auto 28px; line-height: 1.45; letter-spacing: -0.02em; }
.quote-attr { font-size: 13px; color: var(--t3); }
.quote-attr strong { color: var(--t2); }

/* ── DATA OWNERSHIP STRIP ── */
.data-strip {
  background: var(--surface); border-top: 1px solid var(--border); padding: 100px 40px;
}
.data-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.data-points { display: flex; flex-direction: column; gap: 2px; }
.data-pt {
  padding: 24px 28px; background: var(--surface2); border: 1px solid var(--border);
  border-radius: 0;
}
.data-pt:first-child { border-radius: 12px 12px 0 0; }
.data-pt:last-child { border-radius: 0 0 12px 12px; }
.data-pt-head { font-size: 12px; font-weight: 700; color: var(--green); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px; }
.data-pt-body { font-size: 13px; color: var(--t2); line-height: 1.7; }

@media (max-width: 900px) { .data-inner { grid-template-columns: 1fr; gap: 40px; } }

/* ── COMPARE ── */
#compare { background: var(--surface); border-top: 1px solid var(--border); padding: 120px 40px; }
.comp-wrap { max-width: 940px; margin: 0 auto; }
.comp-table { width: 100%; border-collapse: collapse; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; margin-top: 52px; }
.comp-table th { padding: 14px 20px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--t3); background: var(--surface2); text-align: left; border-bottom: 1px solid var(--border); }
.comp-table th.hl { color: var(--green); background: rgba(29,158,117,0.04); }
.comp-table td { padding: 13px 20px; font-size: 13px; color: var(--t3); background: var(--surface); border-bottom: 1px solid var(--border); }
.comp-table tr:last-child td { border-bottom: none; }
.comp-table td.hl { background: rgba(29,158,117,0.03); color: var(--t1); font-weight: 500; }
.comp-table td.feat { color: var(--t2); font-weight: 500; }
.chk { color: var(--green); font-weight: 700; }
.crs { color: var(--t3); }
.prt { color: var(--t2); }
.pcell { color: var(--green); font-family: monospace; font-weight: 800; font-size: 14px; }

/* ── PRICING ── */
#pricing { background: var(--black); border-top: 1px solid var(--border); padding: 120px 40px; position: relative; overflow: hidden; }
.price-glow { position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 700px; height: 500px; border-radius: 50%; background: radial-gradient(ellipse, rgba(29,158,117,0.07) 0%, transparent 60%); pointer-events: none; filter: blur(40px); }
.price-card { max-width: 520px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border2); border-radius: 18px; overflow: hidden; box-shadow: 0 0 0 1px rgba(29,158,117,0.07), 0 40px 80px rgba(0,0,0,0.5); position: relative; }
.price-head { padding: 40px 44px 32px; border-bottom: 1px solid var(--border); }
.price-badge { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); border: 1px solid rgba(29,158,117,0.25); background: rgba(29,158,117,0.06); padding: 4px 12px; border-radius: 100px; margin-bottom: 24px; }
.price-big { font-size: 80px; font-weight: 900; color: var(--t1); line-height: 1; letter-spacing: -0.05em; margin-bottom: 4px; }
.price-big sup { font-size: 36px; vertical-align: top; margin-top: 16px; }
.price-note { font-size: 13px; color: var(--t3); margin-bottom: 18px; }
.price-save { font-size: 13px; color: var(--t2); }
.price-save s { color: var(--t3); }
.price-save strong { color: var(--green); }
.price-body { padding: 32px 44px 40px; }
.includes { list-style: none; margin-bottom: 28px; }
.includes li { font-size: 14px; color: var(--t2); padding: 10px 0; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 12px; }
.includes li:last-child { border-bottom: none; }
.includes li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--green); flex-shrink: 0; margin-top: 6px; }
.price-btn { display: block; text-align: center; background: var(--green); color: #fff; font-size: 16px; font-weight: 800; padding: 17px; border-radius: 11px; text-decoration: none; transition: opacity 0.15s, transform 0.15s; margin-bottom: 12px; }
.price-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.price-foot { text-align: center; font-size: 12px; color: var(--t3); }
.price-foot a { color: var(--t3); }

/* ── FAQ ── */
#faq { border-top: 1px solid var(--border); padding: 120px 40px; }
.faq-inner { max-width: 660px; margin: 0 auto; }
.faq-hd { text-align: center; margin-bottom: 60px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; cursor: pointer; user-select: none; font-size: 16px; font-weight: 600; color: var(--t1); gap: 16px; transition: color 0.15s; letter-spacing: -0.01em; }
.faq-q:hover { color: var(--green); }
.faq-ico { width: 22px; height: 22px; flex-shrink: 0; border: 1px solid var(--t3); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--t3); font-size: 14px; font-weight: 300; transition: transform 0.25s, border-color 0.25s, color 0.25s; }
.faq-item.open .faq-ico { transform: rotate(45deg); border-color: var(--green); color: var(--green); }
.faq-a { font-size: 14px; color: var(--t2); line-height: 1.8; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding-bottom 0.35s ease; padding-bottom: 0; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 22px; }

/* ── CTA ── */
#cta { background: var(--surface); border-top: 1px solid var(--border); padding: 160px 40px; text-align: center; position: relative; overflow: hidden; }
.cta-glow { position: absolute; top: -180px; left: 50%; transform: translateX(-50%); width: 700px; height: 500px; border-radius: 50%; background: radial-gradient(ellipse, rgba(29,158,117,0.08) 0%, transparent 65%); pointer-events: none; filter: blur(40px); }
#cta h2 { margin-bottom: 18px; position: relative; }
#cta .lead { margin: 0 auto 48px; position: relative; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 12px; position: relative; }

/* ── FOOTER ── */
footer { background: var(--black); border-top: 1px solid var(--border); padding: 36px 40px; }
.foot-row { max-width: var(--max); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.foot-logo { font-size: 13px; font-weight: 800; color: var(--t3); letter-spacing: -0.02em; }
.foot-logo span { color: var(--green); }
.foot-links { display: flex; gap: 24px; }
.foot-links a { font-size: 13px; color: var(--t3); text-decoration: none; transition: color 0.15s; }
.foot-links a:hover { color: var(--t2); }
.foot-copy { font-size: 12px; color: var(--t3); }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1); }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.09s; }
.d2 { transition-delay: 0.18s; }
.d3 { transition-delay: 0.27s; }
.d4 { transition-delay: 0.36s; }

/* Screenshot reveal — scale up from slightly smaller, eased spring */
.feat-shot.reveal { opacity: 0; transform: translateY(50px) scale(0.98); transition: opacity 1s cubic-bezier(0.16,1,0.3,1), transform 1s cubic-bezier(0.16,1,0.3,1); }
.feat-shot.reveal.in { opacity: 1; transform: none; }

/* Hover: subtle zoom on screenshot */
.feat-shot img { transition: transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.feat-shot:hover img { transform: scale(1.012); }

/* Analytics full-shot reveal */
.analytics-fullshot.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1); }
.analytics-fullshot.reveal.in { opacity: 1; transform: none; }

/* ── PROP FIRM TOOLS SECTION ── */
.prop-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; margin-top: 56px;
}
.prop-card {
  background: var(--surface2); border: 1px solid var(--border);
  padding: 28px 24px; position: relative;
  transition: border-color 0.2s, background 0.2s;
}
.prop-card:first-child { border-radius: 12px 0 0 12px; }
.prop-card:last-child { border-radius: 0 12px 12px 0; }
.prop-card:hover { border-color: rgba(29,158,117,0.3); background: #161616; }
.prop-card-n { font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); margin-bottom: 14px; font-family: 'JetBrains Mono', monospace; }
.prop-card h4 { font-size: 14px; font-weight: 700; color: var(--t1); margin-bottom: 10px; letter-spacing: -0.02em; line-height: 1.3; }
.prop-card p { font-size: 12px; color: var(--t2); line-height: 1.7; }
.prop-card .prop-stat { font-size: 28px; font-weight: 900; color: var(--green); font-family: 'JetBrains Mono', monospace; letter-spacing: -0.03em; margin-bottom: 4px; line-height: 1; }

/* ── TILT SYSTEM SECTION ── */
.tilt-wrap {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: center;
}
.tilt-scale {
  display: flex; gap: 3px; margin-top: 28px; align-items: flex-end;
}
.tilt-bar {
  flex: 1; border-radius: 3px 3px 0 0;
  transition: opacity 0.3s;
}
.tilt-dims {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 0;
}
.tilt-dim {
  background: var(--surface2); border: 1px solid var(--border);
  padding: 16px 18px;
}
.tilt-dim:first-child { border-radius: 10px 0 0 0; }
.tilt-dim:nth-child(2) { border-radius: 0 10px 0 0; }
.tilt-dim:nth-last-child(2) { border-radius: 0 0 0 10px; }
.tilt-dim:last-child { border-radius: 0 0 10px 0; }
.tilt-dim-lbl { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 6px; }
.tilt-dim-desc { font-size: 11.5px; color: var(--t2); line-height: 1.55; }

/* ── JOURNAL DETAIL PANEL SWITCHER ── */
.feat-head--journal { overflow: visible; align-items: center; }
.jdd-left { overflow: visible; }
.jdd-screens {
  margin-top: 28px;
  margin-left: calc(-40px - ((100vw - var(--max)) / 2) + 32px);
  width: calc(100% + 40px + ((100vw - var(--max)) / 2) - 32px);
  border-radius: 0; overflow: hidden;
  background: #0c0c0c;
  aspect-ratio: 2632 / 1212;
}
.jdd-screen { display: none; width: 100%; height: 100%; }
.jdd-screen.active { display: block; }
.jdd-screen img { width: 100%; height: 100%; object-fit: contain; object-position: left center; display: block; }
.jdd-switcher { margin-top: 22px; }
.jdd-tabs {
  display: flex; gap: 0;
  border: 1px solid var(--border); border-radius: 10px; overflow: hidden;
}
.jdd-tab {
  flex: 1; padding: 11px 8px; text-align: center;
  font-size: 11px; font-weight: 700; color: var(--t3);
  background: var(--surface2); border-right: 1px solid var(--border);
  letter-spacing: 0.03em; cursor: pointer;
  transition: color 0.15s, background 0.15s;
}
.jdd-tab:last-child { border-right: none; }
.jdd-tab:hover { color: var(--t2); background: var(--surface3); }
.jdd-tab.active { background: rgba(29,158,117,0.08); color: var(--green); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .steps-grid { grid-template-columns: 1fr 1fr 1fr; }
  .step:first-child { border-radius: 14px 0 0 0; }
  .step:last-child { border-radius: 0 14px 14px 0; }
}
@media (max-width: 900px) {
  .feat-head { grid-template-columns: 1fr; gap: 36px; }
  .analytics-top { grid-template-columns: 1fr; gap: 48px; }
  .tab-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .hero-img-wrap { width: 100%; }
  .prop-grid { grid-template-columns: 1fr 1fr; }
  .for-grid { grid-template-columns: 1fr; }
  .for-card:first-child { border-radius: 14px 14px 0 0; }
  .for-card:last-child { border-radius: 0 0 14px 14px; }
  .prop-card:first-child { border-radius: 12px 0 0 0; }
  .prop-card:nth-child(2) { border-radius: 0 12px 0 0; }
  .prop-card:nth-child(3) { border-radius: 0 0 0 12px; }
  .prop-card:last-child { border-radius: 0 0 12px 0; }
  .tilt-wrap { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 680px) {
  section { padding: 80px 20px; }
  #process { padding: 80px 20px; }
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  .tab-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .step:first-child, .step:last-child { border-radius: 14px; }
  .price-head, .price-body { padding: 28px 24px; }
  .price-big { font-size: 60px; }
  .comp-table th, .comp-table td { padding: 10px 12px; font-size: 12px; }
  .big-stats { gap: 24px; }
  .bstat-num { font-size: 36px; }
  .feat-head { padding: 0 20px; }
  .analytics-layout { padding: 0 20px; }
  .prop-grid { grid-template-columns: 1fr; }
  .prop-card:first-child, .prop-card:last-child,
  .prop-card:nth-child(2), .prop-card:nth-child(3) { border-radius: 0; }
  .prop-card:first-child { border-radius: 12px 12px 0 0; }
  .prop-card:last-child { border-radius: 0 0 12px 12px; }
  .tilt-dims { grid-template-columns: 1fr; }
  .tilt-dim:first-child { border-radius: 10px 10px 0 0; }
  .tilt-dim:last-child { border-radius: 0 0 10px 10px; }
  .tilt-dim:nth-child(2), .tilt-dim:nth-child(3),
  .tilt-dim:nth-child(4), .tilt-dim:nth-last-child(2) { border-radius: 0; }
}

/* ── FOUNDERS LIST FORM ── */
.cta-form { display: flex; align-items: stretch; justify-content: center; gap: 10px; position: relative; max-width: 520px; margin: 0 auto; }
.cta-form input[type="email"] {
  flex: 1; min-width: 0; font-family: inherit; font-size: 15px; color: var(--t1);
  background: var(--surface2); border: 1px solid var(--border2); border-radius: 10px;
  padding: 14px 18px; outline: none; transition: border-color 0.15s, box-shadow 0.15s;
}
.cta-form input[type="email"]::placeholder { color: var(--t3); }
.cta-form input[type="email"]:focus { border-color: var(--green); box-shadow: 0 0 0 3px var(--green-dim); }
.cta-form .btn-main { border: 0; cursor: pointer; font-family: inherit; white-space: nowrap; }
.cta-form .btn-main:disabled { opacity: 0.6; cursor: default; transform: none; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.cta-form-msg { margin: 16px auto 0; font-size: 14px; position: relative; min-height: 1em; }
.cta-form-msg.ok { color: var(--green); font-weight: 600; }
.cta-form-msg.err { color: #e0645c; }
.cta-form-msg.err a { color: var(--t1); }
.cta-form-note { margin: 14px auto 0; font-size: 12px; color: var(--t3); position: relative; }
@media (max-width: 560px) {
  .cta-form { flex-direction: column; }
  .cta-form .btn-main { width: 100%; }
}
