:root {
  color-scheme: light;
  --page: #f5f3ee;
  --page-soft: #f7f7f5;
  --ink: #09090a;
  --muted: #6f6f6f;
  --muted-dark: #4d4d4d;
  --line: rgba(10, 10, 10, 0.08);
  --line-strong: rgba(10, 10, 10, 0.14);
  --card: rgba(255, 255, 255, 0.72);
  --glass: rgba(255, 255, 255, 0.58);
  --black: #0b0b0c;
  --white: #ffffff;
  --blue: #4e8df6;
  --green: #23885c;
  --amber: #bb7a28;
  --red: #bf4d3c;
  --shadow-soft: 0 30px 90px rgba(31, 35, 42, 0.12);
  --shadow-object: 0 46px 110px rgba(9, 12, 18, 0.34);
  --max: 1240px;
  --radius-hero: 44px;
  --radius-card: 28px;
  --radius-phone: 50px;
  --phone-ratio: 484 / 932;
  --pill: 999px;
  --font: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 13%, rgba(78, 141, 246, 0.22), transparent 30rem),
    radial-gradient(circle at 13% 17%, rgba(255, 222, 183, 0.48), transparent 34rem),
    linear-gradient(180deg, var(--page) 0%, var(--page-soft) 48%, #f2f0eb 100%);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  display: none;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.68), transparent 34rem);
}

img {
  display: block;
  max-width: 100%;
}

[dir="rtl"] {
  text-align: right;
}

[dir="rtl"] .hero-actions,
[dir="rtl"] .waitlist-proof,
[dir="rtl"] .beta-points,
[dir="rtl"] .footer-links {
  justify-content: flex-start;
}


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

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

:focus-visible {
  outline: 3px solid rgba(78, 141, 246, 0.72);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 1000;
  transform: translateY(-150%);
  border-radius: var(--pill);
  background: var(--black);
  color: var(--white);
  padding: 12px 16px;
  font-weight: 760;
}

.skip-link:focus {
  transform: translateY(0);
}

.floating-nav {
  position: fixed;
  top: 24px;
  left: 50%;
  z-index: 100;
  width: min(calc(100% - 40px), 980px);
  min-height: 66px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 60px rgba(28, 31, 36, 0.12);
  backdrop-filter: blur(24px) saturate(1.25);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 1.02rem;
  font-weight: 820;
  letter-spacing: -0.04em;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(9, 9, 10, 0.12);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-links a,
.nav-cta,
.button,
.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--pill);
  font-size: 0.92rem;
  font-weight: 720;
  letter-spacing: -0.02em;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.nav-links a {
  padding: 0 13px;
  color: var(--muted-dark);
}

.nav-links a:hover {
  background: rgba(9, 9, 10, 0.05);
  color: var(--ink);
}

.nav-cta,
.button-primary {
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(9, 9, 10, 0.22);
}

.nav-cta {
  padding: 0 18px;
}

.nav-cta-secondary {
  border-color: #0071e3;
  background: #0071e3;
  color: var(--white);
  box-shadow: 0 14px 30px rgba(0, 113, 227, 0.2);
}

.button {
  padding: 0 24px;
}

.button-secondary {
  border: 1px solid #0071e3;
  background: #0071e3;
  color: var(--white);
  box-shadow: 0 14px 34px rgba(0, 113, 227, 0.18);
}

.nav-cta:hover,
.button-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 42px rgba(9, 9, 10, 0.25);
}

.nav-cta-secondary:hover,
.button-secondary:hover {
  transform: translateY(-1px);
  background: #0077ed;
  border-color: #0077ed;
  box-shadow: 0 18px 38px rgba(0, 113, 227, 0.24);
}

.text-link {
  color: var(--ink);
  padding: 0 4px;
}

.text-link::after {
  content: "->";
  margin-left: 8px;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(3px);
}

.hero {
  position: relative;
  min-height: 94svh;
  display: flex;
  align-items: center;
  padding: 126px 24px 72px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: auto -14vw -24vw auto;
  width: min(76vw, 980px);
  aspect-ratio: 1;
  border-radius: 50%;
  content: "";
  background:
    radial-gradient(circle at 50% 42%, rgba(78, 141, 246, 0.26), transparent 38%),
    radial-gradient(circle at 38% 62%, rgba(255, 188, 124, 0.23), transparent 32%),
    rgba(255, 255, 255, 0.24);
  filter: blur(2px);
}

