@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("fonts/playfair-display-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 400 800;
  font-display: swap;
  src: url("fonts/playfair-display-latin-italic.woff2") format("woff2");
}

:root {
  --ink: #f8f6ef;
  --blue: #1236c4;
  --red: #ff3045;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --pointer-x: 50vw;
  --pointer-y: 50vh;
}

* {
  box-sizing: border-box;
}

html {
  background: #101812;
  scroll-behavior: auto;
  scroll-snap-type: y mandatory;
  overscroll-behavior-y: none;
  scrollbar-width: none;
}

html.is-transitioning,
html.is-typing {
  scroll-snap-type: none;
}

/* The form sits at the very end of the document — with the keyboard open
   there is nothing left to scroll, so the field stays hidden behind it.
   While typing, add temporary space below so the page can scroll up. */
html.is-typing .site {
  padding-bottom: 55vh;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  background: #101812;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

button:focus-visible,
input:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.site {
  min-height: 200vh; /* fallback for browsers without svh units */
  min-height: 200svh;
  position: relative;
  isolation: isolate;
}

.video-stage {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #172018;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background: #101812;
  transition: opacity .7s ease;
}

.preloader.is-done {
  opacity: 0;
  pointer-events: none;
}

.preloader-logo {
  width: auto;
  height: clamp(30px, 3.4vw, 42px);
  opacity: .92;
}

.preloader-spinner {
  width: 26px;
  height: 26px;
  border: 2px solid rgba(36, 73, 223, .28);
  border-top-color: #2449df;
  border-radius: 50%;
  animation: preloader-spin .9s linear infinite;
}

@keyframes preloader-spin {
  to { transform: rotate(360deg); }
}

.background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.018);
  transition: filter 1s ease, transform 1.2s cubic-bezier(.2,.8,.2,1), opacity .08s linear;
}

.reverse-video {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

html.is-reversing .forward-video {
  opacity: 0;
}

html.is-reversing .reverse-video {
  opacity: 1;
}

.loop-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

html.is-looping .loop-video {
  opacity: 1;
}

.final-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

html.is-finale .final-video {
  opacity: 1;
}

.video-wash {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(
    ellipse 68% 108% at -8% 52%,
    rgba(5, 11, 7, .82) 0%,
    rgba(5, 11, 7, .56) 48%,
    rgba(5, 11, 7, .18) 75%,
    transparent 100%
  );
  transition: background 1s ease;
}

.slide-is-2 .background-video {
  filter: saturate(.82) brightness(.84);
  transform: scale(1.035);
}

.slide-is-2 .video-wash {
  background:
    linear-gradient(90deg, transparent 35%, rgba(7, 12, 8, .16) 55%, rgba(5, 9, 6, .72) 100%),
    linear-gradient(180deg, rgba(5, 9, 6, .4), transparent 25%, transparent 72%, rgba(5, 9, 6, .58));
}

.pointer-light {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: radial-gradient(360px circle at var(--pointer-x) var(--pointer-y), rgba(255,255,255,.12), transparent 70%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Horizontal padding mirrors .slide so the logo lines up with the content column. */
  padding: clamp(22px, 3.1vw, 48px) clamp(22px, 8vw, 132px);
}

.wordmark,
.header-link,
.slide-nav button,
.text-action {
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
}

/* Same glass as .sound-toggle / .header-link span. */
.wordmark {
  line-height: 0;
  padding: 10px 16px 11px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.wordmark img {
  display: block;
  width: auto;
  height: clamp(30px, 2.7vw, 42px);
}

.header-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .17em;
}

.header-link span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform .35s ease, background .35s ease, color .35s ease, border-color .35s ease;
}

.header-link span::before {
  content: "→";
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1;
  transform: rotate(45deg);
}

.header-link:hover span {
  transform: scale(1.08);
  background: #fff;
  color: #101812;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 24px);
}

.sound-toggle {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}

.sound-toggle:hover {
  transform: scale(1.08);
  border-color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.14);
}

.sound-bars {
  display: flex;
  align-items: flex-end;
  gap: 2.5px;
  height: 12px;
}

.sound-bars i {
  width: 2px;
  height: 4px;
  border-radius: 1px;
  background: #fff;
  opacity: .5;
  transition: opacity .35s ease;
}

.sound-toggle.is-on .sound-bars i {
  opacity: .95;
  animation: sound-bar 1.15s ease-in-out infinite;
}

.sound-toggle.is-on .sound-bars i:nth-child(2) {
  animation-delay: .22s;
  animation-duration: 1.35s;
}

