/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #F5F3EE;
  --fg: #1A1A1A;
  --accent: #1D4ED8;
  --green: #16A34A;
  --muted: #6B7280;
  --light: #FFFFFF;
  --border: #E5E2DB;
  --navy: #0F1B2D;
  --cream: #F8F6F2;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light);
}

.nav-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}

/* ===== HERO ===== */
.hero {
  background: var(--navy);
  color: var(--light);
  padding: 96px 32px 80px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 32px;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--light);
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  color: #60A5FA;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 580px;
  font-weight: 300;
  margin-bottom: 56px;
}

.hero-callout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 40px;
  margin-top: 0;
}

.callout-stat {
  padding: 24px 32px 24px 0;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.callout-stat:last-child { border-right: none; }

.callout-stat:not(:first-child) { padding-left: 32px; }

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: #4ADE80;
  margin-bottom: 4px;
}

.stat-label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}

/* ===== STATS ===== */
.stats {
  background: var(--cream);
  padding: 72px 32px;
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.stat-card {
  background: var(--cream);
  padding: 40px 32px;
  text-align: center;
}

.stat-val {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.stat-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 300;
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 96px 32px;
  background: var(--light);
}

.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.manifesto-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.manifesto-accent {
  color: var(--accent);
}

.manifesto-body {
  font-size: 17px;
  line-height: 1.8;
  color: #374151;
  font-weight: 300;
  margin-bottom: 20px;
}

.manifesto-emphasis {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--navy);
  font-weight: 700;
  border-left: 3px solid var(--green);
  padding-left: 20px;
  margin-top: 28px;
}

/* ===== OPERATOR ===== */
.operator {
  background: var(--navy);
  color: var(--light);
  padding: 96px 32px;
}

.operator-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.operator-verticals {
  padding-top: 8px;
}

.verticals-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 32px;
}

.verticals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}

.vertical-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}

.vertical-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ADE80;
  flex-shrink: 0;
}

.operator-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  border-left: 2px solid #4ADE80;
  padding-left: 20px;
}

.operator-quote cite {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  font-style: normal;
  margin-bottom: 40px;
  padding-left: 20px;
}

.quote-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
}

.qstat { padding-right: 20px; }

.qstat-val {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #4ADE80;
  margin-bottom: 4px;
}

.qstat-label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
}

/* ===== CLOSING ===== */
.closing {
  padding: 96px 32px;
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 32px;
}

.closing-sub {
  display: block;
  color: var(--accent);
  margin-top: 8px;
}

.closing-body {
  font-size: 17px;
  line-height: 1.8;
  color: #4B5563;
  font-weight: 300;
  margin-bottom: 16px;
}

.closing-cta {
  margin-top: 40px;
}

.cta-button {
  display: inline-block;
  background: var(--navy);
  color: var(--light);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 16px 40px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}

.cta-button:hover {
  background: #1a2d42;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  padding: 48px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.25);
  font-weight: 300;
  margin-bottom: 12px;
}

.footer-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.15);
  font-weight: 300;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .manifesto-inner { grid-template-columns: 1fr; gap: 40px; }
  .operator-inner { grid-template-columns: 1fr; gap: 48px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-callout { grid-template-columns: 1fr; }
  .callout-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-left: 0; padding-right: 0; }
  .callout-stat:last-child { border-bottom: none; }
  .quote-stats { grid-template-columns: 1fr; gap: 24px; }
  .verticals-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero { padding: 64px 24px 56px; }
  .manifesto, .operator, .closing { padding: 64px 24px; }
  .nav-inner { padding: 14px 24px; }
  .nav-tagline { display: none; }
}

/* ===== SIGNUP PAGE ===== */
.signup-hero {
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  background: var(--cream);
}

.signup-hero-inner {
  max-width: 600px;
  width: 100%;
}

.signup-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.2);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.signup-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 20px;
}

.signup-sub {
  font-size: 17px;
  color: #4B5563;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 40px;
}

.signup-error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #991B1B;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 24px;
}

.signup-form {
  margin-bottom: 16px;
}

.signup-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.signup-row {
  display: flex;
  gap: 12px;
}

.signup-input {
  flex: 1;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--light);
  color: var(--fg);
  outline: none;
  transition: border-color 0.2s;
}

.signup-input:focus {
  border-color: var(--accent);
}

.signup-button {
  background: var(--navy);
  color: var(--light);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.signup-button:hover {
  background: #1a2d42;
}

.signup-note {
  font-size: 12px;
  color: #9CA3AF;
  margin-top: 12px;
}