:root {
  --ink: #07182b;
  --ink-soft: #1c334d;
  --paper: #f3fbff;
  --foam: #ffffff;
  --cyan: #19d7ff;
  --blue: #0a6cff;
  --gold: #ffb020;
  --lime: #b8f000;
  --danger: #ff4d6d;
  --ok: #12b76a;
  --radius: 18px;
  --font-display: "Syne", sans-serif;
  --font-body: "Figtree", sans-serif;
  --shadow-soft: 0 18px 50px rgba(4, 40, 90, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  background: #dff6ff;
  overflow-x: hidden;
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 55% at 10% -10%, rgba(25, 215, 255, 0.55), transparent 55%),
    radial-gradient(ellipse 70% 50% at 95% 5%, rgba(255, 176, 32, 0.38), transparent 50%),
    radial-gradient(ellipse 60% 45% at 70% 85%, rgba(10, 108, 255, 0.28), transparent 55%),
    linear-gradient(165deg, #e9fbff 0%, #c8f0ff 42%, #9ad8ff 100%);
  animation: skyShift 18s ease-in-out infinite alternate;
}

@keyframes skyShift {
  from {
    filter: hue-rotate(0deg) saturate(1);
  }
  to {
    filter: hue-rotate(12deg) saturate(1.08);
  }
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem clamp(1.2rem, 4vw, 3rem);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(243, 251, 255, 0.72);
  border-bottom: 1px solid rgba(7, 24, 43, 0.06);
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
}

.topnav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.topnav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-cta {
  color: var(--foam) !important;
  background: var(--ink);
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  min-height: calc(100svh - 72px);
  padding: clamp(1.5rem, 5vw, 4rem) clamp(1.2rem, 4vw, 3rem) 3rem;
}

.brand-lockup {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  animation: riseIn 0.8s ease both;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.55rem, 3.4vw, 2.45rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink-soft);
  animation: riseIn 0.9s ease 0.08s both;
}

.lede {
  margin: 1.1rem 0 0;
  max-width: 34rem;
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--ink-soft);
  animation: riseIn 1s ease 0.14s both;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
  animation: riseIn 1.05s ease 0.2s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 1.25rem;
  border-radius: 14px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), #19a0ff 55%, var(--cyan));
  color: #041525;
  box-shadow: 0 10px 28px rgba(10, 108, 255, 0.28);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  border: 1px solid rgba(7, 24, 43, 0.12);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 280px;
}