.sound-toggle.is-on .sound-bars i:nth-child(3) {
  animation-delay: .48s;
  animation-duration: .95s;
}

/* Muted state: dim bars with a thin strike-through. */
.sound-toggle:not(.is-on)::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 1px;
  background: rgba(255,255,255,.75);
  transform: rotate(-45deg);
}

@keyframes sound-bar {
  0%, 100% { height: 4px; }
  50% { height: 12px; }
}

.slide {
  position: relative;
  min-height: 100vh; /* fallback for browsers without svh units */
  min-height: 100svh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  padding: clamp(104px, 11vw, 170px) clamp(22px, 8vw, 132px) clamp(78px, 8vw, 118px);
}

.hero {
  justify-content: flex-start;
}

.hero .hero-copy {
  position: relative;
  z-index: 1;
}

.hero .scroll-cue {
  z-index: 1;
}

.hero-copy {
  width: min(560px, 58vw);
  transform: translateY(3vh);
}

.journey-copy {
  width: min(500px, 44vw);
  transform: none;
}

.journey-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -14% -30% -10% -38%;
  background: radial-gradient(
    ellipse 62% 58% at 44% 46%,
    rgba(4, 10, 6, .52) 0%,
    rgba(4, 10, 6, .34) 48%,
    rgba(4, 10, 6, .14) 70%,
    transparent 88%
  );
  pointer-events: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .21em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: .01em;
  text-wrap: balance;
}

h1 {
  max-width: 530px;
  font-size: clamp(52px, 7vw, 108px);
  line-height: .91;
  text-shadow: 0 2px 30px rgba(0,0,0,.24);
}

h1 em {
  display: block;
  color: #bdc8ff;
  font-style: normal;
  font-weight: 400;
}

.journey-copy h1 {
  max-width: 500px;
  font-size: clamp(40px, 4.2vw, 64px);
  line-height: .94;
  text-shadow: 0 3px 24px rgba(0,0,0,.5);
}

.journey-steps {
  width: min(390px, 100%);
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.journey-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  min-height: clamp(56px, 4.6vw, 66px);
  color: rgba(255,255,255,.84);
  text-shadow: 0 2px 15px rgba(0,0,0,.65);
}

.journey-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 26px;
  bottom: 5px;
  left: 11px;
  width: 1px;
  background: rgba(255,255,255,.3);
}

.journey-marker {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 50%;
  background: rgba(8,16,10,.48);
  color: #fff;
  font-size: 11px;
}

.journey-steps .is-current {
  color: #fff;
}

.is-current .journey-marker {
  border-color: #3157ee;
  background: #2449df;
  box-shadow: 0 0 24px rgba(36,73,223,.4);
}

.journey-steps strong,
.journey-steps small {
  display: block;
}

.journey-steps strong {
  margin-top: 1px;
  font-family: var(--serif);
  font-size: clamp(17px, 1.4vw, 22px);
  font-weight: 500;
  line-height: 1.1;
}

.journey-steps small {
  margin-top: 4px;
  color: rgba(255,255,255,.74);
  font-size: clamp(11px, .85vw, 13px);
  line-height: 1.35;
  letter-spacing: .035em;
}

.journey-update {
  margin: 5px 0 0 38px;
  color: rgba(255,255,255,.74);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.hero-note {
  margin: 28px 0 30px;
  font-family: var(--serif);
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.5;
}

.text-action {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.65);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.text-action span {
  transition: transform .3s ease;
}

.text-action:hover span {
  transform: translateY(4px);
}

.waitlist {
  justify-content: space-between;
  gap: clamp(24px, 4vw, 64px);
}

.waitlist-copy {
  width: min(470px, 36vw);
  padding: 26px 28px 24px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(7,16,10,.22);
  box-shadow: 0 22px 70px rgba(0,0,0,.16);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  text-shadow: 0 2px 18px rgba(0,0,0,.55);
}

.waitlist-copy h2 {
  font-size: clamp(34px, 3.2vw, 54px);
  line-height: .96;
}

.waitlist-note {
  margin: 18px 0 0;
  max-width: 400px;
  color: rgba(255,255,255,.86);
  font-family: var(--serif);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
}

.fact-list {
  display: flex;
  gap: clamp(18px, 2.4vw, 34px);
  margin: 26px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255,255,255,.28);
  list-style: none;
}

.fact-list strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(16px, 1.4vw, 21px);
  font-weight: 500;
  line-height: 1.15;
}

