/* ── Shared ── */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

body {
  margin: 0;
  overflow-x: hidden;
  line-height: 1.5;
}

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

.ride {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.ride-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding:
    clamp(3rem, 8vh, 5rem)
    max(clamp(1.25rem, 5vw, 4rem), env(safe-area-inset-right))
    max(clamp(3rem, 8vh, 5rem), env(safe-area-inset-bottom))
    max(clamp(1.25rem, 5vw, 4rem), env(safe-area-inset-left));
}

.ride-inner-center {
  text-align: center;
}

/* ── Faux site chrome (each scroll = new "website") ── */
.site {
  flex-direction: column;
  align-items: stretch;
}

.site-bar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding:
    max(1.1rem, env(safe-area-inset-top))
    max(clamp(1.25rem, 5vw, 4rem), env(safe-area-inset-right))
    1.1rem
    max(clamp(1.25rem, 5vw, 4rem), env(safe-area-inset-left));
  flex-shrink: 0;
}

.site-logo {
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.site-links {
  display: none;
  gap: 1.35rem;
  font-size: 0.82rem;
  font-weight: 500;
  opacity: 0.7;
}

.site-cta {
  font-weight: 700;
  font-size: 0.82rem;
  white-space: nowrap;
  flex-shrink: 0;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 160ms ease;
}

.site-cta:hover {
  opacity: 0.75;
}

.site-url {
  margin: 0 0 0.85rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  opacity: 0.4;
}

.site .ride-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(2rem, 5vh, 3.5rem);
}

