:root {
  --bg: #06111d;
  --bg-soft: #0d1f33;
  --card: rgba(10, 29, 48, 0.88);
  --card-strong: rgba(14, 34, 59, 0.96);
  --text: #edf8ff;
  --muted: #9ec6de;
  --line: rgba(122, 176, 214, 0.22);
  --blue: #1d8df2;
  --blue-soft: #8ed4ff;
  --gold: #f4c653;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  overscroll-behavior: none;
  background-color: #050d16;
  background:
    radial-gradient(circle at top right, rgba(41, 120, 201, 0.24), transparent 30%),
    radial-gradient(circle at 20% 10%, rgba(244, 198, 83, 0.14), transparent 28%),
    linear-gradient(180deg, #07111c 0%, #081827 44%, #050d16 100%);
}

body {
  margin: 0;
  min-width: 100%;
  min-height: 100vh;
  overscroll-behavior: none;
  background-color: #050d16;
  background:
    radial-gradient(circle at top right, rgba(41, 120, 201, 0.24), transparent 30%),
    radial-gradient(circle at 20% 10%, rgba(244, 198, 83, 0.14), transparent 28%),
    linear-gradient(180deg, #07111c 0%, #081827 44%, #050d16 100%);
  color: var(--text);
  font-family: "Inter", sans-serif;
}

.site-shell {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px 64px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: contain;
  background: rgba(7, 17, 28, 0.82);
  box-shadow: var(--shadow);
}

.brand-title-mark {
  display: block;
  width: min(240px, 48vw);
  height: auto;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.35));
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.topnav a,
.inline-link,
.support-link {
  color: var(--blue-soft);
  text-decoration: none;
}

.topnav a:hover,
.inline-link:hover,
.support-link:hover {
  text-decoration: underline;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
  min-height: auto;
  padding: 10px 0 32px;
}

.hero-logo-wrap {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 6px;
  padding-bottom: 6px;
}

.hero-welcome {
  margin: 0;
  max-width: none;
  text-align: center;
  font-size: clamp(2.75rem, 6vw, 4.7rem);
  color: #5AB3FF;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.42);
  opacity: 0;
  transform-origin: top center;
  animation: heroLogoReveal 1.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-copy,
.hero-visual {
  align-self: start;
}

@keyframes heroLogoReveal {
  0% {
    opacity: 0;
    transform: translateY(-42px) scale(0.14);
  }

  58% {
    opacity: 1;
    transform: translateY(0) scale(1.08);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  line-height: 0.95;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3.25rem, 8vw, 6.2rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: 25ch;
}

h3 {
  font-size: 1.55rem;
}

.hero-text,
.section-copy,
.feature-card p,
.shot-card p,
.video-card p,
.promo-copy p,
.promo-brief-copy li,
.support-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 58ch;
  margin: 14px 0 0;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  background: linear-gradient(135deg, #2ba6ff, #1678d1);
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(23, 128, 212, 0.35);
}

.button-secondary {
  border: 1px solid rgba(142, 212, 255, 0.25);
  background: rgba(14, 34, 59, 0.72);
  color: var(--text);
}

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

.hero-points li {
  position: relative;
  padding-left: 20px;
  color: var(--text);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
}

.phone-promo-card,
.feature-card,
.shot-card,
.video-card,
.support-card,
.promo-brief,
.sectionTabsCard {
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}

.phone-promo-card {
  border-radius: 28px;
  overflow: visible;
}

.promo-copy {
  position: relative;
  z-index: 1;
  padding: 20px 20px 28px;
}

.promo-label {
  margin: 0 0 6px;
  color: var(--blue-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mock-video-frame {
  position: relative;
  min-height: 400px;
  margin-top: 0;
  overflow: visible;
  border-radius: 0 0 28px 28px;
  background:
    linear-gradient(180deg, rgba(255, 190, 81, 0.15), rgba(0, 0, 0, 0) 35%),
    linear-gradient(180deg, #23384c 0%, #0c1520 54%, #090d12 100%);
}

.mock-track-glow {
  position: absolute;
  inset: auto -8% 18% -8%;
  height: 90px;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 82, 82, 0.42), transparent 18%),
    radial-gradient(circle at 50% 50%, rgba(255, 220, 112, 0.3), transparent 18%),
    radial-gradient(circle at 82% 50%, rgba(96, 197, 255, 0.38), transparent 18%);
  filter: blur(14px);
}

.mock-phone {
  position: absolute;
  right: 10%;
  top: -56px;
  width: 220px;
  height: 420px;
  z-index: 3;
  border-radius: 32px;
  padding: 12px;
  background: linear-gradient(180deg, #0a0f14, #1c232d);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  transform: rotate(-10deg);
}

.mock-phone-notch {
  width: 90px;
  height: 18px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.mock-phone-screen {
  position: relative;
  height: calc(100% - 28px);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(26, 80, 128, 0.94), rgba(8, 21, 36, 0.98)),
    linear-gradient(180deg, #1a4d7a, #0b1b2f);
  overflow: hidden;
}

.promo-video-embed {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000000;
  object-fit: cover;
}

.section {
  padding: 52px 0;
}

.hero + .section {
  padding-top: 8px;
}

.feature-overlap-section {
  position: relative;
  z-index: 2;
  margin-top: -200px;
  padding-top: 0;
}

.feature-overlap-section .section-heading {
  max-width: 52%;
  margin-bottom: 30px;
}

.section-heading {
  margin-bottom: 26px;
}

.section-copy {
  max-width: 60ch;
  margin-top: 14px;
}

.feature-grid,
.screenshot-grid,
.video-grid {
  display: grid;
  gap: 18px;
}

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

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

.feature-card,
.shot-card,
.video-card {
  border-radius: 24px;
  padding: 22px;
}

.shot-frame,
.video-placeholder,
.video-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  border: 1px dashed rgba(142, 212, 255, 0.35);
  background:
    linear-gradient(180deg, rgba(26, 77, 122, 0.52), rgba(10, 20, 34, 0.72));
}

.shot-frame {
  aspect-ratio: 9 / 16;
  margin-bottom: 16px;
  overflow: hidden;
  align-items: flex-start;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.shot-trigger {
  width: 100%;
  padding: 0;
  cursor: pointer;
}

.video-placeholder,
.video-frame {
  aspect-ratio: 9 / 16;
  margin-bottom: 16px;
}

.video-frame {
  overflow: hidden;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  cursor: pointer;
  position: relative;
  border: 0;
}

.video-embed {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000000;
  object-fit: contain;
}

.video-preview {
  object-fit: cover;
}

.video-play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 68px;
  height: 68px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(7, 17, 29, 0.68);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
}

.video-play-badge::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 21px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 21px solid #f3faff;
}

.shot-placeholder,
.video-placeholder span {
  padding: 12px;
  color: var(--blue-soft);
  font-weight: 700;
  text-align: center;
}

.shot-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.shot-lightbox[hidden] {
  display: none;
}

.shot-lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 20px 14px;
}

.shot-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 11, 20, 0.82);
}

.shot-lightbox-phone {
  position: relative;
  width: min(100%, 390px);
  height: min(92vh, 820px);
  border-radius: 34px;
  padding: 16px 14px 14px;
  background: linear-gradient(180deg, #0a0f14, #1c232d);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.46);
  z-index: 1;
}

.shot-lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #f3faff;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
  text-transform: lowercase;
}

.shot-lightbox-screen {
  height: 100%;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(26, 80, 128, 0.94), rgba(8, 21, 36, 0.98)),
    linear-gradient(180deg, #1a4d7a, #0b1b2f);
  overflow-y: auto;
  padding: 52px 8px 8px;
}

.shot-lightbox-image {
  display: block;
  width: 100%;
  height: auto;
}

.video-lightbox-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 52px 0 0;
}

