/* ============================================================
   Recon — toolbox chromos
   Premium dark external attack-surface landing page
   Vanilla CSS. No frameworks.
   ============================================================ */

/* ---------- Fonts ---------- */
/* Sora (display), Manrope (body), JetBrains Mono (technical labels) */

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

:root {
  --bg:           #0d0d0f;
  --bg-2:         #141417;
  --bg-3:         #1b1b1f;
  --surface:      rgba(255, 255, 255, 0.025);
  --surface-2:    rgba(255, 255, 255, 0.04);
  --border:       rgba(255, 255, 255, 0.08);
  --border-2:     rgba(255, 255, 255, 0.14);
  --border-cyan:  rgba(231, 255, 110, 0.30);

  --text:         #f2f3ee;
  --muted:        #a8a8a2;
  --dim:          #6a6a64;

  --cyan:         #E7FF6E;
  --blue:         #a3e635;
  --green:        #34d399;
  --danger:       #fb7185;
  --high:         #fb923c;
  --med:          #f6c945;

  --glow-cyan:    rgba(231, 255, 110, 0.55);

  --grad: linear-gradient(135deg, #E7FF6E 0%, #cdee4a 55%, #a3e635 100%);
  --grad-text: linear-gradient(120deg, #f3ff9e 0%, #dcff5f 100%);

  --radius:    14px;
  --radius-sm: 9px;
  --radius-lg: 22px;

  --maxw: 1180px;

  --font-display: 'Sora', system-ui, sans-serif;
  --font-body:    'Manrope', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ---------- Ambient background layers ---------- */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.bg-grid {
  background-image:
    linear-gradient(rgba(176, 176, 168, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(176, 176, 168, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 30%, transparent 75%);
  animation: gridDrift 40s linear infinite;
}
@keyframes gridDrift { to { background-position: 56px 56px; } }

.bg-glow {
  background:
    radial-gradient(620px 420px at 78% 8%, rgba(231, 255, 110, 0.10), transparent 70%),
    radial-gradient(560px 460px at 12% 22%, rgba(163, 230, 53, 0.12), transparent 70%),
    radial-gradient(700px 520px at 50% 110%, rgba(231, 255, 110, 0.08), transparent 70%);
  animation: glowFloat 18s ease-in-out infinite alternate;
}
@keyframes glowFloat {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(0, -22px, 0) scale(1.04); }
}

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
section { position: relative; z-index: 1; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; opacity: 0.7; }

.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 16px 0 14px;
}
.section-head p { color: var(--muted); font-size: 17px; line-height: 1.65; }

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, border-color 0.25s, color 0.25s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad);
  color: #0d0d0f;
  box-shadow: 0 8px 30px -10px var(--glow-cyan);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -10px var(--glow-cyan); }
.btn-ghost {
  background: var(--surface);
  border-color: var(--border-2);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--border-cyan); color: #f3ff9e; transform: translateY(-2px); }
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(5, 7, 13, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  height: 66px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.logo-mark { width: 30px; height: 30px; object-fit: contain; display: block; }
.logo-mark .ring { fill: none; stroke: var(--cyan); stroke-width: 1.6; opacity: 0.85; }
.logo-mark .ring2 { fill: none; stroke: var(--blue); stroke-width: 1.4; opacity: 0.6; }
.logo-mark .dot { fill: var(--cyan); }
.logo-mark .sweep { stroke: var(--cyan); stroke-width: 1.6; stroke-linecap: round; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 16px; letter-spacing: 0.01em; color: var(--text); }
.brand-sub { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--dim); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14.5px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { font-size: 14px; padding: 9px 18px; }

/* ---------- Hero ---------- */
.hero { padding: 132px 0 70px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 5.4vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 22px 0 22px;
}
.hero-sub {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
  max-width: 520px;
  margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; margin-bottom: 30px; }
.pills { display: flex; flex-wrap: wrap; gap: 9px; }
.pill {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.pill .tick { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--glow-cyan); }

/* ---------- Attack surface map ---------- */
.asm {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(20, 20, 23, 0.7), rgba(12, 12, 14, 0.55));
  backdrop-filter: blur(10px);
  padding: 22px;
  overflow: hidden;
  box-shadow: 0 30px 80px -40px rgba(0, 0, 0, 0.9);
}
.asm-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim);
}
.asm-head .live { display: inline-flex; align-items: center; gap: 7px; color: var(--cyan); }
.asm-head .live::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan);
  box-shadow: 0 0 10px var(--glow-cyan); animation: livePulse 2s infinite;
}
@keyframes livePulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

