﻿:root {
  --bg: #040404;
  --panel: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.15);
  --text: rgba(247, 247, 247, 0.96);
  --muted: rgba(230, 230, 230, 0.7);
  --shadow:
    0 26px 56px rgba(0, 0, 0, 0.52),
    0 10px 24px rgba(0, 0, 0, 0.34);
  --blur: 24px;

  font-family: "SF Pro Display", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.45;
  font-weight: 400;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: 0;
  scrollbar-gutter: stable;
  background: var(--bg);
}

body,
html {
  min-height: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  overscroll-behavior-y: auto;
  color: var(--text);
  background:
    radial-gradient(1200px circle at 16% -20%, rgba(255, 255, 255, 0.09), transparent 45%),
    radial-gradient(1000px circle at 85% 5%, rgba(255, 255, 255, 0.05), transparent 42%),
    var(--bg);
}

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

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

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


.page {
  min-height: 100svh;
}

.shell {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

main {
  position: relative;
}

.layout-content.with-header-offset {
  padding-top: clamp(5.8rem, 9vw, 7.4rem);
}

.snap-panel {
  position: relative;
  min-height: 100svh;
}

.section.snap-panel {
  display: grid;
  align-items: center;
}

.panel-content {
  transition:
    transform 720ms cubic-bezier(0.2, 0.7, 0.18, 1),
    opacity 540ms ease;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.snap-panel:not(.is-panel-active) .panel-content {
  opacity: 0.86;
}

.snap-panel.is-panel-active .panel-content {
  opacity: 1;
}

.section.snap-panel:not(.is-panel-active) .panel-content {
  transform: translateY(14px) scale(0.992);
}

.section.snap-panel.is-panel-active .panel-content {
  transform: translateY(0) scale(1);
}

.glass {
  position: relative;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  overflow: hidden;
  isolation: isolate;
}

.glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.22) 0%,
    rgba(255, 255, 255, 0.06) 28%,
    rgba(255, 255, 255, 0) 65%
  );
  opacity: 0.5;
  pointer-events: none;
}

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

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  padding: 0 0 0.9rem;
  opacity: 0;
  transform: translateY(-14px);
  pointer-events: none;
  transition:
    opacity 240ms ease,
    transform 240ms ease;
}

.topbar.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.topbar-shell {
  position: relative;
}

.topbar-inner {
  --blur: 16px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  padding: 0.6rem 0.85rem;
  border-radius: 24px;
  transition:
    background-color 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease,
    backdrop-filter 200ms ease;
}

.topbar-mobile-menu {
  display: none;
}

.topbar.is-scrolled .topbar-inner {
  --blur: 28px;
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.45),
    0 8px 18px rgba(0, 0, 0, 0.3);
}

.topbar-main {
  min-width: 0;
  display: inline-flex;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand img {
  width: 2rem;
  height: 2rem;
  border-radius: 0.7rem;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.topnav-desktop {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 0.15rem;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.topnav-desktop::-webkit-scrollbar {
  display: none;
}

.topnav-desktop a,
.topnav-mobile a {
  color: var(--muted);
  font-size: 0.93rem;
  padding: 0.48rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: color 200ms ease, background-color 200ms ease;
}

.topnav-desktop a:hover,
.topnav-mobile a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.topnav-socials {
  display: none;
}

.topbar-actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 0.5rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  padding: 0.16rem;
}

.lang-btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1;
  min-width: 2.15rem;
  padding: 0.42rem 0.5rem;
  cursor: pointer;
  transition:
    color 200ms ease,
    background-color 200ms ease,
    box-shadow 200ms ease;
}

.lang-btn:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.lang-btn.is-active {
  color: rgba(248, 248, 248, 0.98);
  background: rgba(255, 255, 255, 0.17);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 8px 18px rgba(0, 0, 0, 0.32);
}

.lang-btn:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.32),
    0 0 0 5px rgba(90, 176, 255, 0.3);
}

