/* ── Variables ── */
:root {
  --bg: #0f172a;
  --surface: #1e293b;
  --surface-2: #263347;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --green: #10b981;
  --indigo: #6366f1;
  --pink: #ec4899;
  --radius: 10px;
  --font-head: 'Syne', 'Arial Black', sans-serif;
  --font-body: 'Figtree', 'Helvetica Neue', sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); line-height: 1.6; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; }
img { max-width: 100%; display: block; }

/* ── Section Label ── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* ── Nav ── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1.25rem 2rem; }
.nav-inner { display: flex; align-items: center; gap: 0.75rem; }
.nav-logo { font-family: var(--font-head); font-size: 1.25rem; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }
.nav-tagline { font-size: 0.8rem; color: var(--text-dim); }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero-bg-shape {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(245, 158, 11, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; width: 100%; }
.hero-label { display: inline-block; font-size: 0.8rem; font-weight: 500; color: var(--accent); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.25rem; }
.hero-headline { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; color: var(--text); margin-bottom: 1.5rem; letter-spacing: -0.03em; }
.hero-sub { font-size: 1.1rem; color: var(--text-muted); max-width: 480px; line-height: 1.7; }

/* ── Audit Card ── */
.audit-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.audit-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.audit-label { font-size: 0.7rem; font-weight: 600; color: var(--text-dim); letter-spacing: 0.1em; text-transform: uppercase; }
.audit-status { font-size: 0.65rem; font-weight: 600; color: var(--green); background: rgba(16, 185, 129, 0.12); padding: 2px 8px; border-radius: 99px; }
.audit-business { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; }
.audit-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 0.75rem 0; }
.audit-gaps { display: flex; flex-direction: column; gap: 0.6rem; }
.gap-row { display: flex; justify-content: space-between; align-items: center; }
.gap-label { font-size: 0.78rem; color: var(--text-muted); }
.gap-values { display: flex; align-items: center; gap: 0.4rem; }
.gap-current { font-size: 0.78rem; font-weight: 600; color: var(--text-dim); }
.gap-target { font-size: 0.78rem; font-weight: 700; color: var(--accent); }
.gap-row--open { background: rgba(245, 158, 11, 0.04); border-radius: 6px; padding: 0.4rem 0.6rem; }
.audit-lever { background: rgba(245, 158, 11, 0.08); border: 1px solid rgba(245, 158, 11, 0.2); border-radius: 8px; padding: 0.75rem; display: flex; gap: 0.75rem; align-items: flex-start; }
.lever-priority { font-size: 0.65rem; font-weight: 700; color: var(--accent); background: var(--accent-dim); padding: 2px 7px; border-radius: 4px; white-space: nowrap; margin-top: 1px; }
.lever-text { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }

/* ── Problem ── */
.problem { padding: 6rem 2rem; background: var(--surface); }
.problem-inner { max-width: 1200px; margin: 0 auto; }
.problem-headline { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; margin-bottom: 3rem; max-width: 600px; letter-spacing: -0.02em; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 2.5rem; }
.problem-number { display: block; font-family: var(--font-head); font-size: 2.5rem; font-weight: 800; color: var(--accent); margin-bottom: 0.5rem; }
.problem-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.problem-body { font-size: 1rem; color: var(--text-muted); max-width: 560px; border-left: 3px solid var(--accent); padding-left: 1.25rem; }

/* ── Process ── */
.process { padding: 6rem 2rem; }
.process-inner { max-width: 1200px; margin: 0 auto; }
.process-headline { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; margin-bottom: 3rem; letter-spacing: -0.02em; }
.process-steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: start; gap: 0; }
.step { padding: 1.5rem; }
.step-number { font-family: var(--font-head); font-size: 0.7rem; font-weight: 700; color: var(--accent); letter-spacing: 0.1em; display: block; margin-bottom: 1rem; }
.step-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.75rem; }
.step-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.6; }
.step-visual { opacity: 0.9; }
.step-connector { display: flex; align-items: center; padding-top: 2rem; }

