/* ═══════════════════════════════════════════════════════════
   DESIGN TOKENS
   Palette: Navy #0F172A · Cyan #06B6D4 · Off-white #F8FAFC
   Typography: Space Grotesk (headings) · Space Mono (data)
   System font stack for body copy (no extra download)
═══════════════════════════════════════════════════════════ */
:root {
  --navy:      #0F172A;
  --navy-mid:  #1E293B;
  --navy-soft: #334155;
  --cyan:      #06B6D4;
  --cyan-dark: #0891B2;
  --cyan-dim:  rgba(6,182,212,0.15);
  --green:     #10B981;
  --amber:     #F59E0B;
  --off-white: #F8FAFC;
  --slate-400: #94A3B8;
  --slate-500: #64748B;
  --border:    rgba(255,255,255,0.08);
  --font-head: 'Space Grotesk', system-ui, sans-serif;
  --font-data: 'Space Mono', monospace;
  --font-body: system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --transition: 0.22s ease;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: #fff;
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

/* ── Layout helpers ─────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--dark { background: var(--navy); }
.section--light { background: var(--off-white); }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
.data-num { font-family: var(--font-data); }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.75rem; border-radius: .75rem;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(6,182,212,0.35);
}
.btn--primary:hover { box-shadow: 0 8px 30px rgba(6,182,212,0.5); }
.btn--outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: #fff;
}
.btn--outline:hover { border-color: var(--cyan); color: var(--cyan); }
.btn--ghost {
  background: transparent;
  border: 1.5px solid var(--navy-mid);
  color: var(--navy);
}
.btn--ghost:hover { border-color: var(--cyan); color: var(--cyan-dark); }
.btn--full { width: 100%; justify-content: center; }

/* ── Badge / pill ───────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .3rem .8rem; border-radius: 999px;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  border: 1px solid;
}
.badge--cyan { background: var(--cyan-dim); border-color: rgba(6,182,212,0.3); color: var(--cyan-dark); }
.badge--amber { background: rgba(245,158,11,0.12); border-color: rgba(245,158,11,0.3); color: #D97706; }
.badge--green { background: rgba(16,185,129,0.12); border-color: rgba(16,185,129,0.3); color: var(--green); }
.badge--red { background: rgba(239,68,68,0.12); border-color: rgba(239,68,68,0.3); color: #DC2626; }

/* ── Fade-in on scroll ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ════════════════════════════════════════════════════════════
   NAV
════════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(15,23,42,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 4rem;
}
.nav__logo { display: flex; align-items: center; gap: .6rem; }
.nav__logo img { width: 2rem; height: 2rem; border-radius: .5rem; }
.nav__logo span { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: #fff; }
.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a { color: var(--slate-400); font-size: .9rem; font-weight: 500; transition: color var(--transition); }
.nav__links a:hover { color: #fff; }
@media (max-width: 640px) { .nav__links { display: none; } }

/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  background: var(--navy);
  padding-top: 4rem; /* nav offset */
  position: relative;
  overflow: hidden;
}
/* subtle grid texture */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(6,182,212,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6,182,212,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: calc(100svh - 4rem);
  padding: 4rem 0;
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__ctas { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__img { order: -1; }
}
.hero__eyebrow { margin-bottom: 1.2rem; }
.hero h1 { color: #fff; margin-bottom: 1.25rem; }
.hero h1 em { font-style: normal; color: var(--cyan); }
.hero__sub { color: var(--slate-400); font-size: 1.1rem; max-width: 36rem; margin-bottom: 2rem; line-height: 1.7; }
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero__trust { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__img { display: flex; justify-content: center; align-items: center; }
.hero__img img {
  width: min(420px, 90%);
  border-radius: var(--radius-xl);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
}

/* ── Stats bar ──────────────────────────────────────────── */
.stats-bar {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stat {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--font-data);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: .4rem;
}
.stat__label { color: var(--slate-400); font-size: .8rem; font-weight: 500; }
@media (max-width: 600px) {
  .stats-bar__inner { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
}

/* ════════════════════════════════════════════════════════════
   PROBLEM SECTION
════════════════════════════════════════════════════════════ */
.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) { .problem-cards { grid-template-columns: 1fr; } }
.problem-card {
  background: var(--off-white);
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.problem-card__icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: .6rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.problem-card h3 { margin-bottom: .5rem; font-size: 1rem; }
.problem-card p { color: var(--slate-500); font-size: .9rem; line-height: 1.6; }

/* Regulation table card */
.reg-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  overflow-x: auto;
}
.reg-card__tag { margin-bottom: 1rem; }
.reg-card h3 { color: #fff; margin-bottom: .5rem; }
.reg-card p { color: var(--slate-400); font-size: .9rem; margin-bottom: 1.5rem; }
.reg-table { width: 100%; border-collapse: collapse; }
.reg-table tr { border-bottom: 1px solid var(--border); }
.reg-table tr:last-child { border-bottom: none; }
.reg-table td { padding: .75rem 0; font-size: .9rem; }
.reg-table td:first-child { color: var(--slate-400); }
.reg-table td:last-child { color: var(--cyan); font-family: var(--font-data); font-size: .85rem; text-align: right; }

/* ════════════════════════════════════════════════════════════
   FEATURES SECTION
════════════════════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1024px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .features-grid { grid-template-columns: 1fr; } }
.feature-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.feature-card:hover { border-color: rgba(6,182,212,0.4); box-shadow: 0 8px 30px rgba(6,182,212,0.08); }
.feature-card__icon {
  font-size: 1.4rem;
  margin-bottom: .75rem;
}
.feature-card .badge { margin-bottom: .75rem; }
.feature-card h3 { font-size: .95rem; margin-bottom: .4rem; }
.feature-card p { color: var(--slate-500); font-size: .85rem; line-height: 1.6; }

/* ════════════════════════════════════════════════════════════
   SLIDESHOW
════════════════════════════════════════════════════════════ */
.slideshow-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) {
  .slideshow-layout { grid-template-columns: 1fr; }
  .slideshow-phone-wrap { order: -1; }
}

/* Phone frame */
.phone-frame {
  position: relative;
  width: 260px;
  margin: 0 auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.22));
}
.phone-shell {
  background: var(--navy);
  border: 8px solid var(--navy-mid);
  border-radius: 2.5rem;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05), 0 0 0 1px rgba(0,0,0,0.3);
  overflow: hidden;
  position: relative;
}
.phone-notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 6rem; height: 1.4rem;
  background: var(--navy-mid);
  border-radius: 0 0 1rem 1rem;
  z-index: 2;
}
.phone-screen {
  aspect-ratio: 9 / 19.5;
  overflow: hidden;
  position: relative;
}
.phone-home-bar {
  display: flex; justify-content: center; padding: .5rem 0;
}
.phone-home-bar span {
  display: block; width: 4rem; height: 4px;
  background: rgba(255,255,255,0.18); border-radius: 999px;
}
/* Glow behind phone */
.phone-glow {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; z-index: -1;
}
.phone-glow::after {
  content: '';
  width: 16rem; height: 16rem;
  border-radius: 50%;
  background: var(--cyan);
  filter: blur(80px);
  opacity: .12;
}

