/* ============================================================
   Naked mobile landing page
   Ported 1:1 from "Naked Hero Mobile" design comp.
   Scroll-driven values are written by app.js.
   ============================================================ */

:root {
  --ink: #1c1014;
  --dark: #16090f;
  --pink: #ff3fa8;
  --pink-soft: #ff6fc0;
  --pink-pale: #ffb3e0;
  --font: 'SF Pro Display', 'SF Pro Text', 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--ink); text-decoration: none; }
a:hover { color: #0066cc; }

img { display: block; }

/* Page backdrop: white behind the hero, dark once the hero hands off.
   Keeps the space either side of the 480px column in sync on wide screens. */
.backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: var(--dark);
  opacity: 0;
  pointer-events: none;
}

.column {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

/* ------------------------------------------------------------
   Keyframes
   ------------------------------------------------------------ */
@keyframes siriSpin   { 0% { transform: rotate(0deg) scale(1); } 50% { transform: rotate(180deg) scale(1.14); } 100% { transform: rotate(360deg) scale(1); } }
@keyframes siriIntro  { 0% { opacity: 0; } 10% { opacity: 1; } 55% { opacity: 0.95; } 100% { opacity: 0; } }
@keyframes auroraA    { 0% { transform: translateX(-50%) scale(1); } 100% { transform: translateX(-50%) scale(1.14); } }
@keyframes auroraB    { 0% { transform: translateX(-50%) scale(1); } 100% { transform: translateX(-50%) scale(1.2); } }
@keyframes auroraC    { 0% { transform: translate(-50%, -50%) scale(1); } 100% { transform: translate(-50%, -50%) scale(1.18); } }
@keyframes deviceFloat{ 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes cueNudge   { 0%, 100% { transform: translateY(-3px); opacity: 0.55; } 50% { transform: translateY(3px); opacity: 1; } }

/* ------------------------------------------------------------
   Shared type treatments
   ------------------------------------------------------------ */
.grad-dark {
  background-image: linear-gradient(180deg, #1d0e16 0%, #2a1620 30%, #6b4a5c 62%, #a98e9d 84%, #cdb9c4 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.grad-light {
  background-image: linear-gradient(180deg, #ffffff 0%, #f6e6ef 30%, #ffb3e0 68%, #ff6fc0 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* Liquid-glass pill button */
.glass-btn {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 9999px;
  padding: 15px 34px;
  font: inherit;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #35202b;
  cursor: pointer;
  background: linear-gradient(160deg, rgba(255,255,255,0.34) 0%, rgba(255,255,255,0.12) 46%, rgba(255,255,255,0.26) 100%);
  -webkit-backdrop-filter: saturate(200%) blur(9px) brightness(1.06);
  backdrop-filter: saturate(200%) blur(9px) brightness(1.06);
  box-shadow:
    inset 0 1.5px 1px rgba(255,255,255,0.9),
    inset 0 -1.5px 2px rgba(255,255,255,0.55),
    inset 0 0 22px rgba(255,255,255,0.28),
    0 6px 22px rgba(53,32,43,0.12);
  transition: transform 120ms ease, background 120ms ease;
}
.glass-btn:active { transform: scale(0.95); background: rgba(255,255,255,0.6); }
a.glass-btn, a.solid-btn { display: inline-block; text-decoration: none; text-align: center; }
a.glass-btn:hover { color: #35202b; }
a.solid-btn:hover { color: var(--dark); }

.glass-btn--dark, a.glass-btn--dark:hover { color: #ffffff; }
.glass-btn--dark {
  border-color: rgba(255,255,255,0.30);
  color: #ffffff;
  background: linear-gradient(160deg, rgba(255,255,255,0.20) 0%, rgba(255,255,255,0.07) 46%, rgba(255,255,255,0.16) 100%);
  box-shadow:
    inset 0 1.5px 1px rgba(255,255,255,0.45),
    inset 0 -1.5px 2px rgba(255,255,255,0.22),
    inset 0 0 22px rgba(255,255,255,0.10),
    0 10px 30px rgba(0,0,0,0.4);
}

.solid-btn {
  appearance: none;
  border: 0;
  border-radius: 9999px;
  padding: 17px 38px;
  font: inherit;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--dark);
  cursor: pointer;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: transform 120ms ease;
}
.solid-btn:active { transform: scale(0.95); }

/* "Keep scrolling" cue */
.cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}
.cue-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}
.cue-arrow {
  color: rgba(255,255,255,0.34);
  animation: cueNudge 1.7s ease-in-out infinite;
}

/* ------------------------------------------------------------
   HERO. 470vh scroll track with a pinned stage
   ------------------------------------------------------------ */
.hero-track {
  position: relative;
  width: 100%;
  height: 540vh;
  background: #ffffff;
}

.hero-stage {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #ffffff;
}

.hero-cue {
  position: absolute;
  inset: 0;
  z-index: 27;
  justify-content: center;
  gap: 14px;
  opacity: 0;
}

.hero-dark {
  position: absolute;
  inset: 0;
  z-index: 9;
  pointer-events: none;
  background: var(--dark);
  opacity: 0;
}

.hero-aurora {
  position: absolute;
  inset: 0;
  z-index: 9;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
}
.hero-aurora .band {
  position: absolute;
  left: 50%;
  bottom: -24%;
  width: 154%;
  height: 88%;
  transform: translateX(-50%);
  border-radius: 9999px;
  background: radial-gradient(closest-side, rgba(255,63,168,0) 46%, rgba(255,63,168,0.45) 62%, rgba(255,63,168,0.95) 75%, rgba(255,143,208,0.38) 88%, rgba(255,143,208,0) 100%);
  filter: blur(28px);
  -webkit-mask-image: linear-gradient(to top, #000 0%, #000 44%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0) 72%);
  mask-image: linear-gradient(to top, #000 0%, #000 44%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0) 72%);
  animation: auroraA 13s ease-in-out infinite alternate;
}
.hero-aurora .haze {
  position: absolute;
  left: 50%;
  bottom: -18%;
  width: 124%;
  height: 42%;
  transform: translateX(-50%);
  border-radius: 9999px;
  background: radial-gradient(closest-side, rgba(255,143,208,0.3) 0%, rgba(255,168,220,0.14) 52%, rgba(255,168,220,0) 82%);
  filter: blur(46px);
  animation: auroraB 17s ease-in-out infinite alternate;
}

.hero-layer {
  position: absolute;
  inset: 0;
  z-index: 8;
  overflow: hidden;
}

/* Siri-style intro swirl around the edges */
.siri {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.85;
  -webkit-mask-image:
    linear-gradient(to right, #000 0, #000 10px, rgba(0,0,0,0.55) 26px, rgba(0,0,0,0) 46px, rgba(0,0,0,0) calc(100% - 46px), rgba(0,0,0,0.55) calc(100% - 26px), #000 calc(100% - 10px), #000 100%),
    linear-gradient(to bottom, #000 0, #000 10px, rgba(0,0,0,0.55) 26px, rgba(0,0,0,0) 46px, rgba(0,0,0,0) calc(100% - 46px), rgba(0,0,0,0.55) calc(100% - 26px), #000 calc(100% - 10px), #000 100%);
  mask-image:
    linear-gradient(to right, #000 0, #000 10px, rgba(0,0,0,0.55) 26px, rgba(0,0,0,0) 46px, rgba(0,0,0,0) calc(100% - 46px), rgba(0,0,0,0.55) calc(100% - 26px), #000 calc(100% - 10px), #000 100%),
    linear-gradient(to bottom, #000 0, #000 10px, rgba(0,0,0,0.55) 26px, rgba(0,0,0,0) 46px, rgba(0,0,0,0) calc(100% - 46px), rgba(0,0,0,0.55) calc(100% - 26px), #000 calc(100% - 10px), #000 100%);
  animation: siriIntro 1.5s ease-out 0.05s both;
}
.siri > i {
  position: absolute;
  inset: -30%;
  background: conic-gradient(from 0deg, #ff3fa8, #ff8fd0, #d94fb8, #ff6fc0, #ffb3e0, #ff3fa8);
  filter: blur(18px);
  animation: siriSpin 3s linear infinite;
}

.hero-top {
  position: absolute;
  left: 0; right: 0; top: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  padding: 22px 22px 0;
}
.hero-top .tagline {
  position: absolute;
  left: 0; right: 0; top: 22px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  padding-top: 5px;
}
.hero-top .tagline span {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-top .mark { color: #35202b; }

.hero-word {
  margin: 0;
  position: absolute;
  left: 0; right: 0;
  bottom: 61vh;
  z-index: 1;
  display: flex;
  justify-content: center;
  will-change: transform;
}
.hero-word span {
  display: inline-block;
  font-size: min(27vw, 122px);
  line-height: 0.88;
  font-weight: 400;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.hero-cta {
  position: absolute;
  left: 0; right: 0;
  bottom: 30px;
  z-index: 5;
  display: flex;
  justify-content: center;
}

.hero-phone {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
}
.hero-phone .holder {
  position: relative;
  display: block;
  height: 66vh;
  will-change: transform;
}
.hero-phone img {
  height: 66vh;
  width: auto;
  max-width: none;
}

.hero-eyebrow {
  position: absolute;
  left: 0; right: 0;
  top: 15%;
  display: flex;
  justify-content: center;
  z-index: 20;
  opacity: 0;
  will-change: opacity;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
}

/* Glass cards that cross-fade through the middle of the hero track */
.card-stack { position: absolute; inset: 0; }
.card {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  will-change: opacity, transform;
}
.card:nth-child(1) { z-index: 10; }
.card:nth-child(2) { z-index: 11; }
.card:nth-child(3) { z-index: 12; }

.card-glass {
  width: min(86%, 392px);
  padding: 40px 34px 42px;
  border-radius: 30px;
  background: linear-gradient(150deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.05) 44%, rgba(255,255,255,0.11) 100%);
  border: 1px solid rgba(255,255,255,0.16);
  -webkit-backdrop-filter: saturate(190%) blur(26px);
  backdrop-filter: saturate(190%) blur(26px);
  box-shadow:
    inset 0 1.5px 1px rgba(255,255,255,0.5),
    inset 0 -1.5px 2px rgba(255,255,255,0.16),
    inset 0 0 40px rgba(255,255,255,0.06),
    0 30px 80px rgba(0,0,0,0.5);
}
.card-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-soft);
  margin-bottom: 22px;
}
.card-title {
  margin: 0;
  font-size: 27px;
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.024em;
  text-wrap: pretty;
}
.card-body {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  color: rgba(255,255,255,0.58);
  margin-top: 16px;
  text-wrap: pretty;
}

/* Payoff copy */
.payoff {
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  z-index: 25;
  padding: 0 30px;
  text-align: center;
  opacity: 0;
  will-change: opacity, transform;
}
.payoff h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-wrap: pretty;
}
.payoff .body {
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  margin: 22px auto 0;
  max-width: 21em;
  text-wrap: pretty;
}
.payoff .fine {
  font-size: 13px;
  line-height: 1.6;
  font-weight: 400;
  color: rgba(255,255,255,0.42);
  margin: 34px auto 0;
  max-width: 22em;
  text-wrap: pretty;
}

.payoff-cta {
  position: absolute;
  left: 0; right: 0;
  bottom: 52px;
  z-index: 28;
  display: flex;
  justify-content: center;
  opacity: 0;
}

.hero-glow {
  position: absolute;
  left: 50%;
  bottom: -14%;
  width: 120%;
  height: 34%;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 70%, rgba(214,59,150,0.20) 0%, rgba(255,168,220,0.12) 40%, rgba(255,255,255,0) 74%);
  filter: blur(20px);
}

/* ------------------------------------------------------------
   DARK BODY
   ------------------------------------------------------------ */
.dark-body {
  width: 100%;
  background: var(--dark);
  /* Panel artwork is deliberately wider than the text column.
     `clip`, not `hidden`. `hidden` would turn this into a scroll
     container and break the sticky hero above it. */
  overflow-x: clip;
}

/* "Explore Naked" pinned title */
.explore-track {
  position: relative;
  width: 100%;
  height: 165vh;
  background: var(--dark);
}
.explore-track .foot-fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 34vh;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(180deg, rgba(22,9,15,0) 0%, rgba(22,9,15,0.55) 58%, #16090f 100%);
}
.explore-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.explore-stage .orb {
  position: absolute;
  left: 50%; top: 50%;
  width: 92%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 9999px;
  pointer-events: none;
  background: radial-gradient(closest-side, rgba(255,63,168,0.62) 0%, rgba(255,111,192,0.30) 44%, rgba(255,111,192,0.10) 68%, rgba(255,111,192,0) 86%);
  filter: blur(44px);
  animation: auroraC 12s ease-in-out infinite alternate;
}
.explore-stage .band {
  position: absolute;
  left: 50%; bottom: -18%;
  width: 150%;
  height: 84%;
  transform: translateX(-50%);
  border-radius: 9999px;
  pointer-events: none;
  background: radial-gradient(closest-side, rgba(255,63,168,0) 46%, rgba(255,63,168,0.32) 62%, rgba(255,63,168,0.62) 75%, rgba(255,143,208,0.24) 88%, rgba(255,143,208,0) 100%);
  filter: blur(30px);
  -webkit-mask-image: linear-gradient(to top, #000 0%, #000 44%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0) 72%);
  mask-image: linear-gradient(to top, #000 0%, #000 44%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0) 72%);
  animation: auroraA 13s ease-in-out infinite alternate;
}
.explore-title {
  margin: 0;
  font-size: min(19vw, 86px);
  line-height: 0.88;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-align: center;
  text-transform: uppercase;
  background-image: linear-gradient(90deg, #ffffff 0%, #ffffff 40%, #ffb3e0 76%, #ff6fc0 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.explore-cue {
  position: absolute;
  left: 0; right: 0;
  bottom: 46px;
  gap: 12px;
}
.explore-cue .cue-label { font-size: 11px; letter-spacing: 0.22em; color: rgba(255,255,255,0.4); }

/* Feature panels */
.panel {
  position: relative;
  padding: 58px 26px 72px;
  background: var(--dark);
}
.panel .inner { max-width: 392px; margin: 0 auto; }
.panel h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.14;
  font-weight: 600;
  letter-spacing: -0.028em;
  color: #ffffff;
  text-wrap: pretty;
  will-change: opacity, transform;
}
.panel p {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.58);
  margin: 16px 0 0;
  text-wrap: pretty;
  will-change: opacity, transform;
}
.panel .shot {
  position: relative;
  margin-top: 36px;
  display: flex;
  justify-content: center;
  will-change: opacity, transform;
}
.panel .shot .halo {
  position: absolute;
  left: 50%; top: 46%;
  width: 86%; height: 62%;
  transform: translate(-50%, -50%);
  border-radius: 9999px;
  pointer-events: none;
  background: radial-gradient(closest-side, rgba(255,63,168,0.34) 0%, rgba(255,111,192,0.16) 48%, rgba(255,111,192,0) 78%);
  filter: blur(42px);
  animation: auroraC 15s ease-in-out infinite alternate;
}
.panel .shot img {
  position: relative;
  width: 100%;
  max-width: none;
  height: auto;
}

#p0 .shot img {
  width: 118%;
  margin-bottom: -10%;
  -webkit-mask-image:
    linear-gradient(180deg, #000 0%, #000 56%, rgba(0,0,0,0.45) 78%, rgba(0,0,0,0) 100%),
    radial-gradient(112% 96% at 50% 40%, #000 52%, rgba(0,0,0,0.5) 80%, rgba(0,0,0,0) 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(180deg, #000 0%, #000 56%, rgba(0,0,0,0.45) 78%, rgba(0,0,0,0) 100%),
    radial-gradient(112% 96% at 50% 40%, #000 52%, rgba(0,0,0,0.5) 80%, rgba(0,0,0,0) 100%);
  mask-composite: intersect;
  animation: deviceFloat 7s ease-in-out infinite;
}
#p2 .shot img {
  width: 100%;
  -webkit-mask-image:
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.45) 14%, #000 30%, #000 60%, rgba(0,0,0,0.5) 80%, rgba(0,0,0,0) 96%),
    radial-gradient(120% 90% at 8% 4%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.45) 22%, #000 44%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.45) 14%, #000 30%, #000 60%, rgba(0,0,0,0.5) 80%, rgba(0,0,0,0) 96%),
    radial-gradient(120% 90% at 8% 4%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.45) 22%, #000 44%);
  mask-composite: intersect;
  animation: deviceFloat 7.5s ease-in-out infinite;
}
#p3 .shot img {
  width: 116%;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.45) 12%, #000 28%, #000 62%, rgba(0,0,0,0.5) 82%, rgba(0,0,0,0) 98%);
  mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.45) 12%, #000 28%, #000 62%, rgba(0,0,0,0.5) 82%, rgba(0,0,0,0) 98%);
  animation: deviceFloat 8s ease-in-out infinite;
}
#p4 .shot img {
  width: 114%;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.45) 12%, #000 28%, #000 62%, rgba(0,0,0,0.5) 82%, rgba(0,0,0,0) 98%);
  mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.45) 12%, #000 28%, #000 62%, rgba(0,0,0,0.5) 82%, rgba(0,0,0,0) 98%);
  animation: deviceFloat 8.5s ease-in-out infinite;
}

/* Closing CTA */
.closing {
  padding: 118px 26px 130px;
  background: var(--dark);
}
.closing .inner { max-width: 392px; margin: 0 auto; text-align: center; }
.closing h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-wrap: pretty;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms cubic-bezier(0.22,0.61,0.36,1), transform 700ms cubic-bezier(0.22,0.61,0.36,1);
}
.closing p {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.6);
  margin: 22px auto 0;
  max-width: 24em;
  text-wrap: pretty;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms cubic-bezier(0.22,0.61,0.36,1), transform 700ms cubic-bezier(0.22,0.61,0.36,1);
  transition-delay: 180ms;
}
.closing .actions {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms cubic-bezier(0.22,0.61,0.36,1), transform 700ms cubic-bezier(0.22,0.61,0.36,1);
  transition-delay: 340ms;
}
.closing.is-in h2,
.closing.is-in p,
.closing.is-in .actions { opacity: 1; transform: translateY(0); }

/* Footer */
.site-footer {
  background: var(--dark);
  padding: 0 26px calc(44px + env(safe-area-inset-bottom));
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 40px;
}
.site-footer .mark { color: rgba(255,255,255,0.5); margin: 0 auto 18px; }
.site-footer nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 22px;
}
.site-footer nav a {
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.5);
}
.site-footer nav a:hover { color: rgba(255,255,255,0.85); }
.site-footer .legal {
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.28);
  margin: 0;
}

