:root {
  color-scheme: dark;
  --bg: #1f1a36;
  --bg-top: #2b2549;
  --bg-bottom: #1f1a36;
  --panel: rgba(55, 48, 83, 0.62);
  --panel-strong: rgba(55, 48, 83, 0.86);
  --text: #fffdf9;
  --muted: rgba(255, 253, 249, 0.76);
  --quiet: rgba(255, 253, 249, 0.56);
  --soft: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.13);
  --accent: #d8b4fe;
  --accent-2: #a78bfa;
  --accent-3: #f4d8ff;
  --danger: #ff6f8a;
  --shadow: 0 24px 90px rgba(8, 6, 19, 0.48);
  --title-shadow:
    -0.7px 0 1.2px rgba(65, 54, 101, 0.72),
    0.7px 0 1.2px rgba(65, 54, 101, 0.72),
    0 -0.7px 1.2px rgba(65, 54, 101, 0.72),
    0 0.7px 1.2px rgba(65, 54, 101, 0.72),
    0 1.4px 7px rgba(65, 54, 101, 0.64),
    0 0 10px rgba(65, 54, 101, 0.52);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 0%, rgba(216, 180, 254, 0.2), transparent 30rem),
    radial-gradient(circle at 88% 18%, rgba(67, 217, 255, 0.12), transparent 28rem),
    linear-gradient(135deg, #0d0b19, var(--bg-bottom));
  color: var(--text);
}

body.menu-open {
  overflow: hidden;
}

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

video {
  pointer-events: none;
  user-select: none;
}

video::-webkit-media-controls,
video::-webkit-media-controls-panel,
video::-webkit-media-controls-play-button,
video::-webkit-media-controls-start-playback-button {
  display: none !important;
  opacity: 0 !important;
}

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
}

.site-header.is-scrolled {
  border-color: transparent;
  background: transparent;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1160px, calc(100% - 40px));
  height: 74px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  position: relative;
  z-index: 23;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
  filter: drop-shadow(0 8px 18px rgba(216, 180, 254, 0.22));
  text-shadow: var(--title-shadow);
}

.brand img {
  width: 46px;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  color: rgba(255, 253, 249, 0.72);
  text-shadow: 0 2px 14px rgba(23, 17, 42, 0.58);
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.footer-links a:hover,
.analytics-preference-control:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 23;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  filter:
    drop-shadow(0 8px 18px rgba(0, 0, 0, 0.62))
    drop-shadow(0 0 14px rgba(216, 180, 254, 0.3));
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
}

.nav-toggle span::before {
  transform: translateY(-6px);
}

.nav-toggle span::after {
  transform: translateY(4px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.94);
  color: #17151f;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  box-shadow:
    0 16px 34px rgba(12, 8, 27, 0.42),
    0 0 22px rgba(216, 180, 254, 0.14);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;
}

.button:hover {
  box-shadow:
    0 22px 48px rgba(12, 8, 27, 0.56),
    0 0 26px rgba(216, 180, 254, 0.22);
  transform: translateY(-2px);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  box-shadow:
    0 18px 38px rgba(12, 8, 27, 0.48),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  backdrop-filter: blur(18px) saturate(1.1);
}

.button.store {
  align-items: flex-start;
  min-width: 184px;
  padding: 9px 18px;
  justify-content: flex-start;
  box-shadow:
    0 24px 58px rgba(12, 8, 27, 0.58),
    0 0 28px rgba(216, 180, 254, 0.16);
}

.store-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.button.secondary .store-icon {
  filter: invert(1);
}

.button small {
  display: block;
  color: rgba(5, 6, 7, 0.62);
  font-size: 11px;
  line-height: 1;
}

.button.secondary small {
  color: rgba(247, 244, 239, 0.62);
}

.button strong {
  display: block;
  font-size: 15px;
  line-height: 1.2;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 22%, rgba(216, 180, 254, 0.12), transparent 26rem),
    linear-gradient(135deg, rgba(12, 10, 24, 0.96), rgba(20, 17, 34, 0.99)),
    var(--bg-bottom);
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(135deg, rgba(43, 37, 73, 0.92), rgba(12, 10, 22, 0.98)),
    var(--bg-bottom);
  pointer-events: none;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: blur(7px) saturate(0.72) contrast(1.05) brightness(0.58);
  transform: scale(1.03);
  transition: opacity 420ms ease;
}

.hero-video video.is-playing {
  opacity: 0.34;
}