#particles { position: absolute; inset: 0; z-index: 0; opacity: 0.7; }
.asm-svg { position: relative; z-index: 1; width: 100%; height: auto; display: block; }

.asm-link {
  stroke: rgba(125, 200, 240, 0.12);
  stroke-width: 1.5;
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
  transition: stroke-dashoffset 0.8s var(--ease), stroke 0.5s;
}
.asm-link.is-active { stroke-dashoffset: 0; stroke: rgba(231, 255, 110, 0.6); }

.asm-ring { fill: none; stroke: rgba(231, 255, 110, 0.28); stroke-width: 1; stroke-dasharray: 4 11; transform-origin: 320px 240px; animation: ringSpin 22s linear infinite; }
@keyframes ringSpin { to { transform: rotate(360deg); } }

.asm-core circle.core-fill { fill: url(#coreGrad); }
.asm-core circle.core-stroke { fill: none; stroke: rgba(231, 255, 110, 0.5); stroke-width: 1.4; }
.asm-core text { fill: #0d0d0f; font-family: var(--font-mono); font-weight: 600; font-size: 9px; letter-spacing: 0.12em; }

.asm-sat circle.sat-fill {
  fill: #141416;
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 1.5;
  transition: stroke 0.45s, fill 0.45s, filter 0.45s;
}
.asm-sat text {
  fill: var(--dim);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 12.5px;
  transition: fill 0.45s;
}
.asm-sat.is-active circle.sat-fill {
  stroke: var(--cyan);
  fill: rgba(231, 255, 110, 0.10);
  filter: drop-shadow(0 0 7px rgba(231, 255, 110, 0.65));
}
.asm-sat.is-active text { fill: var(--text); }
.asm-sat .sat-icon { fill: var(--dim); transition: fill 0.45s; }
.asm-sat.is-active .sat-icon { fill: var(--cyan); }

.asm-foot {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--dim);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ---------- Stats / counters ---------- */
.stats { padding: 26px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(8, 11, 20, 0.5); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat { text-align: center; padding: 12px 22px; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-num .unit { font-size: 0.5em; -webkit-text-fill-color: var(--muted); color: var(--muted); margin-left: 2px; }
.stat-label { font-size: 13px; color: var(--muted); margin-top: 7px; letter-spacing: 0.02em; }

/* ---------- Generic section spacing ---------- */
.band { padding: 92px 0; }

/* ---------- Problem ---------- */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.prob-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.prob-card:hover { border-color: var(--border-cyan); transform: translateY(-3px); background: var(--surface-2); }
.prob-ic {
  width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(231, 255, 110, 0.08);
  border: 1px solid var(--border-cyan);
  margin-bottom: 16px;
}
.prob-ic svg { width: 20px; height: 20px; stroke: var(--cyan); fill: none; stroke-width: 1.6; }
.prob-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 17px; margin-bottom: 8px; }
.prob-card p { color: var(--muted); font-size: 14.5px; line-height: 1.6; }

/* ---------- Sticky storytelling ---------- */
.story { padding: 40px 0 92px; }
.story-grid { display: grid; grid-template-columns: 0.95fr 1fr; gap: 64px; align-items: start; }
.story-sticky { position: sticky; top: 96px; height: fit-content; }

.stage-frame {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(20, 20, 23, 0.75), rgba(12, 12, 14, 0.6));
  backdrop-filter: blur(10px);
  min-height: 420px;
  overflow: hidden;
  box-shadow: 0 30px 80px -45px rgba(0, 0, 0, 0.9);
}
.stage-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 13px 16px; border-bottom: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 11px; color: var(--dim); letter-spacing: 0.08em;
}
.stage-bar .d { width: 10px; height: 10px; border-radius: 50%; }
.d.r { background: #ff5f57; } .d.y { background: #febc2e; } .d.g { background: #28c840; }
.stage-bar .tag { margin-left: auto; }

.stage-stack { position: relative; padding: 24px; }
.stage {
  position: absolute;
  inset: 24px;
  opacity: 0;
  transform: translateY(14px) scale(0.99);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  pointer-events: none;
}
.stage.is-active { position: relative; opacity: 1; transform: none; pointer-events: auto; inset: auto; }

.stage-title { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cyan); margin-bottom: 16px; }

/* stage: discover — asset rows */
.disc-row { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--border); font-family: var(--font-mono); font-size: 13px; }
.disc-row:last-child { border-bottom: none; }
.disc-row .k { color: var(--muted); min-width: 116px; }
.disc-row .v { color: var(--text); }
.disc-row .b { margin-left: auto; font-size: 11px; color: var(--cyan); }

/* stage: prioritize — severity bars */
.sev-row { display: grid; grid-template-columns: 78px 1fr 34px; align-items: center; gap: 12px; margin-bottom: 16px; }
.sev-name { font-family: var(--font-mono); font-size: 12px; }
.sev-track { height: 9px; border-radius: 999px; background: rgba(255, 255, 255, 0.06); overflow: hidden; }
.sev-fill { height: 100%; border-radius: 999px; }
.sev-count { font-family: var(--font-mono); font-size: 13px; text-align: right; color: var(--muted); }
.sev-c .sev-fill { background: var(--danger); width: 18%; }
.sev-h .sev-fill { background: var(--high); width: 42%; }
.sev-m .sev-fill { background: var(--med); width: 66%; }
.sev-l .sev-fill { background: var(--green); width: 50%; }
.sev-c .sev-name { color: var(--danger); } .sev-h .sev-name { color: var(--high); }
.sev-m .sev-name { color: var(--med); } .sev-l .sev-name { color: var(--green); }

/* stage: report — document */
.doc-mini { border: 1px solid var(--border); border-radius: 10px; background: rgba(255,255,255,0.02); padding: 18px; }
.doc-mini .doc-h { font-family: var(--font-display); font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.doc-mini .doc-meta { font-family: var(--font-mono); font-size: 11px; color: var(--dim); margin-bottom: 14px; }
.doc-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.doc-chip { font-family: var(--font-mono); font-size: 11px; padding: 5px 9px; border-radius: 6px; border: 1px solid var(--border); }
.doc-line { height: 8px; border-radius: 6px; background: rgba(255,255,255,0.06); margin-top: 13px; }
.doc-line.s { width: 70%; } .doc-line.m { width: 88%; }

/* stage: fix first — checklist */
.fix-item { display: flex; align-items: flex-start; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--border); }
.fix-item:last-child { border-bottom: none; }
.fix-rank { font-family: var(--font-mono); font-size: 12px; font-weight: 700; color: #0d0d0f; background: var(--grad); width: 22px; height: 22px; border-radius: 6px; display: grid; place-items: center; flex-shrink: 0; }
.fix-text { font-size: 13.5px; }
.fix-text .t { color: var(--text); } .fix-text .s { color: var(--dim); font-family: var(--font-mono); font-size: 11px; }

/* story steps (right column) */
.story-steps { display: flex; flex-direction: column; }
.story-step { padding: 30vh 0; opacity: 0.4; transition: opacity 0.4s; }
.story-step:first-child { padding-top: 4vh; }
.story-step:last-child { padding-bottom: 14vh; }
.story-step.is-active { opacity: 1; }
.story-step .num { font-family: var(--font-mono); font-size: 12px; color: var(--cyan); letter-spacing: 0.12em; }
.story-step h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(24px, 3vw, 32px); letter-spacing: -0.02em; margin: 12px 0 12px; line-height: 1.1; }
.story-step p { color: var(--muted); font-size: 16px; line-height: 1.65; max-width: 440px; }

/* ---------- Offers ---------- */
.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.offer {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.offer:hover { transform: translateY(-4px); border-color: var(--border-2); }
.offer.featured {
  border-color: var(--border-cyan);
  background: linear-gradient(180deg, rgba(231, 255, 110, 0.06), var(--surface) 60%);
  box-shadow: 0 30px 70px -40px var(--glow-cyan);
}
.offer-badge {
  position: absolute; top: -12px; left: 26px;
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em;
  color: #0d0d0f; background: var(--grad);
  padding: 4px 12px; border-radius: 999px;
}
.offer-name { font-family: var(--font-display); font-weight: 600; font-size: 19px; margin-bottom: 14px; }
.offer-price { font-family: var(--font-display); font-weight: 800; font-size: 40px; line-height: 1; letter-spacing: -0.02em; }
.offer-price .per { font-size: 15px; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.offer-deliver {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 11.5px; color: var(--cyan);
  background: rgba(231, 255, 110, 0.07); border: 1px solid var(--border-cyan);
  padding: 6px 11px; border-radius: 7px; margin: 16px 0 20px;
}
.offer-feats { list-style: none; margin-bottom: 26px; flex: 1; }
.offer-feats li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--muted); padding: 8px 0; border-bottom: 1px solid var(--border); }
.offer-feats li:last-child { border-bottom: none; }
.offer-feats li svg { width: 15px; height: 15px; stroke: var(--cyan); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 3px; }
.offer-feats li .lead { color: var(--text); font-weight: 600; }
.offer .btn { width: 100%; justify-content: center; }

/* ---------- Report preview ---------- */
.report-wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; align-items: center; }
.report-doc {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(20, 20, 23, 0.8), rgba(12, 12, 14, 0.65));
  backdrop-filter: blur(10px);
  overflow: hidden;
  box-shadow: 0 40px 90px -45px rgba(0, 0, 0, 0.95);
}
.report-doc .rd-top { padding: 22px 24px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.rd-top .rd-title { font-family: var(--font-display); font-weight: 700; font-size: 17px; }
.rd-top .rd-meta { font-family: var(--font-mono); font-size: 11px; color: var(--dim); margin-top: 4px; }
.rd-badge { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; color: var(--cyan); border: 1px solid var(--border-cyan); border-radius: 6px; padding: 4px 9px; }
.rd-body { padding: 22px 24px; }
.rd-section-label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dim); margin: 4px 0 12px; }
.rollup { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 22px; }
.roll { border: 1px solid var(--border); border-radius: 9px; padding: 12px 10px; text-align: center; }
.roll .n { font-family: var(--font-display); font-weight: 800; font-size: 24px; line-height: 1; }
.roll .l { font-family: var(--font-mono); font-size: 10px; color: var(--muted); margin-top: 5px; text-transform: uppercase; letter-spacing: 0.06em; }
.roll.c .n { color: var(--danger); } .roll.h .n { color: var(--high); }
.roll.m .n { color: var(--med); } .roll.l .n { color: var(--green); }