.video-lightbox-player {
  display: block;
  width: 100%;
  height: 100%;
  background: #000000;
  object-fit: contain;
}

.promo-section .promo-brief {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  border-radius: 28px;
  padding: 24px;
}

.promo-brief-copy ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.promo-brief-copy li + li {
  margin-top: 10px;
}

.support-card {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
  border-radius: 24px;
  padding: 24px;
  flex-direction: column;
}

.support-copy {
  max-width: 620px;
  text-align: left;
}

.support-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.support-link {
  font-size: 1.05rem;
  font-weight: 700;
}

.support-button {
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin: 0 auto;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #78d2ff, #43aceb);
  color: #07213b;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(67, 172, 235, 0.28);
}

.waitlist-card {
  display: grid;
  gap: 22px;
  border-radius: 24px;
  padding: 24px;
  margin-bottom: 24px;
}

.waitlist-copy h3 {
  margin-top: 0;
}

.waitlist-copy p {
  color: var(--muted);
  max-width: 60ch;
}

.waitlist-points {
  margin: 18px 0 0;
  padding-left: 18px;
}

.waitlist-points li + li {
  margin-top: 10px;
}

.waitlist-form {
  display: grid;
  gap: 14px;
  max-width: 520px;
  justify-items: start;
}

.waitlist-field {
  display: grid;
  gap: 8px;
  width: 100%;
}

