/* ── TOKENS ─────────────────────────────────────── */
:root {
  --navy:   #1B3A6B;
  --teal:   #0D7A8E;
  --green:  #15803D;
  --gold:   #D97706;
  --slate:  #475569;
  --muted:  #64748B;
  --line:   #E2E8F0;
  --lgray:  #F8FAFC;
  --white:  #FFFFFF;
  --dark:   #0F1F3D;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', monospace;

  --container: 1200px;
  --radius: 12px;
  --radius-lg: 20px;
}

/* ── RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--slate); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── CONTAINER ──────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

/* ── NAV ────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0;
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 32px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 900;
  color: var(--white);
  letter-spacing: 3px;
  transition: color .3s;
}
.nav.scrolled .nav-logo { color: var(--navy); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.8);
  transition: color .3s;
}
.nav.scrolled .nav-links a { color: var(--slate); }
.nav-links a:hover { color: var(--white); }
.nav.scrolled .nav-links a:hover { color: var(--navy); }
.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background .2s, transform .2s !important;
}
.nav-cta:hover { background: var(--navy) !important; transform: translateY(-1px); }
.nav-cta.active { background: var(--navy) !important; }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: background .3s; }
.nav.scrolled .nav-burger span { background: var(--navy); }
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; z-index: 99;
  background: var(--white); border-bottom: 1px solid var(--line);
  padding: 20px 32px; flex-direction: column; gap: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 16px; font-weight: 500; color: var(--slate); padding: 8px 0; border-bottom: 1px solid var(--line); }

/* ── SECTION LABELS ─────────────────────────────── */
.section-label {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.section-label.light { color: rgba(255,255,255,0.6); }
.section-label::before {
  content: '';
  display: inline-block; width: 24px; height: 1px;
  background: currentColor;
}

/* ── BUTTONS ────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--teal); color: var(--white);
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  padding: 14px 32px; border-radius: 8px;
  transition: background .2s, transform .2s, box-shadow .2s;
  border: none; cursor: pointer; text-decoration: none;
}
.btn-primary:hover { background: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27,58,107,0.25); }
.btn-primary.large { font-size: 16px; padding: 16px 40px; }
.btn-primary.full { width: 100%; }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: rgba(255,255,255,0.9);
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  padding: 14px 32px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all .2s; text-decoration: none;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

/* ── HERO ───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex; align-items: center;
  padding: 120px 0 80px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(13,122,142,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,122,142,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.35;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--teal), transparent 70%);
  top: -200px; right: -100px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #1E4FBF, transparent 70%);
  bottom: -100px; left: 100px;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--container); margin: 0 auto; padding: 0 32px;
  animation: fadeUp .8s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 24px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--teal);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 900; line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 800px;
}
.hero-h1 em {
  font-style: italic; color: var(--teal);
}
.hero-sub {
  font-size: 18px; color: rgba(255,255,255,0.65);
  max-width: 560px; line-height: 1.7;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats {
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 900; color: var(--white); line-height: 1;
}
.stat-unit { font-size: 22px; }
.stat-lbl { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 6px; line-height: 1.4; }
.stat-div { width: 1px; height: 48px; background: rgba(255,255,255,0.15); }

/* ── PROBLEM ────────────────────────────────────── */
.problem { padding: 100px 0; background: var(--lgray); }
.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 700;
  color: var(--navy); line-height: 1.2; margin-bottom: 48px;
}
.problem-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.problem-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px; border: 1px solid var(--line);
  transition: box-shadow .2s, transform .2s;
}
.problem-card:hover { box-shadow: 0 8px 32px rgba(27,58,107,0.1); transform: translateY(-3px); }
.problem-icon { font-size: 28px; margin-bottom: 16px; }
.problem-card h3 { font-family: var(--font-display); font-size: 20px; color: var(--navy); margin-bottom: 12px; }
.problem-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── HOW IT WORKS ───────────────────────────────── */
.hiw { padding: 100px 0; background: var(--white); }
.hiw h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 700;
  color: var(--navy); line-height: 1.2; margin-bottom: 56px;
}
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 32px; padding: 40px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-display);
  font-size: 56px; font-weight: 900;
  color: var(--line); line-height: 1;
  padding-top: 4px;
  transition: color .3s;
}
.step:hover .step-num { color: var(--teal); }
.step-body h3 {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 700;
  color: var(--navy); margin-bottom: 12px;
}
.step-body p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 16px; }
.step-badge {
  display: inline-flex; align-items: center;
  background: rgba(13,122,142,0.08);
  border: 1px solid rgba(13,122,142,0.2);
  color: var(--teal);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 1px;
  padding: 6px 14px; border-radius: 4px;
}