.fact-list small {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,.72);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.waitlist-panel {
  width: min(470px, 42vw);
  padding: 22px 24px 18px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(7,16,10,.22);
  box-shadow: 0 22px 70px rgba(0,0,0,.16);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

/* Honeypot: parked far off-screen, never display:none (bots skip that). */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.email-form label {
  display: block;
  margin-bottom: 10px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 12px;
}

.field-row input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 14px 12px 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.62);
  font-family: var(--serif);
  font-size: 16px;
}

.field-row input::placeholder {
  color: rgba(255,255,255,.48);
}

.field-row input:focus {
  outline: none;
}

.field-row button {
  min-height: 42px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  padding: 6px 7px 6px 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}

.field-row button span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f7f4eb;
  color: #111b13;
  font-size: 13px;
  transition: transform .3s ease;
}

.field-row button:hover:not(:disabled) {
  border-color: rgba(104,130,255,.9);
  background: rgba(36,73,223,.72);
  transform: translateY(-1px);
}

.field-row button:hover:not(:disabled) span {
  transform: translateX(2px);
}

.field-row button:disabled {
  cursor: default;
  opacity: .76;
}

.form-message {
  min-height: 18px;
  margin: 9px 0 0;
  color: rgba(255,255,255,.58);
  font-size: 10px;
  letter-spacing: .04em;
}

.form-message:empty {
  display: none;
}

.form-message.success { color: #dfe6ff; }
.form-message.error { color: #ffb7bd; }

/* Success state: the form controls give way to a prominent confirmation. */
.email-form.is-sent label,
.email-form.is-sent .field-row,
.email-form.is-sent .form-message {
  display: none;
}

.form-success {
  display: none;
  align-items: center;
  gap: 16px;
  padding: 8px 0 6px;
}

.email-form.is-sent .form-success {
  display: flex;
  animation: success-in .6s cubic-bezier(.2, .8, .2, 1);
}

.form-success-check {
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #2449df;
  color: #fff;
  font-size: 19px;
  box-shadow: 0 0 0 6px rgba(36, 73, 223, .18), 0 8px 30px rgba(36, 73, 223, .45);
  animation: success-pop .6s cubic-bezier(.34, 1.56, .64, 1);
}

.form-success-text strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(19px, 1.6vw, 24px);
  font-weight: 500;
  line-height: 1.15;
}

.form-success-text small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, .72);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

@keyframes success-pop {
  0% { transform: scale(.4); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes success-in {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: none; }
}

.marquee {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.25);
  border-bottom: 1px solid rgba(255,255,255,.16);
  background: rgba(5,11,7,.18);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
  will-change: transform;
}

.marquee-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: clamp(18px, 2.5vw, 38px);
  padding: 17px clamp(18px, 2.5vw, 38px);
}

.marquee-group span {
  white-space: nowrap;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
}

.marquee-group i {
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 50%;
}

.slide-nav {
  position: fixed;
  z-index: 18;
  top: 50%;
  right: clamp(18px, 3.2vw, 52px);
  display: grid;
  gap: 13px;
  transform: translateY(-50%);
}

.slide-nav button {
  display: grid;
  grid-template-columns: 23px 28px;
  align-items: center;
  gap: 8px;
  opacity: .52;
  transition: opacity .3s ease;
}

.slide-nav button:hover,
.slide-nav button.is-active {
  opacity: 1;
}

.nav-number {
  font-size: 9px;
  letter-spacing: .08em;
}

.nav-line {
  width: 28px;
  height: 1px;
  background: #fff;
  transform-origin: right;
  transform: scaleX(.45);
  transition: transform .4s ease;
}

.is-active .nav-line {
  transform: scaleX(1);
}

.nav-label {
  position: absolute;
  right: 100%;
  margin-right: 14px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .14em;
  transition: opacity .3s ease;
}

.slide-nav button:hover .nav-label {
  opacity: 1;
}

.scroll-cue {
  position: fixed;
  z-index: 18;
  bottom: clamp(24px, 4vw, 56px);
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .2em;
  pointer-events: none;
  transition: opacity .35s ease;
}

.slide-is-2 .scroll-cue,
html.is-transitioning .scroll-cue {
  opacity: 0;
}

.scroll-cue i {
  display: block;
  width: 44px;
  height: 1px;
  background: #fff;
  animation: cue 1.8s ease-in-out infinite;
  transform-origin: left;
}

.reveal {
  opacity: .34;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1);
}

.slide-is-1 .hero .reveal,
.slide-is-2 .waitlist .reveal {
  opacity: 1;
  transform: translateY(0);
}