.rd-table { font-family: var(--font-mono); font-size: 12px; margin-bottom: 22px; }
.rd-table .tr { display: grid; grid-template-columns: 1.4fr 1fr 0.8fr; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.rd-table .tr:last-child { border-bottom: none; }
.rd-table .th { color: var(--dim); text-transform: uppercase; font-size: 10px; letter-spacing: 0.08em; }
.rd-table .td { color: var(--muted); }
.rd-table .td.ok { color: var(--green); } .rd-table .td.warn { color: var(--high); } .rd-table .td.bad { color: var(--danger); }

.rd-find { display: flex; align-items: center; gap: 11px; padding: 9px 0; border-bottom: 1px solid var(--border); }
.rd-find:last-child { border-bottom: none; }
.rd-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.rd-dot.c { background: var(--danger); } .rd-dot.h { background: var(--high); } .rd-dot.m { background: var(--med); }
.rd-find .ff { font-size: 13px; color: var(--text); }
.rd-find .fid { font-family: var(--font-mono); font-size: 10px; color: var(--dim); margin-left: auto; }
.rd-note { font-family: var(--font-mono); font-size: 10.5px; color: var(--dim); text-align: center; padding: 12px; border-top: 1px solid var(--border); }

.report-points { list-style: none; }
.report-points li { display: flex; gap: 13px; align-items: flex-start; padding: 13px 0; border-bottom: 1px solid var(--border); }
.report-points li:last-child { border-bottom: none; }
.report-points .rp-ic { width: 34px; height: 34px; border-radius: 9px; background: rgba(34,211,238,0.08); border: 1px solid var(--border-cyan); display: grid; place-items: center; flex-shrink: 0; }
.report-points .rp-ic svg { width: 17px; height: 17px; stroke: var(--cyan); fill: none; stroke-width: 1.6; }
.report-points h4 { font-family: var(--font-display); font-weight: 600; font-size: 15px; margin-bottom: 3px; }
.report-points p { color: var(--muted); font-size: 13.5px; line-height: 1.55; }

/* ---------- Methodology / trust ---------- */
.method { border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); padding: 40px; }
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 8px; }
.mrow { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 10px; }
.mrow svg { width: 18px; height: 18px; stroke: var(--cyan); fill: none; stroke-width: 2; flex-shrink: 0; }
.mrow span { font-size: 14px; color: var(--text); font-weight: 500; }

