:root {
  font-family: "Frutiger", "Frutiger LT Std", "Frutiger Next", "Avenir Next", "Avenir", "Space Grotesk", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #e9fbff;
  background: #021022;
  --glass: rgba(5, 23, 54, 0.7);
  --glass-border: rgba(255, 255, 255, 0.2);
  --accent: #5effd7;
  --accent-2: #2ec6ff;
  --accent-3: #ff7bdd;
  --muted: rgba(233, 251, 255, 0.8);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  scroll-behavior: smooth;
  color: inherit;
}

body {
  background: radial-gradient(circle at 20% 20%, #1361b6, transparent 60%), radial-gradient(circle at 80% 15%, #0a3d64, transparent 45%), radial-gradient(circle at 50% 80%, rgba(45, 255, 214, 0.2), transparent 50%), #010b1d;
  overflow-y: auto;
}

.is-hidden {
  display: none !important;
}

.background {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}

.orb {
  position: absolute;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.65;
  mix-blend-mode: screen;
}

.orb-one {
  background: radial-gradient(circle, rgba(102, 255, 227, 0.75), transparent 65%);
  top: -10%;
  left: -5%;
}

.orb-two {
  background: radial-gradient(circle, rgba(46, 198, 255, 0.8), transparent 60%);
  bottom: 0%;
  right: -12%;
}

.orb-three {
  background: radial-gradient(circle, rgba(255, 123, 221, 0.8), transparent 60%);
  top: 30%;
  right: 20%;
}

.sparkles {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 0);
  background-size: 140px 140px;
  opacity: 0.4;
}

.glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 2rem;
  box-shadow: 0 35px 120px rgba(1, 5, 16, 0.55);
  backdrop-filter: blur(18px);
  padding: clamp(2rem, 4vw, 4rem);
  position: relative;
}

.snap-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  scroll-snap-type: y proximity;
}

.panel {
  min-height: 100vh;
  display: grid;
  place-items: center;
  gap: 3rem;
  scroll-snap-align: start;
}

.panel + .panel {
  margin-top: 4rem;
}

.scroll-animate {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  filter: blur(12px);
  transition:
    opacity 600ms ease,
    transform 700ms ease,
    filter 700ms ease;
  transition-delay: var(--delay, 0s);
}

.scroll-animate.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

p {
  line-height: 1.6;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0 0 0.4em;
  letter-spacing: -0.5px;
  color: #f8ffff;
}

.hero {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  background: linear-gradient(120deg, rgba(10, 14, 30, 0.4), rgba(2, 23, 46, 0.2)), url("../assets/backgrounds/b1.jpeg");
  background-size: cover;
  background-position: center;
  border-radius: 0;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  padding: clamp(2.5rem, 6vw, 6rem);
  gap: clamp(2rem, 4vw, 5rem);
}

.hero-photo {
  position: relative;
}

.hero-photo img {
  width: min(430px, 85vw);
  border-radius: 1.8rem;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
}

.bubble {
  position: absolute;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
}

.bubble-one {
  top: -8%;
  left: -6%;
}

.bubble-two {
  bottom: -8%;
  right: -4%;
}

.trinket-collage {
  position: relative;
  width: clamp(200px, 22vw, 280px);
  min-height: 320px;
  justify-self: center;
  filter: drop-shadow(0 25px 60px rgba(2, 10, 25, 0.4));
}

.trinket {
  position: absolute;
  width: clamp(120px, 13vw, 160px);

  -webkit-backdrop-filter: blur(6px);
}

.trinket-one {
  top: -10px;
  left: 5%;
  transform: rotate(-7deg) translateX(-59px) translateY(300px);
}

.trinket-two {
  top: 32%;
  right: 0;
    transform: rotate(-7deg) translateX(59px) translateY(-300px);
}

.trinket-three {
  bottom: -5px;
  left: 18%;
    transform: rotate(-7deg) translateX(-550px) translateY(-525px);
}