.card-orbit {
  position: absolute;
  width: min(92%, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    conic-gradient(from 180deg, rgba(25, 215, 255, 0.0), rgba(25, 215, 255, 0.45), rgba(255, 176, 32, 0.35), transparent 70%);
  filter: blur(18px);
  /* static glow — no spin */
}

.hero-card {
  position: relative;
  width: min(100%, 620px);
  filter: drop-shadow(0 28px 40px rgba(4, 45, 100, 0.35));
}

.hero-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

.hero-photo img {
  border-radius: 22px;
  object-fit: cover;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-head {
  max-width: 40rem;
  margin-bottom: 1.75rem;
}

.eyebrow {
  margin: 0 0 0.45rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: #0a5bb8;
}

.section-head h2,
.waitlist-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.section-lede {
  margin: 0.75rem 0 0;
  color: var(--ink-soft);
  line-height: 1.5;
  font-size: 1.05rem;
}

.status-section,
.release-section,
.waitlist-section {
  padding: 4rem clamp(1.2rem, 4vw, 3rem);
}

.status-board {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(7, 24, 43, 0.08);
  border-radius: 24px;
  padding: clamp(1.2rem, 3vw, 2rem);
  box-shadow: var(--shadow-soft);
}

.status-hero-pill {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  margin-bottom: 1.4rem;
}

.status-hero-pill.not-ready {
  background: linear-gradient(135deg, rgba(255, 77, 109, 0.12), rgba(255, 176, 32, 0.16));
  border: 1px solid rgba(255, 77, 109, 0.25);
}

.status-hero-pill.ready {
  background: linear-gradient(135deg, rgba(18, 183, 106, 0.14), rgba(184, 240, 0, 0.18));
  border: 1px solid rgba(18, 183, 106, 0.28);
}

.status-hero-pill strong {
  display: block;
  font-size: 1.2rem;
  font-family: var(--font-display);
}

.status-hero-pill p {
  margin: 0.2rem 0 0;
  color: var(--ink-soft);
}

.pulse {
  width: 12px;
  height: 12px;
  margin-top: 0.4rem;
  border-radius: 50%;
  background: var(--danger);
  box-shadow: 0 0 0 0 rgba(255, 77, 109, 0.55);
  animation: pulse 1.8s ease-out infinite;
  flex-shrink: 0;
}

.status-hero-pill.ready .pulse {
  background: var(--ok);
  box-shadow: 0 0 0 0 rgba(18, 183, 106, 0.5);
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 14px transparent;
  }
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}

.milestones {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.milestones li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.85rem 0.5rem;
  border-bottom: 1px solid rgba(7, 24, 43, 0.06);
}

.milestones li:last-child {
  border-bottom: 0;
}

.milestones .mark {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  border-radius: 50%;
  border: 2px solid rgba(7, 24, 43, 0.25);
  background: transparent;
}

.milestones li.done .mark {
  border-color: var(--ok);
  background: var(--ok);
  box-shadow: inset 0 0 0 3px #fff;
}

.milestones li.active .mark {
  border-color: var(--blue);
  background: var(--cyan);
  animation: pulse 1.8s ease-out infinite;
}

.milestones strong {
  font-size: 1.02rem;
}

.milestones p {
  margin: 0.2rem 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.status-meta {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  color: #45607a;
}

.release-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.release-list li {
  padding: 1.15rem 0;
  border-top: 2px solid rgba(7, 24, 43, 0.12);
}

.release-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.release-list span {
  color: var(--ink-soft);
  line-height: 1.45;
}

.disclaimer-inline {
  margin: 1.5rem 0 0;
  color: #45607a;
  font-size: 0.92rem;
  max-width: 40rem;
}

.waitlist-panel {
  max-width: 40rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(7, 24, 43, 0.95), #0a4f9c 70%, #0896c9);
  color: var(--foam);
  box-shadow: var(--shadow-soft);
}

.waitlist-panel .eyebrow {
  color: var(--lime);
}

.waitlist-panel .section-lede {
  color: rgba(255, 255, 255, 0.86);
}

.waitlist-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.waitlist-form input {
  flex: 1 1 220px;
  min-height: 52px;
  border: 0;
  border-radius: 14px;
  padding: 0.85rem 1rem;
  font: inherit;
  font-size: 1rem;
}

.waitlist-form .btn-primary {
  background: linear-gradient(135deg, var(--lime), #fff06a);
  color: #102000;
  box-shadow: none;
}

.form-note {
  margin: 0.9rem 0 0;
  font-weight: 600;
  color: var(--lime);
}

.form-legal {
  margin: 0.9rem 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 1.5rem;
  padding: 2.5rem clamp(1.2rem, 4vw, 3rem) 3rem;
  border-top: 1px solid rgba(7, 24, 43, 0.08);
  background: rgba(255, 255, 255, 0.45);
}

.thanks-page {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.5rem, 5vw, 4rem) clamp(1.2rem, 4vw, 3rem);
  max-width: 84rem;
  margin: 0 auto;
  box-sizing: border-box;
}

.thanks-copy {
  max-width: 36rem;
}

.thanks-page h1 {
  margin: 0.4rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.03em;
}

.thanks-card {
  display: block;
  width: 100%;
  max-width: 100%;
  filter: none;
  box-shadow: none;
}

.thanks-card img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  filter: none;
  box-shadow: none;
}

@media (max-width: 900px) {
  .thanks-page {
    grid-template-columns: 1fr;
    max-width: 40rem;
  }

  .thanks-card {
    order: -1;
    max-width: 28rem;
  }
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.footer-brand p,
.footer-legal p {
  margin: 0.4rem 0 0;
  color: var(--ink-soft);
  line-height: 1.45;
  font-size: 0.92rem;
}

.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: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 1.5rem;
  }

  .brand-lockup {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  .topnav a:not(.nav-cta) {
    display: none;
  }

  .release-list {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
