:root {
  color-scheme: light;
  --bg: #0f0f12;
  --bg-soft: #1a1624;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.16);
  --text: #f7f2ff;
  --muted: #c3b8d6;
  --accent: #ff7846;
  --accent-2: #ffd166;
  --stroke: rgba(255, 255, 255, 0.16);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius-lg: 28px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  background: radial-gradient(circle at top right, rgba(255, 120, 70, 0.24), transparent 45%),
    radial-gradient(circle at 20% 20%, rgba(255, 209, 102, 0.18), transparent 40%),
    #0a0a10;
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

.glow {
  position: fixed;
  inset: -20% 20% auto auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 120, 70, 0.35), transparent 65%);
  filter: blur(40px);
  z-index: 0;
}

.page {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}


.badge {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.pill {
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  color: var(--muted);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-copy h1 {
  font-family: 'Fraunces', serif;
  line-height: 1.05;
  margin: 0 0 16px;
}

.headline {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.headline-title {
  font-size: clamp(34px, 5vw, 56px);
}

.headline-tagline {
  font-size: clamp(18px, 2.4vw, 24px);
  color: var(--muted);
  margin: 4px 0 12px;
  max-width: 36ch;
}

.headline-subtitle {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.3;
  color: var(--muted);
  font-weight: 500;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--accent-2);
  margin: 0 0 12px;
}

.subhead {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 28px;
}

.beta-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.privacy-note {
  margin: -4px 0 0;
  font-size: px;
  line-height: 1.35;
  color: var(--muted);
  text-align: center;
  width: 100%;
  align-self: center;
}

.beta-form input {
  width: 100%;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--stroke);
  background: rgba(12, 12, 18, 0.6);
  color: var(--text);
  font-size: 16px;
}

.beta-form input:first-of-type {
  margin-bottom: 2px;
}

.beta-form button {
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  border: none;
  background: linear-gradient(135deg, var(--accent), #ff4d8f);
  color: #0b0b12;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 16px 40px rgba(255, 120, 70, 0.4);
}

.beta-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
}

.beta-form button:hover:not(:disabled) {
  transform: translateY(-2px);
}

.optin-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
}

.optin-label input {
  width: auto;
  margin: 0;
}

.form-status {
  margin: 10px 0 0;
  font-size: 14px;
  min-height: 18px;
}

.hero-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.logo-sticker {
  position: absolute;
  right: 48px;
  bottom: 70px;
  width: 160px;
  height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.45));
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  color: var(--muted);
}

.card-top strong {
  font-size: 22px;
  color: var(--text);
}

.card-lines {
  display: grid;
  gap: 10px;
  font-size: 16px;
}

.card-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
}

.card-bottom-note {
  margin-right: 28px;
}

.details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.details h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.details p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--stroke);
  color: var(--muted);
  font-size: 14px;
}

.footer-brand {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--accent-2);
}

.legal {
  max-width: 840px;
  gap: 20px;
}

.legal h1 {
  font-family: 'Fraunces', serif;
  margin-bottom: 0;
}

.legal h2 {
  margin: 18px 0 8px;
  font-size: 20px;
}

.legal p,
.legal li {
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
}

.legal ul {
  margin: 0 0 8px;
  padding-left: 20px;
}

.legal-back {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.legal-back:hover {
  color: var(--accent-2);
}

.legal-updated {
  font-size: 14px;
  color: var(--muted);
}

.social-proof {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 9999;
  padding: 14px 18px;
  border-radius: 999px;
  background: #000000 !important;
  box-shadow: var(--shadow), 0 0 4px 1px rgba(255, 120, 70, 0.4);
  color: var(--text);
  font-size: 14px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  max-width: 320px;
}

.social-proof.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 720px) {
  .page {
    padding: 32px 20px 60px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .hero-card {
    padding: 24px;
  }

  .logo-sticker {
    position: static;
    width: 120px;
    height: 120px;
    margin: 0 auto 12px;
    display: block;
  }

  .card-top {
    font-size: 12px;
  }

  .card-top strong {
    font-size: 18px;
  }

  .card-lines {
    font-size: 14px;
  }

  .card-bottom {
    font-size: 12px;
  }

  .social-proof {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }

  .footer {
    padding-bottom: 72px;
  }

  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