@keyframes cue {
  0%, 100% { transform: scaleX(.25); opacity: .45; }
  50% { transform: scaleX(1); opacity: 1; }
}

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

@media (max-width: 820px) {
  /* The bottle sits at 49.3% of the frame width — a plain centered crop
     keeps it mid-screen on any phone. */
  .background-video {
    object-position: center center;
  }

  .video-wash {
    background: radial-gradient(
      ellipse 112% 105% at -28% 54%,
      rgba(4,10,6,.82) 0%,
      rgba(4,10,6,.58) 48%,
      rgba(4,10,6,.2) 74%,
      transparent 100%
    );
  }

  .slide-is-2 .video-wash {
    background:
      linear-gradient(180deg, rgba(5,10,7,.48), transparent 25%, transparent 54%, rgba(5,9,6,.7)),
      linear-gradient(90deg, rgba(5,10,7,.35), transparent 72%);
  }

  .hero {
    align-items: flex-start;
    padding-top: clamp(132px, 18vh, 190px);
  }

  .hero-copy,
  .waitlist-panel {
    width: min(100%, 540px);
  }

  .waitlist {
    align-items: flex-end;
    justify-content: flex-end;
  }

  .waitlist-copy {
    display: none;
  }

  .waitlist-panel {
    padding: 20px 22px 16px;
    background: rgba(7,16,10,.26);
  }

  .slide-nav,
  .scroll-cue {
    display: none;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 20px;
  }

  .header-link {
    font-size: 0;
  }

  .header-link span {
    font-size: 12px;
  }

  .slide {
    padding: 94px 20px 78px;
  }

  .hero {
    align-items: flex-start;
    padding-top: clamp(128px, 17vh, 170px);
  }

  .hero-copy {
    transform: none;
    padding-bottom: 7vh;
  }

  .journey-copy {
    width: min(100%, 410px);
    padding-bottom: 0;
  }

  .journey-copy h1 {
    font-size: clamp(43px, 12vw, 58px);
  }

  .journey-steps {
    margin-top: 26px;
  }

  .journey-steps li {
    min-height: 56px;
  }

  .eyebrow {
    margin-bottom: 16px;
  }

  h1 {
    max-width: 390px;
    font-size: clamp(50px, 15vw, 72px);
  }

  .hero-note {
    margin: 18px 0 22px;
    font-size: 16px;
  }

  /* Compact single-row form so more of the bottle stays visible. */
  .waitlist-panel {
    width: 100%;
    padding: 14px 16px 10px;
  }

  .field-row input {
    padding-top: 10px;
    /* 16px minimum — anything smaller makes iOS auto-zoom the page on focus. */
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,.7);
  }

  .field-row button {
    min-height: 40px;
    padding: 4px 6px 4px 14px;
    gap: 10px;
  }

  .field-row button span {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .marquee-group {
    padding-block: 14px;
  }
}

@media (max-height: 620px) and (max-width: 820px) {
  .waitlist-panel {
    padding: 18px 20px;
  }

  .hero {
    padding-top: 90px;
  }

  .journey-copy h1 {
    font-size: 42px;
  }

  .journey-steps {
    margin-top: 16px;
  }

  .journey-steps li {
    min-height: 42px;
  }

  .journey-steps li:not(:last-child)::after {
    bottom: 2px;
  }

  .journey-steps li:not(.is-current) small {
    display: none;
  }
}

/* Short viewports at any width (landscape phones): compress so slides fit 100svh. */
@media (max-height: 520px) {
  .hero {
    align-items: flex-start;
    padding-top: 76px;
  }

  .hero-copy {
    transform: none;
  }

  .journey-copy h1 {
    font-size: clamp(32px, 8vh, 42px);
  }

  .journey-steps {
    margin-top: 12px;
  }

  .journey-steps li {
    min-height: 36px;
  }

  .journey-steps li:not(:last-child)::after {
    bottom: 2px;
  }

  .journey-steps li:not(.is-current) small {
    display: none;
  }

  .journey-update {
    display: none;
  }

  .waitlist-panel {
    padding: 14px 18px 12px;
  }

  .scroll-cue {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .background-video { display: none; }
  .pointer-light { display: none; }
}

/* Browsers without backdrop-filter (older Firefox/Safari): solid panels
   instead of glass so text stays readable over the video. */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .waitlist-panel,
  .waitlist-copy {
    background: rgba(7, 16, 10, .68);
  }

  .sound-toggle,
  .header-link span,
  .wordmark {
    background: rgba(8, 16, 10, .45);
  }

  .marquee {
    background: rgba(5, 11, 7, .6);
  }
}