.hero-glow {
  position: absolute;
  top: 11%;
  left: 50%;
  width: min(90vw, 1120px);
  height: min(56vw, 620px);
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.82), transparent 68%);
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(430px, 0.92fr);
  align-items: center;
  gap: clamp(34px, 6vw, 96px);
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin-bottom: 18px;
  color: #174f9e;
  font-size: 0.78rem;
  font-weight: 860;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1 {
  max-width: 700px;
  margin-bottom: 20px;
  font-size: clamp(4.1rem, 7.4vw, 7.9rem);
  line-height: 0.86;
  letter-spacing: -0.068em;
  text-wrap: balance;
  overflow-wrap: break-word;
  hyphens: none;
}

.hero-support {
  max-width: 620px;
  margin-bottom: 22px;
  color: rgba(9, 9, 10, 0.28);
  font-size: clamp(2rem, 3.65vw, 4.05rem);
  font-weight: 820;
  line-height: 1;
  letter-spacing: -0.05em;
  overflow-wrap: break-word;
  hyphens: auto;
}

.hero-body {
  max-width: 560px;
  margin-bottom: 34px;
  color: var(--muted-dark);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  line-height: 1.58;
  letter-spacing: -0.018em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.hero-device {
  position: relative;
  min-height: 630px;
  display: grid;
  place-items: center;
  justify-self: end;
  width: min(56vw, 720px);
}

.hero-device::before {
  position: absolute;
  inset: 7% 1% 2% -8%;
  display: block;
  content: "";
  background:
    radial-gradient(circle at 58% 42%, rgba(255, 255, 255, 0.86), transparent 34%),
    linear-gradient(90deg, rgba(247, 247, 245, 0), rgba(247, 247, 245, 0.62) 10%, rgba(247, 247, 245, 0.78) 100%);
  filter: blur(18px);
  pointer-events: none;
}

.hero-render-frame {
  position: relative;
  z-index: 2;
  width: min(100%, 650px);
  overflow: visible;
  display: block;
  filter:
    drop-shadow(0 42px 78px rgba(9, 12, 18, 0.22))
    drop-shadow(0 12px 28px rgba(9, 12, 18, 0.14));
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 100%);
}

.hero-render-frame::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, var(--cream) 0%, rgba(247, 247, 245, 0) 8%),
    linear-gradient(180deg, var(--cream) 0%, rgba(247, 247, 245, 0) 7%),
    linear-gradient(0deg, var(--cream) 0%, rgba(247, 247, 245, 0) 5%);
}

.hero-render {
  width: 100%;
  height: auto;
  border-radius: 0;
  mix-blend-mode: multiply;
  transform: none;
}

.phone-object,
.screen-phone {
  position: relative;
  overflow: hidden;
  aspect-ratio: var(--phone-ratio);
  border-radius: var(--radius-phone);
  background:
    linear-gradient(180deg, #565d69 0%, #222730 14%, #0b0e14 38%, #171b23 74%, #06080d 100%);
  box-shadow:
    0 38px 90px rgba(9, 12, 18, 0.28),
    0 14px 30px rgba(9, 12, 18, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
  isolation: isolate;
  outline: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-object {
  width: min(100%, 468px);
  transform: rotate(1.4deg) translateY(8px);
}

.phone-object::before,
.screen-phone::before {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 4;
  width: 34%;
  max-width: 148px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  content: "";
  background: #05070d;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 2px 6px rgba(0, 0, 0, 0.18);
  transform: translateX(-50%);
  pointer-events: none;
}

.phone-object::after,
.screen-phone::after {
  position: absolute;
  inset: 0;
  z-index: 5;
  border-radius: calc(var(--radius-phone) - 8px);
  pointer-events: none;
  content: "";
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.18), transparent 24%, transparent 70%, rgba(255, 255, 255, 0.05)),
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.02) 100%);
  mix-blend-mode: screen;
}