/* Slide images — CSS-only crossfade via opacity */
.slide-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.slide-img.active { opacity: 1; }

/* Slide arrows */
.slide-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: var(--cyan-dim);
  border: 1px solid rgba(6,182,212,0.3);
  color: var(--cyan);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: background var(--transition), transform var(--transition);
}
.slide-arrow:hover { background: rgba(6,182,212,0.25); transform: translateY(-50%) scale(1.1); }
.slide-arrow--prev { left: -1.5rem; }
.slide-arrow--next { right: -1.5rem; }

/* Slide text content */
.slide-content { display: none; }
.slide-content.active { display: block; }
.slide-num {
  font-family: var(--font-data);
  font-size: 4rem; font-weight: 700;
  color: rgba(6,182,212,0.15);
  line-height: 1;
  margin-bottom: .75rem;
}
.slide-tabs { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.slide-tab {
  padding: .4rem 1rem;
  border-radius: .5rem;
  font-size: .75rem; font-weight: 600;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(0,0,0,0.04);
  color: var(--slate-400);
  transition: all var(--transition);
}
.slide-tab.active {
  background: var(--cyan-dim);
  border-color: rgba(6,182,212,0.4);
  color: var(--cyan-dark);
}
.slide-dots { display: flex; gap: .5rem; margin-top: 2rem; }
.slide-dot {
  height: .5rem; border-radius: 999px;
  background: rgba(6,182,212,0.25);
  transition: width var(--transition), background var(--transition);
  width: .5rem;
}
.slide-dot.active { width: 2rem; background: var(--cyan); }

/* ════════════════════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
@media (max-width: 900px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .steps-grid { grid-template-columns: 1fr; } }
.step__num {
  font-family: var(--font-data);
  font-size: 3rem; font-weight: 700;
  color: rgba(6,182,212,0.2);
  line-height: 1;
  margin-bottom: .75rem;
}
.step h3 { margin-bottom: .4rem; }
.step p { color: var(--slate-500); font-size: .875rem; line-height: 1.65; }

/* 30s callout */
.callout-30s {
  margin-top: 3.5rem;
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
}
.callout-30s .big-num {
  font-family: var(--font-data);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: .5rem;
}
.callout-30s p { color: var(--slate-400); margin-bottom: 1.5rem; }

/* ════════════════════════════════════════════════════════════
   PRICING
════════════════════════════════════════════════════════════ */
.pricing-toggle {
  display: inline-flex; align-items: center; gap: .75rem;
  background: #E2E8F0; border-radius: 999px; padding: .25rem;
  margin-bottom: 3rem;
}
.pricing-toggle__btn {
  padding: .5rem 1.25rem; border-radius: 999px;
  font-size: .875rem; font-weight: 600;
  color: var(--slate-500);
  transition: background var(--transition), color var(--transition);
}
.pricing-toggle__btn.active { background: var(--navy); color: #fff; }
.pricing-toggle__save {
  font-size: .7rem; padding: .15rem .5rem;
  background: rgba(6,182,212,0.2); color: var(--cyan-dark);
  border-radius: 999px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; } }
.pricing-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid #E2E8F0;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.pricing-card--highlight {
  background: var(--navy);
  border-color: rgba(6,182,212,0.3);
  box-shadow: 0 20px 60px rgba(6,182,212,0.15);
}
.pricing-card__top-tag {
  background: linear-gradient(90deg, var(--cyan), var(--cyan-dark));
  color: var(--navy);
  text-align: center;
  padding: .5rem;
  font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}
