:root {
  --bg: #000000;
  --bg-elevated: #0a0a0a;
  --bg-card: #111111;
  --bg-card-hover: #161616;
  --border: rgba(255, 140, 0, 0.15);
  --border-strong: rgba(255, 140, 0, 0.35);
  --text: #f5f5f5;
  --text-muted: #a3a3a3;
  --text-dim: #737373;
  --orange: #ff8c00;
  --orange-bright: #ffb020;
  --orange-deep: #ff4500;
  --gold: #ffbf00;
  --glow: rgba(255, 140, 0, 0.4);
  --glow-soft: rgba(255, 69, 0, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --container: min(1120px, calc(100% - 2rem));
  --header-h: 72px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--orange-bright);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--gold);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* Ambient glow */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}

.glow-orb--1 {
  width: 480px;
  height: 480px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.18) 0%, transparent 70%);
}

.glow-orb--2 {
  width: 360px;
  height: 360px;
  bottom: 20%;
  left: -100px;
  background: radial-gradient(circle, rgba(255, 69, 0, 0.1) 0%, transparent 70%);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.02em;
}

.nav__brand:hover {
  color: var(--text);
}

.nav__logo {
  filter: drop-shadow(0 0 8px var(--glow));
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 500;
}

.nav__links a:hover {
  color: var(--text);
}

.nav__cta {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: #000 !important;
  font-weight: 600 !important;
  box-shadow: 0 0 20px var(--glow-soft);
}

.nav__cta:hover {
  color: #000 !important;
  box-shadow: 0 0 28px var(--glow);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 4rem) 0 5rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

.hero__title {
  margin: 0 0 1.25rem;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.hero__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--orange-bright);
  text-shadow: 0 0 40px var(--glow-soft);
}

.hero__lead {
  margin: 0 0 2rem;
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 34rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: #000;
  box-shadow: 0 4px 24px var(--glow-soft), 0 0 0 1px rgba(255, 191, 0, 0.2);
}

.btn--primary:hover {
  box-shadow: 0 6px 32px var(--glow), 0 0 0 1px rgba(255, 191, 0, 0.35);
  color: #000;
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.btn--ghost:hover {
  background: rgba(255, 140, 0, 0.08);
  color: var(--orange-bright);
}

.btn--full {
  width: 100%;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero__tags li {
  padding: 0.35rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-dim);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__logo-frame {
  position: relative;
  padding: 2rem;
}

.hero__logo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow-soft) 0%, transparent 65%);
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.hero__logo {
  position: relative;
  width: min(320px, 80vw);
  filter: drop-shadow(0 0 30px var(--glow));
}

/* Sections */
.section {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}

.section--alt {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.section__header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3rem;
}

.section__header--left {
  text-align: left;
  margin-inline: 0;
  max-width: 36rem;
}

.section__header h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section__intro {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.0625rem;
}

/* Cards */
.card-grid {
  display: grid;
  gap: 1.5rem;
}

.card-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.card--compact {
  padding: 1.25rem;
}

.card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  color: var(--orange);
}

.card__icon svg {
  width: 100%;
  height: 100%;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* Timeline */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 640px;
}

.timeline__item {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2rem;
  position: relative;
}

.timeline__item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  opacity: 0.35;
}

.timeline__step {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--orange);
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--glow-soft);
}

.timeline__body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.0625rem;
  font-weight: 600;
}

.timeline__body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* Governance */
.governance {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.governance__content h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.2;
}

.governance__content p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.governance__content strong {
  color: var(--orange-bright);
}

.checklist {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.checklist li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.65rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px var(--glow);
}

.quote {
  margin: 0;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--orange);
  box-shadow: 0 0 40px var(--glow-soft);
}

.quote p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--text);
}

/* Waitlist */
.section--waitlist {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 100%);
  border-top: 1px solid var(--border);
}

.waitlist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.waitlist__intro h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.waitlist__intro > p {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
}

.waitlist__benefits {
  list-style: none;
  margin: 0;
  padding: 0;
}

.waitlist__benefits li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.waitlist__benefits li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--orange);
}

.waitlist__form {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.form-row {
  margin-bottom: 1.25rem;
  border: none;
  padding: 0;
}

.form-row label,
.form-row legend {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.optional {
  font-weight: 400;
  color: var(--text-dim);
}

.form-row input[type="text"],
.form-row input[type="email"] {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--glow-soft);
}

.radio-grid {
  display: grid;
  gap: 0.5rem;
}

.radio-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.radio-card:hover {
  border-color: var(--border-strong);
}

.radio-card:has(input:checked) {
  border-color: var(--orange);
  background: rgba(255, 140, 0, 0.06);
}

.radio-card input {
  accent-color: var(--orange);
}

.radio-card span {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.checkbox-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.checkbox-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.8125rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.checkbox-pill:has(input:checked) {
  border-color: var(--orange);
  background: rgba(255, 140, 0, 0.08);
  color: var(--orange-bright);
}

.checkbox-pill input {
  accent-color: var(--orange);
}

.form-status {
  margin: 1rem 0 0;
  font-size: 0.9375rem;
  min-height: 1.4em;
}

.form-status--success {
  color: #4ade80;
}

.form-status--error {
  color: #f87171;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.0625rem;
}

.footer__logo {
  filter: drop-shadow(0 0 6px var(--glow-soft));
}

.footer__tagline {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-dim);
}

.footer__domain {
  margin: 0.25rem 0;
}

.footer__domain a {
  font-weight: 600;
  color: var(--orange);
}

.footer__copy {
  margin: 0.5rem 0 0;
  font-size: 0.8125rem;
  color: var(--text-dim);
}

/* Mobile nav open state */
.nav__links.is-open {
  display: flex;
}

/* Responsive */
@media (max-width: 960px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__lead {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__tags {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }

  .hero__logo {
    width: min(240px, 60vw);
  }

  .card-grid--3,
  .card-grid--4 {
    grid-template-columns: 1fr 1fr;
  }

  .governance {
    grid-template-columns: 1fr;
  }

  .waitlist {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 720px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid var(--border);
  }

  .nav__links li {
    width: 100%;
  }

  .nav__links a {
    display: block;
    padding: 0.75rem 0;
  }

  .nav__cta {
    text-align: center;
    margin-top: 0.5rem;
  }

  .card-grid--3,
  .card-grid--4 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.5rem 0;
  }
}


/* Waitlist spam trap and consent */
.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent-label {
  display: flex !important;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.consent-label input {
  flex: 0 0 auto;
  margin-top: 0.3rem;
  accent-color: var(--orange);
}

.consent-label span {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}