.phone-object > img,
.screen-phone > img {
  position: absolute;
  inset: 9px;
  z-index: 1;
  width: calc(100% - 18px);
  height: calc(100% - 18px);
  object-fit: cover;
  object-position: center top;
  background: #070a11;
  border-radius: calc(var(--radius-phone) - 12px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 0 1px rgba(0, 0, 0, 0.28);
}

.truth-chip,
.tomorrow-note {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(23, 26, 31, 0.12);
  backdrop-filter: blur(18px);
  font-size: 0.88rem;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.truth-chip {
  padding: 12px 15px;
}

.truth-one {
  top: 14%;
  left: -2%;
}

.truth-two {
  top: 40%;
  right: -8%;
}

.truth-three {
  left: -4%;
  bottom: 22%;
}

.tomorrow-note {
  right: 5%;
  bottom: 11%;
  margin: 0;
  padding: 13px 16px;
}

.section,
.site-footer {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.section {
  padding: clamp(84px, 11vw, 150px) 0;
}

.section-heading {
  max-width: 740px;
  margin-bottom: clamp(32px, 5vw, 62px);
}

.section-heading-wide {
  max-width: 880px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 6.2vw, 6.9rem);
  line-height: 0.9;
  letter-spacing: -0.064em;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.32rem;
  line-height: 1.05;
  letter-spacing: -0.042em;
}

.flow-section {
  border-radius: var(--radius-hero);
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.92), transparent 22rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(239, 237, 231, 0.64));
  padding: clamp(40px, 6vw, 78px);
  box-shadow: none;
}

.flow-section .section-heading {
  margin-bottom: clamp(30px, 4vw, 48px);
}

.flow-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
}

.flow-track::before {
  display: none;
}

.flow-step {
  position: relative;
  min-height: 210px;
  border-top: 1px solid rgba(10, 10, 10, 0.1);
  border-radius: 0;
  background: transparent;
  padding: 26px 8px 0 0;
  box-shadow: none;
}

.flow-step::before {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background: rgba(9, 9, 10, 0.72);
  box-shadow: 0 0 0 8px rgba(9, 9, 10, 0.06);
}

.flow-step span {
  display: block;
  margin-bottom: 42px;
  color: rgba(9, 9, 10, 0.18);
  font-size: clamp(3rem, 5vw, 5.8rem);
  font-weight: 850;
  line-height: 0.8;
  letter-spacing: -0.07em;
}

.flow-step p,
.mission-tile p,
.readiness-copy p,
.status-row p,
.waitlist-copy p,
.faq-list p {
  color: var(--muted);
  line-height: 1.55;
}

.flow-step p {
  max-width: 280px;
  margin-bottom: 0;
  font-size: 1rem;
}

.mission-panel {
  display: grid;
  grid-template-columns: minmax(270px, 0.46fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.mission-copy {
  align-self: center;
}

.mission-copy h2 {
  margin-bottom: 22px;
}

.mission-copy p:not(.eyebrow) {
  max-width: 390px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.mission-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.mission-tile {
  min-height: 172px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 14px;
  border: 1px solid rgba(10, 10, 10, 0.06);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.54));
  padding: 20px;
  box-shadow: 0 18px 50px rgba(28, 31, 36, 0.05);
}

.mission-featured {
  grid-row: span 2;
  min-height: 354px;
  align-content: end;
  background:
    radial-gradient(circle at 50% 20%, rgba(78, 141, 246, 0.16), transparent 13rem),
    #0b0b0c;
  color: var(--white);
}

.mission-tile span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: rgba(9, 9, 10, 0.07);
  color: var(--ink);
  font-weight: 830;
}

.mission-featured span {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1.25rem;
}

.mission-tile h3 {
  margin: 0;
}

.mission-tile p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.mission-featured p {
  color: rgba(255, 255, 255, 0.68);
}

.readiness-board {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 0.82fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(10, 10, 10, 0.06);
  border-radius: 42px;
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 113, 227, 0.1), transparent 22rem),
    linear-gradient(135deg, #ffffff, rgba(246, 244, 239, 0.72));
  padding: clamp(34px, 6vw, 72px);
  box-shadow: 0 22px 80px rgba(28, 31, 36, 0.06);
}

