/* Vox Landing Page Theme */

:root {
  --bg: #0d1b2a;
  --bg-alt: #0a1420;
  --surface: #12233a;
  --surface-2: #162a46;
  --fg: #f5f0e8;
  --fg-muted: #a8a097;
  --accent: #b8975a;
  --accent-2: #d4b97a;
  --border: #1e3354;
  --check: #4caf7d;
  --dot: #b8975a;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Navigation ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 60px 100px;
  min-height: 70vh;
  border-bottom: 1px solid var(--border);
}
.hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 500;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.5rem;
  line-height: 1.08;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.hero-sub--secondary { margin-bottom: 40px; }
.hero-stat-row {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat { display: flex; flex-direction: column; gap: 6px; }
.hero-stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--fg-muted);
  max-width: 160px;
  line-height: 1.4;
}

/* Hero visual card */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  width: 100%;
  max-width: 360px;
  font-size: 0.85rem;
}
.hero-card-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-card-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--fg-muted);
  font-size: 0.82rem;
}
.hero-card-item:last-child { border-bottom: none; }
.hero-card-item--done { color: var(--fg); }
.hero-card-item--active { color: var(--fg); }
.hero-card-check { color: var(--check); font-size: 0.9rem; font-weight: 700; }
.hero-card-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 4px;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ── Manifesto ── */
.manifesto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 60px;
  border-bottom: 1px solid var(--border);
}
.manifesto-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 28px;
  color: var(--fg);
}
.manifesto-body p {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-bottom: 18px;
  line-height: 1.75;
}
.manifesto-punch {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--accent) !important;
}
.manifesto-pull { padding-left: 40px; border-left: 2px solid var(--accent); }
.manifesto-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.5;
  font-style: italic;
  color: var(--fg);
  margin-bottom: 16px;
}
.manifesto-cite {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

/* ── Workflow ── */
.workflow {
  padding: 100px 60px;
  border-bottom: 1px solid var(--border);
}
.workflow-header { margin-bottom: 64px; }
.workflow-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}
.workflow-sub { font-size: 1rem; color: var(--fg-muted); }
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.workflow-step { position: relative; }
.workflow-step-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--surface-2);
  line-height: 1;
  margin-bottom: 20px;
}
.workflow-step-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 12px;
}
.workflow-step-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── Results ── */
.results {
  padding: 100px 60px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.results-header { margin-bottom: 56px; }
.results-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--fg);
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.results-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px;
}
.results-card-metric {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--accent);
  margin: 16px 0 12px;
  line-height: 1;
}
.results-card-desc {
  font-size: 0.83rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── Closing ── */
.closing {
  padding: 100px 60px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.closing-line {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.closing-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--fg);
  max-width: 700px;
  margin: 0 auto 24px;
}
.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Footer ── */
.footer {
  padding: 60px;
  text-align: center;
}
.footer-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.footer-note {
  font-size: 0.78rem;
  color: #5a6a7a;
  font-style: italic;
}

/* ── Problem ── */
.problem {
  padding: 100px 60px;
  border-bottom: 1px solid var(--border);
}
.problem-inner { max-width: 900px; }
.problem-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}
.problem-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 32px;
}
.problem-body p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-bottom: 18px;
  line-height: 1.75;
}
.problem-stat-row {
  display: flex;
  gap: 56px;
  padding-top: 48px;
  margin-top: 32px;
  border-top: 1px solid var(--border);
}
.problem-stat { display: flex; flex-direction: column; gap: 8px; }
.problem-stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.problem-stat-label {
  font-size: 0.78rem;
  color: var(--fg-muted);
  max-width: 180px;
  line-height: 1.5;
}

/* ── How it works ── */
.how {
  padding: 100px 60px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.how-header { margin-bottom: 64px; }
.how-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 500;
}
.how-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--fg);
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.how-step { padding: 0; }
.how-step-icon {
  font-family: 'DM Sans', monospace;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.08em;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 10px;
  display: inline-block;
  margin-bottom: 20px;
}
.how-step-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 12px;
}
.how-step-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── Who it's for ── */
.who {
  padding: 100px 60px;
  border-bottom: 1px solid var(--border);
}
.who-inner { }
.who-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}
.who-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 56px;
  max-width: 700px;
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.who-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
}
.who-card-icon {
  width: 32px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 20px;
}
.who-card-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 12px;
}
.who-card-desc {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── Waitlist form ── */
.waitlist-form { margin-top: 40px; }
.waitlist-input-row {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.waitlist-input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 18px;
  font-size: 0.95rem;
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.waitlist-input::placeholder { color: var(--fg-muted); }
.waitlist-input:focus { border-color: var(--accent); }
.waitlist-btn {
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 6px;
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.waitlist-btn:hover { background: var(--accent-2); }
.waitlist-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.waitlist-error {
  color: #e07070;
  font-size: 0.82rem;
  margin-top: 12px;
  text-align: center;
}
.waitlist-confirm { margin-top: 40px; text-align: center; }
.waitlist-confirm-icon {
  font-size: 2rem;
  color: var(--check);
  margin-bottom: 12px;
}
.waitlist-confirm-text {
  font-size: 1rem;
  color: var(--fg);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 60px 40px 80px; }
  .hero-visual { justify-content: flex-start; }
  .problem { padding: 80px 40px; }
  .problem-stat-row { flex-wrap: wrap; gap: 32px; }
  .how { padding: 80px 40px; }
  .how-steps { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .who { padding: 80px 40px; }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 48px 24px 64px; }
  .hero-headline { font-size: 2.4rem; }
  .hero-stat-row { flex-direction: column; gap: 24px; }
  .problem { padding: 64px 24px; }
  .problem-stat-row { flex-direction: column; gap: 24px; }
  .how { padding: 64px 24px; }
  .how-steps { grid-template-columns: 1fr; }
  .who { padding: 64px 24px; }
  .who-grid { grid-template-columns: 1fr; }
  .results { padding: 64px 24px; }
  .results-grid { grid-template-columns: 1fr; }
  .closing { padding: 64px 24px; }
  .closing-headline { font-size: 2rem; }
  .waitlist-input-row { flex-direction: column; }
  .footer { padding: 40px 24px; }
}