.socials {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.social-btn {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  transition:
    transform 200ms ease,
    background-color 200ms ease,
    border-color 200ms ease;
}

.social-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
}

.social-btn svg {
  width: 1rem;
  height: 1rem;
}

.menu-toggle {
  appearance: none;
  display: none;
  flex-direction: column;
  gap: 3px;
  width: 2.3rem;
  height: 2.3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition:
    background-color 200ms ease,
    border-color 200ms ease;
}

.menu-toggle span {
  display: block;
  width: 13px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle span + span {
  margin-top: 0;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(4.5px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-4.5px) rotate(-45deg);
}

.menu-toggle:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.32),
    0 0 0 5px rgba(90, 176, 255, 0.3);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: clip;
  padding: 2.4rem 0 2.4rem;
}

.hero-video,
.hero-vignette {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(0.86) brightness(0.45);
}

.hero-vignette {
  background:
    radial-gradient(circle at 50% 28%, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 66%),
    linear-gradient(180deg, rgba(3, 3, 3, 0.12) 0%, rgba(3, 3, 3, 0.85) 92%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  transform: translateY(-3.2vh);
}

.hero-brand-lockup {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  animation: hero-enter 680ms cubic-bezier(0.2, 0.7, 0.18, 1) both;
}

.hero-brand-lockup img {
  width: clamp(3.5rem, 7vw, 4.6rem);
  height: clamp(3.5rem, 7vw, 4.6rem);
  border-radius: 1rem;
  border: 0;
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.46),
    0 8px 16px rgba(0, 0, 0, 0.28);
}

.hero-brand-lockup span {
  font-size: clamp(1.05rem, 2.3vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.55);
}

.hero-card {
  --blur: 24px;
  width: min(760px, 100%);
  text-align: center;
  padding: clamp(1.8rem, 3.6vw, 3rem);
  animation: hero-enter 740ms cubic-bezier(0.2, 0.7, 0.18, 1) 80ms both;
}

.eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.8rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-card h1 {
  margin: 0.8rem 0 0;
  font-size: clamp(2rem, 8vw, 4.2rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.hero-card p {
  margin: 1rem auto 0;
  color: var(--muted);
  max-width: 55ch;
  font-size: clamp(1rem, 2.1vw, 1.18rem);
}

.hero-actions {
  margin-top: 1.7rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.72rem 1.35rem;
  min-width: 9.8rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease,
    background-color 200ms ease;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
  opacity: 0.3;
  pointer-events: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #0c0c0c;
  background: rgba(247, 247, 247, 0.92);
  border-color: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.98);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.section {
  padding: clamp(3.4rem, 7vw, 5.6rem) 0;
}

.section-compact {
  padding-top: 1.6rem;
}

.section[id],
.footer {
  scroll-margin-top: 96px;
}

.about-panel,
.privacy-panel,
.contact-panel,
.social-panel,
.waitlist-panel {
  --blur: 22px;
  padding: clamp(1.4rem, 3.5vw, 2.5rem);
}

.about-stage {
  position: relative;
  isolation: isolate;
  overflow: clip;
  min-height: 100svh;
  padding: clamp(1.2rem, 2.8vw, 2.2rem) 0;
}

.about-stage.section.snap-panel {
  align-items: start;
}

.about-video-bg,
.about-video-vignette {
  position: absolute;
  inset: 0;
}

.about-video-bg {
  z-index: 0;
}

.about-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(0.9) brightness(0.76);
}

.about-video-vignette {
  z-index: 1;
  background:
    radial-gradient(circle at 50% 28%, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.55) 70%),
    linear-gradient(180deg, rgba(4, 4, 4, 0.58) 0%, rgba(4, 4, 4, 0.34) 35%, rgba(4, 4, 4, 0.42) 70%, rgba(4, 4, 4, 0.7) 100%),
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 45%);
}

