/* ── Variables ── */
:root {
  --bg: #060812;
  --bg2: #0a1020;
  --card: #0f172a;
  --line: #243244;
  --text: #eaf0ff;
  --muted: #9fb0c8;
  --blue: #5ba0ff;
  --blue2: #2f6df6;
  --green: #35d39a;
  --amber: #f5a623;
  --red: #ef4444;
}

/* ── Reset ── */
* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background:
    radial-gradient(1px 1px at 20px 30px, rgba(91,160,255,.15), transparent),
    radial-gradient(1px 1px at 40px 70px, rgba(91,160,255,.1), transparent),
    radial-gradient(1200px 480px at 15% -15%, #132c66, transparent),
    linear-gradient(var(--bg), var(--bg2));
  background-attachment: fixed;
}

/* ── Skip Link ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--blue);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  z-index: 1000;
  text-decoration: none;
  font-weight: 700;
}
.skip-link:focus { top: 8px; }

/* ── Sticky Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 8, 18, .7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}
.nav-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-weight: 800;
  font-size: 16px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -.01em;
  margin-right: auto;
}
.nav-links {
  display: flex;
  gap: 20px;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.btn-sm { padding: 8px 14px; font-size: 13px; }

/* ── Layout ── */
.wrap { max-width: 920px; margin: 0 auto; padding: 32px 20px 64px; }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Hero ── */
.hero { padding: 40px 0 16px; }
.eyebrow {
  color: var(--green);
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 800;
  margin: 0;
}
.hero-heading {
  margin: 14px 0 18px;
  line-height: 1.04;
  font-size: clamp(34px, 7vw, 58px);
  max-width: 860px;
  background: linear-gradient(135deg, #fff 0%, var(--blue) 50%, #a5c8ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
h1 { margin: 10px 0 14px; line-height: 1.04; font-size: clamp(34px, 7vw, 58px); max-width: 860px; }
.sub { margin: 0; color: var(--muted); font-size: 19px; max-width: 760px; line-height: 1.5; }

/* ── CTAs ── */
.cta-row { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  text-decoration: none;
  color: var(--text);
  border: 1px solid #3b4d67;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 15px;
  background: transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.btn:active {
  transform: translateY(0);
  box-shadow: none;
}
.btn.primary {
  border: 0;
  background: linear-gradient(120deg, var(--blue), var(--blue2));
}
.btn.primary:hover {
  background: linear-gradient(120deg, #6db0ff, #4080f8);
  box-shadow: 0 4px 20px rgba(47,109,246,.35);
}
.btn.ghost { background: rgba(19, 34, 58, .6); }
.btn.ghost:hover {
  background: rgba(25, 45, 75, .8);
  border-color: #5a7a9f;
}

/* ── Trust Strip ── */
.trust-strip {
  margin-top: 20px;
  color: #a0b4cc;
  font-size: 13px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.dot-sep { color: #4a6080; }

/* ── Stats Bar ── */
.stats-bar {
  display: flex;
  gap: 2px;
  margin-top: 32px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(12, 18, 34, .6);
}
.stat {
  flex: 1;
  text-align: center;
  padding: 18px 12px;
}
.stat + .stat { border-left: 1px solid var(--line); }
.stat-num {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.2;
}
.stat-label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── Proof Grid ── */
.proof-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.proof {
  background: linear-gradient(180deg, rgba(19,29,50,.7), rgba(11,18,35,.9));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  transition: border-color .2s, transform .2s;
}
.proof:hover {
  border-color: #3a5a7e;
  transform: translateY(-2px);
}
.proof h3 { margin: 0 0 10px; font-size: 18px; }
.proof ul { margin: 0; padding-left: 18px; }
.proof li { margin: 7px 0; color: #c4d2e9; line-height: 1.4; }

/* ── Card ── */
.card {
  margin-top: 20px;
  padding: 24px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(12, 18, 34, .85);
}

/* ── Intel Card ── */
.intel-card { position: relative; overflow: hidden; }
.intel-header { display: flex; flex-direction: column; gap: 4px; }
.intel-meta { display: flex; align-items: center; gap: 12px; }
.intel-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: 6px;
}
.intel-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.intel-badge.high {
  background: rgba(239,68,68,.12);
  color: #fca5a5;
}
.intel-badge.high::before { background: var(--red); box-shadow: 0 0 6px var(--red); }
.intel-time { font-size: 12px; color: #6b83a6; }
.intel-card .label {
  margin: 8px 0 0;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #8db5ff;
  font-size: 12px;
  font-weight: 700;
}
.intel-card h2 { margin: 12px 0 16px; font-size: clamp(22px, 3vw, 30px); line-height: 1.25; }
.intel-blocks { display: flex; flex-direction: column; gap: 10px; }
.intel-block {
  padding: 14px 16px;
  border-radius: 10px;
  border-left: 3px solid;
  background: rgba(8, 14, 28, .6);
}
.intel-block.amber { border-left-color: var(--amber); }
.intel-block.blue { border-left-color: var(--blue); }
.intel-block.green { border-left-color: var(--green); }
.intel-block-label {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.intel-block.amber .intel-block-label { color: var(--amber); }
.intel-block.blue .intel-block-label { color: var(--blue); }
.intel-block.green .intel-block-label { color: var(--green); }
.intel-block p { color: #d4e0f4; margin: 0; line-height: 1.5; }
.intel-block p + p { margin-top: 4px; }

/* ── Quick Checkout ── */
.quick-checkout {
  background: linear-gradient(180deg, rgba(27, 46, 86, .45), rgba(12, 18, 34, .9));
  border-color: #43628a;
}
.quick-checkout .btn { margin-top: 6px; }
.quick-proof {
  display: grid;
  gap: 8px;
  margin: 14px 0 16px;
  color: #d3e1f6;
  font-size: 14px;
}

/* ── Pricing ── */
h2 { margin: 0 0 10px; font-size: 32px; }
.muted { margin: 0 0 14px; color: var(--muted); }
.tiers { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.tiers article {
  background: #0a1326;
  border: 1px solid #2c3e59;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.tiers article:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  border-color: #4a6a8e;
}
.tiers .featured {
  border-color: #5f9eff;
  box-shadow: 0 0 0 1px rgba(95,158,255,.15) inset, 0 0 30px rgba(95,158,255,.06);
}
.tiers .featured:hover {
  border-color: #7ab4ff;
  box-shadow: 0 0 0 1px rgba(95,158,255,.25) inset, 0 8px 32px rgba(47,109,246,.2);
}
.badge {
  margin: 0 0 4px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.price { margin: 6px 0; font-size: 38px; font-weight: 800; }
.meta { margin: 0 0 12px; color: #b8c8e2; min-height: 46px; line-height: 1.4; }
.features {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  flex: 1;
}
.features li {
  padding: 5px 0;
  color: #c4d2e9;
  font-size: 14px;
  line-height: 1.4;
}
.features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  margin-right: 8px;
}
.tiers .btn { width: 100%; text-align: center; margin-top: auto; }

/* ── Form ── */
label { display: block; margin-bottom: 12px; color: #b9c9e2; font-size: 14px; font-weight: 500; }
input {
  width: 100%;
  margin-top: 6px;
  border: 1px solid #354963;
  border-radius: 10px;
  background: #091121;
  color: #e7efff;
  padding: 12px;
  font-size: 15px;
  transition: border-color .2s;
}
input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(91,160,255,.15);
}
#form-status { min-height: 20px; color: #c9d8ef; margin-top: 10px; font-size: 14px; }

/* ── FAQ ── */
.faq { margin-top: 20px; }
.faq h2 { margin-bottom: 12px; }
details {
  margin-top: 8px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(9,16,32,.7);
  transition: border-color .2s;
}
details:hover { border-color: #3a5a7e; }
details[open] { border-color: #3a5a7e; }
summary {
  cursor: pointer;
  font-weight: 650;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
summary::after {
  content: '+';
  font-size: 18px;
  color: var(--muted);
  transition: transform .2s;
}
details[open] summary::after {
  content: '−';
}
summary::-webkit-details-marker { display: none; }
details p { color: #c4d2e8; margin: 10px 0 0; line-height: 1.5; }

/* ── Final CTA ── */
.final-cta {
  margin-top: 32px;
  text-align: center;
  padding: 48px 20px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(19,29,50,.5), rgba(11,18,35,.3));
  border: 1px solid var(--line);
}
.final-cta h2 {
  font-size: clamp(26px, 4vw, 38px);
  background: linear-gradient(135deg, #fff, var(--blue));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.final-cta .muted { margin-bottom: 20px; }
.final-cta .cta-row { justify-content: center; }

/* ── Footer ── */
footer { margin-top: 24px; color: #607590; font-size: 13px; text-align: center; padding-bottom: 16px; }

/* ── Focus Visible ── */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
.btn:focus-visible { outline-offset: 3px; }

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .proof, .tiers article, details { transition: none; }
}

/* ── Mobile ── */
@media (max-width: 860px) {
  .proof-grid, .tiers { grid-template-columns: 1fr; }
  h2 { font-size: 27px; }
  .nav-links { display: none; }
  .stats-bar { flex-direction: column; gap: 0; }
  .stat + .stat { border-left: none; border-top: 1px solid var(--line); }
  .stat { padding: 14px 12px; }
  .final-cta { padding: 32px 16px; }
}