/* ---------- ICP ---------- */
.icp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.icp { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; transition: border-color 0.3s, transform 0.3s; }
.icp:hover { border-color: var(--border-cyan); transform: translateY(-3px); }
.icp .icp-ic { width: 34px; height: 34px; border-radius: 9px; background: rgba(231,255,110,0.08); border: 1px solid rgba(231,255,110,0.25); display: grid; place-items: center; margin-bottom: 12px; }
.icp .icp-ic svg { width: 17px; height: 17px; stroke: var(--cyan); fill: none; stroke-width: 1.6; }
.icp h4 { font-family: var(--font-display); font-weight: 600; font-size: 14.5px; margin-bottom: 4px; }
.icp p { color: var(--muted); font-size: 12.5px; line-height: 1.5; }

/* ---------- Final CTA ---------- */
.final {
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: radial-gradient(700px 360px at 50% 0%, rgba(231, 255, 110, 0.10), transparent 70%), rgba(8, 11, 20, 0.6);
  padding: 96px 0;
  text-align: center;
  overflow: hidden;
}
.final::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 560px; max-width: 80%; height: 1px; background: linear-gradient(90deg, transparent, var(--cyan), transparent); }
.final h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px, 4.6vw, 50px); line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 18px; }
.final p { color: var(--muted); font-size: 18px; max-width: 560px; margin: 0 auto 34px; line-height: 1.6; }
.final-actions { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.final-mail { font-family: var(--font-mono); font-size: 13px; color: var(--muted); }
.final-mail a { color: var(--cyan); text-decoration: none; }
.final-mail a:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.foot { padding: 40px 0; }
.foot-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.foot-brand { font-family: var(--font-mono); font-size: 12.5px; color: var(--dim); }
.foot-brand b { color: var(--text); font-weight: 600; }
.foot-links { display: flex; gap: 22px; }
.foot-links a { font-size: 13.5px; color: var(--muted); text-decoration: none; }
.foot-links a:hover { color: var(--text); }
.foot-legal { font-size: 12px; color: var(--dim); width: 100%; padding-top: 16px; border-top: 1px solid var(--border); margin-top: 6px; }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- Focus ---------- */
a:focus-visible, .btn:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 6px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .story-grid { grid-template-columns: 1fr; gap: 24px; }
  .story-sticky { position: relative; top: 0; margin-bottom: 10px; }
  .story-step { padding: 6vh 0; }
  .report-wrap { grid-template-columns: 1fr; gap: 32px; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .icp-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 18px 0; }
  .stat:nth-child(2) { border-right: none; }
  .stat { border-bottom: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .offers-grid { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr; }
  .icp-grid { grid-template-columns: repeat(2, 1fr); }
  .method { padding: 26px; }
  .band { padding: 66px 0; }
  .rollup { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 112px 0 50px; }
}
@media (max-width: 440px) {
  .icp-grid { grid-template-columns: 1fr; }
  .rd-table .tr { grid-template-columns: 1.3fr 1fr; }
  .rd-table .tr span:nth-child(3) { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .bg-grid, .bg-glow, .asm-ring { animation: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