.readiness-copy h2 {
  margin-bottom: 28px;
}

.readiness-copy p {
  max-width: 500px;
  margin-bottom: 0;
  font-size: 1.1rem;
}

.status-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(10, 10, 10, 0.07);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.76);
}

.status-row {
  display: grid;
  grid-template-columns: 12px 1fr;
  align-content: start;
  gap: 12px;
  min-height: auto;
  border: 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.07);
  border-radius: 0;
  background: transparent;
  padding: 18px 20px;
}

.status-row:last-child {
  border-bottom: 0;
}

.status-row span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.status-row strong {
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.status-row p {
  grid-column: 2;
  margin: 0;
  font-size: 0.93rem;
}

.status-row.ready span {
  background: var(--green);
}

.status-row.access span {
  background: var(--blue);
}

.status-row.degraded span {
  background: var(--amber);
}

.status-row.attention span {
  background: var(--red);
}

.beta-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.62fr);
  gap: clamp(28px, 6vw, 72px);
  justify-items: stretch;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(0, 113, 227, 0.14);
  border-radius: 42px;
  background:
    radial-gradient(circle at 14% 0%, rgba(0, 113, 227, 0.18), transparent 24rem),
    radial-gradient(circle at 96% 10%, rgba(255, 255, 255, 0.95), transparent 20rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(241, 248, 255, 0.9));
  color: var(--ink);
  padding: clamp(42px, 6vw, 76px) clamp(22px, 5vw, 68px);
  text-align: left;
  box-shadow: 0 28px 80px rgba(0, 64, 128, 0.1);
}

.beta-panel::before {
  position: absolute;
  inset: 1px;
  pointer-events: none;
  content: "";
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0)) 0 0 / 100% 1px no-repeat,
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.9), transparent 36%);
  opacity: 0.8;
}

.beta-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: start;
}

.beta-copy .eyebrow {
  color: #0066cc;
}

.beta-copy h2 {
  max-width: 680px;
  margin-bottom: 14px;
  font-size: clamp(3.1rem, 5.8vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.068em;
}

.beta-copy p {
  max-width: 560px;
  margin-bottom: 24px;
  color: rgba(9, 9, 10, 0.62);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  line-height: 1.5;
}

.beta-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.beta-points span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  color: rgba(9, 9, 10, 0.72);
  font-size: 1rem;
  font-weight: 720;
  letter-spacing: -0.02em;
}

.beta-points span::before {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  margin-right: 10px;
  border-radius: 50%;
  content: "✓";
  background: #0071e3;
  color: var(--white);
  font-size: 0.76rem;
}

.beta-form {
  position: relative;
  z-index: 1;
  width: 100%;
  grid-template-columns: 1fr;
  align-items: stretch;
  border-color: rgba(0, 113, 227, 0.1);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.84);
  padding: 18px;
  box-shadow: 0 22px 50px rgba(0, 64, 128, 0.09);
  text-align: left;
}

.beta-form .field span {
  padding-left: 7px;
  color: rgba(9, 9, 10, 0.58);
}

.beta-form .field input {
  border-color: rgba(0, 113, 227, 0.13);
  background: rgba(255, 255, 255, 0.96);
  min-height: 54px;
  border-radius: 18px;
}

.beta-submit {
  min-height: 56px;
  background: #0071e3;
  color: var(--white);
  border-color: #0071e3;
  box-shadow: 0 16px 34px rgba(0, 113, 227, 0.2);
}

.beta-submit:hover {
  transform: translateY(-1px);
  background: #0077ed;
  border-color: #0077ed;
}

.beta-form .form-note,
.beta-form .waitlist-status {
  padding: 0 8px;
  color: rgba(9, 9, 10, 0.54);
  text-align: left;
}

.beta-form .form-note a {
  color: #0066cc;
}

.screen-phone {
  grid-area: 1 / 1;
  width: min(100%, 402px);
}

.screen-primary {
  justify-self: start;
  align-self: end;
  transform: translate(54px, 36px) rotate(-7deg);
}