/* ── Levers ── */
.levers { padding: 6rem 2rem; background: var(--surface); }
.levers-inner { max-width: 1200px; margin: 0 auto; }
.levers-headline { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; margin-bottom: 2.5rem; letter-spacing: -0.02em; }
.levers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.lever-card { background: var(--surface-2); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; padding: 1.5rem; }
.lever-card--viral { border-top: 2px solid var(--accent); }
.lever-card--economic { border-top: 2px solid var(--green); }
.lever-card--quality { border-top: 2px solid var(--indigo); }
.lever-card--strategic { border-top: 2px solid var(--pink); }
.lever-icon { color: var(--text-muted); margin-bottom: 1rem; }
.lever-card--viral .lever-icon { color: var(--accent); }
.lever-card--economic .lever-icon { color: var(--green); }
.lever-card--quality .lever-icon { color: var(--indigo); }
.lever-card--strategic .lever-icon { color: var(--pink); }
.lever-name { font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; }
.lever-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.6; }
.lever-example { font-size: 0.78rem; color: var(--text-dim); font-style: italic; line-height: 1.5; }

/* ── Audience ── */
.audience { padding: 6rem 2rem; }
.audience-inner { max-width: 1200px; margin: 0 auto; }
.audience-headline { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; margin-bottom: 2.5rem; letter-spacing: -0.02em; max-width: 680px; }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.audience-card { background: var(--surface); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; padding: 1.75rem; }
.audience-icon { color: var(--accent); margin-bottom: 1.25rem; }
.audience-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.75rem; }
.audience-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ── Mission ── */
.mission { padding: 7rem 2rem; background: var(--surface); }
.mission-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.mission-headline { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 2rem; letter-spacing: -0.02em; line-height: 1.2; }
.mission-body { font-size: 1rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.5rem; max-width: 680px; margin-left: auto; margin-right: auto; }

/* ── Footer ── */
.footer { padding: 3rem 2rem; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.75rem; }
.footer-logo { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; }
.footer-desc { font-size: 0.85rem; color: var(--text-dim); line-height: 1.6; }
.footer-copy { font-size: 0.75rem; color: var(--text-dim); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .process-steps { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .levers-grid { grid-template-columns: 1fr 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .levers-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 5rem; }
  h1.hero-headline { font-size: 2.2rem; }
}

/* ── Hero CTA Row ── */
.hero-cta-row { margin-top: 1.75rem; }
.mission-cta-row { margin-top: 2rem; display: flex; justify-content: center; }
.hero-cta-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--accent); color: #0f172a;
  font-family: var(--font-head); font-size: 0.95rem; font-weight: 700;
  padding: 0.75rem 1.5rem; border-radius: 8px;
  text-decoration: none; letter-spacing: -0.01em;
  transition: background 0.15s, transform 0.1s;
}
.hero-cta-primary:hover { background: #fbbf24; transform: translateY(-1px); }

/* ── Badges ── */
.badge {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  padding: 3px 9px; border-radius: 99px; letter-spacing: 0.04em;
}
.badge--amber { background: rgba(245,158,11,0.15); color: var(--accent); }
.badge--blue  { background: rgba(99,102,241,0.15); color: var(--indigo); }
.badge--green { background: rgba(16,185,129,0.15); color: var(--green); }
.badge--red   { background: rgba(239,68,68,0.15); color: #ef4444; }

/* ── Esempio Banner ── */
.esempio-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(245,158,11,0.12); border-bottom: 1px solid rgba(245,158,11,0.3);
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  padding: 0.6rem 1.5rem; font-size: 0.82rem; color: var(--text-muted);
}
.esempio-banner-icon { color: var(--accent); font-style: normal; }
.esempio-banner-cta { color: var(--accent); font-weight: 600; text-decoration: none; }
.esempio-banner-cta:hover { text-decoration: underline; }

/* ── Report Page ── */
.report-page {
  max-width: 960px; margin: 0 auto;
  padding: 6rem 2rem 4rem; /* top pad accounts for nav + banner */
}
.report-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 2rem; padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.report-brand { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--text); }
.report-meta { font-size: 0.78rem; color: var(--text-dim); margin-top: 0.2rem; }

/* Download button */
.esempio-download-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--surface); border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted); font-size: 0.82rem; font-weight: 600;
  padding: 0.5rem 1rem; border-radius: 7px; cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.esempio-download-btn:hover { border-color: var(--accent); color: var(--accent); }

/* Client card */
.report-client-card {
  background: var(--surface); border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid var(--accent);
  border-radius: 10px; padding: 1.25rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; margin-bottom: 2.5rem;
}
.report-client-name { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; }
.report-client-location { font-size: 0.82rem; color: var(--text-dim); margin-top: 0.25rem; }
.report-client-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; }

