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

:root {
  --bg: #090909;
  --bg-alt: #0F0F0F;
  --fg: #E8E8E8;
  --fg-dim: #7A7A7A;
  --accent: #F5A623;
  --accent-dim: rgba(245, 166, 35, 0.15);
  --section-gap: clamp(80px, 12vw, 140px);
}

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

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(9, 9, 9, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 166, 35, 0.08);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  color: var(--accent);
}

.nav-tagline {
  font-size: 0.75rem;
  color: var(--fg-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 48px 80px;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 500;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero-headline {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  color: #FFFFFF;
  margin-bottom: 28px;
  line-height: 1.05;
}

.hero-headline em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-dim);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 40px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 20px 0;
  border-top: 1px solid rgba(245, 166, 35, 0.15);
}

.proof-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.proof-num {
  font-family: 'Sora', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}

.proof-label {
  font-size: 0.72rem;
  color: var(--fg-dim);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.proof-divider {
  width: 1px;
  height: 32px;
  background: rgba(245, 166, 35, 0.2);
}

/* ===== HERO VISUAL ===== */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bite-anim {
  width: 100%;
  max-width: 360px;
  filter: drop-shadow(0 0 40px rgba(245, 166, 35, 0.15));
}

/* ===== MANIFESTO ===== */
.manifesto {
  background: var(--bg-alt);
  padding: var(--section-gap) 48px;
  border-top: 1px solid rgba(245, 166, 35, 0.08);
  border-bottom: 1px solid rgba(245, 166, 35, 0.08);
}

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

.manifesto-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0.8;
}

.manifesto-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #FFFFFF;
  margin-bottom: 28px;
}

.manifesto-body {
  font-size: 1.05rem;
  color: var(--fg-dim);
  line-height: 1.75;
}

/* ===== HOW IT WORKS ===== */
.howitworks {
  padding: var(--section-gap) 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.howitworks-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0.8;
}

.howitworks-headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #FFFFFF;
  margin-bottom: 64px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(245, 166, 35, 0.1);
  align-items: start;
}

.step:last-child { border-bottom: none; }

.step-num {
  font-family: 'Sora', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(245, 166, 35, 0.2);
  line-height: 1;
  padding-top: 4px;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.step-body {
  font-size: 0.95rem;
  color: var(--fg-dim);
  line-height: 1.7;
}

/* ===== FEATURES ===== */
.features {
  background: var(--bg-alt);
  padding: var(--section-gap) 48px;
  border-top: 1px solid rgba(245, 166, 35, 0.08);
  border-bottom: 1px solid rgba(245, 166, 35, 0.08);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(245, 166, 35, 0.08);
  border: 1px solid rgba(245, 166, 35, 0.08);
  max-width: 1200px;
  margin: 0 auto;
}

.feature {
  background: var(--bg-alt);
  padding: 40px 32px;
  transition: background 0.3s ease;
}

.feature:hover {
  background: #111111;
}

.feature-icon {
  margin-bottom: 20px;
}

.feature-title {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.feature-body {
  font-size: 0.88rem;
  color: var(--fg-dim);
  line-height: 1.65;
}

/* ===== NUMBERS ===== */
.numbers {
  padding: var(--section-gap) 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.numbers-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0.8;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(245, 166, 35, 0.08);
  border: 1px solid rgba(245, 166, 35, 0.08);
}

.num-item {
  background: var(--bg);
  padding: 40px 32px;
  transition: background 0.3s ease;
}

.num-item:hover { background: #0D0D0D; }

.num-val {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
  line-height: 1;
}

.num-desc {
  font-size: 0.82rem;
  color: var(--fg-dim);
  line-height: 1.5;
}

/* ===== CLOSING ===== */
.closing {
  background: var(--bg-alt);
  padding: var(--section-gap) 48px;
  border-top: 1px solid rgba(245, 166, 35, 0.08);
  text-align: center;
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
}

.closing-icon {
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
}

.closing-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #FFFFFF;
  margin-bottom: 24px;
}

.closing-body {
  font-size: 1rem;
  color: var(--fg-dim);
  line-height: 1.75;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 48px;
  border-top: 1px solid rgba(245, 166, 35, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--fg-dim);
  opacity: 0.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 32px 60px;
    text-align: center;
  }

  .hero-sub { margin: 0 auto 32px; }

  .hero-proof {
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
  }

  .hero-right { display: none; }
  .hero-visual-mobile { display: block; }

  .features {
    grid-template-columns: 1fr 1fr;
  }

  .numbers-grid {
    grid-template-columns: 1fr 1fr;
  }

  .step {
    grid-template-columns: 60px 1fr;
    gap: 20px;
  }

  .footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 32px;
  }
}

@media (max-width: 600px) {
  .nav { padding: 16px 24px; }
  .nav-tagline { display: none; }

  .hero { padding: 90px 24px 48px; }

  .manifesto,
  .howitworks,
  .features,
  .numbers,
  .closing,
  .footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .numbers-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof { gap: 16px; }
}

@media (max-width: 375px) {
  .hero-headline { font-size: 2.2rem; }
  .howitworks-headline { font-size: 1.8rem; }
}

/* ===== WAITLIST CTA ===== */
.waitlist-cta {
  margin-bottom: 40px;
}

.waitlist-cta--centered {
  text-align: left;
  max-width: 480px;
  margin: 40px auto 0;
}

.waitlist-eyebrow {
  font-size: 0.82rem;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  font-weight: 500;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 460px;
}

.waitlist-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.waitlist-form input {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 8px;
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.waitlist-form input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(245,166,35,0.06);
}

.waitlist-form input::placeholder { color: var(--fg-dim); }

.waitlist-btn {
  display: inline-block;
  padding: 13px 28px;
  background: var(--accent);
  color: #090909;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.15s ease;
  align-self: flex-start;
}

.waitlist-btn:hover { background: #FFB940; }
.waitlist-btn:active { transform: scale(0.98); }

.waitlist-submitting {
  color: var(--fg-dim);
  font-size: 0.88rem;
}

.waitlist-success {
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 14px 0 4px;
}

@media (max-width: 600px) {
  .waitlist-btn { width: 100%; text-align: center; align-self: stretch; }
}