/* ------------------------------------------------------------
   Accessibility
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  .siri { display: none; }
  .cue-arrow,
  .hero-aurora .band, .hero-aurora .haze,
  .explore-stage .orb, .explore-stage .band,
  .panel .shot .halo, .panel .shot img { animation: none !important; }
  .closing h2, .closing p, .closing .actions { transition-duration: 1ms; }
}


/* ------------------------------------------------------------
   Dynamic viewport units keep the pinned stages flush with the
   visible viewport while mobile browser chrome shows and hides.
   ------------------------------------------------------------ */
@supports (height: 100dvh) {
  .hero-track    { height: 540dvh; }
  .hero-stage    { height: 100dvh; }
  .hero-word     { bottom: 61dvh; }
  .hero-phone .holder,
  .hero-phone img { height: 66dvh; }
  .explore-track { height: 165dvh; }
  .explore-stage { height: 100dvh; }
  .explore-track .foot-fade { height: 34dvh; }
}

/* Wider screens: the comp is a 480px mobile column, centred. */
@media (min-width: 520px) {
  .hero-stage, .explore-stage { border-radius: 0; }
}

/* ------------------------------------------------------------
   Request access modal
   ------------------------------------------------------------ */
.access-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.access-modal[hidden] { display: none; }

.access-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 4, 7, 0.72);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  animation: accessFadeIn 180ms ease both;
}