.hero-video::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 28%, transparent 0 9rem, rgba(11, 10, 20, 0.18) 22rem, rgba(6, 5, 12, 0.62) 100%);
  content: "";
  mix-blend-mode: soft-light;
}

.hero-video::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(8, 7, 18, 0.94) 0%, rgba(31, 26, 54, 0.62) 42%, rgba(12, 10, 24, 0.36) 100%),
    linear-gradient(0deg, var(--bg-bottom) 0%, rgba(31, 26, 54, 0.22) 34%, transparent 72%),
    linear-gradient(155deg, rgba(216, 180, 254, 0.1), transparent 38%, rgba(67, 217, 255, 0.1));
  content: "";
}

.starfield-canvas {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.starfield-canvas {
  width: 100%;
  height: 100%;
  opacity: 0.6;
  mix-blend-mode: screen;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 56px;
  align-items: start;
  width: min(1160px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 190px 0 96px;
}

.hero-copy {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.hero-text-panel {
  position: relative;
  margin: 0 0 24px;
  padding: 28px;
}

.hero-text-panel::before {
  position: absolute;
  z-index: -1;
  content: "";
}

.hero-text-panel::before {
  inset: 0 -48px -36px;
  border-radius: 46% 54% 50% 48% / 42% 44% 56% 58%;
  background:
    radial-gradient(ellipse at 28% 42%, rgba(255, 255, 255, 0.2), transparent 0.2rem, transparent 19rem),
    radial-gradient(ellipse at 50% 48%, rgba(20, 18, 35, 0.94) 0%, rgba(31, 26, 54, 0.86) 38%, rgba(31, 26, 54, 0.54) 62%, rgba(31, 26, 54, 0) 76%),
    radial-gradient(ellipse at 18% 20%, rgba(216, 180, 254, 0.28), transparent 14rem),
    radial-gradient(ellipse at 82% 74%, rgba(125, 211, 252, 0.16), transparent 16rem);
  box-shadow:
    0 30px 90px rgba(4, 3, 10, 0.46),
    0 0 70px rgba(216, 180, 254, 0.1);
  filter: blur(2px);
  backdrop-filter: blur(22px) saturate(1.02);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.92;
  letter-spacing: 0;
  text-shadow: var(--title-shadow);
}

.lead {
  max-width: 620px;
  margin-bottom: 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #fff8ff 44%, #eadcff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-size: clamp(19px, 2.3vw, 24px);
  line-height: 1.48;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.38),
    0 5px 18px rgba(0, 0, 0, 0.68),
    0 0 22px rgba(216, 180, 254, 0.34);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
  max-width: 620px;
  margin-left: 28px;
  margin-top: 124px;
}

.store-option {
  display: flex;
  flex: 1 1 240px;
  max-width: 286px;
  flex-direction: column;
  align-self: stretch;
}

.store-option .button {
  width: 100%;
}

.availability-note,
.download-panel .availability-note {
  margin: 9px 4px 0;
  color: rgba(255, 253, 249, 0.68);
  font-size: 12px;
  line-height: 1.4;
  text-align: left;
}

.availability-note strong {
  color: rgba(255, 253, 249, 0.9);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 620px;
  margin-left: 28px;
  margin-top: 28px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(247, 244, 239, 0.8);
  font-size: 13px;
  font-weight: 700;
  box-shadow:
    0 12px 24px rgba(12, 8, 27, 0.24),
    0 0 12px rgba(216, 180, 254, 0.08) inset;
  text-shadow: 0 2px 12px rgba(23, 17, 42, 0.62);
  backdrop-filter: blur(18px) saturate(1.12);
}

.phone {
  width: min(100%, 370px);
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  background: #17151f;
  box-shadow:
    var(--shadow),
    0 0 42px rgba(216, 180, 254, 0.18);
  overflow: hidden;
  transform: translateZ(0);
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.speaker {
  width: 72px;
  height: 6px;
  border-radius: 99px;
  background: rgba(247, 244, 239, 0.2);
}

.phone-screen {
  position: relative;
  min-height: 630px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 14%, rgba(216, 180, 254, 0.2), transparent 15rem),
    linear-gradient(135deg, #2b2549 0%, #1f1a36 100%);
}

.app-preview {
  display: flex;
  min-height: 630px;
  flex-direction: column;
  gap: 14px;
  padding: 16px;
}

.app-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(247, 244, 239, 0.55);
  font-size: 12px;
  font-weight: 800;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-header span,
.app-mini-card span,
.app-coach > span {
  display: block;
  color: rgba(247, 244, 239, 0.55);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.app-header strong {
  display: block;
  margin-top: 4px;
  font-size: 25px;
  letter-spacing: 0;
}

.app-header img {
  width: 46px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(216, 180, 254, 0.24));
}

.app-hero-card {
  position: relative;
  min-height: 244px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #17151f;
}

.app-hero-card video {
  width: 100%;
  height: 244px;
  object-fit: cover;
  opacity: 0.54;
  filter: blur(1px) saturate(0.92) contrast(1.05);
}

.app-hero-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 26, 54, 0.1), rgba(31, 26, 54, 0.92)),
    linear-gradient(90deg, rgba(216, 180, 254, 0.18), transparent 64%);
  content: "";
}