.about-layer {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: clamp(5.6rem, 11svh, 8.4rem);
}

.about-panel {
  --blur: 28px;
  max-width: 920px;
  margin-inline: auto;
  background:
    linear-gradient(180deg, rgba(10, 10, 12, 0.34) 0%, rgba(10, 10, 12, 0.5) 100%),
    rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.45),
    0 8px 18px rgba(0, 0, 0, 0.3);
}

.about-panel::before {
  opacity: 0.38;
}

.about-panel h2 {
  color: rgba(248, 248, 248, 0.98);
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.48);
}

.about-panel h2,
.privacy-panel h1,
.privacy-panel h2,
.contact-panel h2,
.social-panel h2,
.waitlist-panel h2,
.section-head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3.6vw, 2.3rem);
  letter-spacing: -0.02em;
}

.about-panel p,
.privacy-panel p,
.contact-panel p,
.social-panel p,
.waitlist-panel p,
.section-head p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.08rem);
}

.about-panel p {
  color: rgba(232, 232, 232, 0.84);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}

.waitlist-panel {
  max-width: 920px;
  margin-inline: auto;
}

.waitlist-form {
  margin-top: 1.3rem;
  display: grid;
  gap: 0.85rem;
}

.waitlist-field {
  display: grid;
  gap: 0.38rem;
}

.waitlist-field span {
  color: rgba(235, 235, 235, 0.84);
  font-size: 0.9rem;
}

.waitlist-field input,
.waitlist-field select {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(8, 8, 8, 0.5);
  color: var(--text);
  padding: 0.72rem 0.82rem;
  font: inherit;
  outline: none;
  transition: border-color 200ms ease, background-color 200ms ease;
}

.waitlist-field textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(8, 8, 8, 0.5);
  color: var(--text);
  padding: 0.72rem 0.82rem;
  font: inherit;
  resize: vertical;
  min-height: 120px;
  outline: none;
  transition: border-color 200ms ease, background-color 200ms ease;
}

.waitlist-field select option {
  background: #111111;
  color: #f4f4f4;
}

.waitlist-field input:focus,
.waitlist-field select:focus,
.waitlist-field textarea:focus {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(16, 16, 16, 0.72);
}

.support-form {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.9rem;
}

.support-captcha-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.7rem;
  align-items: center;
}

.support-captcha-question {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7rem;
  padding: 0.68rem 0.8rem;
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(245, 245, 245, 0.96);
  letter-spacing: 0.03em;
}

.support-alert {
  margin-top: 1rem;
  border-radius: 14px;
  padding: 0.72rem 0.9rem;
  font-size: 0.93rem;
  line-height: 1.45;
}

.support-alert-success {
  border: 1px solid rgba(102, 229, 160, 0.42);
  background: rgba(43, 113, 73, 0.24);
  color: rgba(224, 255, 236, 0.95);
}

.support-alert-error {
  border: 1px solid rgba(255, 130, 130, 0.45);
  background: rgba(128, 42, 42, 0.22);
  color: rgba(255, 222, 222, 0.96);
}

.support-submit {
  width: fit-content;
}

.waitlist-consent {
  margin-top: 0.2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.58rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.waitlist-consent input {
  margin-top: 0.2rem;
  width: 1rem;
  height: 1rem;
  accent-color: #f2f2f2;
}

.waitlist-submit {
  margin-top: 0.25rem;
  width: fit-content;
}

.waitlist-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 1rem;
}

.waitlist-modal-backdrop[hidden] {
  display: none !important;
}

