:root {
  --bg: #070707;
  --bg-2: #0c0c0c;
  --surface: rgba(19, 19, 19, 0.8);
  --surface-strong: #121212;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(0, 229, 255, 0.33);
  --text: #eff6ff;
  --muted: #9aa8b8;
  --dim: #657384;
  --cyan: #00e5ff;
  --cyan-dark: #0091ad;
  --ember: #ff6a00;
  --volt: #c6ff00;
  --gold: #c9a227;
  --danger: #fb7185;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.44);
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Sora", "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 18% 12%, rgba(0, 229, 255, 0.14), transparent 34rem),
    radial-gradient(circle at 88% 18%, rgba(255, 106, 0, 0.12), transparent 28rem),
    linear-gradient(180deg, #050505 0%, var(--bg) 44%, #090909 100%);
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

::selection {
  background: var(--cyan);
  color: #031014;
}

.site-shell {
  min-height: 100vh;
  position: relative;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  z-index: -1;
}

.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  height: 68px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 9, 13, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  z-index: 100;
  transition: border-color 220ms ease, background 220ms ease, height 220ms ease;
}

.nav.scrolled {
  height: 60px;
  background: rgba(7, 9, 13, 0.92);
  border-color: rgba(0, 229, 255, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 229, 255, 0.45);
  border-radius: 12px;
  color: var(--cyan);
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 800;
  background:
    linear-gradient(135deg, rgba(0, 229, 255, 0.16), rgba(255, 106, 0, 0.12)),
    #090909;
  box-shadow: 0 0 26px rgba(0, 229, 255, 0.18);
}

.brand-name {
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.6vw, 34px);
}

.nav-links a {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cyan);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.theme-toggle {
  width: 52px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.theme-toggle:hover {
  border-color: rgba(0, 229, 255, 0.34);
  transform: translateY(-1px);
}

.theme-toggle-track {
  position: relative;
  width: 36px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.35), rgba(198, 255, 0, 0.25));
}

.theme-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text);
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.45);
  transition: transform 220ms ease, background 220ms ease;
}

html[data-theme="light"] .theme-toggle-thumb {
  transform: translateX(18px);
  background: #07111f;
}

.nav-cta,
.button-primary {
  color: #041014;
  background: linear-gradient(135deg, var(--cyan), #7cf5ff 45%, var(--volt));
  box-shadow: 0 14px 34px rgba(0, 229, 255, 0.18);
}

.button-primary:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(0, 229, 255, 0.28);
}

.button-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line);
}

.button-ghost:hover {
  border-color: rgba(0, 229, 255, 0.4);
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  border-radius: 999px;
}

.hero {
  min-height: 100vh;
  padding: 148px 24px 80px;
  display: grid;
  place-items: center;
}

.hero-grid {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 8px rgba(0, 229, 255, 0.1), 0 0 20px rgba(0, 229, 255, 0.8);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: var(--display);
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 770px;
  font-size: clamp(3.2rem, 7.2vw, 6.8rem);
}

h2 {
  font-size: clamp(2.3rem, 4.9vw, 4.8rem);
}

h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1.15;
}

.hero-lede {
  max-width: 670px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
  margin-top: 42px;
}

.proof-row div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.proof-row strong {
  display: block;
  color: var(--text);
  font-family: var(--display);
  font-size: 1.65rem;
  line-height: 1;
}

.proof-row span {
  display: block;
  margin-top: 6px;
  color: var(--dim);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-device {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 650px;
}

.phone-frame {
  position: relative;
  width: min(390px, 92vw);
  min-height: 620px;
  padding: 20px;
  border: 1px solid rgba(0, 229, 255, 0.28);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 12%),
    linear-gradient(145deg, rgba(20, 20, 20, 0.98), rgba(6, 6, 6, 0.98));
  box-shadow: var(--shadow), inset 0 0 0 8px rgba(255, 255, 255, 0.025);
  overflow: hidden;
  z-index: 2;
}

.phone-frame::before {
  content: "";
  position: absolute;
  inset: -20% -40%;
  background: conic-gradient(from 120deg, transparent, rgba(0, 229, 255, 0.18), transparent, rgba(255, 106, 0, 0.13), transparent);
  animation: rotateGlow 12s linear infinite;
  opacity: 0.5;
}

