:root {
  color-scheme: dark;
  --page-bg: #000;
  --white: #fff;
  --muted-white: rgba(255, 255, 255, 0.4);
  --soft-white: rgba(255, 255, 255, 0.2);
  --copy-white: rgba(255, 255, 255, 0.6);
  --outline: rgba(255, 255, 255, 0.3);
  --glass: rgba(255, 255, 255, 0.06);
  --error: #ff453a;
  --keyboard-offset: 0px;
  --font-display: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  background: var(--page-bg);
  overscroll-behavior-y: none;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow: hidden;
  overscroll-behavior-y: none;
  background: var(--page-bg);
  color: var(--white);
  font-family: var(--font-display);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  -webkit-tap-highlight-color: transparent;
}

button,
input,
select,
label,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
}

a[x-apple-data-detectors],
.phone-visual a {
  color: inherit !important;
  text-decoration: none !important;
  -webkit-text-fill-color: inherit !important;
}

.site-header,
.site-footer,
.mobile-menu,
.mobile-action-bar {
  position: fixed !important;
  left: 0;
  right: 0;
}

.site-header {
  z-index: 50;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 168px;
  padding: 60px 80px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.48s ease;
}

.site-header > * {
  position: relative;
  z-index: 20;
  pointer-events: auto;
}

.site-header::after,
.site-footer::after {
  position: absolute;
  inset: 0;
  z-index: 9;
  content: "";
  pointer-events: none;
}

.site-header::after {
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.78) 32%, rgba(0, 0, 0, 0.28) 72%, rgba(0, 0, 0, 0) 100%);
}

.site-footer::after {
  background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.78) 32%, rgba(0, 0, 0, 0.28) 72%, rgba(0, 0, 0, 0) 100%);
}

.progressive-blur,
.progressive-blur > span,
.progressive-blur::before,
.progressive-blur::after {
  position: absolute;
  inset: 0;
  pointer-events: none !important;
}

.progressive-blur {
  z-index: 8;
  overflow: hidden;
}

.progressive-blur > span,
.progressive-blur::before,
.progressive-blur::after {
  background: transparent;
}

.progressive-blur::before,
.progressive-blur::after {
  content: "";
}

.progressive-blur::before {
  z-index: 1;
  -webkit-backdrop-filter: blur(0.5px);
  backdrop-filter: blur(0.5px);
}

.progressive-blur > span:nth-of-type(1) {
  z-index: 2;
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
}