.waitlist-modal {
  --blur: 26px;
  width: min(440px, 100%);
  padding: 1.25rem 1.25rem 1.15rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.waitlist-modal-head {
  display: flex;
  align-items: center;
  gap: 0.62rem;
}

.waitlist-modal-badge {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #060606;
  background: rgba(245, 245, 245, 0.92);
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.waitlist-modal-badge svg {
  width: 1rem;
  height: 1rem;
}

.waitlist-modal h3 {
  margin: 0;
  font-size: clamp(1.22rem, 3vw, 1.48rem);
  letter-spacing: -0.015em;
}

.waitlist-modal p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.waitlist-modal-email {
  margin-top: 0.26rem;
  display: block;
  color: rgba(246, 246, 246, 0.95);
  font-weight: 600;
  word-break: break-word;
}

.waitlist-modal-actions {
  margin-top: 1.05rem;
  display: flex;
  justify-content: flex-end;
}

.waitlist-modal-close {
  min-width: 7.2rem;
  padding: 0.64rem 1.05rem;
}

.section-head {
  margin-bottom: 1.1rem;
}

.preview-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.preview-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
}

.preview-media {
  display: grid;
  gap: 0.8rem;
  justify-items: center;
}

.preview-card {
  --blur: 20px;
  padding: 0.5rem;
  border-radius: 30px;
  width: min(100%, 360px);
  margin-inline: auto;
  border: 0;
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.preview-card:hover {
  border-color: transparent;
  box-shadow:
    0 28px 50px rgba(0, 0, 0, 0.52),
    0 12px 26px rgba(0, 0, 0, 0.35);
}

.preview-image {
  width: 100%;
  height: auto;
  border-radius: 22px;
  border: 0;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: transform 220ms ease, opacity 220ms ease;
  will-change: transform;
}

.preview-image.is-switching {
  opacity: 0.35;
}

.preview-media.two-up {
  width: 100%;
  max-width: 780px;
  grid-template-columns: 1fr;
}

.preview-media.two-up .preview-card {
  width: min(100%, 300px);
}

.preview-copy {
  --blur: 18px;
  padding: clamp(1.1rem, 2.4vw, 1.6rem);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.preview-copy h3 {
  margin: 0;
  font-size: clamp(1.1rem, 2.8vw, 1.45rem);
  letter-spacing: -0.01em;
}

.preview-copy p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  max-width: 42ch;
}

.preview-row:hover .preview-copy,
.preview-row:focus-within .preview-copy {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.38),
    0 8px 18px rgba(0, 0, 0, 0.26);
}

.preview-section {
  position: relative;
  isolation: isolate;
}

.preview-section .panel-content {
  position: relative;
  z-index: 1;
}

.app-download-section {
  padding-top: clamp(0.8rem, 2.4vw, 1.4rem);
  padding-bottom: clamp(1.2rem, 3.5vw, 2rem);
}

.app-download-panel {
  --blur: 22px;
  max-width: 360px;
  margin-inline: auto;
  padding: clamp(0.9rem, 2.6vw, 1.15rem);
  display: grid;
  place-items: center;
}

.roadmap-section {
  position: relative;
  isolation: isolate;
  align-items: start;
  background: transparent;
}

.roadmap-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(900px circle at 18% 0%, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0) 58%),
    radial-gradient(820px circle at 84% 100%, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0) 60%);
  pointer-events: none;
}

.roadmap-panel {
  --blur: 24px;
  position: relative;
  max-width: 1080px;
  margin-inline: auto;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  background:
    linear-gradient(160deg, rgba(14, 14, 16, 0.58) 0%, rgba(8, 9, 12, 0.5) 52%, rgba(6, 7, 9, 0.58) 100%),
    rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.17);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.52),
    0 10px 24px rgba(0, 0, 0, 0.32);
}

.roadmap-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    repeating-linear-gradient(
      66deg,
      rgba(255, 255, 255, 0.035) 0,
      rgba(255, 255, 255, 0.035) 1px,
      rgba(255, 255, 255, 0) 1px,
      rgba(255, 255, 255, 0) 56px
    ),
    repeating-linear-gradient(
      -12deg,
      rgba(255, 255, 255, 0.026) 0,
      rgba(255, 255, 255, 0.026) 1px,
      rgba(255, 255, 255, 0) 1px,
      rgba(255, 255, 255, 0) 64px
    );
  opacity: 0.34;
  pointer-events: none;
}