.phone-frame > * {
  position: relative;
  z-index: 1;
}

.phone-top,
.panel-head,
.exercise-row,
.mission-card,
.floating-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
}

.phone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 14px;
  border-radius: 18px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.status-pill {
  padding: 4px 8px;
  border-radius: 999px;
  color: #041014;
  background: var(--volt);
  font-size: 0.68rem;
}

.score-module {
  margin-top: 18px;
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 229, 255, 0.22), transparent 56%),
    rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(0, 229, 255, 0.2);
  text-align: center;
}

.score-module p,
.score-module span {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.score-module strong {
  display: block;
  margin: 8px 0 2px;
  color: var(--cyan);
  font-family: var(--display);
  font-size: 5.6rem;
  line-height: 1;
  text-shadow: 0 0 34px rgba(0, 229, 255, 0.42);
}

.fire-ring {
  width: 174px;
  height: 174px;
  margin: 18px auto 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #0b0f16 0 52%, transparent 53%),
    conic-gradient(var(--ember) 0deg 250deg, rgba(255, 255, 255, 0.09) 250deg 360deg);
  box-shadow: 0 0 46px rgba(255, 106, 0, 0.18);
}

.fire-ring span,
.fire-ring small {
  grid-area: 1 / 1;
}

.fire-ring span {
  margin-top: -14px;
  font-family: var(--display);
  font-size: 3.2rem;
  font-weight: 900;
}

.fire-ring small {
  margin-top: 58px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.metric-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.metric-item {
  display: grid;
  gap: 7px;
}

.metric-item span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.metric-item i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan) var(--value), rgba(255, 255, 255, 0.1) var(--value));
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.18);
}

.mission-card {
  margin-top: 18px;
  padding: 16px;
  border-radius: 20px;
}

.mission-card span,
.floating-card span,
.bento-card span,
.photo-card span {
  display: block;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mission-card strong {
  display: block;
  margin-top: 7px;
  font-size: 1rem;
}

.mission-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.floating-card {
  position: absolute;
  max-width: 220px;
  padding: 16px;
  border-radius: 18px;
  z-index: 3;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
}

.floating-card strong {
  display: block;
  margin-top: 8px;
  font-size: 0.95rem;
}

.card-one {
  top: 78px;
  right: 0;
}

.card-two {
  bottom: 110px;
  left: 0;
}

.signal-orbit {
  position: absolute;
  border: 1px solid rgba(0, 229, 255, 0.14);
  border-radius: 50%;
  animation: pulseOrbit 5s ease-in-out infinite;
}

.signal-orbit-one {
  width: 560px;
  height: 560px;
}

.signal-orbit-two {
  width: 420px;
  height: 420px;
  animation-delay: 1.3s;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 34px;
  padding: 16px 0;
  animation: ticker 28s linear infinite;
}

.ticker-track span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section {
  padding: clamp(76px, 9vw, 132px) 24px;
}

.section-head {
  width: min(820px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.section-head p:not(.eyebrow),
.split-copy p,
.world-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.persona-grid,
.bento-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.persona-card,
.bento-card,
.access-card,
.training-panel,
.vault-panel,
.photo-card,
.trust-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    var(--surface);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.2);
}

.persona-card {
  min-height: 250px;
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.persona-card:hover,
.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 255, 0.28);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 36px;
  border: 1px solid rgba(0, 229, 255, 0.26);
  border-radius: 50%;
  color: var(--cyan);
  font-family: var(--display);
  font-weight: 900;
}

.persona-card p,
.bento-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.split-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(350px, 1.08fr);
  align-items: center;
  gap: clamp(32px, 6vw, 86px);
}

.reverse {
  grid-template-columns: minmax(350px, 0.95fr) minmax(0, 1.05fr);
}

.feature-list {
  display: grid;
  gap: 13px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 14px 16px;
  border-left: 3px solid var(--cyan);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.feature-list strong {
  color: var(--text);
}

.training-panel {
  padding: clamp(22px, 4vw, 34px);
  border-radius: 14px;
  background:
    radial-gradient(circle at top right, rgba(255, 106, 0, 0.09), transparent 38%),
    radial-gradient(circle at bottom left, rgba(0, 229, 255, 0.15), transparent 42%),
    var(--surface-strong);
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 14px 16px;
  border-radius: 8px;
}

.panel-head span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.training-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 18px 0;
}