.waitlist-field-control {
  position: relative;
  width: 100%;
}

.waitlist-field span {
  color: #8ED4FF;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.waitlist-field input,
.waitlist-field textarea {
  width: 100%;
  border: 1px solid rgba(142, 212, 255, 0.22);
  border-radius: 16px;
  background: rgba(7, 17, 29, 0.66);
  color: var(--text);
  font: inherit;
  padding: 14px 44px 14px 16px;
}

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

.waitlist-field input::placeholder,
.waitlist-field textarea::placeholder {
  color: #7c9ab4;
  font-style: italic;
}

.waitlist-field-control-textarea .waitlist-clear {
  top: 16px;
  transform: none;
}

.waitlist-clear {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 999px;
  background: rgba(142, 212, 255, 0.12);
  color: #8ed4ff;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, background 160ms ease;
}

.waitlist-field-control.has-value .waitlist-clear {
  opacity: 1;
  pointer-events: auto;
}

.waitlist-clear:hover {
  background: rgba(142, 212, 255, 0.2);
}

.waitlist-platform-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.waitlist-platform-button {
  border: 1px solid rgba(142, 212, 255, 0.22);
  border-radius: 999px;
  background: rgba(7, 17, 29, 0.66);
  color: #8ed4ff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  min-height: 48px;
  min-width: 130px;
  padding: 0 20px;
}

.waitlist-platform-button.is-active {
  background: linear-gradient(135deg, #78d2ff, #43aceb);
  border-color: #8ed4ff;
  color: #07213b;
}

.waitlist-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.waitlist-submit {
  border: 0;
  border-radius: 999px;
  min-height: 54px;
  width: 100%;
  padding: 0 24px;
  background: linear-gradient(135deg, #78d2ff, #43aceb);
  color: #07213b;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(67, 172, 235, 0.28);
}

.waitlist-submit:disabled {
  cursor: wait;
  filter: saturate(0.7);
  opacity: 0.85;
}

.waitlist-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

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

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

.support-button:hover {
  text-decoration: none;
  filter: brightness(1.04);
}

.support-badge {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(244, 198, 83, 0.15);
  color: #ffe4a0;
  font-size: 0.92rem;
  font-weight: 700;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-top: 28px;
}

.store-badge-link {
  display: inline-flex;
  transition: transform 180ms ease, filter 180ms ease;
}

.store-badge-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.store-badge-image {
  display: block;
  width: 220px;
  max-width: 100%;
  height: auto;
}

@media (max-width: 980px) {
  .hero,
  .feature-grid,
  .promo-section .promo-brief,
  .waitlist-card,
  .support-card {
    grid-template-columns: 1fr;
  }

  .waitlist-form {
    max-width: none;
  }

  .waitlist-platform-button {
    flex: 1 1 0;
    min-width: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-welcome {
    font-size: clamp(2.8rem, 8vw, 4.8rem);
  }

  .feature-overlap-section {
    margin-top: 0;
    padding-top: 8px;
  }

  .feature-overlap-section .section-heading {
    max-width: none;
    margin-bottom: 26px;
  }

  .support-meta {
    align-items: center;
  }
}

@media (max-width: 720px) {
  .site-shell {
    padding: 0 16px 48px;
  }

  .hero-actions,
  .screenshot-grid,
  .video-grid {
    display: grid;
  }

  .topbar {
    display: none;
  }

  .topnav,
  .hero-actions,
  .screenshot-grid,
  .video-grid {
    gap: 12px;
  }

  .hero {
    padding-top: 14px;
  }

  .mock-video-frame {
    min-height: 360px;
  }

  .mock-phone {
    right: 6%;
    top: -44px;
    width: 198px;
    height: 382px;
  }

  .hero-logo-wrap {
    margin-top: 8px;
    margin-bottom: 18px;
    padding-top: 8px;
    padding-bottom: 12px;
  }

  .brand-title-mark {
    width: min(180px, 52vw);
  }

  .store-badges {
    justify-content: flex-start;
  }

  .store-badge-image {
    width: min(220px, 78vw);
  }
}