.screen-secondary {
  width: min(100%, 384px);
  justify-self: end;
  align-self: start;
  transform: translate(-58px, 10px) rotate(7deg);
}

.screen-phone figcaption {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 5;
  transform: translateX(-50%);
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.72);
  padding: 10px 14px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 760;
  white-space: nowrap;
  backdrop-filter: blur(14px);
}

.waitlist-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.62fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  overflow: hidden;
  border-radius: var(--radius-hero);
  background:
    radial-gradient(circle at 16% 22%, rgba(78, 141, 246, 0.28), transparent 23rem),
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.12), transparent 18rem),
    #0b0b0c;
  color: var(--white);
  padding: clamp(34px, 6vw, 76px);
  box-shadow: 0 34px 90px rgba(9, 9, 10, 0.24);
}

.waitlist-copy .eyebrow {
  color: #9fc2ff;
}

.waitlist-copy h2 {
  margin-bottom: 24px;
}

.waitlist-copy p {
  max-width: 450px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.12rem;
}

.waitlist-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.waitlist-proof span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.76);
  padding: 0 14px;
  font-size: 0.9rem;
  font-weight: 720;
}

.waitlist-form {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  backdrop-filter: blur(18px);
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 720;
}

.field small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  padding: 15px 16px;
  outline: none;
}

.field textarea {
  resize: vertical;
  min-height: 104px;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(78, 141, 246, 0.84);
  box-shadow: 0 0 0 4px rgba(78, 141, 246, 0.18);
}

.waitlist-submit {
  width: 100%;
  min-height: 52px;
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  box-shadow: none;
}

.waitlist-submit:disabled {
  cursor: progress;
  opacity: 0.7;
}

.waitlist-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-note,
.waitlist-status {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
  line-height: 1.45;
}

.form-note a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.waitlist-status[data-state="success"] {
  color: #a9f2ce;
}

.waitlist-status[data-state="error"] {
  color: #ffb3a9;
}

.waitlist-status[data-state="pending"] {
  color: #cfe0ff;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
  border-radius: var(--radius-hero);
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 255, 255, 0.76), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(241, 239, 233, 0.72));
  padding: clamp(34px, 6vw, 68px);
}

.faq-list {
  max-width: none;
  margin-left: 0;
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid rgba(10, 10, 10, 0.06);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  padding: 0 22px;
  box-shadow: 0 12px 30px rgba(28, 31, 36, 0.04);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  font-weight: 780;
  letter-spacing: -0.03em;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before {
  content: "+";
  display: inline-block;
  width: 24px;
  color: var(--muted);
}

.faq-list details[open] summary::before {
  content: "-";
}

.faq-list p {
  margin: -4px 0 22px 24px;
  max-width: 650px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 28px 0 46px;
  color: var(--muted-dark);
}

.language-footer {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 6px;
}

.language-footer a {
  border: 1px solid rgba(9, 9, 10, 0.07);
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted-dark);
  padding: 8px 11px;
  font-size: 0.86rem;
  font-weight: 720;
}

.language-footer a:hover,
.language-footer a[aria-current="page"] {
  border-color: rgba(0, 113, 227, 0.18);
  background: rgba(0, 113, 227, 0.1);
  color: #0066cc;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-size: 0.94rem;
  font-weight: 680;
}

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