.story-ipod {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.ipod-device {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.45), rgba(105, 188, 255, 0.25));
  border-radius: 2.5rem;
  padding: 2rem 2rem 2.5rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 0 0 1px rgba(255, 255, 255, 0.25),
    0 30px 70px rgba(3, 11, 30, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  width: min(280px, 65vw);
  margin: 0 auto;
}

.ipod-screen {
  background: #000;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
  margin-bottom: 1.5rem;
}

.ipod-screen img {
  width: 100%;
  display: block;
    transform: translateY(100px);
  object-fit: cover;
  height: 180px;
}

.ipod-meta {
  position: relative;
  padding: 1rem;
  color: #eaffff;
  background: linear-gradient(to top, rgba(120, 190, 255, 0.45), rgba(180, 225, 255, 0.55));
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(6px) saturate(140%);
  -webkit-backdrop-filter: blur(6px) saturate(140%);
}

.ipod-meta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.15), transparent 55%);
  pointer-events: none;
}

.ipod-meta p {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(124, 255, 247, 0.95);
}

.ipod-meta h3 {
  margin: 0.35rem 0 0;
  font-size: 1.05rem;
  color: rgba(124, 255, 247, 0.98);
}

.ipod-wheel {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(180, 210, 255, 0.75));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 10px 30px rgba(0, 0, 0, 0.2);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.wheel-btn {
  position: absolute;
  background: transparent;
  border: none;
  font-size: 1.1rem;
  color: #536070;
  cursor: pointer;
  transition: transform 150ms ease, color 150ms ease;
}

.wheel-btn:focus {
  outline: none;
}

.wheel-btn:hover {
  color: #1d87ff;
  transform: scale(1.15);
}

.wheel-up {
  top: 10px;
}

.wheel-down {
  bottom: 1px;
}

.wheel-left {
  left: -20px;
}

.wheel-right {
  right: -20px;
}

.wheel-center {
  position: static;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(210, 225, 255, 0.85));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.story-details {
  padding: clamp(1.8rem, 3vw, 2.5rem);
  border-radius: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 30px rgba(3, 10, 25, 0.15);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: rgba(255, 255, 247, 0.95);
}

.card-label {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  color: rgba(124, 255, 247, 0.95);
  margin-bottom: 0.5rem;
}
.ds-slides {
  display: none;
}
.story-stack {
  padding: clamp(2.5rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}

.story-stack::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 2rem;
  background: url("../assets/backgrounds/b2.jpeg") center/cover no-repeat;
  filter: blur(1px) saturate(120%);
  opacity: 0.35;
  z-index: -2;
}

.story-stack::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 2rem;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.15), rgba(5, 17, 36, 0.2));
  z-index: -1;
}

.story-ipod {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  transform: scale(1.3);
  transform-origin: center;
}

.ipod-device {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.45), rgba(105, 188, 255, 0.25));
  border-radius: 2.5rem;
  padding: 2rem 2rem 2.5rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 0 0 1px rgba(255, 255, 255, 0.25),
    0 30px 70px rgba(3, 11, 30, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  width: min(280px, 65vw);
  margin: 0 auto;
}

.ipod-screen {
  background: #000;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
  margin-bottom: 1.5rem;
}

.ipod-screen img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 180px;
}

.ipod-meta {
    position: relative;
    padding: 1rem;
    color: #eaffff;

    /* iPod-style blue glass bar */
    background:
            linear-gradient(
                    to top,
                    rgba(120, 190, 255, 0.45),
                    rgba(180, 225, 255, 0.55)
            );

    border-top: 1px solid rgba(255, 255, 255, 0.45);

    backdrop-filter: blur(6px) saturate(140%);
    -webkit-backdrop-filter: blur(6px) saturate(140%);
}
.ipod-meta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to top,
            rgba(255, 255, 255, 0.15),
            transparent 55%
    );
    pointer-events: none;
}


