:root {
  color-scheme: dark;
  --bg: #050711;
  --surface: rgba(18, 27, 46, 0.76);
  --surface-strong: rgba(29, 39, 62, 0.9);
  --line: rgba(178, 204, 255, 0.16);
  --text: #f5f7ff;
  --muted: #aeb6ca;
  --blue: #67b7ff;
  --violet: #b78cff;
  --rose: #f18bd4;
  --gold: #d9c68a;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at 24% 12%, rgba(103, 183, 255, 0.22), transparent 32rem),
    radial-gradient(circle at 78% 18%, rgba(183, 140, 255, 0.18), transparent 30rem),
    linear-gradient(145deg, #050711 0%, #0a1327 48%, #12091d 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(circle at 50% 18%, black, transparent 72%);
}

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

button,
input {
  font: inherit;
}

.release-toast {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  display: grid;
  width: min(760px, calc(100vw - 32px));
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(103, 183, 255, 0.36);
  border-radius: 22px;
  padding: 18px 18px 18px 22px;
  background:
    linear-gradient(135deg, rgba(18, 28, 48, 0.96), rgba(38, 28, 58, 0.96)),
    radial-gradient(circle at 18% 20%, rgba(103, 183, 255, 0.26), transparent 20rem);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42), 0 0 48px rgba(103, 183, 255, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -28px) scale(0.98);
  transition: opacity 220ms ease, transform 260ms ease;
}

.release-toast.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.release-toast .toast-kicker {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.release-toast strong {
  display: block;
  margin-top: 5px;
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.2;
}

.release-toast button {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0 15px;
  background: rgba(255, 255, 255, 0.07);
  color: #e8f1ff;
  cursor: pointer;
}

.page-shell {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 22px 0 48px;
}

.hero {
  min-height: min(760px, calc(100vh - 32px));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 42px;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 19px;
  font-weight: 720;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  box-shadow: 0 0 34px rgba(103, 183, 255, 0.32);
}

.nav-actions a,
.secondary-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  color: #dce9ff;
  background: rgba(255, 255, 255, 0.04);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 6vw, 84px);
  padding-bottom: 34px;
}

.eyebrow,
.card-label,
.feature-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
  margin-top: 18px;
}

.lead {
  max-width: 650px;
  margin-top: 24px;
  color: #cbd4e8;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 12px;
  margin-top: 30px;
}

.waitlist-form {
  width: min(100%, 620px);
}

.waitlist-form label {
  display: block;
  margin-bottom: 8px;
  color: #dce9ff;
  font-size: 13px;
  font-weight: 760;
}

.waitlist-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  border: 1px solid rgba(103, 183, 255, 0.24);
  border-radius: 18px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.waitlist-row input {
  min-width: 0;
  min-height: 48px;
  border: 0;
  outline: 0;
  border-radius: 12px;
  padding: 0 14px;
  background: rgba(5, 7, 17, 0.6);
  color: var(--text);
}

.waitlist-row input::placeholder {
  color: var(--muted);
}

.waitlist-row input:focus {
  box-shadow: 0 0 0 2px rgba(103, 183, 255, 0.46);
}

.waitlist-row input.is-invalid {
  box-shadow: 0 0 0 2px rgba(241, 139, 212, 0.62);
}

.waitlist-row button {
  min-height: 48px;
  border: 0;
  border-radius: 12px;
  padding: 0 20px;
  background: linear-gradient(135deg, #61b8ff, #a477f4);
  color: white;
  font-weight: 780;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(103, 183, 255, 0.2);
}

.waitlist-row button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.waitlist-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.waitlist-form p,
.release-note,
.noscript-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.release-note {
  display: flex;
  max-width: 650px;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.release-note span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.04);
}

.phone-preview {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 44px;
  padding: 24px;
  background:
    linear-gradient(165deg, rgba(9, 17, 33, 0.96), rgba(23, 12, 33, 0.96)),
    radial-gradient(circle at 50% 0%, rgba(103, 183, 255, 0.22), transparent 16rem);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.phone-preview::after {
  content: "";
  position: absolute;
  inset: auto -12% -20% 20%;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 140, 255, 0.22), transparent 68%);
}

.phone-bar {
  display: flex;
  justify-content: space-between;
  color: #edf3ff;
  font-size: 15px;
  font-weight: 720;
}

.today-card,
.orbit-card,
.feature-card,
.trust-panel {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.today-card {
  margin-top: 72px;
  padding: 22px;
}

.today-card strong {
  display: block;
  margin-top: 14px;
  font-size: 31px;
}

.today-card p,
.feature-card p,
.trust-panel p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.5;
}

.orbit-card {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  padding: 18px;
}

.orbit-card > span {
  display: block;
  margin-bottom: 14px;
  color: #dce7ff;
  font-weight: 760;
}

.planet-row {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.planet-row:first-of-type {
  border-top: 0;
}

.planet-row i {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 30%, #dbeaff, #5f92d8 60%, #263852);
  box-shadow: 0 0 20px rgba(103, 183, 255, 0.26);
}

.planet-row.violet i {
  background: radial-gradient(circle at 35% 30%, #ffd8fb, #c267b4 60%, #432443);
}

.planet-row.gold i {
  background: radial-gradient(circle at 35% 30%, #fff0b4, #9d8950 60%, #3d3829);
}

.planet-row b {
  font-size: 15px;
}

.planet-row em {
  color: var(--blue);
  font-style: normal;
  font-weight: 760;
}

.planet-row.violet em {
  color: var(--rose);
}

.planet-row.gold em {
  color: var(--gold);
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.feature-card {
  min-height: 190px;
  padding: 20px;
}

.feature-card h2 {
  margin-top: 16px;
  font-size: 23px;
  line-height: 1.1;
}

.feature-card.locked {
  background:
    linear-gradient(150deg, rgba(21, 31, 54, 0.88), rgba(38, 24, 54, 0.88));
}

.feature-card.locked::after {
  content: "Locked preview";
  display: inline-flex;
  margin-top: 18px;
  border: 1px solid rgba(103, 183, 255, 0.34);
  border-radius: 999px;
  padding: 7px 10px;
  color: #bfe4ff;
  font-size: 12px;
}

.trust-panel {
  margin-top: 14px;
  padding: 24px;
}

.trust-panel h2 {
  font-size: 26px;
}

@media (max-width: 860px) {
  .page-shell {
    width: min(100% - 24px, 620px);
    padding-top: 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(40px, 12vw, 64px);
  }

  .phone-preview {
    min-height: 460px;
    border-radius: 34px;
  }

  .feature-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .release-toast {
    top: 10px;
    grid-template-columns: 1fr;
    gap: 12px;
    border-radius: 18px;
  }

  .release-toast button {
    justify-self: start;
  }

  .hero-actions {
    display: block;
  }

  .secondary-action {
    margin-top: 12px;
    width: 100%;
  }

  .waitlist-row {
    grid-template-columns: 1fr;
  }

  .waitlist-row button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .release-toast {
    transition: none;
  }
}
