/* SPAR Landing Page — CatapalloVR brand */
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

:root {
  /* Brand */
  --innovation: #23B6FF;
  --royal: #6853FD;
  --deep: #2B1E8F;
  --ignite: #004CD2;
  --pink: #FE2285;
  --magenta: #D50261;
  --tail-end: #AF23FF;

  /* Surfaces */
  --bg-0: #0B0830;          /* near black-purple */
  --bg-1: #15104A;
  --bg-2: #1A1466;
  --surface: rgba(255,255,255,0.04);
  --surface-2: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.10);
  --border-strong: rgba(255,255,255,0.18);

  /* Text */
  --fg: #FFFFFF;
  --fg-muted: #E5E7EB;
  --fg-dim: #B7B9D4;
  --fg-faint: #7E80A6;

  /* Type */
  --font: 'Barlow', system-ui, sans-serif;

  /* Layout */
  --maxw: 1240px;
  --pad-x: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-0);
  color: var(--fg-muted);
  font-family: var(--font);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ── Background — single page-wide gradient field ─────────── */
.bg-field {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 60% at 80% -10%, rgba(35,182,255,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 10% 30%, rgba(104,83,253,0.32) 0%, transparent 60%),
    radial-gradient(ellipse 90% 60% at 50% 110%, rgba(43,30,143,0.55) 0%, transparent 60%),
    linear-gradient(180deg, #0B0830 0%, #0B0830 100%);
}
.bg-grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.7) 0%, transparent 80%);
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font);
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin: 0;
}
h1 { font-size: clamp(40px, 6vw, 76px); line-height: 1.02; }
h2 { font-size: clamp(32px, 4.4vw, 56px); line-height: 1.05; }
h3 { font-size: clamp(22px, 2.2vw, 28px); line-height: 1.2; letter-spacing: -0.01em; }
p  { margin: 0; line-height: 1.55; color: var(--fg-muted); }
a { color: var(--innovation); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--pink); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--pink);
}
.eyebrow.center::before { display: none; }

/* ── Layout ───────────────────────────────────────────────── */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
section { padding: clamp(72px, 11vw, 140px) 0; position: relative; }
section.tight { padding: clamp(48px, 7vw, 84px) 0; }

/* ── Nav ──────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: rgba(11, 8, 48, 0.6);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}
.brand img { height: 30px; width: auto; display: block; }
.brand-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  letter-spacing: 0.02em;
}
.brand-text .divider { width: 1px; height: 16px; background: rgba(255,255,255,0.25); }
.brand-text .product { color: var(--innovation); font-weight: 600; letter-spacing: 0.16em; font-size: 12px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.18s ease;
}
.nav-links a:hover { color: #fff; }
@media (max-width: 1000px) {
  .nav-links a:not(.btn) { display: none; }
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 10px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 8px 24px rgba(254, 34, 133, 0.35), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(254, 34, 133, 0.5), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: rgba(255,255,255,0.04);
  border-color: var(--border-strong);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }
.btn-lg { padding: 18px 30px; font-size: 17px; border-radius: 12px; }

/* "Try it now" — distinct from primary, ties to live state */
.btn-try {
  background: rgba(35,182,255,0.10);
  border: 1px solid rgba(35,182,255,0.45);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 0 0 0 rgba(35,182,255,0);
  transition: transform 0.15s ease, box-shadow 0.25s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn-try:hover {
  background: rgba(35,182,255,0.16);
  border-color: var(--innovation);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 8px 28px rgba(35,182,255,0.32);
  transform: translateY(-1px);
}
.btn-try svg { color: var(--innovation); }

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6CE5A8;
  box-shadow: 0 0 0 0 rgba(108, 229, 168, 0.6);
  animation: live-pulse 1.8s ease-out infinite;
  flex-shrink: 0;
}
@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0    rgba(108, 229, 168, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(108, 229, 168, 0); }
  100% { box-shadow: 0 0 0 0    rgba(108, 229, 168, 0); }
}
.nav .btn-try { padding: 9px 14px; font-size: 13.5px; border-radius: 8px; }
.btn-code {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 3px 7px;
  border-radius: 5px;
  background: rgba(35,182,255,0.18);
  border: 1px solid rgba(35,182,255,0.4);
  color: var(--innovation);
  text-transform: uppercase;
}