.ipod-meta p {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(124, 255, 247, 0.95);
}

.ipod-meta h3 {
  margin: 0.35rem 0 0;
  font-size: 1.05rem;
  color: rgba(124, 255, 247, 0.98);
}

.ipod-wheel {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(180, 210, 255, 0.75));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 10px 30px rgba(0, 0, 0, 0.2);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.wheel-btn {
  position: absolute;
  background: transparent;
  border: none;
  font-size: 1.1rem;
  color: #536070;
  cursor: pointer;
  transition: transform 150ms ease, color 150ms ease;
}

.wheel-btn:focus {
  outline: none;
}

.wheel-btn:hover {
  color: #1d87ff;
  transform: scale(1.15);
}

.wheel-up {
  top: 10px;
}

.wheel-down {
  bottom: 1px;
}

.wheel-left {
  left: -20px;
}

.wheel-right {
  right: -20px;
}

.wheel-center {
  position: static;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(210, 225, 255, 0.85));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    line-height: 1;
}

.story-details {
  padding: clamp(1.8rem, 3vw, 2.5rem);
  border-radius: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 30px rgba(3, 10, 25, 0.15);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: rgba(255, 255, 247, 0.95);
}

.card-label {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  color: rgba(124, 255, 247, 0.95);
  margin-bottom: 0.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 0.7rem;
}

.lede {
  max-width: 40ch;
  font-size: 1.1rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.meta-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.meta-value {
  font-size: 1.3rem;
  color: var(--accent);
}

.highlights .highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.highlight-grid article {
  padding: 1.5rem;
  border-radius: 1.6rem;
  background: rgba(13, 32, 66, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--accent-2);
  margin-bottom: 0.3rem;
}

.movie-time-media {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.movie-imac {
  position: relative;
  width: min(800px, 100vw);
}

.imac-shell {
  width: 100%;
  display: block;
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.imac-screen {
  position: absolute;
  top: 12%;
  left: 23%;
  width: 66%;
  aspect-ratio: 4 / 3;
  border-radius: 1.25rem;
  overflow: hidden;

  z-index: 1;
}

.imac-screen img {
  width: 83%;
  height: 83%;
  transform: translateY(70px);

  object-fit: cover;
  display: block;
}

.movie-caption {
  font-size: 0.95rem;
  color: var(--muted);
}

.movie-controls {
  display: flex;
  gap: 0.75rem;
}

.movie-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(5, 25, 54, 0.65);
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.35),
    0 15px 35px rgba(0, 0, 0, 0.4);
  transition: transform 200ms ease, background 200ms ease;
}

.movie-btn:hover {
  background: rgba(0, 255, 209, 0.25);
  transform: translateY(-2px);
}

.movie-time-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.movie-time-list li {
  margin: 0;
}

.movie-time-list h3 {
  margin-bottom: 0.35rem;
}

.movie-time-list p {
  margin: 0;
  color: var(--muted);
}

.gallery {
  background: linear-gradient(120deg, rgba(3, 9, 20, 0.6), rgba(4, 18, 39, 0.25)), url("../assets/backgrounds/b7.jpeg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
  padding-bottom: 3rem;
  isolation: isolate;
  contain: paint;
}

.trinket-collage-wall {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.trinket-card {
  position: relative;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.4), rgba(130, 220, 255, 0.2));
  border-radius: 1.75rem;
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 25px 60px rgba(4, 15, 42, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  transform: translate3d(0, 0, 0);
  animation: floaty 12s ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
  will-change: transform;
  overflow: hidden;
}

.trinket-card::before {
  content: "";
  position: absolute;
  inset: 10% 8%;
  border-radius: 1.2rem;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.3), transparent 55%);
  pointer-events: none;
}

