@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ─── RESET ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, video, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }

/* ─── DESIGN TOKENS ──────────────────────────────────────────────── */
:root {
  --indigo:       #7C3AFF;
  --indigo-bright:#9B5FFF;
  --indigo-dim:   #3D1C88;
  --indigo-glow:  rgba(124,58,255,0.28);
  --citrus:       #CAFF00;
  --citrus-dim:   #A8D400;
  --black:        #0A090F;
  --surface:      #110F1A;
  --surface-2:    #1A1726;
  --surface-3:    #221F30;
  --border:       rgba(255,255,255,0.08);
  --white:        #FFFFFF;
  --white-70:     rgba(255,255,255,0.70);
  --white-40:     rgba(255,255,255,0.40);
  --white-12:     rgba(255,255,255,0.12);

  --ff-head: 'Syne', sans-serif;
  --ff-body: 'Inter', sans-serif;

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;
  --r-pill:999px;

  --shadow-card: 0 4px 32px rgba(0,0,0,0.45), 0 0 0 1px var(--border);
  --shadow-btn:  0 0 24px rgba(124,58,255,0.45);
  --shadow-glow: 0 0 64px rgba(124,58,255,0.22);

  --sp-1:  clamp(4px,   0.4vw,  6px);
  --sp-2:  clamp(8px,   0.8vw,  12px);
  --sp-3:  clamp(12px,  1.2vw,  18px);
  --sp-4:  clamp(16px,  1.6vw,  24px);
  --sp-5:  clamp(24px,  2.4vw,  36px);
  --sp-6:  clamp(32px,  3.2vw,  48px);
  --sp-7:  clamp(48px,  5vw,    72px);
  --sp-8:  clamp(64px,  7vw,    96px);
  --sp-9:  clamp(80px,  9vw,    128px);
}

/* ─── BASE ───────────────────────────────────────────────────────── */
html, body {
  background: var(--black);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.65;
  min-height: 100vh;
}

/* ─── CONTAINER ──────────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-head);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
}
h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2rem,   4vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 1.5vw, 1.35rem); font-weight: 700; }
p  { color: var(--white-70); max-width: 68ch; }

strong { color: var(--white); font-weight: 600; }

.text-citrus  { color: var(--citrus); }
.text-indigo  { color: var(--indigo-bright); }
.text-muted   { color: var(--white-40); font-size: 0.85em; }

/* ─── LINKS ──────────────────────────────────────────────────────── */
a:hover { color: var(--indigo-bright); }

/* ─── BUTTONS ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  border-radius: var(--r-pill);
  padding: clamp(12px,1.4vw,16px) clamp(24px,3vw,40px);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--indigo);
  color: var(--white);
  box-shadow: var(--shadow-btn);
}
.btn--primary:hover {
  background: var(--indigo-bright);
  box-shadow: 0 0 36px rgba(124,58,255,0.65);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--citrus {
  background: var(--citrus);
  color: var(--black);
  box-shadow: 0 0 24px rgba(202,255,0,0.35);
}
.btn--citrus:hover {
  background: #d8ff33;
  box-shadow: 0 0 40px rgba(202,255,0,0.55);
  color: var(--black);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--indigo-bright);
  color: var(--indigo-bright);
  background: rgba(124,58,255,0.08);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 9px 22px;
  font-size: 0.85rem;
}

/* ─── NAV / HEADER ───────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(10,9,15,0.82);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  border-bottom: 1.5px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: clamp(58px, 6vw, 72px);
  gap: var(--sp-4);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  letter-spacing: -0.03em;
  color: var(--white);
  flex-shrink: 0;
}
.nav-logo svg { width: 32px; height: 32px; }
.nav-logo:hover { color: var(--indigo-bright); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2.5vw, 36px);
}
.nav-links a {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: clamp(0.82rem, 1.1vw, 0.95rem);
  color: var(--white-70);
  letter-spacing: 0.01em;
  transition: color 0.15s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--indigo-bright);
  border-radius: 2px;
  transition: width 0.2s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* Mobile nav */