/* Access / password callout */
.access {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.access.center { justify-content: center; position: relative; margin-top: 22px; }
.access-lead {
  font-size: 13px;
  color: var(--fg-dim);
  font-weight: 500;
}
.access-note { font-size: 12.5px; color: var(--fg-faint); }
.access-code {
  font-family: var(--font);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 8px;
  background: rgba(35,182,255,0.12);
  border: 1px dashed rgba(35,182,255,0.55);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.22em;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.access-code svg { color: var(--innovation); letter-spacing: 0; }
.access-code:hover { background: rgba(35,182,255,0.2); border-color: var(--innovation); }
.access-code.copied { border-style: solid; border-color: #6CE5A8; background: rgba(108,229,168,0.14); }
.access-code.copied::after { content: "Copied"; font-size: 11px; letter-spacing: 0.06em; color: #6CE5A8; font-weight: 600; }
.access-code.sm { font-size: 14px; padding: 4px 9px; }

/* Try-band inside section header */
.try-band {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(35,182,255,0.3);
  background: rgba(35,182,255,0.06);
}
.try-band-text { font-size: 13.5px; color: var(--fg-dim); display: inline-flex; align-items: center; gap: 8px; }
@media (max-width: 1080px) {
  .nav .btn-code { display: none; }
}
@media (max-width: 720px) {
  .nav .btn-try { display: none; }
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  padding: clamp(56px, 8vw, 96px) 0 clamp(72px, 11vw, 120px);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero h1 .accent {
  background: linear-gradient(90deg, var(--innovation) 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  margin-top: 28px;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.55;
  color: var(--fg-muted);
  max-width: 580px;
  font-weight: 400;
}
.hero-cta {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-microcopy {
  font-size: 13px;
  color: var(--fg-faint);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-microcopy svg { color: var(--innovation); }

/* Hero stats */
.stats {
  margin-top: clamp(48px, 6vw, 72px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat {
  padding: 24px 22px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-weight: 600;
  font-size: clamp(24px, 2.4vw, 32px);
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1;
}
.stat-num .unit { color: var(--innovation); font-size: 0.55em; margin-left: 6px; font-weight: 500; letter-spacing: 0.04em; }
.stat-label {
  margin-top: 8px;
  font-size: 13px;
  color: var(--fg-dim);
  font-weight: 400;
}
@media (max-width: 700px) {
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
}

/* ── Mock product surface (hero) ──────────────────────────── */
.product-surface {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: linear-gradient(180deg, #15104A 0%, #0E0A35 100%);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(35,182,255,0.10),
    0 0 80px rgba(35,182,255,0.18),
    0 0 160px rgba(104,83,253,0.18);
}
.product-surface::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(35,182,255,0.6) 0%, rgba(254,34,133,0.4) 100%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  padding: 1px;
  opacity: 0.5;
}
.surface-glow {
  position: absolute;
  inset: -40px;
  z-index: -1;
  border-radius: 30px;
  background: radial-gradient(60% 60% at 50% 50%, rgba(35,182,255,0.35) 0%, transparent 70%);
  filter: blur(40px);
  opacity: 0.7;
  pointer-events: none;
}

/* Coaching dashboard mock */
.dash {
  padding: 18px 18px 20px;
  font-family: var(--font);
  color: #fff;
  font-size: 14px;
}
.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.dash-top-left { display: flex; align-items: center; gap: 10px; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-dim); }
.dash-top-left .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--innovation); box-shadow: 0 0 12px var(--innovation); }
.dash-top-right {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--fg-dim);
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  background: rgba(35,182,255,0.12);
  color: var(--innovation);
  border: 1px solid rgba(35,182,255,0.25);
}
.dash-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 22px 4px 16px;
  align-items: center;
}
.score-ring {
  position: relative;
  width: 120px;
  height: 120px;
}
.score-ring svg { transform: rotate(-90deg); display: block; }
.score-ring .num {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
}
.score-ring .num span { font-size: 14px; color: var(--fg-faint); margin-left: 2px; }
.dash-hero-text .title { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-faint); margin-bottom: 6px; }
.dash-hero-text .h { font-size: 20px; font-weight: 600; color: #fff; line-height: 1.2; }
.dash-hero-text .sub { font-size: 13px; color: var(--fg-dim); margin-top: 6px; line-height: 1.5; }
.dash-tags { display: flex; gap: 6px; margin-top: 12px; flex-wrap: wrap; }
.tag {
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--fg-muted);
  font-weight: 500;
}
.tag.win { color: #6CE5A8; border-color: rgba(108,229,168,0.3); background: rgba(108,229,168,0.08); }
.tag.grow { color: #FFC656; border-color: rgba(255,198,86,0.3); background: rgba(255,198,86,0.08); }

.dims {
  margin-top: 6px;
  display: grid;
  gap: 10px;
}
.dim {
  display: grid;
  grid-template-columns: 130px 1fr 40px;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
}
.dim .name { color: var(--fg-muted); font-weight: 500; }
.dim .bar { height: 6px; background: rgba(255,255,255,0.06); border-radius: 99px; overflow: hidden; position: relative; }
.dim .bar .fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--innovation) 0%, var(--royal) 100%);
  border-radius: 99px;
  box-shadow: 0 0 14px rgba(35,182,255,0.5);
}
.dim .val { font-weight: 600; color: #fff; text-align: right; }
.dim.low .bar .fill { background: linear-gradient(90deg, var(--pink) 0%, #FFC656 100%); box-shadow: 0 0 12px rgba(254,34,133,0.4); }

/* Floating chips around hero surface */
.chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(11, 8, 48, 0.85);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}
.chip svg { color: var(--innovation); }
.chip .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #6CE5A8;
  box-shadow: 0 0 10px #6CE5A8;
}
.chip-tl { top: -16px; left: -16px; }
.chip-br { bottom: -16px; right: -16px; border-color: rgba(254,34,133,0.35); }
.chip-br svg { color: var(--pink); }

/* ── Section headers ──────────────────────────────────────── */
.sec-head {
  max-width: 740px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 { margin-top: 14px; color: #fff; }
.sec-head p { margin-top: 18px; font-size: clamp(16px, 1.3vw, 18px); color: var(--fg-dim); max-width: 620px; }
.sec-head.center p { margin-left: auto; margin-right: auto; }

/* ── Founding members ─────────────────────────────────────── */
.founding {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.founding-inner {
  display: flex;
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
  flex-wrap: wrap;
}
.founding-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-faint);
  font-weight: 500;
  flex-shrink: 0;
}
.founding-track {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 24px;
  row-gap: 16px;
  flex-wrap: wrap;
  position: relative;
  min-height: 60px;
}
.founding-track::after { content: none; }
.logo-card {
  flex-shrink: 0;
  height: 60px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.92);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.logo-card img { max-height: 100%; width: auto; display: block; }
.logo-slot {
  flex-shrink: 0;
  height: 60px;
  min-width: 140px;
  white-space: nowrap;
  border: 1px dashed var(--border-strong);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

/* ── Why SPAR — feature columns ───────────────────────────── */
.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2vw, 32px);
}
@media (max-width: 900px) { .three { grid-template-columns: 1fr; } }
.feature {
  padding: 36px 30px 34px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.feature:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: var(--surface-2);
}
.icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(35,182,255,0.18) 0%, rgba(104,83,253,0.18) 100%);
  border: 1px solid rgba(35,182,255,0.25);
  color: var(--innovation);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 0 24px rgba(35,182,255,0.15);
}
.feature h3 { color: #fff; margin-bottom: 12px; }
.feature p { font-size: 15.5px; color: var(--fg-dim); }

/* In-action product showcase image */
.showcase {
  margin-top: clamp(48px, 6vw, 72px);
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: #0E0A35;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 100px rgba(35,182,255,0.12);
}
.showcase img { display: block; width: 100%; height: auto; }
.showcase-caption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(11,8,48,0.8);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 12px;
  color: #fff;
  backdrop-filter: blur(10px);
  letter-spacing: 0.04em;
}
.showcase-caption .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 8px var(--pink); }

/* ── Benefits / pain-points cards ─────────────────────────── */
.benefit {
  padding: 36px 30px 34px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(35,182,255,0.06) 0%, rgba(43,30,143,0.06) 100%);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.benefit::before {
  content: "";
  position: absolute;
  top: 0; left: 30px; right: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--innovation), transparent);
  opacity: 0.6;
}
.benefit .num {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--pink);
  letter-spacing: 0.16em;
  margin-bottom: 24px;
  display: inline-block;
}
.benefit h3 { color: #fff; margin-bottom: 14px; }
.benefit p { font-size: 15.5px; color: var(--fg-dim); }

/* ── In-action cards (3 product screenshots) ──────────────── */
.in-action {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .in-action { grid-template-columns: 1fr; } }
.shot {
  border-radius: 14px;
  overflow: hidden;
  background: #0E0A35;
  border: 1px solid var(--border);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.shot:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.shot-frame {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #15104A 0%, #0E0A35 100%);
}
.shot-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.shot-body { padding: 20px 22px 22px; border-top: 1px solid var(--border); }
.shot-tag { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--innovation); font-weight: 600; }
.shot-caption { margin-top: 8px; font-size: 15px; color: var(--fg-muted); line-height: 1.45; }

/* ── Growth mode strip ────────────────────────────────────── */
.growth {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  padding: clamp(48px, 6vw, 80px);
  border-radius: 24px;
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(ellipse at top right, rgba(254,34,133,0.16) 0%, transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(35,182,255,0.16) 0%, transparent 60%),
    linear-gradient(180deg, #15104A 0%, #0E0A35 100%);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.growth-body p { font-size: clamp(16px, 1.3vw, 19px); color: var(--fg-muted); line-height: 1.6; margin-top: 22px; }
.growth-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.growth-stat {
  padding: 22px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
}
.growth-stat .k { font-size: clamp(28px, 3vw, 40px); font-weight: 600; color: #fff; letter-spacing: -0.02em; line-height: 1; }
.growth-stat .k .em { color: var(--innovation); }
.growth-stat .l { margin-top: 10px; font-size: 13px; color: var(--fg-dim); line-height: 1.4; }
@media (max-width: 900px) { .growth { grid-template-columns: 1fr; padding: 36px 28px; } }

/* ── Pricing ──────────────────────────────────────────────── */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 980px) { .pricing { grid-template-columns: 1fr; } }
.plan {
  padding: 34px 30px 32px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.plan:hover { border-color: var(--border-strong); }
.plan.featured {
  border-color: var(--pink);
  background: linear-gradient(180deg, rgba(254,34,133,0.08) 0%, rgba(104,83,253,0.06) 100%);
  box-shadow: 0 30px 80px rgba(254,34,133,0.18), 0 0 0 1px rgba(254,34,133,0.4);
  transform: scale(1.02);
}
@media (max-width: 980px) { .plan.featured { transform: none; } }
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(254,34,133,0.5);
}
.plan-name { font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--innovation); font-weight: 600; }
.plan-tag { font-style: italic; font-size: 15px; color: var(--fg-dim); margin-top: 4px; font-weight: 400; }
.plan-price { display: flex; align-items: baseline; gap: 6px; }
.plan-price .amt { font-size: clamp(38px, 3.5vw, 48px); font-weight: 600; color: #fff; line-height: 1; letter-spacing: -0.02em; }
.plan-price .per { color: var(--fg-faint); font-size: 14px; }
.plan-setup { font-size: 13px; color: var(--fg-dim); }
.plan-setup b { color: #fff; font-weight: 600; }
.plan-divider { height: 1px; background: var(--border); }
.plan-users {
  align-self: flex-start;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--innovation);
  background: rgba(35,182,255,0.12);
  border: 1px solid rgba(35,182,255,0.3);
}
.plan.featured .plan-users {
  color: #fff;
  background: rgba(254,34,133,0.16);
  border-color: rgba(254,34,133,0.45);
}
.plan-feats { display: grid; gap: 12px; flex: 1; }
.plan-feat { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--fg-muted); }
.plan-feat svg { flex-shrink: 0; margin-top: 3px; color: var(--innovation); }
.plan .btn { margin-top: auto; }
.plan.featured .btn-ghost {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
  box-shadow: 0 8px 24px rgba(254, 34, 133, 0.35);
}
.plan.featured .btn-ghost:hover { background: #ff3a96; }

.addons {
  margin-top: 32px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 24px 28px;
  border-radius: 14px;
  border: 1px dashed var(--border-strong);
  background: rgba(255,255,255,0.02);
}
.addon { font-size: 13.5px; color: var(--fg-dim); display: flex; align-items: center; gap: 8px; }
.addon b { color: #fff; font-weight: 600; }
.addon svg { color: var(--pink); }

/* ── Resources / one-pager card ───────────────────────────── */
.resource {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  border-radius: 16px;
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(ellipse at top right, rgba(35,182,255,0.10) 0%, transparent 70%),
    rgba(255,255,255,0.03);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.resource:hover { border-color: var(--innovation); }
.resource, .logo-card { text-decoration: none; }
.resource-thumb {
  width: 96px;
  height: 124px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: #fff;
  flex-shrink: 0;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}
.resource-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.resource-icon {
  width: 56px;
  height: 70px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(35,182,255,0.18), rgba(104,83,253,0.18));
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  color: var(--innovation);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  position: relative;
}
.resource-icon::before {
  content: "PDF";
  position: absolute;
  bottom: 8px;
  font-size: 9px;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.08em;
}
.resource-icon svg { position: absolute; top: 14px; }
.resource-title { font-weight: 600; font-size: 18px; color: #fff; }
.resource-desc { font-size: 14px; color: var(--fg-dim); margin-top: 4px; }
@media (max-width: 700px) { .resource { grid-template-columns: 1fr; text-align: left; } }

/* ── Closing CTA ──────────────────────────────────────────── */
.closing {
  position: relative;
  padding: clamp(64px, 8vw, 110px);
  border-radius: 28px;
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(254,34,133,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at bottom, rgba(35,182,255,0.22) 0%, transparent 60%),
    linear-gradient(180deg, #1A1466 0%, #0E0A35 100%);
  border: 1px solid var(--border-strong);
  overflow: hidden;
}
.closing::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, transparent 70%);
  pointer-events: none;
}
.closing h2 { color: #fff; max-width: 18ch; margin: 0 auto; position: relative; }
.closing p { margin: 22px auto 0; max-width: 560px; color: var(--fg-muted); font-size: clamp(16px, 1.4vw, 18px); position: relative; }
.closing .btn { margin-top: 36px; position: relative; }
.closing-cta-row {
  margin-top: 36px;
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}
.closing-cta-row .btn { margin-top: 0; }
.closing-mini {
  margin-top: 16px;
  font-size: 13px;
  color: var(--fg-faint);
  position: relative;
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
  padding: 56px 0 40px;
  border-top: 1px solid var(--border);
  margin-top: clamp(40px, 6vw, 80px);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-inner .brand img { height: 32px; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 14px; color: var(--fg-dim); text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 13px; color: var(--fg-faint); }

/* ── Hero / dashboard responsive ──────────────────────────── */
@media (max-width: 1000px) {
  .hero-right { margin-top: 44px; }
  .chip-tl { top: -14px; left: 12px; }
  .chip-br { bottom: -14px; right: 12px; }
}
@media (max-width: 620px) {
  .hero-cta .btn { width: 100%; }
  .access { gap: 10px; }
  .access-note { flex-basis: 100%; }
  .hero-right { margin-top: 52px; }
  .chip-tl, .chip-br { position: static; display: inline-flex; margin: 0 8px 10px 0; animation: none; }
  .chip-wrap { display: flex; flex-wrap: wrap; margin-top: 14px; }
  .dash { padding: 14px; }
  .score-ring { width: 84px; height: 84px; }
  .score-ring svg { width: 84px; height: 84px; }
  .score-ring .num { font-size: 24px; }
  .dash-hero { grid-template-columns: 1fr; gap: 14px; padding: 18px 0 12px; }
  .dash-hero-text .h { font-size: 17px; }
  .dim { grid-template-columns: 86px 1fr 30px; gap: 8px; font-size: 11.5px; }
  .growth-stats { grid-template-columns: 1fr; }
  .try-band { width: 100%; }
  .try-band .btn { width: 100%; }
  .closing { padding: 44px 22px; }
  .closing-cta-row { display: flex; width: 100%; }
  .closing-cta-row .btn { width: 100%; }
  .addons { flex-direction: column; gap: 14px; padding: 20px; }
  .resource { padding: 22px; gap: 18px; }
  .resource .btn { width: 100%; }
  .stat { padding: 20px 0; }
  .founding-inner { gap: 18px; }
}

/* ── Reveal animation ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* float anim for chips */
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.chip-tl { animation: float-y 6s ease-in-out infinite; }
.chip-br { animation: float-y 7s ease-in-out infinite 1.2s; }