.trinket-photo {
  width: 100%;
  border-radius: 1.2rem;
  display: block;
  image-orientation: from-image;
  box-shadow: 0 15px 35px rgba(6, 12, 30, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.65);
  margin-bottom: 0.9rem;
  object-fit: cover;
}

.trinket-photo.focus-top {
  object-position: center 20%;
  transform: scale(1.04);
  transform-origin: 50% 15%;
}

.trinket-sticker {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #031327;
  background: radial-gradient(circle, #fffee5, #ffd1f7);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 20px rgba(10, 5, 35, 0.25);
  z-index: 2;
}

.trinket-sticker.heart {
  background: radial-gradient(circle, #ffd1dc, #ff9ccf);
  color: #5a0044;
}

.trinket-sticker.star {
  background: radial-gradient(circle, #d9fffb, #9af6ff);
  color: #04333e;
}

.trinket-sticker.badge {
  background: radial-gradient(circle, #fff1c1, #ffd56e);
  color: #4b2d00;
}

.trinket-sticker.comet {
  background: radial-gradient(circle, #f7dcff, #c494ff);
  color: #3b115f;
}

.trinket-sticker.spark {
  background: radial-gradient(circle, #ecffdf, #b6ff9f);
  color: #135524;
}

@keyframes floaty {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -12px, 0);
  }
}

.panel.gallery + .panel {
  margin-top: 0;
}

.outro {
  text-align: center;
  background: linear-gradient(120deg, rgba(3, 9, 20, 0.65), rgba(2, 20, 36, 0.3)), url("../assets/backgrounds/b5.jpg");
  background-size: cover;
  background-position: center;
  padding: clamp(2rem, 4vw, 4rem);
}

.fruitger-letter {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 2.5rem;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 25px 80px rgba(10, 3, 45, 0.55);
  overflow: hidden;
}

.fruitger-glow {
  position: absolute;
  inset: -40% auto auto -30%;
  width: 180%;
  height: 180%;
  pointer-events: none;
  background: radial-gradient(circle at 30% 30%, rgba(255, 148, 242, 0.8), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(130, 255, 255, 0.75), transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(255, 228, 168, 0.75), transparent 60%);
  filter: blur(10px);
}

.fruitger-content {
  position: relative;
  z-index: 1;
  background: rgba(5, 9, 26, 0.65);
  border-radius: 2rem;
  padding: clamp(1.5rem, 3vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  color: #d7ecff;
  text-align: left;
  line-height: 1.7;
}

.fruitger-content p {
  margin: 0 0 1.1rem;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.fruitger-intro {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.fruitger-signoff {
  margin-top: 2rem;
  font-weight: 700;
  color: #fff7f0;
  font-size: clamp(1rem, 1.9vw, 1.3rem);
}

button {
  border: none;
  border-radius: 999px;
  padding: 0.9rem 2.5rem;
  background: linear-gradient(120deg, var(--accent-3), var(--accent-2));
  color: #031327;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 25px 60px rgba(0, 255, 209, 0.35);
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 35px 70px rgba(0, 255, 209, 0.45);
}

.section-heading {
  max-width: 640px;
}

.section-note {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
}

footer {
  text-align: center;
  color: #041725;
  font-size: 0.9rem;
  padding: 2.5rem 0 3.2rem;
  background: linear-gradient(120deg, rgba(18, 57, 94, 0.8), rgba(15, 32, 66, 0.85));
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.progress {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.progress ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.progress li {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
}

.progress li::after {
  content: attr(data-label);
  position: absolute;
  right: 150%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  transition: opacity 200ms ease;
}

.progress li.active {
  background: linear-gradient(120deg, var(--accent-3), var(--accent-2));
  transform: scale(1.4);
}

.progress li.active::after {
  opacity: 1;
}

@media (max-width: 900px) {
  body {
    padding-bottom: 2rem;
  }

  .panel {
    min-height: auto;
    margin: 4rem 0;
  }

  .snap-container {
    scroll-snap-type: none;
  }

  .hero {
    padding: 2rem 1.5rem;
  }

  .story-ipod {
    grid-template-columns: 1fr;
  }
  .story-ipod {
    transform: scale(1);
  }
  .trinket-collage {
    display: none;
  }

  .ipod-device {
    width: min(320px, 90vw);
  }

  .story-details {
    width: 100%;
  }

  .progress {
    display: none;
  }
}
.story-slides {
  display: none;
}
.ds-panel {
  background: transparent;
  border: none;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

.ds-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/backgrounds/kirby.gif") center/cover no-repeat;
  filter: blur(8px) saturate(130%);
  opacity: 0.6;
  z-index: -2;
}

.ds-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.25), rgba(5, 17, 36, 0.25));
  z-index: -1;
}
.story-ds {
  display: flex;
  justify-content: center;
}

.ds-shell {
  width: min(620px, 90vw);
  border-radius: 2.5rem;
  padding: 2.5rem;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.6), rgba(130, 190, 255, 0.35));
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    0 40px 80px rgba(2, 8, 20, 0.45);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
}

.ds-screen {
  background: #02060e;
  border-radius: 1.5rem;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.ds-top {
  height: 220px;
  position: relative;
}

.ds-top-media {
  position: absolute;
  inset: 0;
}

.ds-top-media img,
.ds-top-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ds-top-labels {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.6));
}

.ds-top-labels p {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: rgba(124, 255, 247, 0.9);
  text-transform: uppercase;
}

.ds-top-labels h3 {
  margin: 0.3rem 0 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
}

.ds-hinge {
  width: 100%;
  height: 18px;
  margin: 1.2rem 0;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.4), rgba(150, 170, 200, 0.3));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.ds-bottom {
  display: grid;
    transform: translateX(-20px);
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  justify-items: center;
}

.ds-bottom-screen {
  padding: 1.5rem;
  width: 320px;
  max-width: 100%;
  color: #eafaff;
  border-radius: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    inset 0 -8px 18px rgba(0, 0, 0, 0.15),
    0 12px 28px rgba(0, 0, 0, 0.25);
  background:
    linear-gradient(
      145deg,
      rgba(220, 240, 255, 0.35),
      rgba(140, 190, 255, 0.2)
    ),
    url("../assets/backgrounds/b3.jpeg") center/cover no-repeat;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.ds-dpad {
    position: relative;
    width: 120px;
    height: 120px;

    /* remove the dark square */
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;

    /* optional nudge left if you want */
    transform: translateX(-18px);
}

.ds-dpad::before,
.ds-dpad::after {
    content: "";
    position: absolute;

    background: linear-gradient(
            145deg,
            rgba(210, 225, 245, 0.85),
            rgba(165, 195, 230, 0.85)
    );
    border-radius: 12px;

    box-shadow:
            inset 0 2px 0 rgba(255, 255, 255, 0.6),
            inset 0 -6px 12px rgba(0, 0, 0, 0.22),
            0 10px 18px rgba(0, 0, 0, 0.25);
}


.ds-dpad::before {
  width: 90px;
  height: 24px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ds-dpad::after {
  width: 24px;
  height: 90px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ds-buttons {
  display: flex;
    transform: translateX(-10px);
  flex-direction: column;
  gap: 0.8rem;
}

.ds-a,
.ds-b {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), rgba(120, 190, 255, 0.18));
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.45),
    0 12px 22px rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ds-a {
  transform: translateX(6px);
}

.ds-b {
  transform: translateX(-6px);
  opacity: 0.95;
}
.timeline {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 2rem;
  background: url("../assets/backgrounds/b4.jpeg") center/cover no-repeat;
  filter: blur(6px) saturate(130%);
  opacity: 0.65;
  z-index: -2;
}

.timeline::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 2rem;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.18), rgba(5, 17, 36, 0.35));
  z-index: -1;
}
