/* ===== VARIABLES ===== */
:root {
  --bg: #0d1b2a;
  --bg-alt: #0a1520;
  --bg-panel: #112235;
  --fg: #f0f4f8;
  --fg-muted: #8899aa;
  --accent: #e8b84b;
  --accent-hover: #f5c96b;
  --accent-dim: rgba(232, 184, 75, 0.12);
  --secondary: #6b9bc8;
  --secondary-dim: rgba(107, 155, 200, 0.12);
  --border: rgba(255,255,255,0.08);
  --radius: 4px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(13, 27, 42, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  padding: 100px 48px 80px;
  max-width: 1280px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero-headline em {
  color: var(--accent);
  font-style: normal;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 500px;
  line-height: 1.7;
}

/* Hero Panel */
.hero-panel {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}
.panel-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 24px;
}
.panel-items { display: flex; flex-direction: column; gap: 24px; }
.panel-item { border-bottom: 1px solid var(--border); padding-bottom: 24px; }
.panel-item:last-child { border-bottom: none; padding-bottom: 0; }
.panel-stat {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.panel-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.5; }

/* ===== MANIFESTO ===== */
.manifesto {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 48px;
}
.manifesto-inner { max-width: 800px; margin: 0 auto; }
.manifesto-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 20px;
}
.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 28px;
}
.manifesto-body p {
  font-size: 16px;
  color: var(--fg-muted);
  margin-bottom: 20px;
  line-height: 1.75;
}
.manifesto-quote {
  border-left: 3px solid var(--accent);
  padding: 16px 24px;
  margin-top: 32px;
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--fg-muted);
}
.manifesto-quote span { font-family: var(--font-body); font-style: normal; font-size: 13px; color: var(--secondary); display: block; margin-top: 6px; }

/* ===== SHARED SECTION STYLES ===== */
.section-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 16px;
  color: var(--fg-muted);
  margin-top: 12px;
}

/* ===== YOUR RIGHTS ===== */
.yourrights { padding: 80px 48px; }
.yourrights-header { max-width: 1280px; margin: 0 auto 56px; }
.rights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1280px;
  margin: 0 auto;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.right-card {
  background: var(--bg-alt);
  padding: 36px 32px;
  transition: background 0.2s;
}
.right-card:hover { background: var(--bg-panel); }
.right-code {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
  font-family: var(--font-body);
}
.right-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.right-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.65; }

/* ===== HOW IT WORKS ===== */
.howitworks { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 80px 48px; }
.hiw-inner { max-width: 1280px; margin: 0 auto; }
.hiw-inner .section-label { margin-bottom: 16px; display: block; }
.hiw-inner .section-headline { margin-bottom: 56px; display: block; }
.hiw-steps { display: flex; flex-direction: column; gap: 0; }
.hiw-step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.hiw-step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-dim);
  line-height: 1;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.step-content p { font-size: 15px; color: var(--fg-muted); line-height: 1.7; max-width: 580px; }

/* ===== OUTCOMES ===== */
.outcomes { padding: 80px 48px; }
.outcomes-inner { max-width: 1280px; margin: 0 auto; }
.outcomes-inner .section-label { margin-bottom: 16px; display: block; }
.outcomes-inner .section-headline { margin-bottom: 56px; display: block; }
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.outcome {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
}
.outcome-icon { margin-bottom: 20px; }
.outcome h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.outcome p { font-size: 14px; color: var(--fg-muted); line-height: 1.65; }

/* ===== CLOSING ===== */
.closing-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 100px 48px;
  overflow: hidden;
  position: relative;
}
.closing-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; text-align: center; }
.closing-bg-text {
  font-family: var(--font-display);
  font-size: clamp(60px, 10vw, 140px);
  font-weight: 800;
  color: rgba(232, 184, 75, 0.05);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.05em;
}
.closing-content { position: relative; z-index: 1; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 28px;
}
.closing-body { font-size: 17px; color: var(--fg-muted); line-height: 1.75; margin-bottom: 16px; max-width: 640px; margin-left: auto; margin-right: auto; }
.closing-body:last-of-type { margin-bottom: 0; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 48px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 20px;
}
.footer-legal p { font-size: 12px; color: var(--fg-muted); line-height: 1.65; margin-bottom: 10px; }
.footer-legal a { color: var(--secondary); text-decoration: none; }
.footer-legal a:hover { color: var(--fg); }
.footer-copy { font-size: 12px; color: var(--fg-muted); margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px 48px; }
  .hero-panel { max-width: 480px; }
  .nav { padding: 16px 24px; }
  .manifesto, .howitworks, .outcomes, .closing-section { padding: 60px 24px; }
  .yourrights { padding: 60px 24px; }
  .rights-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .hiw-step { grid-template-columns: 80px 1fr; gap: 20px; }
}
@media (max-width: 600px) {
  .outcomes-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 32px; }
  .panel-stat { font-size: 18px; }
  .nav-tagline { display: none; }
}