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

:root {
  --navy: #0f1c2e;
  --navy-mid: #1a2f47;
  --amber: #e8a849;
  --amber-dim: #c9893a;
  --cream: #f5f0e8;
  --cream-dim: #ede5d8;
  --white: #ffffff;
  --text-light: #d4cfc8;
  --text-mid: #9a958e;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --max-w: 1100px;
  --pad: clamp(24px, 5vw, 60px);
  --radius: 10px;
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--navy);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── TYPOGRAPHY ─── */
.section-label {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px var(--pad);
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, rgba(15,28,46,0.9) 0%, transparent 100%);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--cream);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.hero-left {
  position: relative;
  height: 100%;
  min-height: 100vh;
  overflow: hidden;
}
.hero-atmosphere {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0d1f35 50%, #162a42 100%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(232,168,73,0.12) 0%, transparent 70%);
  animation: pulse 6s ease-in-out infinite;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  top: 30%; left: 40%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(232,168,73,0.08) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite 1s;
}
.hero-orb-3 {
  width: 180px; height: 180px;
  top: 55%; left: 55%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(232,168,73,0.15) 0%, transparent 70%);
  animation: pulse 5s ease-in-out infinite 0.5s;
}
.hero-stripe {
  position: absolute;
  width: 1px;
  top: 0; bottom: 0;
  right: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(232,168,73,0.15) 30%, rgba(232,168,73,0.15) 70%, transparent 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,168,73,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,168,73,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}
.hero-right {
  padding: 120px var(--pad) 80px 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.1;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 440px;
  margin-bottom: 48px;
}
.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid rgba(232,168,73,0.15);
  border-bottom: 1px solid rgba(232,168,73,0.15);
  margin-bottom: 40px;
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-num {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--amber);
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.4;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(232,168,73,0.2);
}
.hero-cta-block { display: flex; flex-direction: column; gap: 12px; }
.hero-cta-note {
  font-size: 13px;
  color: var(--text-mid);
}
.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 32px;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  border-radius: var(--radius);
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(232,168,73,0.18);
  align-self: flex-start;
}
.hero-cta-btn:hover {
  background: var(--amber-dim);
  box-shadow: 0 8px 28px rgba(232,168,73,0.28);
}
.hero-cta-btn:active { transform: scale(0.98); }
.hero-form {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 480px;
  margin-top: 6px;
}
.hero-form-input {
  flex: 1;
  background: rgba(15, 28, 46, 0.6);
  border: 1px solid rgba(232, 168, 73, 0.25);
  border-radius: var(--radius);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 15px;
  padding: 13px 18px;
  min-height: 48px;
  transition: border-color 0.2s;
}
.hero-form-input::placeholder { color: var(--text-mid); }
.hero-form-input:focus {
  outline: none;
  border-color: var(--amber);
}
.hero-form-btn {
  background: transparent;
  border: 1px solid var(--amber);
  border-radius: var(--radius);
  color: var(--amber);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 20px;
  min-height: 48px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.hero-form-btn:hover {
  background: rgba(232,168,73,0.12);
}
.hero-form-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.hero-form.hero-form-stack {
  flex-direction: column;
  max-width: none;
  align-items: stretch;
  margin-top: 0;
}
.hero-form.hero-form-stack .hero-form-btn {
  width: 100%;
  font-size: 17px;
  min-height: 56px;
  padding: 16px 32px;
  background: var(--amber);
  color: var(--navy);
  border: none;
  box-shadow: 0 6px 24px rgba(232,168,73,0.18);
}
.hero-form.hero-form-stack .hero-form-btn:hover {
  background: var(--amber-dim);
  color: var(--navy);
  box-shadow: 0 8px 28px rgba(232,168,73,0.28);
}
.hero-form.hero-form-stack .hero-form-btn:disabled {
  background: var(--amber-dim);
  color: var(--navy);
  opacity: 0.7;
}
.hero-cta-block a.hero-cta-secondary {
  text-decoration: underline;
  text-underline-offset: 3px;
  align-self: flex-start;
}
.hero-form-feedback {
  font-size: 14px;
  margin-top: 4px;
  margin-bottom: 0;
  min-height: 20px;
}
.hero-form-success { color: #6ee8a8; }
.hero-form-error { color: #ff9090; }
.hero-cta-secondary {
  font-size: 13px;
  color: var(--text-mid);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .hero-cta-btn { align-self: stretch; width: 100%; font-size: 18px; }
  .hero-form { flex-direction: column; max-width: none; }
  .hero-form-btn { width: 100%; }
}
@media (max-width: 480px) {
  .hero-cta-btn { font-size: 17px; min-height: 52px; }
}

/* ─── MANIFESTO ─── */
.manifesto {
  background: var(--navy-mid);
  padding: 100px var(--pad);
}
.manifesto-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.manifesto-left { position: sticky; top: 80px; }
.manifesto-headline {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  font-weight: 400;
  color: var(--cream);
}
.manifesto-right { display: flex; flex-direction: column; gap: 24px; }
.manifesto-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
}
.manifesto-quote {
  position: relative;
  padding: 28px 32px;
  background: rgba(232,168,73,0.06);
  border-left: 3px solid var(--amber-dim);
}
.quote-mark {
  position: absolute;
  top: -12px; left: 20px;
  font-family: var(--serif);
  font-size: 60px;
  color: var(--amber);
  opacity: 0.3;
  line-height: 1;
}
.manifesto-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--cream);
  line-height: 1.5;
}