@media (max-width: 1080px) {
  .floating-nav {
    width: min(calc(100% - 28px), 900px);
  }

  .hero {
    padding-top: 116px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
    gap: 32px;
  }

  h1 {
    font-size: clamp(4.1rem, 9.4vw, 7.1rem);
  }

  .hero-support {
    font-size: clamp(2rem, 4.8vw, 3.6rem);
  }

  .hero-device {
    min-height: 520px;
    width: min(50vw, 620px);
  }

  .hero-render-frame {
    width: min(100%, 610px);
  }

  .truth-chip {
    display: none;
  }

  .mission-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mission-panel {
    grid-template-columns: 1fr;
  }

  .readiness-board,
  .beta-panel,
  .waitlist-panel {
    grid-template-columns: 1fr;
  }

  .faq-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .floating-nav {
    top: 12px;
    width: min(calc(100% - 20px), 520px);
    min-height: 58px;
    grid-template-columns: auto 1fr auto;
    justify-content: space-between;
    padding: 8px 8px 8px 12px;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    justify-self: end;
    gap: 6px;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.84rem;
  }

  .nav-cta-secondary {
    display: none;
  }

  .brand span {
    font-size: 0.98rem;
  }

  .hero {
    min-height: auto;
    padding: 104px 18px 62px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  h1 {
    max-width: 420px;
    font-size: clamp(3.15rem, 14vw, 4.85rem);
    line-height: 0.86;
    letter-spacing: -0.066em;
  }

  .hero-support {
    font-size: clamp(1.95rem, 9vw, 3.35rem);
  }

  .hero-actions {
    align-items: stretch;
    gap: 14px;
  }

  .button,
  .text-link {
    min-height: 50px;
  }

  .button-primary {
    flex: 1 1 100%;
  }

  .button-secondary {
    flex: 1 1 100%;
  }

  .text-link {
    justify-content: flex-start;
  }

  .hero-device {
    min-height: auto;
    width: min(100%, 440px);
    justify-self: center;
  }

  .hero-render-frame {
    width: min(100%, 430px);
    border-radius: 0;
  }

  .hero-render {
    width: 100%;
    transform: none;
  }

  .phone-object {
    width: min(86vw, 390px);
    transform: rotate(0deg);
  }

  .tomorrow-note {
    right: auto;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }

  .section,
  .site-footer {
    width: min(calc(100% - 32px), var(--max));
  }

  .section {
    padding: 76px 0;
  }

  h2 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .flow-track {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-left: 0;
  }

  .flow-track::before {
    display: none;
  }

  .flow-step {
    min-height: 170px;
    padding: 20px;
  }

  .flow-step::before {
    top: 20px;
    right: 20px;
    left: auto;
  }

  .flow-step span {
    margin-bottom: 16px;
    font-size: 3.7rem;
  }

  .mission-rail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: visible;
    gap: 10px;
    padding: 0;
    margin-inline: 0;
  }

  .mission-tile {
    min-height: 148px;
    padding: 16px;
  }

  .mission-featured {
    grid-column: 1 / -1;
    min-height: 184px;
  }

  .readiness-board,
  .beta-panel,
  .waitlist-panel,
  .faq-section {
    border-radius: 32px;
    padding: 26px;
  }

  .status-strip {
    grid-template-columns: 1fr;
  }

  .status-row {
    grid-template-columns: 10px 1fr;
    gap: 10px 12px;
    min-height: auto;
  }

  .status-row p {
    grid-column: 2;
  }

  .screen-phone {
    width: min(80vw, 332px);
  }

  .screen-primary {
    justify-self: start;
    align-self: end;
    transform: translate(-2px, 150px) rotate(-7deg);
  }

  .screen-secondary {
    width: min(76vw, 314px);
    margin-top: 0;
    justify-self: end;
    align-self: start;
    transform: translate(12px, 18px) rotate(7deg);
  }

  .beta-panel,
  .waitlist-panel {
    gap: 24px;
  }

  .beta-copy h2 {
    font-size: clamp(2.9rem, 13vw, 4.8rem);
  }

  .beta-points span {
    min-height: 34px;
  }

  .waitlist-form {
    padding: 14px;
  }

  .beta-form {
    grid-template-columns: 1fr;
    align-items: stretch;
    border-radius: 24px;
  }

  .beta-submit {
    width: 100%;
  }

  .faq-list {
    margin-left: 0;
  }

  .site-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .floating-nav {
    width: calc(100% - 16px);
  }

  .brand img {
    width: 30px;
    height: 30px;
  }

  .hero {
    padding-inline: 14px;
  }

  .hero-body {
    font-size: 1rem;
  }

  .hero-render-frame {
    border-radius: 0;
  }

  .phone-object {
    width: min(88vw, 356px);
  }

  .screen-primary {
    transform: translate(-6px, 164px) rotate(-7deg);
  }

  .screen-secondary {
    width: min(80vw, 300px);
    transform: translate(10px, 18px) rotate(7deg);
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