.training-stats div {
  padding: 18px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.training-stats strong {
  display: block;
  font-family: var(--display);
  font-size: 1.7rem;
}

.training-stats span {
  color: var(--dim);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.exercise-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 12px;
  padding: 17px;
  border-radius: 8px;
}

.exercise-row span {
  color: var(--muted);
}

.exercise-row.active {
  border-color: rgba(198, 255, 0, 0.28);
  background: rgba(198, 255, 0, 0.07);
}

.world-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.04)),
    #090909;
}

.world-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.9fr;
  gap: 16px;
}

.world-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 24px;
}

.photo-card {
  overflow: hidden;
  min-height: 440px;
  position: relative;
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.05);
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.86), transparent 58%);
}

.photo-card div {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
}

.photo-card strong {
  display: block;
  margin-top: 8px;
  font-family: var(--display);
  font-size: 1.3rem;
  line-height: 1.15;
}

.image-field-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 229, 255, 0.08), transparent 32%),
    rgba(255, 255, 255, 0.018);
}

.image-field-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 260px;
  gap: 16px;
}

.field-image-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.2);
}

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

.field-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.05);
}

.field-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.84), transparent 58%);
}

.field-image-card div {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
}

.field-image-card span {
  display: block;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.field-image-card strong {
  display: block;
  margin-top: 8px;
  color: #eff6ff;
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 1.12;
}

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

.bento-card {
  min-height: 260px;
  padding: 24px;
}

.bento-card.wide {
  grid-column: span 2;
  background:
    radial-gradient(circle at 20% 0%, rgba(201, 162, 39, 0.18), transparent 40%),
    var(--surface);
}

.privacy-section {
  background: #06080b;
}

.vault-panel {
  padding: clamp(26px, 5vw, 42px);
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(0, 229, 255, 0.17), transparent 40%),
    linear-gradient(145deg, rgba(20, 20, 20, 0.98), #070707);
}

.vault-lock {
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 229, 255, 0.28);
  border-radius: 50%;
  background: conic-gradient(var(--cyan), rgba(255, 255, 255, 0.08), var(--ember), rgba(255, 255, 255, 0.08), var(--cyan));
  box-shadow: 0 0 50px rgba(0, 229, 255, 0.16);
}

.vault-lock span {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 44%, var(--cyan) 44% 56%, transparent 56%),
    linear-gradient(0deg, transparent 44%, var(--cyan) 44% 56%, transparent 56%),
    #080808;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.vault-panel h3 {
  margin-top: 26px;
}

.vault-panel p {
  max-width: 420px;
  color: var(--muted);
}

.vault-lines {
  width: min(380px, 100%);
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.vault-lines span {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.trust-grid div {
  padding: 18px;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.88rem;
}

.access-section {
  padding-bottom: 110px;
}

.access-card {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(32px, 6vw, 70px);
  border-color: rgba(0, 229, 255, 0.22);
  border-radius: 14px;
  text-align: center;
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 229, 255, 0.22), transparent 38%),
    radial-gradient(circle at 80% 100%, rgba(255, 106, 0, 0.17), transparent 34%),
    #0c0c0c;
}

.access-text {
  max-width: 680px;
  margin: 22px auto 0;
  color: var(--muted);
}

.countdown {
  margin: 16px 0 0;
  color: var(--cyan);
  font-family: var(--display);
  font-weight: 900;
}

.waitlist-form {
  display: flex;
  gap: 10px;
  max-width: 650px;
  margin: 30px auto 0;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.waitlist-form input[type="email"] {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 18px;
  color: var(--text);
  background: transparent;
}

.waitlist-form input::placeholder {
  color: var(--dim);
}

.hidden-field,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  opacity: 0;
}

.form-note,
.form-status {
  margin: 16px 0 0;
  color: var(--dim);
  font-size: 0.9rem;
}

.form-status {
  min-height: 1.3em;
  color: var(--cyan);
  font-weight: 800;
}

