:root {
  --bg: #060a14;
  --bg-elev: #0b1120;
  --panel: rgba(16, 24, 41, 0.88);
  --panel-soft: rgba(18, 27, 46, 0.62);
  --line: rgba(142, 166, 205, 0.28);
  --text: #edf2ff;
  --text-soft: #b6c4e1;
  --text-dim: #8a9ab8;
  --accent: #00b8ff;
  --accent-strong: #006bff;
  --accent-cyan: #26f4c9;
  --success: #36d399;
  --warning: #f6c177;
  --error: #ff808f;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max: 1160px;
  --shadow: 0 18px 50px rgba(1, 5, 16, 0.56);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Avenir Next", "Nunito Sans", "Segoe UI", sans-serif;
  line-height: 1.65;
  background:
    radial-gradient(90rem 60rem at -10% -10%, rgba(0, 146, 255, 0.24), transparent 35%),
    radial-gradient(75rem 45rem at 100% -10%, rgba(24, 220, 187, 0.2), transparent 38%),
    linear-gradient(180deg, #050914 0%, #080d19 40%, #070c16 100%);
  min-height: 100vh;
}

.ambient-orb {
  position: fixed;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
  z-index: -1;
}

.orb-left {
  top: 6rem;
  left: -8rem;
  background: rgba(0, 184, 255, 0.26);
}

.orb-right {
  top: 20rem;
  right: -10rem;
  background: rgba(38, 244, 201, 0.2);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

p {
  margin: 0 0 1rem;
  color: var(--text-soft);
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  max-width: 13ch;
}

h2 {
  font-size: clamp(1.7rem, 3.5vw, 3rem);
}

h3 {
  font-size: 1.16rem;
}

ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-soft);
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 4.8rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(6, 10, 20, 0.78);
  border-bottom: 1px solid rgba(120, 145, 184, 0.22);
}