/* ── PLATFORM ───────────────────────────────────── */
.platform { padding: 100px 0; background: var(--lgray); }
.platform h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 700;
  color: var(--navy); line-height: 1.2; margin-bottom: 16px;
}
.accent { color: var(--teal); }
.platform-sub { font-size: 16px; color: var(--muted); max-width: 600px; margin-bottom: 48px; line-height: 1.7; }

.dashboard-preview {
  background: var(--navy); border-radius: var(--radius-lg);
  overflow: hidden; margin-bottom: 48px;
  box-shadow: 0 24px 64px rgba(15,31,61,0.3);
}
.dash-header {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.dash-logo {
  width: 36px; height: 36px;
  background: var(--teal); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 18px; font-weight: 900; color: var(--white);
}
.dash-company { font-size: 14px; font-weight: 600; color: var(--white); }
.dash-sub { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px; }
.dash-badge {
  margin-left: auto; font-family: var(--font-mono); font-size: 11px;
  padding: 4px 10px; border-radius: 20px;
}
.dash-badge.live { color: #4ADE80; background: rgba(74,222,128,0.12); border: 1px solid rgba(74,222,128,0.25); }
.dash-metrics {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: rgba(255,255,255,0.06);
}
.dash-metric {
  padding: 24px 28px; background: var(--navy);
}
.dash-metric.highlight { background: rgba(13,122,142,0.15); }
.dm-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 8px; }
.dm-val {
  font-family: var(--font-display);
  font-size: 34px; font-weight: 900; color: var(--white); line-height: 1;
}
.dm-val.gold { color: #FCD34D; }
.dm-unit { font-size: 18px; }
.dm-delta { font-family: var(--font-mono); font-size: 11px; margin-top: 6px; }
.dm-delta.green { color: #4ADE80; }
.dm-delta.gold { color: #FCD34D; }
.dash-footer {
  padding: 14px 28px;
  font-family: var(--font-mono); font-size: 10px;
  color: rgba(255,255,255,0.2);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.platform-features {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
}
.pf-item {
  background: var(--white); border-radius: var(--radius);
  padding: 24px; border: 1px solid var(--line);
  transition: box-shadow .2s, transform .2s;
}
.pf-item:hover { box-shadow: 0 4px 20px rgba(27,58,107,0.08); transform: translateY(-2px); }
.pf-icon { font-size: 24px; margin-bottom: 12px; }
.pf-label { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.pf-body { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── RESEARCH ────────────────────────────────────── */
.research { padding: 100px 0; background: var(--white); }
.research h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 700;
  color: var(--navy); line-height: 1.2; margin-bottom: 16px;
}
.research-sub { font-size: 16px; color: var(--muted); max-width: 600px; margin-bottom: 48px; line-height: 1.7; }
.research-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 48px; }
.research-card {
  background: var(--lgray); border-radius: var(--radius);
  padding: 32px; border: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.rc-journal {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 1.5px;
  color: var(--teal); margin-bottom: 12px;
}
.research-card h3 { font-family: var(--font-display); font-size: 18px; color: var(--navy); margin-bottom: 12px; }
.research-card p { font-size: 14px; color: var(--muted); line-height: 1.7; flex: 1; margin-bottom: 20px; }
.rc-tag {
  display: inline-flex; align-items: center;
  background: rgba(27,58,107,0.07); border: 1px solid rgba(27,58,107,0.15);
  color: var(--navy); font-size: 11px; font-weight: 600; letter-spacing: 1px;
  padding: 5px 12px; border-radius: 4px; width: fit-content;
  margin-top: auto;
}
.research-pilot {
  background: var(--navy); border-radius: var(--radius-lg);
  padding: 48px; color: var(--white);
}
.rp-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 16px;
}
.rp-badge::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal); animation: pulse 2s infinite;
}
.research-pilot h3 { font-family: var(--font-display); font-size: 26px; font-weight: 700; margin-bottom: 16px; }
.research-pilot p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 28px; max-width: 720px; }
.rp-specs {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.rp-specs span {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7); font-size: 12px;
  padding: 6px 14px; border-radius: 4px;
}

/* ── AUDIENCE ────────────────────────────────────── */
.audience { padding: 100px 0; background: var(--lgray); }
.audience h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 700;
  color: var(--navy); line-height: 1.2; margin-bottom: 48px;
}
.audience-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.aud-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; border: 1px solid var(--line);
  transition: box-shadow .2s, transform .2s;
}
.aud-card:hover { box-shadow: 0 8px 32px rgba(27,58,107,0.1); transform: translateY(-3px); }
.aud-icon { font-size: 28px; margin-bottom: 16px; }
.aud-card h3 { font-family: var(--font-display); font-size: 18px; color: var(--navy); margin-bottom: 10px; }
.aud-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── CTA SECTION ─────────────────────────────────── */
.cta-section {
  padding: 120px 0;
  background: var(--dark);
  position: relative; overflow: hidden; text-align: center;
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-orb {
  position: absolute; width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(13,122,142,0.2), transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px); font-weight: 900;
  color: var(--white); line-height: 1.15; margin-bottom: 20px;
}
.cta-inner p { font-size: 16px; color: rgba(255,255,255,0.6); max-width: 520px; margin: 0 auto 40px; line-height: 1.7; }