.site-bar-nature {
  background: rgba(6, 42, 48, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #faf6f0;
}

.site-bar-nature .site-logo {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #faf6f0;
}

.site-bar-nature .site-cta {
  color: #ffc857;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
}

.site-bar-deux {
  background: rgba(250, 244, 232, 0.88);
  color: #2a2520;
  border-bottom: 1px solid rgba(42, 37, 32, 0.08);
  backdrop-filter: blur(10px);
}

.site-bar-deux .ash-name {
  color: #2a2520;
}

.site-bar-deux .ash-line {
  color: rgba(42, 37, 32, 0.52);
}

.site-bar-deux::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--deux-red, #e6392f),
    var(--deux-blue, #3d7dd6),
    var(--deux-green, #3cb371),
    var(--deux-yellow, #f5c518)
  );
  opacity: 0.85;
}

.site-bar-deux .site-cta {
  background: var(--deux-coral, #e85d3a);
  color: #fffaf5;
  padding: 0.42rem 1.1rem;
  border-radius: 999px;
  border: none;
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  box-shadow: 0 4px 16px rgba(232, 93, 58, 0.28);
}

.site-bar-deux .site-cta:hover {
  opacity: 1;
  background: #d94f2e;
  box-shadow: 0 6px 22px rgba(232, 93, 58, 0.36);
}

.site-bar-clean {
  background: #2b8cff;
  color: #fff;
  border-bottom: none;
}

.site-bar-clean .site-logo {
  font-family: "Nunito", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: lowercase;
  letter-spacing: 0.02em;
}

.site-bar-clean .site-links {
  opacity: 0.92;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  text-transform: lowercase;
}

.site-bar-clean .site-cta {
  background: #fff;
  color: #2b8cff;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  text-transform: lowercase;
}

.site-bar-bw {
  background: #000;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-bar-bw .site-logo {
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.28em;
}

.site-bar-bw .site-cta {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

/* ══════════════════════════════════════
   01 · START (original hero)
   ══════════════════════════════════════ */
.ride-start {
  --hero-row: min(14vw, 11.8vh, 10.5rem);
  --hero-row-big: min(16vw, 13.2vh, 11.5rem);
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100vh;
  min-height: 100dvh;
  height: 100dvh;
  max-height: 100dvh;
  overflow: hidden;
  background: #1a00ff;
  color: #fff;
  font-family: "Work Sans", system-ui, sans-serif;
  transition: background 1.4s ease, color 1s ease;
}

.ride-start.is-journey .scene {
  transition: filter 2s cubic-bezier(0.22, 1, 0.36, 1), opacity 2.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.ride-start.is-journey .blob {
  transition: opacity 2.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.ride-start.is-journey .grid {
  transition: opacity 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.ride-start.is-journey .letter {
  transition: color 1.2s ease, text-shadow 1.2s ease;
}

.ride-start.is-journey .title-row-outline .letter {
  transition: color 1.2s ease, -webkit-text-stroke-color 1.2s ease;
}

.ride-start.is-journey .ash-name,
.ride-start.is-journey .ash-line,
.ride-start.is-journey .lead,
.ride-start.is-journey .hero-amp,
.ride-start.is-journey .btn {
  transition: color 1s ease, background 1s ease, box-shadow 1.2s ease, border-color 1s ease;
}

/* Starfield — hidden until space mode */
.space-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(1px 1px at 10% 20%, #fff, transparent),
    radial-gradient(1px 1px at 30% 65%, rgba(255, 255, 255, 0.9), transparent),
    radial-gradient(1.5px 1.5px at 55% 15%, #fff, transparent),
    radial-gradient(1px 1px at 70% 45%, rgba(255, 255, 255, 0.85), transparent),
    radial-gradient(1px 1px at 85% 75%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 15% 85%, rgba(255, 255, 255, 0.95), transparent),
    radial-gradient(1px 1px at 45% 40%, #fff, transparent),
    radial-gradient(1px 1px at 92% 30%, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(ellipse 55% 40% at 75% 60%, rgba(120, 80, 255, 0.35), transparent),
    radial-gradient(ellipse 45% 35% at 20% 35%, rgba(0, 200, 255, 0.2), transparent),
    #020010;
  background-size:
    100% 100%,
    100% 100%,
    100% 100%,
    100% 100%,
    100% 100%,
    100% 100%,
    100% 100%,
    100% 100%,
    100% 100%,
    100% 100%,
    100% 100%;
  transition: opacity 1.5s ease;
}

/* ── Lightning strike → power out ── */
.lightning-layer {
  position: absolute;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  overflow: hidden;
}

.lightning-flash {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: #fff;
}

.power-vignette {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(ellipse at center, transparent 35%, #000 100%);
}

.ride-start.is-lightning .lightning-flash {
  animation: lightning-burst 0.72s ease-out forwards;
}

.ride-start.is-lightning .power-vignette {
  animation: vignette-in 0.72s ease-out forwards;
}

@keyframes lightning-burst {
  0% {
    opacity: 0;
    background: #fff;
  }
  6% {
    opacity: 1;
    background: #fff;
  }
  14% {
    opacity: 0.08;
  }
  22% {
    opacity: 1;
    background: linear-gradient(160deg, #e0f2fe 0%, #38bdf8 35%, #1d4ed8 70%, #0f172a 100%);
  }
  32% {
    opacity: 0.12;
  }
  42% {
    opacity: 0.95;
    background: linear-gradient(135deg, #bae6fd, #3b82f6 50%, #1e3a8a);
  }
  52% {
    opacity: 0.05;
  }
  62% {
    opacity: 0.65;
    background: #60a5fa;
  }
  100% {
    opacity: 0;
  }
}

@keyframes vignette-in {
  0% {
    opacity: 0;
  }
  45% {
    opacity: 0;
  }
  65% {
    opacity: 0.55;
  }
  100% {
    opacity: 0.85;
  }
}

.ride-start.is-power-out {
  animation: power-flicker 1.1s ease-out forwards;
}

@keyframes power-flicker {
  0% {
    background: #1e40af;
  }
  12% {
    background: #0c1929;
  }
  22% {
    background: #1a1a1a;
  }
  35% {
    background: #0a0a0a;
  }
  48% {
    background: #222;
  }
  58% {
    background: #050505;
  }
  72% {
    background: #111;
  }
  100% {
    background: #0a0a0a;
  }
}

.ride-start.is-power-out .power-vignette {
  opacity: 0.92;
  transition: opacity 0.5s ease;
}

.ride-start.is-power-out .scene {
  animation: scene-dim 0.9s ease-out forwards;
}

@keyframes scene-dim {
  0% {
    filter: brightness(1.8) saturate(0.3) hue-rotate(180deg);
    opacity: 1;
  }
  40% {
    filter: grayscale(0.6) brightness(0.4);
    opacity: 0.7;
  }
  100% {
    filter: grayscale(1) contrast(1.25);
    opacity: 1;
  }
}

/* ── Black & white mode ── */
.ride-start.is-bw {
  background: #0a0a0a;
}

.ride-start.is-bw .power-vignette {
  opacity: 0;
  transition: opacity 0.35s ease;
}

.ride-start.is-bw .scene {
  filter: grayscale(1) contrast(1.25);
  opacity: 1;
  transition: filter 0.6s ease, opacity 2s cubic-bezier(0.22, 1, 0.36, 1);
}

.ride-start.is-bw .blob {
  opacity: 0.5;
}

.ride-start.is-bw .grid {
  opacity: 0.12;
  background-image:
    linear-gradient(#fff 1px, transparent 1px),
    linear-gradient(90deg, #fff 1px, transparent 1px);
}

.ride-start.is-bw .letter {
  color: #fff !important;
}

.ride-start.is-bw .title-row-outline .letter {
  color: transparent !important;
  -webkit-text-stroke: 2.5px #fff;
  text-stroke: 2.5px #fff;
}

.ride-start.is-bw .ash-name,
.ride-start.is-bw .ash-line,
.ride-start.is-bw .lead {
  color: rgba(255, 255, 255, 0.78);
}

.ride-start.is-bw .hero-amp {
  color: #fff;
  opacity: 0.12;
}

.ride-start.is-bw .btn-hot {
  background: #fff;
  color: #0a0a0a;
  box-shadow: 0 8px 0 #333;
}

.ride-start.is-bw .btn-cool {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: none;
}

/* ── Outer space mode ── */
.ride-start.is-space {
  background: #020010;
}

/* B&W → space: brief B&W, then dissolve into cosmos */
.ride-start.is-journey.is-space {
  transition: background 1s ease, color 0.9s ease;
}

.ride-start.is-journey.is-space .space-field {
  transition: opacity 1.1s ease;
}

.ride-start.is-journey.is-space .scene {
  transition: filter 2.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 2.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.ride-start.is-journey.is-space .blob {
  transition: opacity 2.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.ride-start.is-journey.is-space .letter {
  transition: color 1s ease, text-shadow 1s ease;
}

.ride-start.is-journey.is-space .title-row-outline .letter {
  transition: color 1s ease, -webkit-text-stroke-color 1s ease, filter 1s ease;
}

.ride-start.is-space .power-vignette {
  opacity: 0;
}

.ride-start.is-space .space-field {
  opacity: 1;
}

.ride-start.is-space .scene {
  filter: grayscale(0.4) brightness(0.6);
  opacity: 0;
}

.ride-start.is-space .blob {
  opacity: 0;
}

.ride-start.is-space .grid {
  opacity: 0;
}

.ride-start.is-space .letter.c1 {
  color: #e0b0ff;
  text-shadow: 0 0 24px rgba(224, 176, 255, 0.6);
}
.ride-start.is-space .letter.c2 {
  color: #00f0ff;
  text-shadow: 0 0 24px rgba(0, 240, 255, 0.55);
}
.ride-start.is-space .letter.c3 {
  color: #ff6ec7;
  text-shadow: 0 0 20px rgba(255, 110, 199, 0.5);
}
.ride-start.is-space .letter.c4 {
  color: #ffd700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.45);
}
.ride-start.is-space .letter.c5 {
  color: #7df9ff;
  text-shadow: 0 0 18px rgba(125, 249, 255, 0.5);
}
.ride-start.is-space .letter.c6 {
  color: #c77dff;
  text-shadow: 0 0 22px rgba(199, 125, 255, 0.55);
}
.ride-start.is-space .letter.c7 {
  color: #39ff14;
  text-shadow: 0 0 18px rgba(57, 255, 20, 0.4);
}
.ride-start.is-space .letter.c8 {
  color: #fff;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.7);
}

.ride-start.is-space .title-row-outline .letter {
  color: transparent !important;
  -webkit-text-stroke: 2.5px rgba(0, 240, 255, 0.85);
  text-stroke: 2.5px rgba(0, 240, 255, 0.85);
  filter: drop-shadow(0 0 12px rgba(0, 240, 255, 0.4));
}

.ride-start.is-space .ash-name {
  color: #00f0ff;
  text-shadow: 0 0 16px rgba(0, 240, 255, 0.4);
}

.ride-start.is-space .ash-line,
.ride-start.is-space .lead {
  color: rgba(200, 220, 255, 0.75);
}

.ride-start.is-space .hero-amp {
  opacity: 0;
  visibility: hidden;
}

.ride-start.is-space .btn-hot {
  background: linear-gradient(135deg, #7c3aed, #00f0ff);
  color: #fff;
  box-shadow: 0 0 28px rgba(0, 240, 255, 0.45);
}

.ride-start.is-space .btn-cool {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.5);
  box-shadow: 0 0 16px rgba(124, 58, 237, 0.3);
}

.ride-start.is-journey .btn {
  pointer-events: none;
}

.ash-brand {
  position: relative;
  z-index: 12;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.12rem;
  line-height: 1.05;
  flex-shrink: 0;
}

.ride-start .ash-brand {
  z-index: 2;
  padding:
    max(1.25rem, env(safe-area-inset-top))
    max(clamp(1.25rem, 5vw, 4rem), env(safe-area-inset-right))
    0
    max(clamp(1.25rem, 5vw, 4rem), env(safe-area-inset-left));
}

.site-bar .ash-brand {
  padding: 0;
  min-width: 0;
  flex: 0 1 auto;
  max-width: min(100%, 16rem);
}

.site-bar .ash-name {
  font-size: clamp(0.78rem, 1.5vw, 0.9rem);
  letter-spacing: 0.12em;
}

.site-bar .ash-line {
  font-size: clamp(0.52rem, 1vw, 0.6rem);
  letter-spacing: 0.14em;
  opacity: 0.72;
}

.ash-name {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #fff;
  white-space: nowrap;
}

.ash-line {
  font-family: "Work Sans", sans-serif;
  font-size: clamp(0.62rem, 1.25vw, 0.72rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: lowercase;
  color: rgba(255, 255, 255, 0.62);
  white-space: nowrap;
}

.site-bar .ash-name,
.site-bar .ash-line {
  color: inherit;
}

.site-bar .ash-line {
  opacity: 0.72;
}

.ride-start .scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ride-start .grid {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(#fff 1px, transparent 1px),
    linear-gradient(90deg, #fff 1px, transparent 1px);
  background-size: 48px 48px;
}

.ride-start .blob {
  position: absolute;
}

.ride-start .blob-1 {
  width: min(55vw, 420px);
  top: -8%;
  right: -6%;
  animation: float 9s ease-in-out infinite;
}

.ride-start .blob-2 {
  width: min(40vw, 280px);
  top: 38%;
  right: 8%;
  animation: float 11s ease-in-out infinite reverse;
}

.ride-start .blob-3 {
  width: min(32vw, 220px);
  bottom: 12%;
  right: 22%;
  animation: float 8s ease-in-out infinite 1s;
}

.ride-start .blob-4 {
  width: min(45vw, 340px);
  bottom: -10%;
  left: -8%;
  opacity: 0.75;
  animation: float 10s ease-in-out infinite 0.5s;
}

.ride-start .blob-5 {
  width: min(28vw, 180px);
  top: 18%;
  left: 4%;
  opacity: 0.5;
  animation: float 12s ease-in-out infinite reverse;
}

.ride-start .ride-inner.hero {
  display: grid;
  align-items: center;
  align-self: stretch;
  min-height: 0;
  width: 100%;
  padding:
    clamp(0.25rem, 1.5vh, 1rem)
    max(clamp(1.25rem, 5vw, 4rem), env(safe-area-inset-right))
    max(clamp(1rem, 2.5vh, 1.75rem), env(safe-area-inset-bottom))
    max(clamp(1.25rem, 5vw, 4rem), env(safe-area-inset-left));
}

.hero-copy {
  max-width: 52rem;
}

.ride-start .title {
  margin: 0 0 clamp(0.4rem, 1.2vh, 0.85rem);
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.ride-start .title-row {
  display: block;
  font-size: var(--hero-row);
}

.title-row-outline .letter {
  color: transparent;
  -webkit-text-stroke: 2.5px #fff;
  text-stroke: 2.5px #fff;
}

.ride-start .title-row-mix {
  margin-left: clamp(0.5rem, 5vw, 4.5rem);
}

.ride-start .title-row-big {
  font-size: var(--hero-row-big);
  line-height: 0.8;
}

.letter.c1 { color: #ccff00; }
.letter.c2 { color: #00e5ff; }
.letter.c3 { color: #ff2d6a; }
.letter.c4 { color: #ff8a00; }
.letter.c5 { color: #ffe600; }
.letter.c6 { color: #7c3aed; }
.letter.c7 { color: #00ff88; }
.letter.c8 { color: #ffffff; }

.ride-start .hero-amp {
  position: absolute;
  right: clamp(-1rem, 2vw, 4rem);
  top: 50%;
  transform: translateY(-42%);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(10rem, 38vw, 28rem);
  font-weight: 400;
  line-height: 0.75;
  color: #ccff00;
  opacity: 0.22;
  pointer-events: none;
  user-select: none;
}

.ride-start .lead {
  margin: 0 0 clamp(0.75rem, 1.8vh, 1.15rem);
  max-width: 26rem;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.72);
}

.ride-start .actions {
  gap: 0.7rem;
}

.ride-start .btn {
  padding: clamp(0.7rem, 1.5vh, 0.85rem) clamp(1.25rem, 3vw, 1.75rem);
  font-size: clamp(0.82rem, 1.4vw, 0.95rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: lowercase;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn-hot {
  background: #ff2d6a;
  color: #fff;
  box-shadow: 0 8px 0 #1200b8;
}

.btn-hot:hover {
  box-shadow: 0 12px 0 #1200b8;
}

.btn-cool {
  background: #7c3aed;
  color: #fff;
  box-shadow: 0 8px 0 #4c1d95;
}

.btn-cool:hover {
  box-shadow: 0 12px 0 #4c1d95;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-16px) rotate(3deg);
  }
}

/* ══════════════════════════════════════
   02 · ISLAND RESORT
   ══════════════════════════════════════ */
.ride-nature {
  background: #062a30;
  color: #faf6f0;
  font-family: "Work Sans", system-ui, sans-serif;
}

.nature-scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.nature-base {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    168deg,
    #1a3a42 0%,
    #0a3238 38%,
    #062a30 68%,
    #041e24 100%
  );
}

.nature-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.85;
  animation: nature-drift 18s ease-in-out infinite;
}

.nature-orb-sunset {
  width: min(58vw, 480px);
  height: min(58vw, 480px);
  top: -12%;
  right: -8%;
  background: radial-gradient(circle, #ff6b4a 0%, #ff8f6b 42%, transparent 70%);
}

.nature-orb-blush {
  width: min(42vw, 340px);
  height: min(42vw, 340px);
  top: 8%;
  right: 22%;
  background: radial-gradient(circle, #ff8fab 0%, rgba(255, 143, 171, 0.4) 55%, transparent 72%);
  animation-delay: -4s;
}

.nature-orb-gold {
  width: min(36vw, 300px);
  height: min(36vw, 300px);
  top: 28%;
  right: 6%;
  background: radial-gradient(circle, #ffc857 0%, rgba(255, 200, 87, 0.35) 50%, transparent 70%);
  animation-delay: -8s;
}

.nature-orb-teal {
  width: min(50vw, 420px);
  height: min(50vw, 420px);
  bottom: 8%;
  right: -10%;
  background: radial-gradient(circle, #2ec4b6 0%, rgba(46, 196, 182, 0.35) 48%, transparent 72%);
  animation-delay: -2s;
}

.nature-orb-jade {
  width: min(38vw, 320px);
  height: min(38vw, 320px);
  bottom: 18%;
  left: -6%;
  background: radial-gradient(circle, #52b788 0%, rgba(82, 183, 136, 0.3) 52%, transparent 72%);
  animation-delay: -11s;
}

.nature-horizon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28%;
  height: 38%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(46, 196, 182, 0.12) 28%,
    rgba(32, 164, 178, 0.38) 58%,
    rgba(18, 120, 140, 0.72) 100%
  );
}

.nature-shoreline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 22%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(245, 230, 200, 0.08) 18%,
    rgba(230, 210, 175, 0.22) 55%,
    rgba(210, 190, 160, 0.35) 100%
  );
}

.nature-grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(#fff 1px, transparent 1px),
    linear-gradient(90deg, #fff 1px, transparent 1px);
  background-size: 56px 56px;
}

.nature-watermark {
  position: absolute;
  right: clamp(-1rem, 2vw, 3rem);
  top: 50%;
  transform: translateY(-40%);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(8rem, 32vw, 22rem);
  font-weight: 700;
  font-style: italic;
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  user-select: none;
}

@keyframes nature-drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-12px, 10px) scale(1.04);
  }
}

.ride-nature .site-url {
  color: rgba(250, 246, 240, 0.42);
}

.ride-nature .ride-inner {
  position: relative;
  z-index: 2;
}

.nature-title {
  margin: 0 0 1.25rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.nature-row {
  display: block;
  font-size: clamp(2.8rem, 11vw, 6.5rem);
}

.nature-row-small {
  margin: 0.08em 0 0.02em clamp(0.25rem, 2vw, 1.5rem);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 4.5vw, 2.8rem);
  font-weight: 600;
  font-style: italic;
  text-transform: lowercase;
  letter-spacing: 0.02em;
  color: rgba(250, 246, 240, 0.82);
}

.nature-row-outline .n-letter {
  color: transparent;
  -webkit-text-stroke: 2px rgba(250, 246, 240, 0.88);
  text-stroke: 2px rgba(250, 246, 240, 0.88);
}

.n-letter.n1 { color: #ffc857; }
.n-letter.n2 { color: #ff8fab; }
.n-letter.n3 { color: #2ec4b6; }
.n-letter.n4 { color: #faf6f0; }
.n-letter.n5 { color: #ff6b4a; }
.n-letter.n6 { color: #52b788; }

.nature-lead {
  margin: 0 0 2rem;
  max-width: 26rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(250, 246, 240, 0.68);
}

.nature-lead strong {
  color: rgba(250, 246, 240, 0.95);
  font-weight: 700;
}

.nature-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  background: #faf6f0;
  color: #062a30;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nature-btn:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.26);
}

/* ══════════════════════════════════════
   03 · DEUX (bubble sky card game site)
   ══════════════════════════════════════ */
.ride-deux {
  --deux-red: #e6392f;
  --deux-blue: #3d7dd6;
  --deux-green: #3cb371;
  --deux-yellow: #f5c518;
  --deux-coral: #e85d3a;
  --deux-cream: #faf4e8;
  --deux-ink: #2a2520;
  background: var(--deux-cream);
  color: var(--deux-ink);
  font-family: "Work Sans", system-ui, sans-serif;
}

.deux-scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.deux-sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 82% 18%, rgba(125, 196, 255, 0.42), transparent 62%),
    radial-gradient(ellipse 55% 45% at 12% 72%, rgba(168, 218, 255, 0.28), transparent 58%),
    linear-gradient(168deg, #faf4e8 0%, #f3ecdf 42%, #ebe3d4 100%);
}

.deux-cloud {
  position: absolute;
  border-radius: 50%;
  filter: blur(56px);
  opacity: 0.72;
  animation: deux-cloud-drift 22s ease-in-out infinite;
}

.deux-cloud-a {
  width: min(52vw, 420px);
  height: min(36vw, 280px);
  top: 6%;
  right: -6%;
  background: radial-gradient(ellipse, #a8daff 0%, rgba(168, 218, 255, 0.35) 55%, transparent 72%);
}

.deux-cloud-b {
  width: min(44vw, 360px);
  height: min(30vw, 240px);
  top: 32%;
  right: 18%;
  background: radial-gradient(ellipse, #7dc4ff 0%, rgba(125, 196, 255, 0.3) 52%, transparent 70%);
  animation-delay: -7s;
}

.deux-cloud-c {
  width: min(38vw, 300px);
  height: min(28vw, 220px);
  bottom: 14%;
  right: 8%;
  background: radial-gradient(ellipse, #c5e6ff 0%, rgba(197, 230, 255, 0.28) 50%, transparent 72%);
  animation-delay: -13s;
}

.deux-cloud-d {
  width: min(30vw, 240px);
  height: min(22vw, 180px);
  top: 18%;
  left: -4%;
  background: radial-gradient(ellipse, rgba(255, 214, 160, 0.45) 0%, transparent 68%);
  animation-delay: -4s;
  opacity: 0.5;
}

@keyframes deux-cloud-drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-14px, 8px) scale(1.05);
  }
}

.deux-sketch {
  position: absolute;
  right: clamp(4%, 10vw, 12%);
  top: 58%;
  width: min(28vw, 200px);
  height: auto;
  color: var(--deux-blue);
  opacity: 0.22;
  transform: translateY(-50%) rotate(-6deg);
}

.deux-hero-deck {
  position: absolute;
  right: clamp(5%, 11vw, 13%);
  top: 50%;
  width: min(28vw, 210px);
  height: min(40vw, 300px);
  transform: translateY(-48%) rotate(-8deg);
}

.deux-hero-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  background: #fffdf8;
  border: 3px solid var(--deux-ink);
  box-shadow:
    0 22px 48px rgba(42, 37, 32, 0.14),
    0 6px 0 rgba(42, 37, 32, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.deux-hero-pip {
  position: absolute;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  line-height: 1;
  color: var(--deux-red);
}

.deux-hero-pip.top {
  top: 14px;
  left: 16px;
}

.deux-hero-pip.bottom {
  bottom: 14px;
  right: 16px;
  transform: rotate(180deg);
}

.deux-hero-wheel {
  width: 68%;
  height: 68%;
  border-radius: 50%;
  background: conic-gradient(
    from -45deg,
    var(--deux-red) 0deg 90deg,
    var(--deux-blue) 90deg 180deg,
    var(--deux-green) 180deg 270deg,
    var(--deux-yellow) 270deg 360deg
  );
  border: 3px solid var(--deux-ink);
  box-shadow: inset 0 -6px 0 rgba(0, 0, 0, 0.08);
}

.deux-hero-wild {
  position: absolute;
  bottom: 18%;
  font-family: "Permanent Marker", cursive;
  font-size: clamp(0.72rem, 1.6vw, 0.92rem);
  color: var(--deux-ink);
  opacity: 0.72;
  transform: rotate(-4deg);
}

.deux-watermark {
  position: absolute;
  right: clamp(-1rem, 2vw, 2rem);
  top: 50%;
  transform: translateY(-42%);
  font-family: "Fredoka", sans-serif;
  font-size: clamp(7rem, 30vw, 18rem);
  font-weight: 700;
  line-height: 0.82;
  color: rgba(42, 37, 32, 0.035);
  user-select: none;
}

.ride-deux .ride-inner {
  position: relative;
  z-index: 2;
  max-width: 36rem;
}

.deux-eyebrow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0 0 1rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  color: rgba(42, 37, 32, 0.48);
}

.deux-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  border: 2px solid var(--deux-coral);
  font-family: "Permanent Marker", cursive;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--deux-coral);
  text-transform: lowercase;
}

.deux-title {
  margin: 0 0 1.25rem;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: clamp(3.75rem, 13vw, 8rem);
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: lowercase;
}

.deux-title-track {
  display: inline-flex;
  align-items: baseline;
  perspective: 900px;
}

.deux-deu {
  display: inline-flex;
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
}

.deux-x {
  display: inline-block;
  transform-origin: 50% 85%;
  backface-visibility: hidden;
}

.deux-title.is-played .deux-deu {
  animation: deux-deu-reveal 2.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.deux-title.is-played .deux-x {
  animation: deux-x-roll 2.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes deux-deu-reveal {
  0%,
  14% {
    max-width: 0;
    opacity: 0;
  }
  38%,
  100% {
    max-width: 3.1em;
    opacity: 1;
  }
}

@keyframes deux-x-roll {
  0%,
  10% {
    transform: translateX(0) rotateY(0deg) scale(1);
  }
  32% {
    transform: translateX(1.15em) rotateY(210deg) scale(0.88);
  }
  42% {
    transform: translateX(1.55em) rotateY(250deg) scale(0.82);
    opacity: 0.55;
  }
  54%,
  58% {
    transform: translateX(1.55em) rotateY(250deg) scale(0.82);
    opacity: 0.55;
  }
  72% {
    transform: translateX(0.2em) rotateY(330deg) scale(1.06);
    opacity: 1;
  }
  86% {
    transform: translateX(-0.06em) rotateY(370deg) scale(1);
  }
  100% {
    transform: translateX(0) rotateY(360deg) scale(1);
  }
}

.deux-letter {
  -webkit-text-stroke: 2px rgba(42, 37, 32, 0.12);
  text-stroke: 2px rgba(42, 37, 32, 0.12);
  paint-order: stroke fill;
}

.deux-letter.is-red {
  color: var(--deux-red);
  text-shadow:
    0 4px 0 rgba(180, 40, 32, 0.22),
    0 10px 28px rgba(230, 57, 47, 0.18);
}

.deux-letter.is-blue {
  color: var(--deux-blue);
  text-shadow:
    0 4px 0 rgba(45, 95, 170, 0.2),
    0 10px 28px rgba(61, 125, 214, 0.16);
}

.deux-letter.is-green {
  color: var(--deux-green);
  text-shadow:
    0 4px 0 rgba(40, 130, 80, 0.2),
    0 10px 28px rgba(60, 179, 113, 0.16);
}

.deux-letter.is-yellow {
  color: var(--deux-yellow);
  text-shadow:
    0 4px 0 rgba(180, 140, 10, 0.22),
    0 10px 28px rgba(245, 197, 24, 0.2);
}

.deux-lead {
  margin: 0 0 2rem;
  max-width: 24rem;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(42, 37, 32, 0.62);
}

.deux-lead strong {
  color: var(--deux-ink);
  font-weight: 700;
}

.deux-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.deux-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.78rem 1.65rem;
  border-radius: 999px;
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 160ms ease, border-color 160ms ease;
}

.deux-btn.is-primary {
  background: var(--deux-coral);
  color: #fffaf5;
  box-shadow: 0 6px 24px rgba(232, 93, 58, 0.32);
}

.deux-btn.is-primary:hover {
  transform: translateY(-2px);
  background: #d94f2e;
  box-shadow: 0 10px 30px rgba(232, 93, 58, 0.38);
}

.deux-btn.is-secondary {
  background: rgba(255, 253, 248, 0.65);
  color: var(--deux-ink);
  border: 2px solid rgba(42, 37, 32, 0.18);
  box-shadow: 0 4px 14px rgba(42, 37, 32, 0.06);
}

.deux-btn.is-secondary:hover {
  border-color: var(--deux-blue);
  background: #fff;
  box-shadow: 0 6px 20px rgba(61, 125, 214, 0.14);
}

/* ══════════════════════════════════════
   04 · NORTHLINE (detergent-pack fun)
   ══════════════════════════════════════ */
.ride-clean {
  background: #fff;
  color: #1a1a2e;
  font-family: "Nunito", system-ui, sans-serif;
}

.clean-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.clean-art .circle {
  position: absolute;
  border-radius: 50%;
}

.clean-art .c-a {
  width: min(42vw, 300px);
  height: min(42vw, 300px);
  left: -6%;
  top: 22%;
  background: #ff5ca8;
}

.clean-art .c-b {
  width: min(28vw, 190px);
  height: min(28vw, 190px);
  right: 10%;
  top: 14%;
  background: #2b8cff;
}

.clean-art .c-c {
  width: min(20vw, 140px);
  height: min(20vw, 140px);
  right: 24%;
  bottom: 22%;
  background: #ffd23f;
}

.clean-art .c-d {
  width: min(16vw, 110px);
  height: min(16vw, 110px);
  right: 6%;
  bottom: 36%;
  background: #ff6b4a;
}

.clean-art .c-e {
  width: min(50vw, 360px);
  height: min(50vw, 360px);
  right: -10%;
  bottom: -12%;
  background: #7fdb8c;
  opacity: 0.55;
}

.clean-confetti span {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.clean-confetti span:nth-child(1) { top: 18%; left: 38%; background: #ff5ca8; }
.clean-confetti span:nth-child(2) { top: 28%; left: 52%; background: #2b8cff; width: 8px; height: 8px; }
.clean-confetti span:nth-child(3) { top: 42%; left: 44%; background: #ffd23f; }
.clean-confetti span:nth-child(4) { top: 56%; left: 58%; background: #7fdb8c; width: 9px; height: 9px; }
.clean-confetti span:nth-child(5) { top: 34%; left: 68%; background: #ff6b4a; }
.clean-confetti span:nth-child(6) { top: 62%; left: 36%; background: #c77dff; width: 7px; height: 7px; }
.clean-confetti span:nth-child(7) { top: 72%; left: 48%; background: #2b8cff; }
.clean-confetti span:nth-child(8) { top: 24%; left: 72%; background: #ffd23f; width: 8px; height: 8px; }
.clean-confetti span:nth-child(9) { top: 48%; left: 78%; background: #ff5ca8; width: 9px; height: 9px; }
.clean-confetti span:nth-child(10) { top: 66%; left: 66%; background: #8b5e3c; width: 7px; height: 7px; }
.clean-confetti span:nth-child(11) { top: 14%; left: 62%; background: #7fdb8c; }
.clean-confetti span:nth-child(12) { top: 38%; left: 30%; background: #ff6b4a; width: 8px; height: 8px; }
.clean-confetti span:nth-child(13) { top: 52%; left: 22%; background: #ffd23f; width: 7px; height: 7px; }
.clean-confetti span:nth-child(14) { top: 76%; left: 28%; background: #2b8cff; width: 8px; height: 8px; }
.clean-confetti span:nth-child(15) { top: 82%; left: 54%; background: #ff5ca8; width: 9px; height: 9px; }

.clean-buddy {
  position: absolute;
  z-index: 2;
}

.clean-buddy::before,
.clean-buddy::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 9px;
  border-radius: 50%;
  background: #1a1a2e;
  top: 32%;
}

.clean-buddy::before {
  left: 28%;
}

.clean-buddy::after {
  right: 28%;
}

.buddy-shirt {
  width: 52px;
  height: 58px;
  left: 34%;
  top: 30%;
  background: #ff5ca8;
  border-radius: 42% 42% 36% 36%;
  transform: rotate(-8deg);
}

.buddy-shirt::before,
.buddy-shirt::after {
  box-shadow: 0 14px 0 -2px #1a1a2e;
  width: 6px;
  height: 8px;
}

.buddy-berry {
  width: 44px;
  height: 48px;
  right: 30%;
  bottom: 38%;
  background: #ff6b4a;
  border-radius: 50% 50% 45% 45%;
  transform: rotate(12deg);
}

.buddy-drop {
  width: 38px;
  height: 46px;
  right: 18%;
  top: 38%;
  background: #2b8cff;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  transform: rotate(-6deg);
}

.clean-splash {
  position: absolute;
  right: 14%;
  top: 26%;
  margin: 0;
  padding: 0.45rem 1rem 0.55rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-style: italic;
  font-weight: 600;
  color: #fff;
  background: #2b8cff;
  border-radius: 55% 45% 52% 48% / 48% 52% 48% 52%;
  transform: rotate(-6deg);
  box-shadow: 0 6px 0 rgba(43, 140, 255, 0.25);
}

.ride-clean .site-url {
  color: rgba(26, 26, 46, 0.4);
}

.ride-clean .ride-inner {
  position: relative;
  z-index: 3;
}

.clean-title {
  margin: 0 0 1.15rem;
  line-height: 0.95;
}

.clean-title-soft {
  display: block;
  font-family: "Nunito", sans-serif;
  font-size: clamp(1.1rem, 2.8vw, 1.55rem);
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.02em;
  color: #3d4a5c;
  margin-bottom: 0.08em;
}

.clean-title-big {
  display: block;
  font-family: "Fredoka", sans-serif;
  font-size: clamp(2.8rem, 10vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  margin-bottom: 0.12em;
}

.clean-title-big.is-pink {
  color: #ff5ca8;
  text-shadow: 3px 3px 0 #ffd23f;
}

.clean-title-big.is-blue {
  color: #2b8cff;
  text-shadow: 3px 3px 0 #7fdb8c;
}

.clean-lead {
  margin: 0 0 1.75rem;
  max-width: 24rem;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.55;
  color: #4a5568;
}

.clean-btn {
  display: flex;
  align-items: center;
  width: min(100%, 36rem);
  min-height: 2.75rem;
  padding: 1.05rem 1.5rem;
  border-radius: 999px;
  background: #ff5ca8;
  color: #fff;
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  letter-spacing: 0.02em;
  text-transform: lowercase;
  text-align: left;
  box-shadow: 0 8px 0 #e84893;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.clean-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 11px 0 #e84893;
}

/* ══════════════════════════════════════
   05 · BLACK & WHITE
   ══════════════════════════════════════ */
.ride-bw {
  background: #000;
  color: #fff;
  font-family: "Work Sans", system-ui, sans-serif;
  min-height: 400dvh;
  overflow: visible;
  display: block;
}

.bw-sticky {
  position: sticky;
  top: 0;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.bw-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 18px 18px;
}

.bw-title {
  margin: 0 0 1.25rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.bw-title span {
  display: block;
  font-size: clamp(3.5rem, 14vw, 9rem);
}

.bw-title .bw-solid {
  color: #fff;
}

.bw-title .bw-outline-wrap {
  position: relative;
  display: block;
  margin-left: clamp(1rem, 8vw, 6rem);
}

.bw-title .bw-outline-fill {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #ffe600;
}

.bw-title .bw-outline {
  position: relative;
  z-index: 1;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  text-stroke: 2px #fff;
}

.bw-title .bw-invert {
  display: inline-block;
  margin-top: 0.15em;
  margin-left: clamp(0rem, 4vw, 3rem);
  padding: 0.05em 0.2em 0.1em;
  background: #fff;
  color: #000;
}

.bw-lead {
  margin: 0 0 2rem;
  max-width: 24rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
}

.bw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.85rem 1.85rem;
  border: 2px solid #fff;
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.bw-btn:hover {
  background: #fff;
  color: #000;
}

.bw-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    #fff 0,
    #fff 24px,
    #000 24px,
    #000 48px
  );
}

/* ══════════════════════════════════════
   06 · CONTACT (Pac-Man community vibe)
   ══════════════════════════════════════ */
.ride-arcade {
  --arcade-blue: #1a7fd4;
  --arcade-blue-deep: #1568b0;
  --arcade-yellow: #ffd100;
  --arcade-red: #ff2d2d;
  --arcade-cyan: #00e5ff;
  --arcade-pink: #ffb8de;
  --arcade-orange: #ffb347;
  background: var(--arcade-blue);
  color: #fff;
  font-family: "Fredoka", "Nunito", sans-serif;
}

.site-bar-arcade {
  background: var(--arcade-blue-deep);
  color: #fff;
  border-bottom: none;
}

.site-bar-arcade .site-links {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

.site-bar-arcade .site-cta {
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  padding: 0.45rem 1.1rem;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-bar-arcade .site-cta:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.22);
}

.arcade-pellets {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px clamp(1rem, 4vw, 3rem);
  pointer-events: none;
}

.arcade-pellets-top {
  top: 0;
}

.arcade-pellets-bottom {
  bottom: 0;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
}

.arcade-pellets span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background-image: radial-gradient(circle, var(--arcade-red) 35%, transparent 36%),
    radial-gradient(circle, var(--arcade-yellow) 35%, transparent 36%),
    radial-gradient(circle, var(--arcade-cyan) 35%, transparent 36%);
  background-size: 22px 8px;
  background-repeat: repeat-x;
  background-position: 0 0, 7px 0, 14px 0;
  opacity: 0.9;
}

.arcade-pellets span:nth-child(2) {
  background-position: 4px 0, 11px 0, 18px 0;
}

.arcade-pellets span:nth-child(3) {
  background-position: 2px 0, 9px 0, 16px 0;
}

.arcade-scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.arcade-watermark {
  position: absolute;
  border-radius: 50%;
  background: var(--arcade-yellow);
  opacity: 0.06;
}

.arcade-watermark::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -8%;
  width: 55%;
  height: 110%;
  background: var(--arcade-blue);
  transform: translateY(-50%) rotate(25deg);
  border-radius: 0 100% 100% 0;
}

.arcade-watermark-1 {
  width: min(40vw, 280px);
  height: min(40vw, 280px);
  left: -8%;
  top: 18%;
}

.arcade-watermark-2 {
  width: min(28vw, 200px);
  height: min(28vw, 200px);
  right: 6%;
  bottom: 22%;
  transform: rotate(180deg);
}

.arcade-watermark-3 {
  width: min(18vw, 130px);
  height: min(18vw, 130px);
  left: 42%;
  top: 8%;
  opacity: 0.04;
}

.arcade-trail {
  position: absolute;
  left: -2%;
  bottom: 28%;
  width: min(70vw, 420px);
  max-width: calc(100% + 2%);
  height: auto;
  opacity: 0.55;
}

.arcade-ghost {
  position: absolute;
  width: min(10vw, 56px);
  height: auto;
  filter: drop-shadow(0 4px 0 rgba(0, 0, 0, 0.15));
  animation: arcade-ghost-bob 3.5s ease-in-out infinite;
}

.arcade-ghost-blinky {
  left: 8%;
  top: 22%;
  animation-delay: 0s;
}

.arcade-ghost-pinky {
  right: 10%;
  top: 16%;
  animation-delay: -1.2s;
}

.arcade-ghost-inky {
  left: 14%;
  bottom: 24%;
  animation-delay: -2.4s;
}

.arcade-ghost-clyde {
  right: 16%;
  bottom: 30%;
  animation-delay: -0.8s;
}

@keyframes arcade-ghost-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.arcade-fruit {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.arcade-fruit-cherry {
  left: 22%;
  top: 14%;
  background: radial-gradient(circle at 35% 35%, #ff6b8a, #c41e3a);
  box-shadow: -10px -4px 0 -6px #2d8a2d, 10px -4px 0 -6px #c41e3a;
}

.arcade-fruit-strawberry {
  right: 24%;
  bottom: 20%;
  width: 24px;
  height: 30px;
  border-radius: 50% 50% 40% 40%;
  background: radial-gradient(circle at 40% 30%, #ff6b7a, #e8192b);
}

.arcade-fruit-strawberry::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 8px;
  background: #3d9e3d;
  border-radius: 50% 50% 0 0;
}

.arcade-burst {
  position: absolute;
  right: 28%;
  top: 12%;
  width: 48px;
  height: 48px;
  background-image: radial-gradient(circle, var(--arcade-yellow) 12%, transparent 13%),
    radial-gradient(circle, var(--arcade-red) 12%, transparent 13%),
    radial-gradient(circle, var(--arcade-cyan) 12%, transparent 13%);
  background-size: 14px 14px;
  background-position: 0 0, 7px 7px, 14px 0;
  opacity: 0.35;
}

.arcade-inner {
  position: relative;
  z-index: 4;
  text-align: center;
  padding-top: clamp(3.5rem, 8vh, 5rem);
}

.arcade-title {
  margin: 0 0 1.25rem;
  line-height: 0.95;
}

.arcade-title-main {
  display: block;
  font-family: "Fredoka", sans-serif;
  font-size: clamp(3.5rem, 14vw, 7.5rem);
  font-weight: 700;
  color: var(--arcade-yellow);
  -webkit-text-stroke: 4px #1a1a1a;
  text-stroke: 4px #1a1a1a;
  paint-order: stroke fill;
  text-shadow: 4px 6px 0 #1a1a1a;
  letter-spacing: 0.04em;
}

.arcade-title-sub {
  display: block;
  margin-top: 0.1em;
  font-family: "Fredoka", sans-serif;
  font-size: clamp(2rem, 8vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.arcade-letter.l1 { color: var(--arcade-yellow); }
.arcade-letter.l2 { color: var(--arcade-orange); }
.arcade-letter.l4 { color: var(--arcade-cyan); }
.arcade-letter.l5 { color: var(--arcade-pink); }
.arcade-letter.l6 { color: var(--arcade-yellow); }
.arcade-letter.l7 { color: var(--arcade-blue-deep); -webkit-text-stroke: 2px #fff; text-stroke: 2px #fff; paint-order: stroke fill; }
.arcade-letter.l8 { color: var(--arcade-red); }

.arcade-lead {
  margin: 0 auto 2rem;
  max-width: 26rem;
  font-family: "Work Sans", sans-serif;
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.arcade-lead strong {
  color: #fff;
  font-weight: 700;
}

.arcade-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.arcade-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8.5rem;
  min-height: 2.75rem;
  padding: 0.9rem 1.6rem;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.65);
  background: var(--arcade-blue-deep);
  color: #fff;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.arcade-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 0 rgba(0, 0, 0, 0.2);
  background: #1b5f9e;
}

.arcade-btn.is-primary {
  background: var(--arcade-yellow);
  color: #1a2e4a;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 5px 0 #c9a800;
}

.arcade-btn.is-primary:hover {
  background: #ffe033;
  box-shadow: 0 7px 0 #c9a800;
}

.arcade-btn.is-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: none;
  color: rgba(255, 255, 255, 0.8);
}

.arcade-btn.is-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: none;
}

.arcade-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.8);
}

.arcade-pac {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--arcade-yellow);
  position: relative;
  flex-shrink: 0;
}

.arcade-pac::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -15%;
  width: 55%;
  height: 110%;
  background: var(--arcade-blue);
  transform: translateY(-50%) rotate(20deg);
  border-radius: 0 100% 100% 0;
}

/* ── Responsive ── */
@media (max-width: 1024px), (pointer: coarse) {
  html {
    scroll-snap-type: y proximity;
  }

  .ride {
    scroll-snap-stop: normal;
  }
}

@media (min-width: 481px) and (max-width: 1024px) {
  .deux-hero-deck {
    right: 7%;
    width: min(24vw, 180px);
    height: min(36vw, 260px);
  }

  .nature-watermark {
    font-size: clamp(6rem, 28vw, 14rem);
  }
}

@media (min-width: 720px) {
  .site-links {
    display: flex;
  }
}

@media (max-height: 780px) {
  .ride-start {
    --hero-row: min(12vw, 10.2vh, 8.5rem);
    --hero-row-big: min(13.5vw, 11.2vh, 9.25rem);
  }
}

@media (max-height: 680px) {
  .ride-start {
    --hero-row: min(10.5vw, 9vh, 7rem);
    --hero-row-big: min(11.5vw, 9.8vh, 7.5rem);
  }

  .ash-brand {
    padding-top: max(0.85rem, env(safe-area-inset-top));
  }
}

@media (max-height: 520px) and (orientation: landscape) {
  .ride-start {
    --hero-row: min(9vw, 14vh, 4.5rem);
    --hero-row-big: min(10vw, 15vh, 5rem);
  }

  .ride-start .hero-amp {
    display: none;
  }

  .ride-start .lead {
    margin-bottom: 0.5rem;
  }

  .ride-start .ride-inner.hero {
    padding-top: 0.5rem;
    padding-bottom: 0.75rem;
  }

  .site .ride-inner {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .arcade-inner {
    padding-top: 1rem;
  }
}

@media (max-width: 820px) {
  .ride-start .hero-amp {
    right: -5%;
    opacity: 0.14;
    font-size: clamp(8rem, 50vw, 16rem);
  }

  .ride-start .title-row-mix {
    margin-left: 0;
  }

  .nature-watermark {
    font-size: clamp(5rem, 30vw, 12rem);
    right: -8%;
  }

  .clean-splash {
    right: 8%;
    top: 20%;
    font-size: clamp(0.85rem, 2vw, 1.1rem);
  }
}

@media (max-width: 640px) {
  .ride {
    min-height: 100svh;
  }

  .ride-start {
    height: auto;
    max-height: none;
    --hero-row: min(11vw, 9.5vh, 4.75rem);
    --hero-row-big: min(12vw, 10.5vh, 5.25rem);
  }

  .ride-start .hero-amp {
    display: none;
  }

  .ride-start .ride-inner.hero {
    padding:
      clamp(0.25rem, 1.5vh, 0.75rem)
      max(clamp(1rem, 4vw, 1.25rem), env(safe-area-inset-right))
      max(1rem, env(safe-area-inset-bottom))
      max(clamp(1rem, 4vw, 1.25rem), env(safe-area-inset-left));
  }

  .ride-start .lead {
    max-width: none;
    font-size: clamp(0.82rem, 3.8vw, 0.95rem);
  }

  .actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .btn {
    width: 100%;
    min-height: 2.75rem;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-bar .ash-brand {
    max-width: min(100%, 11rem);
  }

  .site-bar .ash-name {
    font-size: clamp(0.72rem, 3.2vw, 0.85rem);
    letter-spacing: 0.1em;
  }

  .site-bar .ash-line {
    font-size: clamp(0.48rem, 2.2vw, 0.58rem);
  }

  .site-bar .site-cta {
    font-size: clamp(0.65rem, 2.8vw, 0.75rem);
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .nature-row {
    font-size: clamp(2.2rem, 10vw, 3.75rem);
  }

  .nature-row-small {
    margin-left: 0.15rem;
    font-size: clamp(1.35rem, 4vw, 1.85rem);
  }

  .nature-lead {
    font-size: clamp(0.92rem, 3.8vw, 1.02rem);
    max-width: none;
  }

  .nature-btn {
    width: 100%;
    min-height: 2.75rem;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nature-watermark {
    opacity: 0.03;
    right: -12%;
  }

  .ride-deux .ride-inner {
    max-width: none;
  }

  .deux-title {
    font-size: clamp(2.75rem, 14vw, 4.5rem);
  }

  .deux-lead {
    max-width: none;
    font-size: clamp(0.92rem, 3.8vw, 1rem);
  }

  .deux-btns {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .deux-btn {
    width: 100%;
    min-height: 2.75rem;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .deux-hero-deck {
    right: -2%;
    top: 58%;
    width: min(30vw, 130px);
    height: min(44vw, 195px);
    opacity: 0.55;
  }

  .deux-sketch {
    display: none;
  }

  .deux-watermark {
    opacity: 0.5;
    right: -14%;
  }

  .clean-title-big {
    font-size: clamp(2.35rem, 12vw, 3.75rem);
  }

  .clean-lead {
    max-width: none;
    font-size: clamp(0.92rem, 3.8vw, 1.02rem);
  }

  .clean-btn {
    width: 100%;
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .clean-splash {
    display: none;
  }

  .clean-art .c-e {
    right: -18%;
    opacity: 0.35;
  }

  .ride-bw {
    min-height: 280dvh;
    overflow-x: clip;
  }

  .ride-bw .bw-title span {
    font-size: clamp(2.75rem, 13vw, 4.5rem);
  }

  .ride-bw .bw-title .bw-outline-wrap {
    margin-left: 0;
  }

  .ride-bw .bw-title .bw-invert {
    margin-left: 0;
  }

  .ride-bw .bw-lead {
    max-width: none;
    font-size: clamp(0.92rem, 3.8vw, 1.05rem);
  }

  .bw-btn {
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .ride-arcade .ride-inner {
    padding-top: clamp(1.25rem, 4vh, 2rem);
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
  }

  .arcade-title-main {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
    -webkit-text-stroke: 2px #1a1a1a;
    text-stroke: 2px #1a1a1a;
    text-shadow: 2px 3px 0 #1a1a1a;
  }

  .arcade-title-sub {
    font-size: clamp(1.45rem, 6.5vw, 2rem);
    letter-spacing: 0.03em;
  }

  .arcade-lead {
    max-width: none;
    font-size: clamp(0.88rem, 3.6vw, 0.98rem);
  }

  .arcade-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .arcade-btn {
    width: 100%;
    min-height: 2.75rem;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .arcade-email {
    max-width: 100%;
    font-size: clamp(0.62rem, 2.8vw, 0.72rem);
    word-break: break-word;
    text-align: center;
    justify-content: center;
  }

  .arcade-ghost {
    width: min(11vw, 40px);
    opacity: 0.55;
  }

  .arcade-ghost-blinky {
    left: 2%;
    top: 14%;
  }

  .arcade-ghost-pinky {
    right: 3%;
    top: 10%;
  }

  .arcade-ghost-inky {
    left: 4%;
    bottom: 18%;
  }

  .arcade-ghost-clyde {
    right: 5%;
    bottom: 22%;
  }

  .arcade-trail {
    width: min(85vw, 320px);
    opacity: 0.22;
    bottom: 20%;
  }

  .arcade-fruit-cherry,
  .arcade-fruit-strawberry {
    opacity: 0.45;
  }
}

@media (max-width: 400px) {
  .site-bar .ash-brand {
    max-width: min(100%, 9rem);
  }

  .ride-start {
    --hero-row: min(10vw, 8.5vh, 3.85rem);
    --hero-row-big: min(10.5vw, 9vh, 4.25rem);
  }

  .ride-start .title-row-outline .letter {
    -webkit-text-stroke-width: 2px;
    text-stroke-width: 2px;
  }

  .nature-row {
    font-size: clamp(1.85rem, 9.5vw, 2.75rem);
  }

  .deux-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .ride-bw {
    min-height: 100dvh;
  }

  .deux-deu {
    max-width: 3.1em;
    opacity: 1;
  }

  .deux-title.is-played .deux-deu,
  .deux-title.is-played .deux-x {
    animation: none;
  }

  .deux-x {
    transform: none;
  }

  .deux-cloud,
  .ride-start .blob,
  .nature-orb,
  .ride-start.is-lightning .lightning-flash,
  .ride-start.is-lightning .power-vignette,
  .ride-start.is-power-out,
  .ride-start.is-power-out .scene,
  .ride-start.is-power-out .power-vignette {
    animation: none;
  }

  .btn:hover,
  .nature-btn:hover,
  .deux-btn:hover,
  .clean-btn:hover,
  .bw-btn:hover,
  .arcade-ghost,
  .arcade-btn:hover {
    transform: none;
    animation: none;
  }
}

/* ══════════════════════════════════════
   GAME OVER / 404 (Pac-Man easter egg)
   ══════════════════════════════════════ */
.game-over-page {
  --arcade-blue: #1a7fd4;
  --arcade-blue-deep: #1568b0;
  --arcade-yellow: #ffd100;
  --arcade-red: #ff2d2d;
  --arcade-cyan: #00e5ff;
  --arcade-pink: #ffb8de;
  --arcade-orange: #ffb347;
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--arcade-blue);
  color: #fff;
  font-family: "Fredoka", "Work Sans", sans-serif;
}

.game-over-pellets {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px clamp(1rem, 4vw, 3rem);
  pointer-events: none;
}

.game-over-pellets:not(.game-over-pellets-bottom) {
  top: 0;
}

.game-over-pellets-bottom {
  bottom: 0;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
}

.game-over-pellets span {
  display: block;
  height: 7px;
  border-radius: 999px;
  background-image: radial-gradient(circle, var(--arcade-red) 35%, transparent 36%),
    radial-gradient(circle, var(--arcade-yellow) 35%, transparent 36%),
    radial-gradient(circle, var(--arcade-cyan) 35%, transparent 36%);
  background-size: 22px 7px;
  background-repeat: repeat-x;
  background-position: 0 0, 7px 0, 14px 0;
  opacity: 0.45;
}

.game-over-pellets span:nth-child(2) {
  background-position: 4px 0, 11px 0, 18px 0;
}

.game-over-pellets span:nth-child(3) {
  background-position: 2px 0, 9px 0, 16px 0;
}

.game-over-scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.game-over-ghost {
  position: absolute;
  width: clamp(36px, 8vw, 56px);
  opacity: 0.65;
  animation: game-over-float 4s ease-in-out infinite;
}

.game-over-ghost-blinky {
  left: 8%;
  top: 18%;
  animation-delay: 0s;
}

.game-over-ghost-pinky {
  right: 10%;
  top: 22%;
  animation-delay: 0.8s;
}

.game-over-ghost-inky {
  left: 14%;
  bottom: 20%;
  animation-delay: 1.4s;
}

.game-over-ghost-clyde {
  right: 12%;
  bottom: 16%;
  animation-delay: 2s;
}

@keyframes game-over-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.game-over-main {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: clamp(2rem, 6vw, 3rem) clamp(1.25rem, 5vw, 2rem);
  max-width: 32rem;
}

.game-over-code {
  margin: 0 0 0.75rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(0.65rem, 2.5vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.game-over-title {
  margin: 0 0 1.25rem;
  font-family: "Fredoka", sans-serif;
  font-size: clamp(2.75rem, 14vw, 5.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.06em;
  color: var(--arcade-yellow);
  -webkit-text-stroke: 3px rgba(8, 24, 52, 0.85);
  text-stroke: 3px rgba(8, 24, 52, 0.85);
  paint-order: stroke fill;
  text-shadow: 4px 5px 0 rgba(8, 24, 52, 0.55);
  animation: game-over-blink 2.4s step-end infinite;
}

@keyframes game-over-blink {
  0%,
  88% {
    opacity: 1;
  }
  92%,
  96% {
    opacity: 0.35;
  }
}

.game-over-copy {
  margin: 0 0 0.85rem;
  font-family: "Work Sans", sans-serif;
  font-size: clamp(0.95rem, 3.5vw, 1.08rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.game-over-sub {
  margin: 0 0 1.75rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(0.68rem, 2.8vw, 0.76rem);
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.42);
}

.game-over-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10rem;
  min-height: 2.85rem;
  padding: 0.85rem 1.75rem;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: var(--arcade-yellow);
  color: #1a2e4a;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 5px 0 #c9a800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.game-over-btn:hover {
  transform: translateY(-2px);
  background: #ffe033;
  box-shadow: 0 7px 0 #c9a800;
}

@media (max-width: 820px) {
  .game-over-title {
    -webkit-text-stroke: 2px rgba(8, 24, 52, 0.85);
    text-stroke: 2px rgba(8, 24, 52, 0.85);
    text-shadow: 3px 4px 0 rgba(8, 24, 52, 0.55);
  }

  .game-over-ghost {
    width: min(11vw, 40px);
    opacity: 0.5;
  }

  .game-over-btn {
    width: 100%;
    max-width: 16rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .game-over-title,
  .game-over-ghost {
    animation: none;
  }

  .game-over-btn:hover {
    transform: none;
  }
}