.nav-row {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand:hover {
  color: var(--text);
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: linear-gradient(140deg, var(--accent), var(--accent-cyan));
  box-shadow: 0 10px 25px rgba(0, 148, 255, 0.52);
}

.brand-name {
  font-size: 1.08rem;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-nav a {
  color: var(--text-soft);
  font-weight: 600;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.3rem 0.72rem;
  border: 1px solid rgba(89, 186, 255, 0.48);
  border-radius: 999px;
  color: #bff4ff;
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 700;
  background: rgba(10, 30, 56, 0.56);
}

.hero {
  padding-top: 5.6rem;
}

.hero-layout,
.offer-layout {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.lead {
  font-size: 1.15rem;
  max-width: 58ch;
}

.action-row {
  margin: 1.7rem 0 1rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.button {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.9rem 1.3rem;
  font-weight: 700;
  font-size: 0.97rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #f5f9ff;
  background: linear-gradient(145deg, var(--accent), var(--accent-strong));
  box-shadow: 0 14px 30px rgba(0, 107, 255, 0.45);
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}

.button:hover {
  color: #f5f9ff;
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(0, 107, 255, 0.56);
}

.button:active {
  transform: translateY(0);
}

.button.ghost {
  background: rgba(20, 35, 61, 0.55);
  border-color: rgba(102, 188, 255, 0.46);
  box-shadow: none;
  color: #d7e5ff;
}

.button-sm {
  padding: 0.62rem 1.02rem;
}

.button-full {
  width: 100%;
}

.button[disabled] {
  opacity: 0.8;
  cursor: not-allowed;
}

.trust-line {
  padding-left: 1rem;
  display: grid;
  gap: 0.25rem;
}

.trust-line li {
  color: var(--text-soft);
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-surface {
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(28, 44, 72, 0.72), rgba(14, 21, 37, 0.88)),
    var(--panel);
}

.surface-head {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 0.95rem;
}

.surface-head span {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: rgba(197, 215, 245, 0.6);
}

.surface-grid {
  display: grid;
  gap: 0.75rem;
}

.mini-panel {
  border-radius: var(--radius-md);
  border: 1px solid rgba(147, 175, 220, 0.28);
  background: rgba(8, 14, 25, 0.56);
  padding: 0.95rem;
}

.mini-panel.primary {
  background: linear-gradient(150deg, rgba(0, 128, 255, 0.38), rgba(24, 64, 148, 0.52));
}

.panel-label {
  margin: 0 0 0.45rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.11em;
  font-size: 0.73rem;
  color: #9eeeff;
}

.mini-panel h2,
.mini-panel h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.section-copy {
  max-width: 60ch;
}

.section-copy.narrow {
  max-width: 48ch;
}

.quiet {
  color: var(--text-dim);
}

.waitlist-card {
  padding: 1.4rem;
}

.offer-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(38, 244, 201, 0.45);
  background: rgba(17, 70, 84, 0.44);
  color: #bcfff1;
  font-size: 0.82rem;
  margin-bottom: 0.85rem;
}

.waitlist-card form {
  display: grid;
  gap: 0.66rem;
}

.waitlist-card label {
  font-size: 0.89rem;
  font-weight: 600;
  color: #d3e2ff;
}

.waitlist-card input {
  border-radius: 12px;
  border: 1px solid rgba(138, 168, 212, 0.38);
  background: rgba(8, 13, 23, 0.7);
  color: #edf4ff;
  padding: 0.8rem 0.86rem;
  font-size: 1rem;
}

.waitlist-card input::placeholder {
  color: rgba(161, 181, 214, 0.82);
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-status {
  min-height: 1.75rem;
  margin-top: 0.9rem;
  margin-bottom: 0.7rem;
  padding: 0.45rem 0.62rem;
  border-radius: 10px;
  border: 1px solid transparent;
  color: var(--text-soft);
}

.form-status:empty {
  margin: 0;
  min-height: 0;
  padding: 0;
  border: 0;
}

.form-status.success {
  border-color: rgba(75, 205, 161, 0.45);
  background: rgba(20, 63, 53, 0.6);
  color: #b8f9e1;
}

.form-status.info {
  border-color: rgba(85, 177, 255, 0.5);
  background: rgba(15, 48, 96, 0.5);
  color: #d7efff;
}

.form-status.error {
  border-color: rgba(237, 114, 130, 0.45);
  background: rgba(86, 26, 39, 0.5);
  color: #ffd3d9;
}

.form-helper {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.form-helper a {
  text-decoration: underline;
  text-decoration-color: rgba(150, 181, 233, 0.5);
  text-underline-offset: 2px;
}

.launch-card {
  padding: 1.5rem;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(0, 142, 255, 0.26), transparent 60%),
    var(--panel);
}

.launch-note {
  color: var(--text-dim);
  margin-bottom: 1.2rem;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 1.2rem 0 1rem;
}

.time-box {
  border: 1px solid rgba(132, 161, 209, 0.3);
  background: rgba(9, 16, 30, 0.8);
  border-radius: var(--radius-md);
  padding: 0.85rem 0.55rem;
}

.time-value {
  display: block;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  min-height: 2.1rem;
}

.time-label {
  margin-top: 0.3rem;
  display: block;
  color: var(--text-dim);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.release-state {
  margin: 1.3rem auto;
  max-width: 34rem;
  border: 1px solid rgba(73, 224, 164, 0.4);
  background: rgba(16, 60, 49, 0.52);
  border-radius: var(--radius-md);
  padding: 0.95rem;
}

.release-state h3 {
  margin-bottom: 0.4rem;
}

.launch-support {
  margin-bottom: 0;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.benefit-card {
  padding: 1.05rem;
  border-radius: var(--radius-md);
  background: var(--panel-soft);
}

.benefit-card h3 {
  margin-bottom: 0.5rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.step-card {
  padding: 1.1rem;
  border-radius: var(--radius-md);
}

.step-number {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: #7ce7ff;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
}

.bento-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bento-card {
  padding: 1.05rem;
  border-radius: var(--radius-md);
  background: rgba(16, 25, 43, 0.78);
}

.bento-card.tall {
  grid-row: span 2;
}

.bento-card.wide {
  grid-column: span 2;
}

.philosophy-card,
.final-cta {
  padding: 1.35rem;
}

.philosophy-card {
  text-align: center;
  max-width: 62rem;
}

.final-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 142, 255, 0.32), transparent 45%),
    var(--panel);
}

.site-footer {
  padding: 1.2rem 0 2.1rem;
  border-top: 1px solid rgba(116, 140, 180, 0.24);
}

.footer-row,
.footer-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy,
.copyright {
  color: var(--text-dim);
}

.copyright {
  margin: 0.8rem auto 0;
  font-size: 0.9rem;
}

.legal-main {
  padding: 3.2rem 0 4.4rem;
}

.legal-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.5rem;
}

.legal-card h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.legal-card h2 {
  margin-top: 1.7rem;
  font-size: 1.2rem;
}

.legal-card p,
.legal-card li {
  color: var(--text-soft);
}

.legal-note {
  border: 1px solid rgba(238, 199, 128, 0.4);
  background: rgba(72, 56, 30, 0.45);
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
}

.legal-updated {
  color: #c3d8ff;
}

.is-released .offer-chip {
  border-color: rgba(246, 193, 119, 0.42);
  background: rgba(89, 67, 24, 0.45);
  color: #ffe0aa;
}

.offer-claimed .offer-chip {
  border-color: rgba(246, 193, 119, 0.42);
  background: rgba(89, 67, 24, 0.45);
  color: #ffe0aa;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(68, 214, 255, 0.9);
  outline-offset: 2px;
}

@media (max-width: 1020px) {
  .hero-layout,
  .offer-layout,
  .benefit-grid,
  .steps-grid,
  .final-cta {
    grid-template-columns: 1fr;
    display: grid;
  }

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

  .bento-card.tall,
  .bento-card.wide {
    grid-row: auto;
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .site-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 0.72rem;
  }

  .site-nav a {
    font-size: 0.92rem;
  }

  .nav-row {
    align-items: flex-start;
    padding: 0.85rem 0;
  }

  .section {
    padding: 3.65rem 0;
  }

  .hero {
    padding-top: 4.4rem;
  }

  .countdown-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