.footer {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 42px 0 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.footer p {
  max-width: 520px;
  margin: 14px 0 0;
  color: var(--dim);
}

.footer-links {
  display: flex;
  gap: 18px;
  align-items: start;
}

.footer-links a {
  color: var(--muted);
  font-weight: 800;
}

.copyright {
  grid-column: 1 / -1;
  font-size: 0.86rem;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--cyan), var(--volt), var(--ember));
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
  z-index: 999;
  pointer-events: none;
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  width: 32rem;
  height: 32rem;
  pointer-events: none;
  opacity: 0.32;
  transform: translate(calc(var(--x, -999px) - 50%), calc(var(--y, -999px) - 50%));
  background: radial-gradient(circle, rgba(0, 229, 255, 0.12), transparent 62%);
  mix-blend-mode: screen;
  z-index: 1;
}

.nav,
main,
.footer {
  position: relative;
  z-index: 2;
}

.reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(28px) scale(0.985);
  transition: opacity 760ms ease, transform 760ms ease, filter 760ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

html:has(:target) .reveal {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.premium-tilt {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(0);
  transform-style: preserve-3d;
  transition: transform 200ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.premium-tilt:hover {
  box-shadow: 0 24px 70px rgba(0, 229, 255, 0.12), 0 18px 54px rgba(0, 0, 0, 0.22);
}

.photo-card img,
.field-image-card img,
.access-image-card img,
.definition-card img,
.story-card img {
  transform: scale(1.06) translateY(var(--image-shift, 0));
  transition: transform 220ms linear, filter 220ms ease;
  will-change: transform;
}

.photo-card:hover img,
.field-image-card:hover img,
.access-image-card:hover img,
.definition-card:hover img,
.story-card:hover img {
  filter: saturate(1) contrast(1.08);
}

html[data-theme="light"] {
  --bg: #f7fafc;
  --bg-2: #edf4f8;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --line: rgba(7, 17, 31, 0.12);
  --line-strong: rgba(0, 145, 173, 0.25);
  --text: #07111f;
  --muted: #526174;
  --dim: #788699;
  --shadow: 0 24px 70px rgba(21, 37, 54, 0.14);
}

html[data-theme="light"] body {
  background:
    radial-gradient(circle at 18% 12%, rgba(0, 145, 173, 0.12), transparent 34rem),
    radial-gradient(circle at 88% 18%, rgba(198, 255, 0, 0.15), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f5f9fc 48%, #edf4f8 100%);
}

html[data-theme="light"] .axis-page,
html[data-theme="light"] .forge-page,
html[data-theme="light"] .circle-page,
html[data-theme="light"] .vault-page,
html[data-theme="light"] .early-page {
  background:
    radial-gradient(circle at 14% 10%, rgba(0, 145, 173, 0.13), transparent 32rem),
    radial-gradient(circle at 84% 18%, rgba(198, 255, 0, 0.16), transparent 30rem),
    radial-gradient(circle at 50% 74%, rgba(255, 106, 0, 0.08), transparent 34rem),
    #f8fbfd !important;
}

html[data-theme="light"] .site-shell::before {
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(7, 17, 31, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 17, 31, 0.045) 1px, transparent 1px);
}

html[data-theme="light"] .nav,
html[data-theme="light"] .nav.scrolled,
html[data-theme="light"] .nav-links.open {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(7, 17, 31, 0.12);
  box-shadow: 0 18px 60px rgba(21, 37, 54, 0.12);
}

html[data-theme="light"] .brand-mark {
  background:
    linear-gradient(135deg, rgba(0, 229, 255, 0.16), rgba(198, 255, 0, 0.18)),
    #ffffff;
}

html[data-theme="light"] .button-ghost,
html[data-theme="light"] .theme-toggle,
html[data-theme="light"] .waitlist-form,
html[data-theme="light"] .phone-top,
html[data-theme="light"] .panel-head,
html[data-theme="light"] .exercise-row,
html[data-theme="light"] .mission-card,
html[data-theme="light"] .floating-card {
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(7, 17, 31, 0.12);
}

html[data-theme="light"] [class$="-card"]:not(.photo-card):not(.field-image-card):not(.access-image-card),
html[data-theme="light"] [class$="-panel"],
html[data-theme="light"] [class$="-dashboard"],
html[data-theme="light"] [class$="-command-top"],
html[data-theme="light"] [class$="-row"],
html[data-theme="light"] [class$="-node"],
html[data-theme="light"] .trust-grid div,
html[data-theme="light"] .proof-points div,
html[data-theme="light"] .discover-points div,
html[data-theme="light"] .rooms-points div,
html[data-theme="light"] .private-rules div,
html[data-theme="light"] .support-grid div,
html[data-theme="light"] .invite-points div,
html[data-theme="light"] .control-stack article,
html[data-theme="light"] .compat-stack a {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 252, 0.72)),
    rgba(255, 255, 255, 0.82) !important;
  border-color: rgba(7, 17, 31, 0.12) !important;
  box-shadow: 0 18px 54px rgba(21, 37, 54, 0.1) !important;
}