/* ── FOOTER ─────────────────────────────────────── */
.footer { background: #080F1E; padding: 60px 0 0; }
.footer-top { display: grid; grid-template-columns: 1fr auto; gap: 60px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-logo { font-family: var(--font-display); font-size: 22px; font-weight: 900; color: var(--white); letter-spacing: 3px; margin-bottom: 6px; }
.footer-tagline { font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 16px; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.7; max-width: 280px; }
.footer-links { display: flex; gap: 48px; }
.fl-col { display: flex; flex-direction: column; gap: 12px; }
.fl-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 4px; }
.fl-col a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color .2s; }
.fl-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; margin-top: 0;
}
.fb-left { font-size: 12px; color: rgba(255,255,255,0.2); }
.fb-right { display: flex; gap: 24px; }
.fb-right a { font-size: 12px; color: rgba(255,255,255,0.3); transition: color .2s; }
.fb-right a:hover { color: var(--white); }

/* ── CONTACT PAGE ───────────────────────────────── */
.contact-hero {
  padding: 160px 0 80px;
  background: var(--dark);
}
.contact-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px); font-weight: 900;
  color: var(--white); line-height: 1.1; margin-bottom: 20px;
}
.contact-hero .section-label { color: var(--teal); }
.contact-hero p { font-size: 16px; color: rgba(255,255,255,0.6); max-width: 520px; line-height: 1.7; }

.contact-body { padding: 80px 0 100px; }
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }

.contact-form-wrap h2 {
  font-family: var(--font-display); font-size: 28px; font-weight: 700;
  color: var(--navy); margin-bottom: 28px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body); font-size: 15px; color: var(--slate);
  background: var(--lgray); border: 1px solid var(--line);
  border-radius: 8px; padding: 12px 16px;
  outline: none; transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,122,142,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 12px; color: var(--muted); text-align: center; }