@media (max-width: 820px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-header.open .nav-links,
  .site-header.open .nav-cta {
    display: flex;
  }
  .site-header.open .nav-links {
    position: fixed;
    top: clamp(58px, 6vw, 72px);
    left: 0; right: 0;
    background: var(--surface);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: var(--sp-4) var(--sp-5);
    border-bottom: 1px solid var(--border);
  }
  .site-header.open .nav-links a {
    padding: var(--sp-3) 0;
    font-size: 1.1rem;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  .site-header.open .nav-cta {
    position: fixed;
    top: calc(clamp(58px, 6vw, 72px) + 260px);
    left: 0; right: 0;
    background: var(--surface);
    padding: var(--sp-4) var(--sp-5) var(--sp-5);
    flex-direction: column;
    align-items: stretch;
  }
  .site-header.open .nav-cta .btn { text-align: center; justify-content: center; }
}

/* ─── PAGE OFFSET ────────────────────────────────────────────────── */
.page-body { padding-top: clamp(58px, 6vw, 72px); }

/* ─── SECTIONS ───────────────────────────────────────────────────── */
.section {
  padding-block: var(--sp-9);
}
.section--tight { padding-block: var(--sp-7); }
.section--dark   { background: var(--black); }
.section--surface { background: var(--surface); }
.section--surface2 { background: var(--surface-2); }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(0.7rem, 1vw, 0.8rem);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--citrus);
  background: rgba(202,255,0,0.1);
  border: 1px solid rgba(202,255,0,0.22);
  border-radius: var(--r-pill);
  padding: 5px 14px;
  margin-bottom: var(--sp-4);
}

.section-heading {
  margin-bottom: var(--sp-4);
}
.section-lead {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--white-70);
  margin-bottom: var(--sp-5);
  max-width: 58ch;
}

/* ─── HERO ───────────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  overflow: hidden;
  padding-block: var(--sp-9) var(--sp-8);
  background: var(--black);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(124,58,255,0.3) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-7);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual { order: -1; }
}

.hero-content { max-width: 600px; }

.hero-title {
  font-size: clamp(2.8rem, 6.5vw, 5.4rem);
  line-height: 1.0;
  margin-bottom: var(--sp-4);
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--indigo-bright) 0%, var(--citrus) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--white-70);
  margin-bottom: var(--sp-6);
  max-width: 50ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--white-40);
  margin-top: var(--sp-4);
}
.hero-badge::before {
  content: '';
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--citrus);
  box-shadow: 0 0 8px var(--citrus);
  flex-shrink: 0;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-glow);
  aspect-ratio: 4 / 3;
  width: 100%;
  background: var(--surface-2);
}
.hero-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124,58,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}

/* ─── CARD GRID ──────────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}

.card {
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-5) var(--sp-6);
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--indigo), var(--indigo-bright), var(--citrus));
  opacity: 0;
  transition: opacity 0.22s;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(124,58,255,0.35);
  box-shadow: 0 8px 48px rgba(0,0,0,0.55), 0 0 0 1px rgba(124,58,255,0.2);
}
.card:hover::before { opacity: 1; }

.card-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: rgba(124,58,255,0.15);
  border: 1px solid rgba(124,58,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
  font-size: 1.4rem;
}
.card h4 { margin-bottom: var(--sp-2); }
.card p  { font-size: 0.92rem; max-width: 100%; }

/* ─── STATS ROW ──────────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}

.stat-item {
  text-align: center;
  padding: var(--sp-5) var(--sp-4);
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  position: relative;
}

.stat-num {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1;
  background: linear-gradient(135deg, var(--indigo-bright), var(--citrus));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--sp-2);
  display: block;
}

.stat-label {
  font-size: clamp(0.78rem, 1vw, 0.88rem);
  color: var(--white-70);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ─── CTA BAND ───────────────────────────────────────────────────── */
.cta-band {
  background: var(--indigo-dim);
  border-radius: var(--r-xl);
  border: 1.5px solid rgba(124,58,255,0.4);
  padding: var(--sp-7) var(--sp-6);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(124,58,255,0.2);
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(202,255,0,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band h2 { margin-bottom: var(--sp-3); }
.cta-band p  { margin-inline: auto; margin-bottom: var(--sp-5); color: rgba(255,255,255,0.75); }
.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
}

/* ─── FAQ ────────────────────────────────────────────────────────── */
.faq-list {
  margin-top: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.faq-item {
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-3);
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-4) var(--sp-5);
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  color: var(--white);
  text-align: left;
  transition: background 0.15s;
}
.faq-question:hover { background: var(--surface-3); }