/* Report sections */
.report-section { margin-bottom: 3rem; }
.report-section-label {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.75rem; font-weight: 700; color: var(--accent);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem;
}
.report-step-num {
  background: var(--accent-dim); color: var(--accent);
  padding: 1px 7px; border-radius: 4px; font-size: 0.7rem;
}
.report-section-title {
  font-family: var(--font-head); font-size: 1.35rem; font-weight: 700;
  margin-bottom: 1.5rem; letter-spacing: -0.02em;
}

/* Objective card */
.report-objective-card {
  background: var(--surface); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; padding: 1.5rem; display: flex; gap: 1.25rem;
}
.report-objective-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.1rem; }
.report-objective-main { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; }
.report-objective-targets { display: flex; flex-direction: column; gap: 0.6rem; }
.report-target-item { display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-size: 0.85rem; }
.report-target-label { color: var(--text-dim); }
.report-target-value { font-weight: 600; color: var(--text); }
.report-target-from { font-weight: 400; color: var(--text-dim); font-size: 0.8rem; }

/* Metrics grid */
.report-metrics-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.5rem;
}
.report-metric-card {
  background: var(--surface); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; padding: 1.25rem; text-align: center;
}
.report-metric-card--alert { border-color: rgba(239,68,68,0.25); }
.report-metric-value { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; margin-bottom: 0.3rem; }
.report-metric--neutral { color: var(--text); }
.report-metric--red { color: #ef4444; }
.report-metric-label { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.3rem; }
.report-metric-bench { font-size: 0.7rem; color: var(--text-dim); }

/* Bar chart */
.report-chart-wrap {
  background: var(--surface); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; padding: 1.25rem;
}
.report-chart-title { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 0.75rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.report-bar-chart { width: 100%; max-width: 480px; display: block; }

/* Gap table */
.report-gap-table-wrap { overflow-x: auto; }
.report-gap-table {
  width: 100%; border-collapse: collapse; font-size: 0.85rem;
}
.report-gap-table th {
  text-align: left; padding: 0.7rem 1rem;
  background: var(--surface); color: var(--text-dim);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.report-gap-table td {
  padding: 0.85rem 1rem; color: var(--text-muted); line-height: 1.5;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  vertical-align: top;
}
.report-gap-table td strong { color: var(--text); }
.report-gap-table td small { color: var(--text-dim); font-size: 0.78rem; }
.report-gap-table tr:hover td { background: rgba(255,255,255,0.02); }

/* Levers grid */
.report-levers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.report-lever-card {
  background: var(--surface-2); border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px; padding: 1.5rem;
}
.report-lever-card--viral   { border-top: 2px solid var(--accent); }
.report-lever-card--economic { border-top: 2px solid var(--green); }
.report-lever-card--quality  { border-top: 2px solid var(--indigo); }
.report-lever-card--strategic { border-top: 2px solid var(--pink); }
.report-lever-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.report-lever-icon { color: var(--text-dim); flex-shrink: 0; }
.report-lever-card--viral .report-lever-icon   { color: var(--accent); }
.report-lever-card--economic .report-lever-icon { color: var(--green); }
.report-lever-card--quality .report-lever-icon  { color: var(--indigo); }
.report-lever-card--strategic .report-lever-icon { color: var(--pink); }
.report-lever-tag {
  font-size: 0.68rem; font-weight: 700; padding: 2px 8px; border-radius: 4px;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.report-lever-tag--viral    { background: rgba(245,158,11,0.12); color: var(--accent); }
.report-lever-tag--economic { background: rgba(16,185,129,0.12); color: var(--green); }
.report-lever-tag--quality  { background: rgba(99,102,241,0.12); color: var(--indigo); }
.report-lever-tag--strategic { background: rgba(236,72,153,0.12); color: var(--pink); }
.report-lever-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; }
.report-lever-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; }
.report-lever-items { display: flex; flex-direction: column; gap: 0.5rem; }
.report-lever-item { display: flex; justify-content: space-between; align-items: flex-start; gap: 0.75rem; font-size: 0.8rem; padding: 0.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.report-lever-item:last-child { border-bottom: none; }
.report-lever-item-label { color: var(--text-dim); flex-shrink: 0; }
.report-lever-item-value { color: var(--text-muted); font-weight: 600; text-align: right; }

/* Reels formats */
.report-lever-reels { display: flex; flex-direction: column; gap: 0.75rem; }
.report-reel-format { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.report-reel-format:last-child { border-bottom: none; }
.report-reel-num { font-size: 0.7rem; font-weight: 800; color: var(--accent); background: var(--accent-dim); padding: 2px 7px; border-radius: 4px; flex-shrink: 0; margin-top: 2px; }
.report-reel-title { font-size: 0.85rem; font-weight: 700; margin-bottom: 0.2rem; }
.report-reel-desc { font-size: 0.78rem; color: var(--text-dim); line-height: 1.55; }

/* Action list */
.report-action-list { display: flex; flex-direction: column; gap: 0.75rem; }
.report-action-item {
  background: var(--surface); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; padding: 1rem 1.25rem;
  display: flex; align-items: flex-start; gap: 1rem;
}
.report-action-num {
  background: var(--accent); color: #0f172a;
  font-family: var(--font-head); font-size: 0.75rem; font-weight: 800;
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.report-action-body { flex: 1; }
.report-action-title { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.3rem; }
.report-action-desc { font-size: 0.8rem; color: var(--text-dim); line-height: 1.55; }

/* Report footer */
.report-footer {
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}
.report-footer-brand { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.report-footer-note { font-size: 0.75rem; color: var(--text-dim); margin-bottom: 1.25rem; }
.report-footer-cta {
  display: inline-flex; align-items: center;
  background: var(--accent); color: #0f172a;
  font-family: var(--font-head); font-size: 0.9rem; font-weight: 700;
  padding: 0.65rem 1.4rem; border-radius: 8px; text-decoration: none;
  transition: background 0.15s;
}
.report-footer-cta:hover { background: #fbbf24; }

/* ── Report Responsive ── */
@media (max-width: 760px) {
  .report-levers-grid { grid-template-columns: 1fr; }
  .report-metrics-grid { grid-template-columns: 1fr 1fr; }
  .report-client-card { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 500px) {
  .report-metrics-grid { grid-template-columns: 1fr; }
  .report-page { padding-left: 1rem; padding-right: 1rem; }
  .esempio-banner { font-size: 0.72rem; }
}

/* ── Nav waitlist CTA ── */
.nav-waitlist-cta {
  margin-left: auto;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid var(--accent);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
}
.nav-waitlist-cta:hover { background: var(--accent); color: #0f172a; }

/* ── Waitlist section ── */
.waitlist {
  padding: 5rem 2rem 6rem;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
}
.waitlist-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.waitlist-headline {
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.waitlist-subhead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.waitlist-form { text-align: left; }
.waitlist-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}
.waitlist-fields .waitlist-field:first-child {
  grid-column: 1 / -1;
}
.waitlist-field { display: flex; flex-direction: column; gap: 0.35rem; }
.waitlist-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.waitlist-required { color: var(--accent); }
.waitlist-optional { font-weight: 400; text-transform: none; font-size: 0.78rem; letter-spacing: 0; }
.waitlist-input {
  background: var(--surface);
  border: 1.5px solid var(--surface-2);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  width: 100%;
}
.waitlist-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(245,158,11,0.15); }
.waitlist-input--error { border-color: var(--pink) !important; }
.waitlist-select { cursor: pointer; }
.waitlist-select option { background: var(--surface); color: var(--text); }
.waitlist-field-error {
  font-size: 0.8rem;
  color: var(--pink);
  min-height: 1rem;
}
.waitlist-btn {
  display: block;
  width: 100%;
  padding: 0.9rem 1.5rem;
  background: var(--accent);
  color: #0f172a;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: opacity 0.15s, transform 0.1s;
  margin-bottom: 1rem;
}
.waitlist-btn:hover:not(:disabled) { opacity: 0.9; transform: translateY(-1px); }
.waitlist-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.waitlist-microcopy {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-dim);
}
.waitlist-success {
  font-size: 1.1rem;
  color: var(--green);
  font-weight: 600;
  text-align: center;
  padding: 1.5rem;
  background: rgba(16,185,129,0.08);
  border-radius: var(--radius);
  border: 1px solid rgba(16,185,129,0.25);
}
@media (max-width: 580px) {
  .waitlist-fields { grid-template-columns: 1fr; }
  .waitlist-fields .waitlist-field:first-child { grid-column: 1; }
}