.form-success {
  text-align: center; padding: 48px 24px;
  background: #F0FDF4; border: 1px solid #86EFAC; border-radius: var(--radius);
}
.success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--green); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin: 0 auto 16px;
}
.form-success h3 { font-family: var(--font-display); font-size: 22px; color: var(--green); margin-bottom: 8px; }
.form-success p { color: var(--muted); font-size: 14px; }

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.ci-card {
  background: var(--lgray); border-radius: var(--radius);
  padding: 24px; border: 1px solid var(--line);
}
.ci-card h3 { font-family: var(--font-display); font-size: 18px; color: var(--navy); margin-bottom: 12px; }
.ci-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 12px; }
.ci-card ul { padding-left: 18px; display: flex; flex-direction: column; gap: 8px; }
.ci-card ul li { font-size: 13px; color: var(--muted); }
.ci-item {
  display: flex; gap: 14px; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--line);
}
.ci-item:last-child { border-bottom: none; }
.ci-icon { font-size: 20px; }
.ci-item strong { display: block; font-size: 13px; font-weight: 600; color: var(--navy); }
.ci-item span { font-size: 12px; color: var(--muted); }
.ci-email {
  display: block; font-size: 16px; font-weight: 600; color: var(--teal);
  margin-bottom: 8px; transition: color .2s;
}
.ci-email:hover { color: var(--navy); }
.ci-location { font-size: 13px; color: var(--muted); }

/* ── PRIVACY PAGE ────────────────────────────────── */
.privacy-body { padding: 80px 0 100px; }
.privacy-content { max-width: 720px; }
.privacy-content h2 { font-family: var(--font-display); font-size: 24px; color: var(--navy); margin: 40px 0 12px; }
.privacy-content h2:first-child { margin-top: 0; }
.privacy-content p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.privacy-content a { color: var(--teal); text-decoration: underline; }

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .platform-features { grid-template-columns: 1fr 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .research-grid { grid-template-columns: 1fr 1fr; }
  .dash-metrics { grid-template-columns: 1fr 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { order: -1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .container { padding: 0 20px; }
  .problem-grid { grid-template-columns: 1fr; }
  .platform-features { grid-template-columns: 1fr 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .research-grid { grid-template-columns: 1fr; }
  .dash-metrics { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 24px; }
  .stat-div { display: none; }
  .step { grid-template-columns: 50px 1fr; gap: 16px; }
  .step-num { font-size: 36px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .platform-features { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .dash-metrics { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
}

/* ── LAUNCH BANNER ───────────────────────────────── */
.launch-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--navy);
  border-bottom: 1px solid rgba(13,122,142,0.4);
  padding: 9px 24px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 1px;
  color: rgba(255,255,255,0.65);
}
.lb-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.lb-link {
  color: var(--teal); font-weight: 600;
  transition: color .2s;
  white-space: nowrap;
}
.lb-link:hover { color: white; }
.nav { top: 36px; }
.hero { padding-top: 156px; }
.contact-hero { padding-top: 196px; }

/* ── STEP DISCLAIMER ─────────────────────────────── */
.step-disclaimer {
  margin-top: 10px;
  font-size: 12px; color: #94A3B8;
  font-style: italic; line-height: 1.6;
  border-left: 2px solid var(--line);
  padding-left: 12px;
}

/* ── DASHBOARD DEV BADGE ─────────────────────────── */
.dash-dev-badge {
  background: rgba(217,119,6,0.1);
  border-bottom: 1px solid rgba(217,119,6,0.2);
  padding: 10px 28px;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
}
.ddb-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
.dash-badge.preview {
  color: var(--gold);
  background: rgba(217,119,6,0.12);
  border: 1px solid rgba(217,119,6,0.25);
}

/* ── FOOTER DISCLAIMER ───────────────────────────── */
.footer-disclaimer {
  font-size: 11px; color: rgba(255,255,255,0.22);
  line-height: 1.7; padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin: 0 0 0;
}

/* UPDATE footer-bottom spacing */
.footer-bottom { margin-top: 0; padding-top: 20px; }