.progressive-blur > span:nth-of-type(2) {
  z-index: 3;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.progressive-blur > span:nth-of-type(3) {
  z-index: 4;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.progressive-blur > span:nth-of-type(4) {
  z-index: 5;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.progressive-blur > span:nth-of-type(5) {
  z-index: 6;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.progressive-blur > span:nth-of-type(6) {
  z-index: 7;
  -webkit-backdrop-filter: blur(32px);
  backdrop-filter: blur(32px);
}

.progressive-blur::after {
  z-index: 8;
  -webkit-backdrop-filter: blur(64px);
  backdrop-filter: blur(64px);
}

.progressive-blur-bottom::before {
  -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000 12.5%, #000 25%, rgba(0, 0, 0, 0) 37.5%);
  mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000 12.5%, #000 25%, rgba(0, 0, 0, 0) 37.5%);
}

.progressive-blur-bottom > span:nth-of-type(1) {
  -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 12.5%, #000 25%, #000 37.5%, rgba(0, 0, 0, 0) 50%);
  mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 12.5%, #000 25%, #000 37.5%, rgba(0, 0, 0, 0) 50%);
}

.progressive-blur-bottom > span:nth-of-type(2) {
  -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 25%, #000 37.5%, #000 50%, rgba(0, 0, 0, 0) 62.5%);
  mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 25%, #000 37.5%, #000 50%, rgba(0, 0, 0, 0) 62.5%);
}

.progressive-blur-bottom > span:nth-of-type(3) {
  -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 37.5%, #000 50%, #000 62.5%, rgba(0, 0, 0, 0) 75%);
  mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 37.5%, #000 50%, #000 62.5%, rgba(0, 0, 0, 0) 75%);
}

.progressive-blur-bottom > span:nth-of-type(4) {
  -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, #000 62.5%, #000 75%, rgba(0, 0, 0, 0) 87.5%);
  mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, #000 62.5%, #000 75%, rgba(0, 0, 0, 0) 87.5%);
}

.progressive-blur-bottom > span:nth-of-type(5) {
  -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 62.5%, #000 75%, #000 87.5%, rgba(0, 0, 0, 0) 100%);
  mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 62.5%, #000 75%, #000 87.5%, rgba(0, 0, 0, 0) 100%);
}

.progressive-blur-bottom > span:nth-of-type(6) {
  -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 75%, #000 87.5%, #000 100%);
  mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 75%, #000 87.5%, #000 100%);
}

.progressive-blur-bottom::after {
  -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 87.5%, #000 100%);
  mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 87.5%, #000 100%);
}

.progressive-blur-top::before {
  -webkit-mask: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, #000 12.5%, #000 25%, rgba(0, 0, 0, 0) 37.5%);
  mask: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, #000 12.5%, #000 25%, rgba(0, 0, 0, 0) 37.5%);
}

.progressive-blur-top > span:nth-of-type(1) {
  -webkit-mask: linear-gradient(to top, rgba(0, 0, 0, 0) 12.5%, #000 25%, #000 37.5%, rgba(0, 0, 0, 0) 50%);
  mask: linear-gradient(to top, rgba(0, 0, 0, 0) 12.5%, #000 25%, #000 37.5%, rgba(0, 0, 0, 0) 50%);
}

.progressive-blur-top > span:nth-of-type(2) {
  -webkit-mask: linear-gradient(to top, rgba(0, 0, 0, 0) 25%, #000 37.5%, #000 50%, rgba(0, 0, 0, 0) 62.5%);
  mask: linear-gradient(to top, rgba(0, 0, 0, 0) 25%, #000 37.5%, #000 50%, rgba(0, 0, 0, 0) 62.5%);
}

.progressive-blur-top > span:nth-of-type(3) {
  -webkit-mask: linear-gradient(to top, rgba(0, 0, 0, 0) 37.5%, #000 50%, #000 62.5%, rgba(0, 0, 0, 0) 75%);
  mask: linear-gradient(to top, rgba(0, 0, 0, 0) 37.5%, #000 50%, #000 62.5%, rgba(0, 0, 0, 0) 75%);
}

.progressive-blur-top > span:nth-of-type(4) {
  -webkit-mask: linear-gradient(to top, rgba(0, 0, 0, 0) 50%, #000 62.5%, #000 75%, rgba(0, 0, 0, 0) 87.5%);
  mask: linear-gradient(to top, rgba(0, 0, 0, 0) 50%, #000 62.5%, #000 75%, rgba(0, 0, 0, 0) 87.5%);
}

.progressive-blur-top > span:nth-of-type(5) {
  -webkit-mask: linear-gradient(to top, rgba(0, 0, 0, 0) 62.5%, #000 75%, #000 87.5%, rgba(0, 0, 0, 0) 100%);
  mask: linear-gradient(to top, rgba(0, 0, 0, 0) 62.5%, #000 75%, #000 87.5%, rgba(0, 0, 0, 0) 100%);
}

.progressive-blur-top > span:nth-of-type(6) {
  -webkit-mask: linear-gradient(to top, rgba(0, 0, 0, 0) 75%, #000 87.5%, #000 100%);
  mask: linear-gradient(to top, rgba(0, 0, 0, 0) 75%, #000 87.5%, #000 100%);
}

.progressive-blur-top::after {
  -webkit-mask: linear-gradient(to top, rgba(0, 0, 0, 0) 87.5%, #000 100%);
  mask: linear-gradient(to top, rgba(0, 0, 0, 0) 87.5%, #000 100%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8.6px;
  color: var(--white);
  text-decoration: none;
}

.brand-icon {
  width: 46px;
  height: 46px;
  background: url("./assets/icon-app-512.png") center / cover no-repeat;
}

.brand-word {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1.2px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.desktop-nav button,
.desktop-nav a {
  padding: 12px;
  color: inherit;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.6px;
  text-decoration: none;
}

.menu-toggle,
.mobile-header-spacer {
  display: none;
}

.snap-pages {
  height: 100svh;
  overflow-x: hidden;
  overflow-y: auto;
  background: #000;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  overscroll-behavior-y: none;
}

.snap-pages::-webkit-scrollbar {
  display: none;
}

.snap-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: #000;
}

.hero-video {
  display: block;
  width: min(62.5vw, 800px);
  aspect-ratio: 800 / 700;
  height: auto;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.985);
  transition: opacity 0.42s ease, transform 0.55s ease;
}

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

body.hero-ready .hero-video {
  opacity: 1;
  transform: scale(1);
}

body.chrome-ready .site-header,
body.chrome-ready .site-footer {
  opacity: 1;
}

.product-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.product-video-wrap {
  position: relative;
  width: min(calc(100vw - 160px), 1120px);
  aspect-ratio: 2482 / 1080;
  margin-bottom: -60px;
}

.product-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-edge-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    270deg,
    #000 0%,
    rgba(0, 0, 0, 0) 14.4%,
    rgba(0, 0, 0, 0) 86.1%,
    #000 100%
  );
}

.product-copy {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: min(656px, calc(100vw - 48px));
  text-align: center;
}

.product-copy h1 {
  width: 100%;
  margin: 0;
  filter: blur(1.15px);
  color: #fff;
  font-size: 56px;
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -1.68px;
}

.product-copy strong {
  font-weight: 700;
}

.snap-arrow {
  position: relative;
  display: block;
  width: 36px;
  height: 10px;
  overflow: visible;
}

.snap-arrow::before {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 47px;
  height: 21px;
  background: url("data:image/svg+xml,%3Csvg width='47' height='21' viewBox='0 0 47 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.4 5.8L23.5 15.4L41.6 5.8' stroke='white' stroke-width='5.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  content: "";
  transform: translate(-50%, -50%);
}

.product-arrow {
  opacity: 0;
  transform: translateY(120px);
}

.product-section.show-indicator .product-arrow {
  animation: arrowEnter 0.75s cubic-bezier(0.2, 1.35, 0.28, 1) forwards, arrowHover 1.65s ease-in-out 0.75s infinite;
}

.waitlist-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: min(calc(100vw - 48px), 548px);
  transition: transform 0.25s ease;
}

.waitlist-card.is-typing {
  width: min(calc(100vw - 48px), 786px);
}

.waitlist-input-row {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.42s ease, transform 0.42s ease;
}

.waitlist-input-row .waitlist-input-error:empty {
  display: none;
}

.country-code-display,
.country-chevron,
.phone-visual {
  filter: blur(1.15px);
}

.country-select {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
  overflow: hidden;
  color: #fff;
  font-size: 56px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -1.68px;
}

.country-native-select {
  position: absolute;
  inset: -12px;
  z-index: 5;
  width: calc(100% + 24px);
  height: calc(100% + 24px);
  opacity: 0.001;
  border: 0;
  outline: 0;
  background: transparent;
  color: transparent;
  font-size: 16px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.country-chevron {
  width: 26px;
  height: 15px;
  background: url("data:image/svg+xml,%3Csvg width='26' height='15' viewBox='0 0 26 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4.2L13 11L22 4.2' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.number-field {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 0;
  overflow: hidden;
}

.phone-input {
  position: absolute;
  inset: -12px 0;
  z-index: 2;
  width: 100%;
  min-width: 170px;
  opacity: 0.001;
  border: 0;
  outline: 0;
  background: transparent;
  background-color: transparent !important;
  background-image: none !important;
  color: transparent;
  caret-color: transparent;
  -webkit-text-fill-color: transparent;
  box-shadow: none;
  font-size: 16px;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: text;
  user-select: text;
  -webkit-touch-callout: none;
}

.phone-input:focus,
.phone-input:focus-visible,
.phone-input:active,
.phone-input:hover {
  outline: 0;
  background: transparent;
  box-shadow: none;
  -webkit-box-shadow: none;
}

.phone-input::selection {
  background: transparent;
  color: transparent;
}

.phone-input::-webkit-contacts-auto-fill-button,
.phone-input::-webkit-credentials-auto-fill-button {
  visibility: hidden;
  display: none !important;
  pointer-events: none;
  position: absolute;
  right: 0;
}

.country-native-select::-ms-expand {
  display: none;
}

.phone-input:-webkit-autofill,
.phone-input:-webkit-autofill:hover,
.phone-input:-webkit-autofill:focus,
.phone-input:-webkit-autofill:active {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  caret-color: transparent;
  -webkit-text-fill-color: transparent !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  transition: background-color 999999s ease-out;
}

.phone-input::placeholder {
  color: var(--muted-white);
  opacity: 1;
}

.phone-visual {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 80px;
  color: #fff;
  font-size: 56px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -1.68px;
  white-space: nowrap;
  text-decoration: none;
  pointer-events: none;
  -webkit-text-fill-color: currentColor;
}

.phone-placeholder {
  color: var(--muted-white);
  text-decoration: none;
  -webkit-text-fill-color: var(--muted-white);
}

.phone-value {
  display: none;
  color: #fff;
}

.waitlist-card.is-typing .phone-value {
  display: inline;
}

.waitlist-card.is-typing .phone-placeholder {
  display: none;
}

.cursor-line {
  display: inline-block;
  flex: 0 0 auto;
  width: 3px;
  height: 80px;
  border-radius: 999px;
  background: #fff;
  animation: blinkCursor 1s steps(2, start) infinite;
}

.waitlist-card:not(.is-typing) .phone-visual {
  flex-direction: row;
}

.desktop-join,
.mobile-join {
  position: relative;
  flex: 0 0 auto;
  padding: 18px;
  overflow: hidden;
  border: 0;
  border-radius: 29px;
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(13.576px);
  backdrop-filter: blur(13.576px);
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), inset 0 -1px 0 rgba(0, 0, 0, 0.18);
  transform: translateZ(0);
}

.desktop-join::before,
.mobile-join::before {
  position: absolute;
  inset: 0;
  padding: 1.273px;
  border-radius: inherit;
  background: linear-gradient(22deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.0001) 40.57%, rgba(255, 255, 255, 0.0001) 57.44%, rgba(255, 255, 255, 0.1) 100%);
  content: "";
  pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.desktop-join {
  display: none;
}

.waitlist-card.is-typing .desktop-join {
  display: inline-flex;
}

.waitlist-tagline {
  z-index: 2;
  margin: 0;
  opacity: 0;
  transform: translateY(6px);
  filter: none;
  color: var(--soft-white);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.6px;
  text-align: center;
  transition: opacity 0.36s ease 0.2s, transform 0.36s ease 0.2s;
}

.waitlist-success {
  z-index: 3;
  display: none;
  width: min(720px, calc(100vw - 48px));
  margin: 0;
  filter: blur(0.8px);
  color: #fff;
  font-size: 46px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -1.38px;
  text-align: center;
}

.waitlist-section.is-visible .waitlist-input-row {
  opacity: 1;
  transform: translateY(0);
}

.waitlist-section.is-visible .waitlist-tagline {
  opacity: 1;
  transform: translateY(0);
}

.waitlist-card.is-typing .waitlist-tagline {
  display: none;
}

.waitlist-card.is-success {
  width: min(calc(100vw - 48px), 786px);
}

.waitlist-card.is-success .waitlist-input-row,
.waitlist-card.is-success .desktop-opt-in,
.waitlist-card.is-success .waitlist-tagline {
  display: none !important;
}

.waitlist-card.is-success .waitlist-success {
  display: block;
  animation: waitlistSuccessIn 0.48s ease both;
}

body.waitlist-success-state .mobile-action-bar {
  display: none !important;
}

.waitlist-otp-row {
  z-index: 3;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: 420px;
}

.waitlist-card.is-verifying {
  width: min(calc(100vw - 48px), 548px);
  gap: 24px;
}

.waitlist-card.is-verifying .waitlist-otp-row {
  display: flex;
}

.waitlist-card.is-verifying .waitlist-input-row,
.waitlist-card.is-verifying .waitlist-tagline,
.waitlist-card.is-verifying .desktop-opt-in {
  display: none !important;
}

body.waitlist-verifying-state .mobile-action-bar {
  display: none !important;
}

/* Once the user has accepted the opt-in and pressed Join Waitlist at least
 * once, hide the policies checkbox for the rest of the session — they've
 * already opted in, and the error-state UI reads cleaner without legal text
 * jammed next to it. */
body.waitlist-opt-in-accepted .desktop-opt-in,
body.waitlist-opt-in-accepted .mobile-opt-in {
  display: none !important;
}

.waitlist-otp-prompt {
  margin: 0;
  color: var(--soft-white, #f5f5f7);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.4px;
  text-align: center;
}

.waitlist-otp-target {
  color: #fff;
  white-space: nowrap;
}

.otp-field {
  display: inline-flex;
  width: 100%;
}

.otp-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.32);
  border-radius: 14px;
  outline: none;
  background: rgba(0, 0, 0, 0.32);
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 12px;
  text-align: center;
  caret-color: #fff;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.otp-input:focus {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.5);
}

.otp-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 12px;
}

.waitlist-otp-row.is-error .otp-input {
  border-color: #ff6b6b;
}

.otp-verify {
  min-width: 160px;
}

.otp-verify[disabled],
.join-button[data-loading="true"] {
  opacity: 0.85;
  cursor: progress;
  pointer-events: none;
}

.join-button[data-loading="true"] {
  position: relative;
  color: transparent !important;
  text-shadow: none !important;
}

.join-button[data-loading="true"]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  color: #fff;
  animation: joinButtonSpin 0.75s linear infinite;
}

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

.waitlist-otp-error {
  min-height: 18px;
  margin: 0;
  color: #ff8a8a;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

.waitlist-otp-row:not(.is-error) .waitlist-otp-error {
  visibility: hidden;
}

.waitlist-otp-back {
  margin-top: 4px;
  padding: 6px 10px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.waitlist-otp-back:hover,
.waitlist-otp-back:focus-visible {
  color: #fff;
}

.waitlist-otp-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 4px;
}

.waitlist-otp-resend {
  padding: 6px 10px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.waitlist-otp-resend:hover:not(:disabled),
.waitlist-otp-resend:focus-visible {
  color: #fff;
}

.waitlist-otp-resend:disabled {
  color: rgba(255, 255, 255, 0.4);
  cursor: not-allowed;
}

/* After a terminal /check failure (`expired` or `rate_limited`) the verifyId
 * is dead — the user can't enter another code, only request a fresh one.
 * Make the resend button the primary action so they don't get stuck. */
.waitlist-otp-row.is-expired .otp-verify,
.waitlist-otp-row.is-expired .otp-input {
  opacity: 0.35;
  pointer-events: none;
}

.waitlist-otp-row.is-expired .waitlist-otp-resend {
  padding: 14px 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.waitlist-otp-row.is-expired .waitlist-otp-resend:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.2);
}

.waitlist-input-row.is-error .phone-visual,
.waitlist-input-row.is-error .phone-input {
  color: #ff8a8a;
}

.waitlist-input-row .waitlist-input-error {
  position: absolute;
  bottom: -22px;
  left: 0;
  right: 0;
  margin: 0;
  color: #ff8a8a;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}

.opt-in {
  z-index: 2;
  align-items: center;
  justify-content: center;
  gap: 8px;
  filter: none;
  color: var(--copy-white);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.48px;
  text-align: left;
  cursor: pointer;
}

.opt-in:focus-visible {
  outline: none;
}

.opt-in:focus-visible .check-circle {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18);
}

.opt-in-link {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  -webkit-text-fill-color: currentColor;
}

.opt-in-link:hover,
.opt-in-link:focus-visible {
  color: #fff;
  outline: none;
}

.desktop-opt-in {
  display: none;
}

.waitlist-card.is-typing .desktop-opt-in {
  display: inline-flex;
}

.check-circle {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border: 1.5px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.opt-in.is-checked .check-circle {
  border-color: #fff;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.opt-in.is-checked .check-circle::after {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.2 10.2L8.35 13.35L14.9 6.75' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 20px 20px no-repeat;
  content: "";
}

.opt-in.is-error:not(.is-checked) {
  color: var(--error);
  animation: optInShake 0.34s ease both;
}

.opt-in.is-error:not(.is-checked) .check-circle {
  border-color: var(--error);
}

.waitlist-glow {
  position: absolute;
  z-index: 1;
  left: calc(50% - 194px);
  top: -70px;
  width: 598px;
  height: 52px;
  filter: blur(80px);
  pointer-events: none;
  transform: translateZ(0);
  will-change: filter;
}

.waitlist-glow::before,
.waitlist-glow::after {
  position: absolute;
  content: "";
}

.waitlist-glow::before {
  inset: 0 31.77% 0 0;
  background: rgb(154, 38, 104);
}

.waitlist-glow::after {
  inset: 30.77% 0 0 26.92%;
  background: rgb(166, 108, 0);
}

.mobile-action-bar {
  z-index: 48;
  --mobile-action-bottom: calc(119px + env(safe-area-inset-bottom));
  display: none;
  background: transparent;
  pointer-events: none;
  transition: bottom 0.28s ease;
}

body.keyboard-open .mobile-action-bar {
  --mobile-action-bottom: calc(var(--keyboard-offset) + 20px + env(safe-area-inset-bottom));
}

.mobile-action-bar > * {
  pointer-events: auto;
}

.site-footer {
  z-index: 45;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 115px;
  padding: 40px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.48s ease;
}

.site-footer button,
.site-footer a {
  position: relative;
  z-index: 20;
  padding: 12px;
  color: var(--muted-white);
  font-size: 12px;
  font-weight: 600;
  line-height: 0.91;
  letter-spacing: -0.36px;
  text-decoration: none;
  pointer-events: auto;
}

.mobile-menu {
  z-index: 49;
  top: 0;
  bottom: 0;
  display: none;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.mobile-menu button,
.mobile-menu a {
  padding: 10px 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.44px;
  text-decoration: none;
}

body.menu-open .mobile-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.72);
  -webkit-backdrop-filter: blur(48px) saturate(0.68);
  backdrop-filter: blur(48px) saturate(0.68);
  transition: opacity 0.2s ease, visibility 0s linear 0s;
}

body.legal-page {
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
  background: #000;
}

.legal-page .site-header,
.legal-page .site-footer {
  opacity: 1;
}

.legal-shell {
  height: 100svh;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 190px 32px 160px;
  background: #000;
  overscroll-behavior-y: none;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.legal-shell::-webkit-scrollbar {
  display: none;
}

.legal-document {
  width: min(760px, 100%);
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
}

.legal-kicker,
.legal-updated {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: lowercase;
}

.legal-document > h1 {
  max-width: 760px;
  margin: 12px 0 18px;
  color: #fff;
  font-size: clamp(36px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
  hyphens: auto;
  overflow-wrap: break-word;
}

.legal-body {
  margin-top: 72px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.66;
  letter-spacing: 0;
}

.legal-body h2,
.legal-body h3,
.legal-body h4,
.legal-body p,
.legal-body ul,
.legal-body ol {
  max-width: 760px;
}

.legal-body h2 {
  margin: 58px 0 18px;
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.legal-body h3 {
  margin: 34px 0 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.legal-body h4 {
  margin: 26px 0 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 0;
}

.legal-body p {
  margin: 0 0 18px;
}

.legal-body ul,
.legal-body ol {
  margin: 0 0 22px;
  padding-left: 1.35em;
}

.legal-body li {
  margin: 0 0 10px;
  padding-left: 0.15em;
}

.legal-body .legal-alpha-dot {
  list-style-type: lower-alpha;
}

.legal-body .legal-alpha-paren,
.legal-body .legal-dash-list,
.legal-body .legal-index-list {
  list-style: none;
  padding-left: 0;
}

.legal-body .legal-alpha-paren {
  counter-reset: legal-alpha;
}

.legal-body .legal-alpha-paren li,
.legal-body .legal-dash-list li {
  position: relative;
  padding-left: 1.8em;
}

.legal-body .legal-alpha-paren li {
  counter-increment: legal-alpha;
}

.legal-body .legal-alpha-paren li::before,
.legal-body .legal-dash-list li::before {
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.52);
}

.legal-body .legal-alpha-paren li::before {
  content: counter(legal-alpha, lower-alpha) ")";
}

.legal-body .legal-dash-list li::before {
  content: "-";
}

.legal-body a,
.legal-document a {
  color: #fff;
  overflow-wrap: anywhere;
}

@keyframes blinkCursor {
  0%,
  45% {
    opacity: 1;
  }

  46%,
  100% {
    opacity: 0;
  }
}

@keyframes arrowEnter {
  0% {
    opacity: 0;
    transform: translateY(120px);
  }

  70% {
    opacity: 1;
    transform: translateY(-7px);
  }

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

@keyframes arrowHover {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

@keyframes optInShake {
  0%,
  100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-7px);
  }

  40% {
    transform: translateX(7px);
  }

  60% {
    transform: translateX(-4px);
  }

  80% {
    transform: translateX(4px);
  }
}

@keyframes waitlistSuccessIn {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }

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

@media (max-width: 700px) {
  .site-header {
    height: 124px;
    padding: 24px 36px 60px;
  }

  .brand {
    position: absolute;
    left: 50%;
    top: 24px;
    transform: translateX(-50%);
  }

  .brand-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .brand-word {
    font-size: 32px;
    letter-spacing: -0.96px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle,
  .mobile-header-spacer {
    display: inline-flex;
    width: 18px;
    height: 18px;
  }

  .menu-toggle {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 0;
  }

  .menu-toggle span {
    width: 3px;
    height: 3px;
    border-radius: 999px;
    background: #fff;
  }

  .mobile-menu {
    display: grid;
  }

  .hero-video {
    width: 100vw;
    aspect-ratio: 800 / 1000;
  }

  .product-video-wrap {
    width: 100vw;
    aspect-ratio: 804 / 760;
    margin-bottom: 0;
  }

  .product-edge-fade {
    display: none;
  }

  .product-copy {
    gap: 28px;
    width: 100vw;
  }

  .product-copy h1 {
    padding: 0 16px;
    font-size: 32px;
    line-height: 1.05;
  }

  .snap-arrow {
    width: 25px;
    height: 7px;
  }

  .snap-arrow::before {
    width: 33.6px;
    height: 15.9px;
  }

  .waitlist-card,
  .waitlist-card.is-typing {
    gap: 24px;
    width: min(calc(100vw - 32px), 360px);
    transition: transform 0.25s ease, width 0.25s ease;
  }

  .waitlist-card.is-typing {
    gap: 12px;
  }

  body.is-phone-active .waitlist-card.is-typing {
    transform: translateY(-36px);
  }

  body.keyboard-open .waitlist-card.is-typing {
    transform: translateY(-134px);
  }

  .waitlist-input-row {
    gap: 12px;
  }

  .waitlist-card.is-typing .waitlist-input-row {
    gap: 12px;
  }

  .country-code-display,
  .country-chevron,
  .phone-visual {
    filter: blur(0.6px);
    font-size: clamp(29px, 8.95vw, 36px);
    letter-spacing: -1.08px;
  }

  .country-select {
    gap: 4px;
  }

  .country-chevron {
    width: 16px;
    height: 9px;
  }

  .phone-visual {
    min-height: 42px;
  }

  .cursor-line {
    width: 2px;
    height: 42px;
  }

  .phone-placeholder {
    max-width: none;
    overflow: hidden;
    text-overflow: clip;
  }

  .desktop-join,
  .desktop-opt-in {
    display: none !important;
  }

  body.has-phone.is-phone-active .mobile-action-bar {
    display: flex;
  }

  /* Keyboard closed but phone has a value (typical after iOS autofill).
     Pull the action bar up so the input + opt-in/button are visually grouped
     and the pair stays centered in the viewport. */
  body.has-phone.is-phone-active:not(.keyboard-open) .mobile-action-bar {
    --mobile-action-bottom: calc(50svh - 78px - env(safe-area-inset-bottom));
  }

  body.is-phone-active .snap-pages {
    overscroll-behavior: contain;
    touch-action: pan-y;
  }

  body.is-phone-active {
    overscroll-behavior: none;
  }

  .mobile-action-bar {
    left: 50%;
    right: auto;
    bottom: var(--mobile-action-bottom);
    width: min(100vw, 402px);
    height: 64px;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 0 18px;
    transform: translateX(-50%);
    background: transparent !important;
  }

  .mobile-opt-in {
    display: inline-flex;
    position: relative;
    z-index: 48;
    width: auto;
    height: auto;
    flex: 1 1 auto;
    align-items: center;
    justify-content: flex-start;
    max-width: 216px;
    min-width: 0;
    border: 0;
    background: transparent !important;
    box-shadow: none;
    filter: none;
    -webkit-appearance: none;
    appearance: none;
    font-size: clamp(8.8px, 2.5vw, 9.8px);
    line-height: 1.16;
    letter-spacing: -0.2px;
    gap: 7px;
  }

  .mobile-opt-in .check-circle {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }

  .mobile-opt-in .check-circle::after {
    background-size: 18px 18px;
  }

  .mobile-opt-in .opt-in-copy {
    display: block;
    flex: 1 1 auto;
    width: auto;
    max-width: none;
    background: transparent !important;
  }

  .mobile-opt-in .opt-in-copy span {
    white-space: normal;
  }

  .mobile-join {
    position: relative;
    z-index: 48;
    margin-left: auto;
    padding: 14px;
    border-radius: 22px;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 0.18px;
  }

  .mobile-join::before {
    padding: 1px;
  }

  .waitlist-tagline {
    filter: none;
    color: rgba(255, 255, 255, 0.24);
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: -0.36px;
  }

  .waitlist-success {
    width: min(334px, calc(100vw - 48px));
    filter: blur(0.45px);
    font-size: 28px;
    line-height: 1.08;
    letter-spacing: -0.84px;
  }

  .waitlist-glow {
    left: calc(50% - 92px);
    top: -39px;
    width: 281px;
    height: 26px;
    filter: blur(50px);
  }

  .site-footer {
    align-items: flex-end;
    height: 115px;
    padding: 32px 24px 16px;
  }

  .site-footer button,
  .site-footer a {
    padding: 0 12px;
  }

  .legal-shell {
    padding: 148px 24px 132px;
  }

  .legal-document > h1 {
    margin-top: 10px;
    font-size: clamp(29px, 7.8vw, 36px);
    line-height: 0.98;
  }

  .legal-kicker,
  .legal-updated {
    font-size: 12px;
  }

  .legal-body {
    margin-top: 50px;
    font-size: 15px;
    line-height: 1.6;
  }

  .legal-body h2 {
    margin-top: 44px;
    font-size: 23px;
    line-height: 1.16;
  }

  .legal-body h3 {
    margin-top: 28px;
    font-size: 17px;
  }

  .legal-body h4 {
    margin-top: 22px;
    font-size: 15px;
  }

  .legal-body p {
    margin-bottom: 16px;
  }

  .legal-body ul,
  .legal-body ol {
    margin-bottom: 18px;
    padding-left: 1.25em;
  }

}

@media (max-width: 360px) {
  .mobile-action-bar {
    gap: 8px;
    padding: 0 14px;
  }

  .mobile-opt-in {
    max-width: 202px;
    font-size: 8.8px;
  }

  .mobile-join {
    font-size: 16px;
  }
}

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