.app-hero-overlay {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.metric {
  padding: 12px 14px;
  border: 1px solid rgba(247, 244, 239, 0.18);
  border-radius: 8px;
  background: rgba(55, 48, 83, 0.62);
  backdrop-filter: blur(14px);
}

.metric span {
  display: block;
  color: rgba(247, 244, 239, 0.62);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.metric strong {
  display: block;
  margin-top: 2px;
  font-size: 24px;
}

.cue {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 16px;
  border: 1px solid rgba(247, 244, 239, 0.18);
  border-radius: 8px;
  background: rgba(55, 48, 83, 0.72);
  backdrop-filter: blur(16px);
}

.cue p {
  margin-bottom: 8px;
  color: var(--accent);
  font-weight: 800;
}

.cue small {
  color: rgba(247, 244, 239, 0.7);
}

.app-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.app-mini-card,
.app-start,
.app-coach,
.app-tabs {
  border: 1px solid rgba(247, 244, 239, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow:
    0 18px 32px rgba(12, 8, 27, 0.16),
    0 0 12px rgba(255, 255, 255, 0.04) inset;
  backdrop-filter: blur(18px) saturate(1.1);
}

.app-mini-card {
  min-height: 96px;
  padding: 14px;
}

.app-mini-card strong {
  display: block;
  margin: 8px 0 2px;
  font-size: 30px;
}

.app-mini-card small,
.app-coach small {
  color: rgba(247, 244, 239, 0.62);
}

.app-start {
  display: block;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(216, 180, 254, 0.26), rgba(167, 139, 250, 0.12)),
    rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.app-start:hover {
  border-color: rgba(216, 180, 254, 0.48);
  transform: translateY(-1px);
}

.app-start span {
  display: block;
  color: var(--accent-3);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.app-start strong {
  display: block;
  margin-top: 5px;
  font-size: 18px;
}

.app-coach {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px;
}

.app-coach > span {
  flex: 0 0 82px;
}

.app-coach strong {
  display: block;
  margin-bottom: 3px;
  color: var(--accent);
}

.app-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  margin-top: auto;
  padding: 10px 8px;
  border-radius: 28px;
  color: rgba(247, 244, 239, 0.55);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.app-tabs span:first-child {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.13);
  color: var(--text);
  box-shadow:
    0 14px 22px rgba(12, 8, 27, 0.22),
    0 0 12px rgba(255, 255, 255, 0.07);
}

.section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0;
}

.section-header {
  max-width: 760px;
  margin-bottom: 30px;
}

.section h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-header p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.feature-grid,
.download-grid {
  display: grid;
  gap: 16px;
}

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

.feature,
.download-panel,
.legal-card {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)),
    rgba(55, 48, 83, 0.5);
  box-shadow:
    0 24px 70px rgba(12, 8, 27, 0.22),
    0 0 18px rgba(216, 180, 254, 0.05) inset;
  backdrop-filter: blur(22px) saturate(1.12);
}

.feature {
  min-height: 250px;
  padding: 24px;
  transition:
    opacity 800ms ease,
    filter 800ms ease,
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 320ms ease,
    background 320ms ease,
    box-shadow 320ms ease;
}

.feature:hover,
.legal-card:hover {
  border-color: rgba(216, 180, 254, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055)),
    rgba(55, 48, 83, 0.64);
  box-shadow:
    0 30px 86px rgba(12, 8, 27, 0.3),
    0 0 22px rgba(216, 180, 254, 0.1) inset;
  transform: translateY(-2px);
}