.roadmap-head,
.roadmap-route-wrap,
.roadmap-grid {
  position: relative;
  z-index: 1;
}

.roadmap-head h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  letter-spacing: -0.02em;
}

.roadmap-head p {
  margin: 0.72rem 0 0;
  color: rgba(224, 224, 224, 0.72);
  font-size: clamp(0.96rem, 1.9vw, 1.06rem);
}

.roadmap-route-wrap {
  margin-top: 1.05rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(850px circle at 12% 0%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 52%),
    rgba(9, 10, 13, 0.58);
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.roadmap-route-track {
  --stop-size: 42px;
  --edge-gap: 1.35rem;
  --top-gap: 0.85rem;
  position: relative;
  padding: var(--top-gap) var(--edge-gap) 0.78rem;
}

.roadmap-route-line {
  position: absolute;
  left: calc(var(--edge-gap) + (var(--stop-size) / 2));
  right: calc(var(--edge-gap) + (var(--stop-size) / 2));
  top: calc(var(--top-gap) + (var(--stop-size) / 2) - 5px);
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
}

.roadmap-route-line-base,
.roadmap-route-line-progress {
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.roadmap-route-line-base {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.22)),
    rgba(255, 255, 255, 0.14);
}

.roadmap-route-line-progress {
  width: 0;
  background: linear-gradient(90deg, #53e0ff 0%, #6ae68e 56%, #f3d15f 100%);
  box-shadow: 0 0 16px rgba(103, 220, 186, 0.45);
  transition: width 280ms cubic-bezier(0.2, 0.7, 0.18, 1);
}

.roadmap-route-stops {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-inline: var(--edge-gap);
}

.roadmap-stop {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  display: grid;
  width: var(--stop-size);
  justify-items: center;
  gap: 0.44rem;
  color: rgba(214, 214, 214, 0.74);
  cursor: pointer;
}

.roadmap-stop-ring {
  width: var(--stop-size);
  height: var(--stop-size);
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 0;
  background: rgba(244, 244, 244, 0.98);
  box-shadow:
    0 10px 18px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(0, 0, 0, 0.16);
}

.roadmap-stop-core {
  width: calc(var(--stop-size) - 12px);
  height: calc(var(--stop-size) - 12px);
  border-radius: 999px;
  background: rgba(19, 24, 30, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.roadmap-stop-label {
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.roadmap-stop.is-complete .roadmap-stop-core {
  background: rgba(24, 34, 46, 0.95);
}

.roadmap-stop.is-active .roadmap-stop-ring {
  box-shadow:
    0 0 0 4px rgba(53, 158, 255, 0.24),
    0 0 20px rgba(53, 158, 255, 0.34),
    0 10px 18px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(0, 0, 0, 0.16);
}

.roadmap-stop.is-active .roadmap-stop-core {
  background: rgba(36, 159, 241, 0.99);
}

.roadmap-stop.is-active .roadmap-stop-label {
  color: rgba(248, 248, 248, 0.98);
}

.roadmap-stop:focus-visible {
  outline: none;
}

.roadmap-stop:focus-visible .roadmap-stop-ring {
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.26),
    0 0 0 7px rgba(84, 173, 255, 0.28);
}

.roadmap-grid {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 1fr;
}

.roadmap-item {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background:
    linear-gradient(165deg, rgba(16, 17, 20, 0.54), rgba(8, 9, 12, 0.55)),
    rgba(12, 13, 16, 0.6);
  padding: 1rem 1rem 1.05rem;
  min-height: 152px;
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition:
    border-color 200ms ease,
    transform 200ms ease,
    box-shadow 200ms ease;
}

.roadmap-item:hover {
  transform: translateY(-1px);
}

.roadmap-item:focus-visible {
  outline: none;
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.12),
    0 12px 28px rgba(0, 0, 0, 0.4);
}

.roadmap-item.is-active {
  border-color: rgba(92, 171, 255, 0.48);
  box-shadow:
    0 0 0 1px rgba(92, 171, 255, 0.26),
    0 18px 34px rgba(0, 0, 0, 0.42);
}

.roadmap-item.is-complete {
  border-color: rgba(122, 222, 162, 0.28);
}

.roadmap-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 58%);
  opacity: 0.28;
  pointer-events: none;
}