.faq-chevron {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--indigo-glow);
  border: 1px solid rgba(124,58,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s, background 0.2s;
  color: var(--indigo-bright);
  font-size: 0.75rem;
  line-height: 1;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); background: rgba(124,58,255,0.25); }

.faq-answer {
  display: none;
  padding: 0 var(--sp-5) var(--sp-4);
}
.faq-item.open .faq-answer { display: block; }
.faq-answer p { font-size: 0.92rem; color: var(--white-70); max-width: 100%; }

/* ─── CONTENT SECTION ────────────────────────────────────────────── */
.content-section { }
.content-section .section-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-7);
  align-items: start;
  margin-top: var(--sp-6);
}
@media (max-width: 720px) {
  .content-section .section-body { grid-template-columns: 1fr; }
}
.content-section p { max-width: 100%; }

/* ─── DIVIDER ─────────────────────────────────────────────────────── */
.divider {
  width: 100%; height: 1px;
  background: var(--border);
  margin-block: 0;
}

/* ─── FORMS ──────────────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}
.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white-70);
  letter-spacing: 0.03em;
}
.form-input, .form-textarea, .form-select {
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  color: var(--white);
  padding: 12px 16px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--white-40); }
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--indigo-bright);
  box-shadow: 0 0 0 3px rgba(124,58,255,0.18);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-select option { background: var(--surface-2); }

/* ─── FOOTER ─────────────────────────────────────────────────────── */
.site-footer {
  background: var(--surface);
  border-top: 1.5px solid var(--border);
  padding-top: var(--sp-8);
  padding-bottom: var(--sp-5);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--sp-7);
  padding-bottom: var(--sp-7);
  border-bottom: 1px solid var(--border);
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
}
@media (max-width: 520px) {
  .footer-top { grid-template-columns: 1fr; }
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: var(--sp-4);
}
.footer-brand-logo svg { width: 28px; height: 28px; }

.footer-tagline {
  font-size: 0.88rem;
  color: var(--white-40);
  margin-bottom: var(--sp-5);
  max-width: 28ch;
  line-height: 1.5;
}

.footer-socials {
  display: flex;
  gap: var(--sp-2);
}
.footer-social-link {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: var(--white-12);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-70);
  font-size: 0.8rem;
  font-weight: 700;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.footer-social-link:hover {
  background: var(--indigo);
  color: var(--white);
  border-color: var(--indigo);
}

.footer-col-title {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white-40);
  margin-bottom: var(--sp-4);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.footer-links a {
  font-size: 0.9rem;
  color: var(--white-70);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--indigo-bright); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-3);
  padding-top: var(--sp-5);
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--white-40);
}

.footer-legal {
  display: flex;
  gap: var(--sp-4);
}
.footer-legal a {
  font-size: 0.82rem;
  color: var(--white-40);
  transition: color 0.15s;
}
.footer-legal a:hover { color: var(--white-70); }

/* ─── UTILITY ─────────────────────────────────────────────────────── */
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }
.text-center { text-align: center; }
.text-center p { margin-inline: auto; }

.tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  background: var(--white-12);
  color: var(--white-70);
  border: 1px solid var(--border);
}
.tag--indigo {
  background: rgba(124,58,255,0.15);
  color: var(--indigo-bright);
  border-color: rgba(124,58,255,0.25);
}

/* ─── PRICING CARD ────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px,100%), 1fr));
  gap: var(--sp-4);
  margin-top: var(--sp-6);
  align-items: start;
}
.pricing-card {
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-card);
  position: relative;
}
.pricing-card--featured {
  border-color: var(--indigo);
  background: linear-gradient(160deg, rgba(61,28,136,0.6) 0%, var(--surface-2) 100%);
  box-shadow: 0 0 48px rgba(124,58,255,0.3), var(--shadow-card);
}
.pricing-featured-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--indigo), var(--indigo-bright));
  color: var(--white);
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.pricing-price {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--white);
  line-height: 1;
  margin-block: var(--sp-4);
}
.pricing-price span {
  font-size: 1rem;
  color: var(--white-40);
  font-weight: 400;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-block: var(--sp-5);
}
.pricing-features li {
  font-size: 0.9rem;
  color: var(--white-70);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.pricing-features li::before {
  content: '✓';
  color: var(--citrus);
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── SCROLL REVEAL (optional progressive enhancement) ───────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }
} *{box-sizing:border-box} html{-webkit-text-size-adjust:100%} img,svg,video{max-width:100%;height:auto} 