.icon {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 24px;
  padding: 0 11px;
  border: 1px solid rgba(216, 180, 254, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.feature h3 {
  max-width: 260px;
  margin-bottom: 14px;
  font-size: clamp(23px, 2.4vw, 30px);
  line-height: 1.06;
}

.feature p,
.download-panel p,
.legal-card p {
  color: var(--muted);
  line-height: 1.55;
}

.download {
  padding-bottom: 72px;
}

.download-grid {
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: stretch;
}

.download-panel {
  padding: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(216, 180, 254, 0.1)),
    rgba(55, 48, 83, 0.56);
}

.download-panel h2 {
  margin-bottom: 18px;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.mini-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
  color: rgba(247, 244, 239, 0.62);
  font-size: 13px;
}

.mini-legal a {
  color: var(--accent);
}

.legal-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  transition:
    opacity 700ms ease,
    transform 320ms ease,
    border-color 320ms ease,
    background 320ms ease,
    box-shadow 320ms ease;
}

.legal-card a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
  color: rgba(247, 244, 239, 0.62);
  font-size: 14px;
}

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

.footer-links a,
.analytics-preference-control {
  color: rgba(247, 244, 239, 0.7);
  text-decoration: none;
}

.analytics-preference-control {
  padding: 0;
  font: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.legal-page {
  width: min(790px, calc(100% - 40px));
  margin: 0 auto;
  padding: 122px 0 80px;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  color: rgba(247, 244, 239, 0.58);
  font-size: 14px;
}

.breadcrumbs a {
  color: rgba(247, 244, 239, 0.76);
  text-decoration: none;
}

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

.legal-page h1 {
  margin-bottom: 8px;
  font-size: clamp(40px, 7vw, 72px);
}

.legal-page h2 {
  margin: 36px 0 10px;
  font-size: 24px;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  line-height: 1.65;
}

.legal-page a {
  color: var(--accent);
}

.waitlist-page {
  display: grid;
  min-height: calc(100vh - 85px);
  place-items: center;
  padding: 118px 20px 54px;
}

.waitlist-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: 42px;
  align-items: center;
  width: min(980px, 100%);
}

.waitlist-copy {
  max-width: 500px;
}

.waitlist-kicker {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.waitlist-copy h1 {
  margin-bottom: 20px;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 0.96;
}

.waitlist-copy > p:not(.waitlist-kicker) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.waitlist-points {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.waitlist-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255, 253, 249, 0.78);
  line-height: 1.45;
}

.waitlist-points li::before {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(216, 180, 254, 0.55);
  content: "";
}

.waitlist-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(216, 180, 254, 0.07)),
    rgba(55, 48, 83, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(1.12);
}

.waitlist-card h2 {
  margin-bottom: 8px;
  font-size: 28px;
}

.waitlist-card > p {
  margin-bottom: 24px;
  color: var(--muted);
  line-height: 1.5;
}

.waitlist-form {
  display: grid;
  gap: 17px;
}

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

.form-field label,
.consent-row {
  color: rgba(255, 253, 249, 0.86);
  font-size: 14px;
  font-weight: 800;
}

.form-field input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9px;
  outline: none;
  background: rgba(9, 8, 18, 0.58);
  color: var(--text);
  font: inherit;
  box-shadow: 0 12px 30px rgba(8, 6, 19, 0.18) inset;
}

.form-field input:focus {
  border-color: rgba(216, 180, 254, 0.72);
  box-shadow:
    0 0 0 3px rgba(216, 180, 254, 0.13),
    0 12px 30px rgba(8, 6, 19, 0.18) inset;
}

.form-hint {
  color: var(--quiet);
  font-size: 12px;
  line-height: 1.45;
}

.consent-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  font-weight: 650;
  line-height: 1.45;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--accent-2);
}

.consent-row a,
.waitlist-back {
  color: var(--accent);
}

.waitlist-submit {
  width: 100%;
  cursor: pointer;
}

.waitlist-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.form-status.is-error {
  color: #ffb4c0;
}

.form-status.is-success {
  color: #c9f7d2;
}