.roadmap-item h3,
.roadmap-item p,
.roadmap-quarter {
  position: relative;
  z-index: 1;
}

.roadmap-quarter {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.58rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(236, 236, 236, 0.92);
  padding: 0.24rem 0.52rem;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.roadmap-item h3 {
  margin: 0;
  font-size: clamp(1.02rem, 2.2vw, 1.16rem);
  letter-spacing: -0.01em;
}

.roadmap-item p {
  margin: 0.58rem 0 0;
  color: rgba(226, 226, 226, 0.78);
  line-height: 1.42;
  font-size: 0.93rem;
}

.contact-stack {
  max-width: 980px;
  width: 100%;
  display: grid;
  gap: 0.95rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
}

.contact-panel,
.social-panel {
  background: rgba(255, 255, 255, 0.09);
}

.social-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-link {
  display: inline-block;
  margin-top: 1.05rem;
  padding: 0.38rem 0.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: border-color 200ms ease, color 200ms ease;
}

.contact-link:hover {
  color: rgba(255, 255, 255, 0.98);
  border-color: rgba(255, 255, 255, 0.7);
}

.social-cta {
  margin-top: 1.15rem;
  display: grid;
  gap: 0.85rem;
  justify-items: start;
}

.social-media-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.social-media-row a {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  transition:
    transform 200ms ease,
    background-color 200ms ease,
    border-color 200ms ease;
}

.social-media-row a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.28);
}

.social-media-row svg {
  width: 1.08rem;
  height: 1.08rem;
}

.app-store-link {
  display: inline-flex;
  border-radius: 12px;
  transition: transform 200ms ease, filter 200ms ease;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

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

.app-store-badge {
  width: clamp(156px, 26vw, 182px);
  height: auto;
}

.footer-panel {
  --blur: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.9rem 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
  background: rgba(255, 255, 255, 0.07);
}

.footer-socials {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-socials a {
  color: var(--muted);
  width: 1.2rem;
  height: 1.2rem;
  transition: color 200ms ease, transform 200ms ease;
}

.footer-socials a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.footer-socials svg {
  width: 100%;
  height: 100%;
}

.footer-legal {
  margin-top: 0.72rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.95rem;
  color: rgba(228, 228, 228, 0.68);
  font-size: 0.84rem;
}

.footer-legal a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  padding-bottom: 1px;
  transition: color 200ms ease, border-color 200ms ease;
}

.footer-legal a:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.58);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 840px) {
  .brand span {
    display: none;
  }

  .topnav-desktop a {
    font-size: 0.86rem;
    padding: 0.4rem 0.52rem;
  }
}