/* ─── FEATURES ─── */
.features {
  padding: 100px var(--pad);
  background: var(--navy);
}
.features-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.features-headline {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 60px;
  line-height: 1.2;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.feature-card {
  padding: 40px 36px;
  background: rgba(26,47,71,0.4);
  border: 1px solid rgba(232,168,73,0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s ease;
}
.feature-card:hover { border-color: rgba(232,168,73,0.25); }
.feature-card-accent { background: rgba(232,168,73,0.06); }
.feature-icon { width: 32px; height: 32px; }
.feature-card h3 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.feature-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-mid);
}

/* ─── HOW ─── */
.how {
  padding: 100px var(--pad);
  background: var(--navy-mid);
}
.how-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.how-headline {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 60px;
}
.how-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 80px;
}
.how-step {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.how-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 400;
  color: rgba(232,168,73,0.2);
  line-height: 1;
  letter-spacing: -0.02em;
}
.how-content h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}
.how-content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-mid);
}

/* ─── PROMISE ─── */
.promise {
  padding: 100px var(--pad);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.promise-stripe {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%; width: 1px;
  background: linear-gradient(to bottom, transparent 0%, rgba(232,168,73,0.12) 20%, rgba(232,168,73,0.12) 80%, transparent 100%);
}
.promise-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.promise-headline {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 400;
  color: var(--amber);
  line-height: 1.15;
  margin-bottom: 28px;
}
.promise-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 48px;
}
.promise-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
  text-align: left;
}
.promise-pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.pillar-bar {
  width: 3px;
  min-height: 40px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 4px;
}
.promise-pillar p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
}

/* ─── WAITLIST ─── */
.waitlist-cta {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.waitlist-label {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.5;
}
.waitlist-form {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 480px;
}
.waitlist-input {
  flex: 1;
  background: rgba(15, 28, 46, 0.6);
  border: 1px solid rgba(232, 168, 73, 0.25);
  border-radius: 8px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 15px;
  padding: 13px 18px;
  transition: border-color 0.2s;
}
.waitlist-input::placeholder { color: var(--text-mid); }
.waitlist-input:focus {
  outline: none;
  border-color: var(--amber);
}
.waitlist-btn {
  background: var(--amber);
  border: none;
  border-radius: 8px;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 24px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.1s;
}
.waitlist-btn:hover { background: var(--amber-dim); }
.waitlist-btn:active { transform: scale(0.97); }
.waitlist-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.waitlist-feedback {
  font-size: 14px;
  min-height: 20px;
  text-align: center;
}
.waitlist-success { color: #6ee8a8; }
.waitlist-error { color: #ff9090; }

@media (max-width: 480px) {
  .waitlist-form { flex-direction: column; }
  .waitlist-btn { width: 100%; }
}

/* ─── CLOSING ─── */
.closing {
  padding: 140px var(--pad);
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.closing-orb {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,168,73,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.closing-headline {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ─── FOOTER ─── */
.footer {
  padding: 60px var(--pad);
  background: var(--navy);
  border-top: 1px solid rgba(232,168,73,0.1);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--cream);
}
.footer-tagline {
  font-size: 14px;
  color: var(--text-mid);
}
.footer-crisis {
  font-size: 13px;
  color: var(--text-mid);
  margin-top: 8px;
}
.footer-crisis strong { color: var(--amber); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { display: none; }
  .hero-right { padding: 120px var(--pad) 60px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 40px; }
  .manifesto-left { position: static; }
  .feature-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .promise-pillars { grid-template-columns: 1fr; }
}