.waitlist-back {
  display: inline-flex;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.honeypot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(12px);
  transition:
    opacity 900ms ease,
    filter 900ms ease,
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.section .feature,
.section .section-header,
.section .download-panel,
.section .legal-card {
  opacity: 0;
  filter: blur(16px);
  transform: translate3d(0, 112px, 0) scale(0.94);
  transition-delay: 0ms;
}

.section.is-visible .feature,
.section.is-visible .section-header,
.section.is-visible .download-panel,
.section.is-visible .legal-card {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.section .section-header,
.section .download-panel,
.section .legal-card {
  transition:
    opacity 1200ms ease,
    filter 1200ms ease,
    transform 1400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.section .feature:nth-child(1) {
  transform: translate3d(-64px, 112px, 0) scale(0.94);
}

.section .feature:nth-child(2),
.section .download-panel {
  transform: translate3d(0, 124px, 0) scale(0.94);
}

.section .feature:nth-child(3),
.section .legal-card {
  transform: translate3d(64px, 112px, 0) scale(0.94);
}

.section.is-visible .feature:nth-child(1),
.section.is-visible .feature:nth-child(2),
.section.is-visible .feature:nth-child(3),
.section.is-visible .download-panel,
.section.is-visible .legal-card {
  transform: translate3d(0, 0, 0) scale(1);
}

.section.is-visible .section-header {
  transition-delay: 0ms;
}

.section.is-visible .feature:nth-child(1),
.section.is-visible .download-panel {
  transition-delay: 150ms;
}

.section.is-visible .feature:nth-child(2),
.section.is-visible .legal-card {
  transition-delay: 280ms;
}

.section.is-visible .feature:nth-child(3) {
  transition-delay: 410ms;
}

.section.is-visible .feature:hover,
.section.is-visible .legal-card:hover {
  transform: translateY(-2px);
}

@media (min-width: 921px) {
  .hero-text-panel {
    padding: 46px 48px 28px;
    text-align: center;
  }

  .hero-text-panel::before {
    inset: -18px -48px -36px;
  }

  .hero-text-panel .lead {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: fixed;
    z-index: 22;
    top: 0;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 84px 20px 22px;
    border-bottom: 0;
    background:
      linear-gradient(180deg, rgba(55, 48, 83, 0.86), rgba(31, 26, 54, 0.72)),
      rgba(31, 26, 54, 0.68);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 24px 60px rgba(12, 8, 27, 0.45),
      inset 0 -120px 180px rgba(216, 180, 254, 0.06);
    backdrop-filter: blur(30px) saturate(1.22);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 15px 0;
    color: rgba(247, 244, 239, 0.9);
    font-size: 16px;
    font-weight: 800;
    text-align: left;
    text-shadow:
      0 4px 16px rgba(23, 17, 42, 0.92),
      0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .nav-links .button {
    width: 100%;
    margin: 8px 0 0;
  }

  .hero-inner,
  .download-grid,
  .waitlist-shell {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 34px;
    padding-top: 112px;
  }

  .phone {
    width: min(100%, 350px);
    margin: 0;
  }

  .phone-screen {
    min-height: 568px;
  }

  .app-preview {
    min-height: 568px;
  }

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

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

@media (max-width: 620px) {
  .nav,
  .hero-inner,
  .section,
  .footer-inner,
  .legal-page,
  .waitlist-page {
    width: min(100% - 28px, 1160px);
  }

  .hero {
    min-height: calc(100svh + 112px);
    min-height: calc(100dvh + 112px);
    background:
      radial-gradient(circle at 50% 46%, rgba(216, 180, 254, 0.16), transparent 22rem),
      linear-gradient(135deg, rgba(12, 10, 24, 0.96), rgba(20, 17, 34, 0.99)),
      var(--bg-bottom);
  }

  .hero-inner {
    display: flex;
    min-height: calc(100svh + 112px);
    min-height: calc(100dvh + 112px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    padding: 124px 0 34px;
    text-align: center;
  }

  .hero-video::before {
    background:
      radial-gradient(circle at 50% 46%, transparent 0 8rem, rgba(11, 10, 20, 0.16) 20rem, rgba(6, 5, 12, 0.6) 100%);
  }

  .hero-video::after {
    background:
      linear-gradient(180deg, rgba(31, 26, 54, 0.66) 0%, rgba(31, 26, 54, 0.16) 44%, rgba(31, 26, 54, 0.94) 100%),
      radial-gradient(circle at 50% 46%, rgba(216, 180, 254, 0.12), transparent 18rem),
      linear-gradient(90deg, rgba(31, 26, 54, 0.54), rgba(31, 26, 54, 0.18), rgba(31, 26, 54, 0.54));
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    padding-top: 0;
  }

  .hero-text-panel {
    margin: 76px 0 0;
    padding: 24px 18px;
    overflow: visible;
  }

  .hero-text-panel::before {
    inset: -10px 0 -14px;
    border-radius: 34% 38% 36% 34% / 30% 34% 36% 38%;
    background:
      radial-gradient(ellipse at 50% 50%, rgba(18, 16, 32, 0.98) 0%, rgba(29, 25, 50, 0.94) 56%, rgba(31, 26, 54, 0.72) 76%, rgba(31, 26, 54, 0) 92%),
      radial-gradient(ellipse at 18% 22%, rgba(216, 180, 254, 0.18), transparent 9rem),
      radial-gradient(ellipse at 82% 74%, rgba(125, 211, 252, 0.1), transparent 10rem);
    filter: blur(1px);
  }

  .hero h1,
  .lead {
    margin-right: auto;
    margin-left: auto;
  }

  .lead {
    font-size: 16.5px;
    line-height: 1.34;
  }

  .cta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: none;
    margin-left: 0;
    margin-top: var(--mobile-cta-gap, 92px);
  }

  .cta-row .store-option {
    max-width: none;
  }

  .button.store {
    min-width: 0;
    width: auto;
    min-height: 46px;
    padding: 8px 10px;
    gap: 8px;
  }

  .store-icon {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }

  .button strong {
    font-size: 12px;
  }

  .button small {
    font-size: 9px;
  }

  .trust-row {
    gap: 8px;
    justify-content: center;
    max-width: none;
    margin-left: 0;
    margin-top: 14px;
  }

  .pill {
    min-height: 31px;
    padding: 0 10px;
    font-size: 12px;
  }

  .phone {
    display: none;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section .feature:nth-child(1),
  .section .feature:nth-child(2),
  .section .feature:nth-child(3),
  .section .download-panel,
  .section .legal-card {
    transform: translate3d(0, 86px, 0) scale(0.94);
  }

  .section.is-visible .feature:nth-child(1),
  .section.is-visible .feature:nth-child(2),
  .section.is-visible .feature:nth-child(3),
  .section.is-visible .download-panel,
  .section.is-visible .legal-card {
    transform: translate3d(0, 0, 0) scale(1);
  }

  .section {
    padding: 46px 0 38px;
  }

  #features {
    padding-top: 86px;
  }

  .section-header {
    margin-right: auto;
    margin-bottom: 20px;
    margin-left: auto;
    text-align: center;
  }

  .section h2 {
    margin-bottom: 10px;
  }

  .feature {
    min-height: 0;
    padding: 16px;
    text-align: center;
  }

  .feature h3 {
    margin-right: auto;
    margin-left: auto;
  }

  .icon {
    margin-right: auto;
    margin-bottom: 16px;
    margin-left: auto;
  }

  .download {
    padding-bottom: 44px;
  }

  .download-panel {
    padding: 22px;
    text-align: center;
  }

  .store-row,
  .mini-legal {
    justify-content: center;
  }

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

  .store-row .store-option {
    width: 100%;
    max-width: none;
  }

  .availability-note,
  .download-panel .availability-note {
    text-align: center;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .waitlist-page {
    min-height: 0;
    padding: 108px 0 42px;
  }

  .waitlist-shell {
    gap: 28px;
  }

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

  .waitlist-points {
    width: min(390px, 100%);
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .waitlist-card {
    padding: 22px;
  }

  .app-header strong {
    font-size: 22px;
  }

  .app-hero-card,
  .app-hero-card video {
    min-height: 228px;
    height: 228px;
  }
}

@media (max-width: 360px) {
  .cta-row {
    grid-template-columns: 1fr;
  }

  .button.store {
    width: 100%;
  }

}

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

  .button:hover {
    transform: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
.analytics-consent {
  position: fixed;
  z-index: 1000;
  right: 20px;
  bottom: 20px;
  display: flex;
  width: min(520px, calc(100vw - 40px));
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  color: #171719;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(23, 23, 25, 0.12);
  border-radius: 22px;
  box-shadow: 0 20px 70px rgba(20, 18, 36, 0.18);
  backdrop-filter: blur(18px);
}

.analytics-consent strong {
  display: block;
  margin-bottom: 5px;
}

.analytics-consent p {
  margin: 0;
  color: #626268;
  font-size: 0.9rem;
  line-height: 1.4;
}

.analytics-consent-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.analytics-consent button {
  min-height: 42px;
  padding: 0 15px;
  color: #252529;
  font: inherit;
  font-weight: 700;
  background: #f2f1f5;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.analytics-consent button.primary {
  color: #fff;
  background: #6557e8;
}

@media (max-width: 620px) {
  .analytics-consent {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    flex-direction: column;
    align-items: stretch;
  }

  .analytics-consent-actions {
    justify-content: flex-end;
  }
}