.pricing-card__body { padding: 2rem; }
.pricing-card__name {
  font-family: var(--font-head); font-weight: 700; font-size: 1.2rem;
  margin-bottom: .25rem;
}
.pricing-card--highlight .pricing-card__name { color: #fff; }
.pricing-card__desc { font-size: .875rem; color: var(--slate-500); margin-bottom: 1rem; }
.pricing-card--highlight .pricing-card__desc { color: var(--slate-400); }
.pricing-card__price {
  font-family: var(--font-data); font-size: 3rem; font-weight: 700;
  line-height: 1; margin-bottom: .25rem;
}
.pricing-card--highlight .pricing-card__price { color: var(--cyan); }
.pricing-card__period { font-size: .875rem; color: var(--slate-400); margin-bottom: 1.5rem; }
.pricing-card__features { margin-bottom: 1.5rem; }
.pricing-card__feature {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .875rem; padding: .4rem 0;
}
.pricing-card__feature::before {
  content: '✓';
  color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: .05rem;
}
.pricing-card--highlight .pricing-card__feature { color: #CBD5E1; }
.pricing-card--highlight .pricing-card__feature::before { color: var(--cyan); }
/* Annual prices hidden by default */
.price-annual { display: none; }
body.annual .price-monthly { display: none; }
body.annual .price-annual { display: inline; }

/* ════════════════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════════════════ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  border-radius: .75rem;
  margin-bottom: .75rem;
  overflow: hidden;
}
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: #fff;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--cyan); }
.faq-chevron {
  flex-shrink: 0; margin-left: 1rem;
  color: var(--cyan); font-size: 1rem;
  transition: transform .25s ease;
  display: inline-block;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 1.5rem;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 1.5rem 1.25rem; }
.faq-a p { color: var(--slate-400); font-size: .9rem; line-height: 1.7; }

/* ════════════════════════════════════════════════════════════
   FINAL CTA SECTION
════════════════════════════════════════════════════════════ */
.final-cta {
  background: linear-gradient(135deg, rgba(6,182,212,0.12) 0%, transparent 60%);
  border-top: 1px solid var(--border);
  padding: 5rem 0;
  text-align: center;
}
.final-cta h2 { color: #fff; margin-bottom: 1rem; }
.final-cta p { color: var(--slate-400); font-size: 1.05rem; max-width: 38rem; margin: 0 auto 2rem; }
.final-cta__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}
.footer__inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer__logo { display: flex; align-items: center; gap: .5rem; }
.footer__logo span { font-family: var(--font-head); font-weight: 700; color: #fff; }
.footer__copy { color: var(--slate-500); font-size: .8rem; }
.footer__links { display: flex; gap: 1.5rem; }
.footer__links a { color: var(--slate-500); font-size: .8rem; transition: color var(--transition); }
.footer__links a:hover { color: var(--cyan); }

/* ════════════════════════════════════════════════════════════
   MODAL (popup)
════════════════════════════════════════════════════════════ */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  /* hidden state */
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.modal-backdrop.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--navy);
  border: 1px solid rgba(6,182,212,0.2);
  border-radius: var(--radius-xl);
  width: 100%; max-width: 440px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  /* entry animation */
  transform: scale(.93) translateY(16px);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), opacity .25s ease;
  opacity: 0;
}
.modal-backdrop.open .modal { transform: scale(1) translateY(0); opacity: 1; }
.modal__header {
  padding: 2rem 2rem 1.5rem;
  background: linear-gradient(135deg, rgba(6,182,212,0.1) 0%, transparent 100%);
  position: relative;
}
.modal__close {
  position: absolute; top: 1rem; right: 1rem;
  width: 2rem; height: 2rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--slate-400);
  font-size: 1.1rem; line-height: 1;
  transition: color var(--transition), background var(--transition);
}
.modal__close:hover { color: #fff; background: rgba(255,255,255,0.08); }
.modal__logo { display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.modal__logo img { width: 2.5rem; height: 2.5rem; border-radius: .6rem; }
.modal__logo span { font-family: var(--font-head); font-weight: 700; color: #fff; font-size: 1.1rem; }
.modal__title { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.modal__sub { color: var(--slate-400); font-size: .875rem; line-height: 1.6; }
.modal__body { padding: 1.5rem 2rem 2rem; }
.modal__field { margin-bottom: 1.1rem; }
.modal__label {
  display: block;
  font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--slate-400); margin-bottom: .4rem;
}
.modal__label span { color: var(--cyan); }
.modal__input, .modal__select {
  width: 100%; padding: .8rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: .6rem;
  color: #fff; font-size: .9rem; font-family: inherit;
  outline: none;
  transition: border-color var(--transition);
}
.modal__input::placeholder { color: var(--slate-500); }
.modal__input:focus, .modal__select:focus { border-color: rgba(6,182,212,0.5); }
.modal__select option { background: var(--navy); }
.modal__submit {
  width: 100%; padding: .9rem;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  color: var(--navy);
  border-radius: .75rem;
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
  margin-top: 1.25rem;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  transition: opacity var(--transition), transform var(--transition);
}
.modal__submit:hover { opacity: .92; transform: translateY(-1px); }
.modal__submit:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.modal__fine-print { text-align: center; color: var(--slate-500); font-size: .75rem; margin-top: .75rem; }
/* Success state */
.modal__success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.modal__success.visible { display: block; }
.modal__form.hidden { display: none; }
.success-icon {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  background: rgba(6,182,212,0.12);
  border: 2px solid var(--cyan);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
}
.success-email { color: var(--cyan); font-weight: 600; }

/* Spinner */
@keyframes spin { to { transform: rotate(360deg); } }
.spinner {
  width: 1rem; height: 1rem;
  border: 2px solid rgba(15,23,42,0.3);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: none;
}
.modal__submit.loading .spinner { display: block; }
.modal__submit.loading .btn-text { display: none; }

/* ════════════════════════════════════════════════════════════
   SECTION HEADERS (shared)
════════════════════════════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .badge { margin-bottom: 1rem; }
.section-header h2 { margin-bottom: .75rem; }
.section-header p { color: var(--slate-500); font-size: 1.05rem; max-width: 38rem; margin: 0 auto; }
.section-header--dark h2 { color: #fff; }
.section-header--dark p { color: var(--slate-400); }

/* ════════════════════════════════════════════════════════════
   UTILITY
════════════════════════════════════════════════════════════ */
.text-center { text-align: center; }
.mt-2 { margin-top: .5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