html[data-theme="light"] .world-section,
html[data-theme="light"] .privacy-section,
html[data-theme="light"] .access-image-section,
html[data-theme="light"] .image-field-section,
html[data-theme="light"] .compatibility-section,
html[data-theme="light"] .sos-section,
html[data-theme="light"] .invite-section {
  background:
    radial-gradient(circle at 18% 16%, rgba(0, 145, 173, 0.08), transparent 32%),
    #f4f8fb !important;
}

html[data-theme="light"] .phone-frame,
html[data-theme="light"] .axis-command-visual,
html[data-theme="light"] .forge-command,
html[data-theme="light"] .circle-system,
html[data-theme="light"] .vault-visual {
  --text: #eff6ff;
  --muted: #9aa8b8;
  --dim: #657384;
  color: #eff6ff;
}

html[data-theme="light"] .cursor-glow {
  opacity: 0.2;
  mix-blend-mode: multiply;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@keyframes pulseOrbit {
  0%,
  100% {
    transform: scale(0.95);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

@keyframes rotateGlow {
  to {
    transform: rotate(360deg);
  }
}

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

@media (max-width: 980px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .nav-links.open {
    position: fixed;
    inset: 86px 16px auto;
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(7, 9, 13, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-links.open a {
    padding: 15px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
  }

  .hero-grid,
  .split-layout,
  .reverse,
  .world-grid,
  .image-field-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 122px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-actions {
    justify-content: center;
  }

  .proof-row {
    margin-inline: auto;
  }

  .hero-device {
    min-height: 560px;
  }

  .phone-frame {
    min-height: 580px;
  }

  .floating-card,
  .signal-orbit {
    display: none;
  }

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

  .world-copy {
    padding-right: 0;
  }

  .photo-card,
  .photo-card img,
  .field-image-card,
  .field-image-card img {
    min-height: 360px;
  }

  .field-image-card.tall {
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .nav {
    left: 12px;
    width: min(calc(100vw - 24px), 366px);
    transform: none;
    top: 12px;
    padding-left: 12px;
  }

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

  .hero,
  .section {
    padding-inline: 16px;
  }

  .hero-grid,
  .hero-copy,
  .section-head,
  .split-copy,
  .world-copy {
    width: 100%;
    min-width: 0;
    max-width: calc(100vw - 32px);
  }

  h1 {
    width: min(100%, 350px);
    max-width: 350px;
    margin-inline: auto;
    font-size: clamp(2.2rem, 10vw, 2.8rem);
    line-height: 1.06;
    overflow-wrap: break-word;
    word-break: normal;
  }

  h2 {
    font-size: clamp(2.15rem, 11vw, 3.2rem);
  }

  .hero-lede {
    width: min(100%, 310px);
    max-width: 310px;
    margin-inline: auto;
    font-size: 1rem;
  }

  .hero-actions {
    width: min(100%, 350px);
  }

  .proof-row {
    width: min(100%, 310px);
  }

  .hero-actions .button {
    flex: 1 1 100%;
    width: 100%;
  }

  .proof-row,
  .persona-grid,
  .bento-grid,
  .trust-grid,
  .training-stats,
  .image-field-grid {
    grid-template-columns: 1fr;
  }

  .hero-device {
    min-height: auto;
  }

  .phone-frame {
    min-height: auto;
    border-radius: 26px;
  }

  .score-module strong {
    font-size: 4.4rem;
  }

  .fire-ring {
    width: 148px;
    height: 148px;
  }

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

  .waitlist-form {
    flex-direction: column;
    border-radius: 18px;
  }

  .waitlist-form input[type="email"] {
    min-height: 48px;
  }

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

  .footer {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

html[data-theme="light"] .nav-links.open a {
  background: rgba(7, 17, 31, 0.045);
}