@media (min-width: 900px) {
  .preview-list {
    gap: 1.4rem;
  }

  .preview-row {
    grid-template-columns: minmax(260px, 0.95fr) minmax(320px, 1.05fr);
    gap: clamp(1rem, 4vw, 3rem);
  }

  .preview-row.reverse .preview-media {
    order: 2;
  }

  .preview-row.reverse .preview-copy {
    order: 1;
  }

  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

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

  .roadmap-item {
    min-height: 216px;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(1120px, calc(100% - 1rem));
  }

  .layout-content.with-header-offset {
    padding-top: 5rem;
  }

  .section[id],
  .footer {
    scroll-margin-top: 84px;
  }

  .topbar {
    padding: 0 0 0.55rem;
  }

  .topbar-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 0.4rem;
    row-gap: 0;
    padding: 0.5rem 0.56rem;
  }

  .topnav-desktop {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 1.7rem;
    height: 1.7rem;
  }

  .topbar-actions {
    gap: 0.34rem;
  }

  .lang-switch {
    gap: 0.1rem;
    padding: 0.1rem;
  }

  .lang-btn {
    min-width: 1.9rem;
    padding: 0.32rem 0.4rem;
    font-size: 0.64rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .topbar-socials {
    display: none;
  }

  .topbar-mobile-menu {
    margin-top: 0.38rem;
    padding: 0.62rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(17, 18, 22, 0.9);
    box-shadow:
      0 18px 36px rgba(0, 0, 0, 0.42),
      0 8px 18px rgba(0, 0, 0, 0.3);
  }

  .topbar-mobile-menu.is-open {
    display: block;
  }

  .topnav-mobile {
    display: grid;
    gap: 0.2rem;
  }

  .topnav-mobile a {
    display: block;
    font-size: 0.9rem;
    padding: 0.56rem 0.62rem;
    border-radius: 12px;
  }

  .topnav-mobile a[href='#roadmap'] {
    display: none;
  }

  .topnav-socials {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.42rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .topnav-socials .social-btn {
    width: 2rem;
    height: 2rem;
  }

  .hero {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .hero-content {
    transform: translateY(-1.2vh);
  }

  .hero-card {
    border-radius: 24px;
  }

  .about-stage {
    min-height: 100svh;
    padding: 1rem 0;
  }

  .about-layer {
    padding-top: clamp(4.8rem, 9svh, 6.2rem);
  }

  .btn {
    min-width: 8.7rem;
  }

  .footer-panel {
    gap: 0.75rem;
    padding-inline: 0.9rem;
  }

  .footer-socials {
    gap: 0.65rem;
  }

  .app-store-badge {
    width: clamp(150px, 55vw, 170px);
  }

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

  .support-captcha-question {
    width: fit-content;
  }

  .roadmap-route-track {
    --stop-size: 34px;
    --edge-gap: 0.9rem;
    --top-gap: 0.72rem;
    padding-bottom: 0.62rem;
  }

  .roadmap-stop-label {
    font-size: 0.69rem;
  }

  .roadmap-item {
    min-height: 0;
  }

  .panel-content,
  .snap-panel:not(.is-panel-active) .panel-content,
  .snap-panel.is-panel-active .panel-content,
  .section.snap-panel:not(.is-panel-active) .panel-content,
  .section.snap-panel.is-panel-active .panel-content {
    transform: none;
    opacity: 1;
    transition: none;
    will-change: auto;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (min-width: 700px) and (max-width: 1099px) {
  .roadmap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .roadmap-item {
    min-height: 164px;
  }
}

@media (min-width: 700px) {
  .waitlist-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem;
  }

  .waitlist-field:nth-child(3),
  .waitlist-consent,
  .waitlist-submit {
    grid-column: 1 / -1;
  }

  .preview-media.two-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .preview-media.two-up .preview-card {
    width: min(100%, 260px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .section.snap-panel .panel-content {
    position: static;
  }

  .panel-content,
  .snap-panel:not(.is-panel-active) .panel-content,
  .snap-panel.is-panel-active .panel-content,
  .section.snap-panel:not(.is-panel-active) .panel-content,
  .section.snap-panel.is-panel-active .panel-content {
    transform: none;
    opacity: 1;
    transition: none;
  }

  .topbar {
    transition: none;
  }

  .hero-brand-lockup {
    animation: none;
  }

  .roadmap-route-line-progress {
    animation: none;
  }

  .hero-content {
    transform: none;
  }

  .hero-card {
    animation: none;
    opacity: 1;
    transform: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .preview-card,
  .social-btn,
  .lang-btn,
  .social-media-row a,
  .app-store-link,
  .footer-socials a,
  .waitlist-field input,
  .waitlist-field select {
    transition: none;
  }
}