.access-dialog {
  position: relative;
  width: 100%;
  max-width: 380px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  box-sizing: border-box;
  padding: 34px 28px 30px;
  border-radius: 26px;
  background: linear-gradient(150deg, #241017 0%, #1a0c12 60%, #200f16 100%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 80px rgba(0,0,0,0.55), inset 0 1px 1px rgba(255,255,255,0.08);
  animation: accessRiseIn 220ms cubic-bezier(0.22,0.61,0.36,1) both;
}

@keyframes accessFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes accessRiseIn { from { opacity: 0; transform: translateY(14px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }

.access-close {
  position: absolute;
  top: 18px;
  right: 18px;
  appearance: none;
  border: 0;
  padding: 8px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  line-height: 0;
  transition: background 120ms ease, color 120ms ease;
}
.access-close:hover { background: rgba(255,255,255,0.12); color: #ffffff; }

.access-title {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #ffffff;
  padding-right: 24px;
}
.access-sub {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.56);
  margin: 12px 0 0;
}

.access-form { margin-top: 24px; }
.access-field { margin-bottom: 14px; }
.access-field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin-bottom: 8px;
}
.access-field input {
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 13px;
  padding: 14px 16px;
  font: inherit;
  font-size: 16px;
  color: #ffffff;
  background: rgba(255,255,255,0.05);
  transition: border-color 120ms ease, background 120ms ease;
}
.access-field input::placeholder { color: rgba(255,255,255,0.3); }
.access-field input:focus {
  outline: none;
  border-color: rgba(255,111,192,0.6);
  background: rgba(255,255,255,0.08);
}
.access-field input:invalid:not(:placeholder-shown) { border-color: rgba(255,111,192,0.6); }

.access-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.access-status {
  min-height: 18px;
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.5);
}
.access-status.is-error { color: #ff8fa8; }
.access-status.is-ok { color: var(--pink-soft); }

.access-submit {
  width: 100%;
  box-shadow: 0 10px 26px rgba(0,0,0,0.4);
}
.access-submit:disabled { opacity: 0.6; cursor: default; }

.access-thanks {
  text-align: center;
  padding: 12px 0 4px;
}
.access-thanks .mark { color: var(--pink-soft); margin: 0 auto 16px; }
.access-thanks h2 { margin: 0; }
.access-thanks p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.6);
  margin: 12px 0 0;
}

html.modal-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .access-backdrop, .access-dialog { animation: none; }
}
