    .season-comparator {
      position: relative;
      aspect-ratio: 16 / 9;
      min-height: clamp(500px, 68vh, 760px);
      width: 100%;
      border-radius: 20px;
      border: 1px solid rgba(233, 243, 255, 0.92);
      overflow: hidden;
      background: #0e1b2d;
      isolation: isolate;
    }

    .season-layer {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(180deg, rgba(8, 18, 31, 0.04) 0%, rgba(8, 18, 31, 0.16) 62%, rgba(8, 18, 31, 0.42) 100%),
        var(--season-image);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      opacity: 0;
      transition: opacity 320ms var(--premium-ease);
      z-index: 2;
      filter: saturate(1.03) contrast(1.01);
    }

    .season-layer:first-child {
      opacity: 1;
      z-index: 2;
    }

    .season-layer.is-active,
    .season-layer.is-next {
      opacity: 1;
    }

    .season-spring {
      --season-image: url("./game_world/world/sun.webp");
    }

    .season-summer {
      --season-image: url("./game_world/world/rain.webp");
    }

    .season-autumn {
      --season-image: url("./game_world/world/dessert.webp");
    }

    .season-winter {
      --season-image: url("./game_world/world/snow.webp");
    }

    .season-layer-overlay {
      position: absolute;
      inset: auto 1.05rem 1rem 1.05rem;
      z-index: 4;
      border-radius: 16px;
      border: 1px solid rgba(245, 250, 255, 0.56);
      background: linear-gradient(146deg, rgba(8, 20, 37, 0.44), rgba(10, 23, 41, 0.3));
      backdrop-filter: blur(10px) saturate(126%);
      padding: 0.78rem 0.84rem;
      color: rgba(236, 247, 255, 0.96);
      max-width: min(640px, 94%);
    }

    .season-layer-overlay h3 {
      font-size: 1.06rem;
      line-height: 1.24;
      font-weight: 900;
      display: inline-flex;
      align-items: center;
      gap: 0.34rem;
      margin-bottom: 0.22rem;
    }

    .season-layer-overlay p {
      color: rgba(208, 227, 244, 0.92);
      font-size: 0.88rem;
      line-height: 1.64;
    }

    .season-divider {
      position: absolute;
      inset: 0 auto 0 100%;
      width: 2px;
      background: rgba(255, 255, 255, 0.96);
      box-shadow: 0 0 16px rgba(148, 197, 255, 0.62);
      z-index: 5;
      opacity: 0;
      transform: translateX(-1px);
      transition: opacity 160ms linear;
      pointer-events: none;
    }

    .season-ui {
      position: absolute;
      inset: 0.88rem 0.88rem auto auto;
      z-index: 6;
      display: grid;
      gap: 0.46rem;
      justify-items: end;
      width: min(280px, calc(100% - 1.76rem));
    }

    .season-progress-meta {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 0.6rem;
      color: #eff7ff;
      font-family: var(--mono-font);
      font-size: 0.64rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      font-weight: 700;
    }

    .season-progress-track {
      width: 100%;
      height: 7px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.24);
      overflow: hidden;
    }

    .season-progress-fill {
      display: block;
      height: 100%;
      width: 0%;
      border-radius: inherit;
      background: linear-gradient(90deg, #57a2ff 0%, #8f66e8 44%, #f2bc71 100%);
      box-shadow: 0 0 12px rgba(128, 164, 255, 0.5);
      transition: width 280ms linear;
    }

    .season-stage-nav {
      display: flex;
      gap: 0.34rem;
    }

    .season-stage-dot {
      appearance: none;
      width: 8px;
      height: 8px;
      border-radius: 999px;
      border: 0;
      cursor: pointer;
      background: rgba(255, 255, 255, 0.42);
      transition: transform 220ms var(--premium-ease), background 220ms var(--premium-ease), width 220ms var(--premium-ease);
    }

    .season-stage-dot.is-active {
      width: 16px;
      background: rgba(255, 255, 255, 0.96);
      transform: translateY(-1px);
    }

    .play-chapter {
      position: relative;
      border-radius: 20px;
      border: 1px solid rgba(236, 245, 255, 0.9);
      background: linear-gradient(156deg, rgba(255, 255, 255, 0.8), rgba(249, 253, 255, 0.66));
      box-shadow: 0 14px 30px rgba(61, 92, 129, 0.12);
      backdrop-filter: blur(10px) saturate(120%);
      overflow: hidden;
      transition: transform 360ms var(--premium-ease), box-shadow 360ms var(--premium-ease), border-color 360ms var(--premium-ease);
      max-width: none;
      height: 100%;
    }

    .play-chapter::before {
      content: "";
      position: absolute;
      inset: 0 auto 0 0;
      width: 4px;
      background: linear-gradient(180deg, #4d8dff 0%, #a96cf2 48%, #f0b867 100%);
      opacity: 0.52;
    }

    .play-chapter:nth-child(odd) {
      justify-self: stretch;
      margin-right: 0;
    }

    .play-chapter:nth-child(even) {
      justify-self: stretch;
      margin-left: 0;
    }

    .play-chapter:nth-child(even)::before {
      inset: 0 0 0 auto;
      background: linear-gradient(180deg, #65c7ff 0%, #5da8ff 34%, #ffb36f 100%);
    }

    .play-chapter:hover {
      transform: translateY(-8px);
      box-shadow: 0 18px 36px rgba(63, 95, 133, 0.16);
      border-color: rgba(225, 239, 255, 0.96);
    }

    .play-chapter-inner {
      display: grid;
      grid-template-columns: 1fr;
      align-items: stretch;
      height: 100%;
    }

    .play-chapter-copy {
      padding: 1rem 1.12rem 1rem;
      display: grid;
      align-content: start;
      background:
        linear-gradient(152deg, rgba(255, 255, 255, 0.62), rgba(247, 252, 255, 0.78)),
        radial-gradient(72% 124% at 50% 100%, rgba(221, 242, 255, 0.14), rgba(221, 242, 255, 0) 78%);
    }

    .play-step {
      display: inline-flex;
      align-items: center;
      width: fit-content;
      margin-bottom: 0.42rem;
      border-radius: 999px;
      padding: 0.22rem 0.56rem;
      font-size: 0.67rem;
      font-family: var(--mono-font);
      font-weight: 800;
      letter-spacing: 0.34em;
      text-transform: uppercase;
      color: #3e6388;
      border: 1px solid rgba(197, 220, 242, 0.88);
      background: rgba(255, 255, 255, 0.9);
    }

    .play-chapter-copy h3 {
      color: #223d5d;
      font-family: var(--display-font);
      font-size: 1.5rem;
      line-height: 1.24;
      font-weight: 700;
      margin-bottom: 0.32rem;
      display: inline-flex;
      align-items: center;
      gap: 0.38rem;
    }

    .play-chapter-copy p {
      color: #567391;
      font-size: 0.9rem;
      line-height: 1.74;
    }

    .play-points {
      margin-top: 0.48rem;
      list-style: none;
      display: grid;
      gap: 0.28rem;
    }

    .play-points li {
      color: #4f6e8f;
      font-size: 0.84rem;
      line-height: 1.62;
      position: relative;
      padding-left: 0.92rem;
    }

    .play-points li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.53em;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: linear-gradient(140deg, #34bfa3, #4a8dff);
      box-shadow: 0 0 8px rgba(74, 141, 255, 0.32);
    }

    .play-points li strong {
      color: #2a4d73;
    }

    .play-chip-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.38rem;
      margin-bottom: 0.12rem;
    }

    .play-chip {
      display: inline-flex;
      align-items: center;
      padding: 0.28rem 0.5rem;
      border-radius: 999px;
      border: 1px solid rgba(210, 228, 246, 0.92);
      background: rgba(255, 255, 255, 0.84);
      color: #4b6a8b;
      font-size: 0.68rem;
      font-family: var(--mono-font);
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .journey-sequence {
      margin-top: 0.72rem;
      display: grid;
      gap: 0.42rem;
    }

    .journey-sequence-item {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      gap: 0.52rem;
      align-items: start;
      padding: 0.52rem 0.6rem;
      border-radius: 14px;
      border: 1px solid rgba(229, 241, 254, 0.92);
      background:
        linear-gradient(152deg, rgba(255, 255, 255, 0.84), rgba(247, 252, 255, 0.68)),
        radial-gradient(68% 120% at 0% 0%, rgba(152, 220, 255, 0.14), rgba(152, 220, 255, 0) 74%);
    }

    .journey-sequence-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 1.78rem;
      height: 1.78rem;
      border-radius: 999px;
      background: linear-gradient(145deg, #edf6ff, #dfeeff);
      border: 1px solid rgba(208, 228, 249, 0.96);
      color: #315575;
      font-size: 0.72rem;
      font-family: var(--mono-font);
      font-weight: 800;
      letter-spacing: 0.08em;
      box-shadow: 0 8px 16px rgba(83, 116, 153, 0.12);
    }

    .journey-sequence-copy strong {
      display: block;
      color: #234364;
      font-size: 0.82rem;
      line-height: 1.3;
      margin-bottom: 0.12rem;
    }

    .journey-sequence-copy span {
      display: block;
      color: #587694;
      font-size: 0.74rem;
      line-height: 1.48;
    }

    .journey-note {
      margin-top: 0.74rem;
      padding: 0.72rem;
      border-radius: 16px;
      border: 1px solid rgba(202, 223, 246, 0.62);
      background:
        linear-gradient(152deg, rgba(31, 55, 85, 0.9), rgba(41, 67, 102, 0.72)),
        radial-gradient(88% 124% at 18% 0%, rgba(121, 201, 255, 0.22), rgba(121, 201, 255, 0) 74%);
      box-shadow: 0 10px 22px rgba(42, 68, 101, 0.18);
    }

    .journey-note-kicker {
      display: inline-flex;
      margin-bottom: 0.34rem;
      color: rgba(210, 233, 255, 0.84);
      font-size: 0.64rem;
      font-family: var(--mono-font);
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
    }

    .journey-note h4 {
      color: #f2f8ff;
      font-size: 0.9rem;
      line-height: 1.26;
      margin-bottom: 0.22rem;
    }

    .journey-note p {
      color: rgba(216, 234, 251, 0.9);
      font-size: 0.76rem;
      line-height: 1.52;
    }

    .play-hook {
      margin-top: 0.64rem;
      padding: 0.82rem 0.88rem;
      border-radius: 15px;
      border: 1px solid rgba(206, 225, 245, 0.65);
      background:
        linear-gradient(152deg, rgba(31, 55, 85, 0.9), rgba(40, 67, 102, 0.74)),
        radial-gradient(92% 130% at 18% 0%, rgba(121, 203, 255, 0.22), rgba(121, 203, 255, 0) 74%);
      box-shadow: 0 10px 22px rgba(42, 68, 101, 0.16);
    }

    .play-hook span {
      display: inline-flex;
      margin-bottom: 0.28rem;
      color: rgba(211, 233, 255, 0.84);
      font-size: 0.64rem;
      font-family: var(--mono-font);
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
    }

    .play-hook p {
      color: rgba(240, 247, 255, 0.94);
      font-size: 0.86rem;
      line-height: 1.64;
    }

    .side-pill-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 0.42rem;
      margin-top: 0.18rem;
    }

    .side-pill-cloud span {
      display: inline-flex;
      align-items: center;
      padding: 0.34rem 0.52rem;
      border-radius: 999px;
      border: 1px solid rgba(219, 235, 252, 0.92);
      background: rgba(255, 255, 255, 0.78);
      color: #506f90;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.02em;
    }

    .module-copy li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.54em;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: linear-gradient(140deg, #27be9a, #2d8fff);
      box-shadow: 0 0 9px rgba(45, 143, 255, 0.34);
    }

    .module-art {
      width: clamp(92px, 14vw, 130px);
      aspect-ratio: 1/1;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.88);
      background: rgba(255, 255, 255, 0.84);
      overflow: hidden;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
    }

    .module-art img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .scene-rift {
      margin-top: 0.24rem;
      display: grid;
      gap: 0.68rem;
    }

    .scene {
      position: relative;
      overflow: hidden;
      border-radius: 22px;
      border: 1px solid rgba(255, 255, 255, 0.92);
      background: linear-gradient(148deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.5));
      box-shadow: 0 14px 28px rgba(67, 99, 137, 0.12);
      padding: 1rem;
      backdrop-filter: blur(12px) saturate(128%);
    }

    .scene::before {
      content: "";
      position: absolute;
      inset: -14% -8%;
      background:
        radial-gradient(30% 36% at 12% 20%, rgba(95, 190, 255, 0.22), rgba(95, 190, 255, 0) 76%),
        radial-gradient(30% 34% at 88% 74%, rgba(255, 175, 105, 0.2), rgba(255, 175, 105, 0) 74%),
        radial-gradient(36% 34% at 58% 90%, rgba(95, 231, 196, 0.2), rgba(95, 231, 196, 0) 72%);
      pointer-events: none;
      z-index: 0;
    }

    .scene-content {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 0.74rem;
      align-items: center;
    }

    .scene-content h3 {
      color: #264464;
      font-size: 1.02rem;
      line-height: 1.34;
      font-weight: 900;
      margin-bottom: 0.2rem;
      display: inline-flex;
      align-items: center;
      gap: 0.34rem;
    }

    .scene-content p {
      color: #557392;
      font-size: 0.88rem;
      line-height: 1.68;
    }

    .scene-media {
      width: clamp(220px, 31vw, 360px);
      aspect-ratio: 16/10;
      border-radius: 14px;
      border: 1px solid rgba(255, 255, 255, 0.9);
      object-fit: cover;
      box-shadow: 0 10px 18px rgba(56, 87, 121, 0.16);
      display: block;
    }

    .value-cloud {
      margin-top: 0.24rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.42rem;
    }

    .expand-grid {
      margin-top: 0.26rem;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.66rem;
    }

    .expand-card {
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.9);
      background: linear-gradient(148deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.52));
      box-shadow: 0 12px 24px rgba(67, 99, 137, 0.1);
      padding: 0.82rem;
      backdrop-filter: blur(12px) saturate(128%);
    }

    .expand-card h3 {
      color: #274566;
      font-size: 0.96rem;
      line-height: 1.34;
      font-weight: 900;
      display: inline-flex;
      align-items: center;
      gap: 0.36rem;
      margin-bottom: 0.24rem;
    }

    .expand-card p {
      color: #577290;
      font-size: 0.85rem;
      line-height: 1.66;
    }

    .expand-card ul {
      margin-top: 0.34rem;
      display: grid;
      gap: 0.24rem;
      list-style: none;
    }

    .expand-card li {
      color: #5a7594;
      font-size: 0.8rem;
      line-height: 1.56;
      padding-left: 0.82rem;
      position: relative;
    }

    .expand-card li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.52em;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: linear-gradient(140deg, #37c5a1, #4d8dff);
      box-shadow: 0 0 8px rgba(75, 145, 255, 0.3);
    }

    .value-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.34rem;
      padding: 0.42rem 0.62rem;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.88);
      background: linear-gradient(150deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.56));
      color: #2d4c6d;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.01em;
      box-shadow: 0 8px 16px rgba(67, 99, 137, 0.08);
      backdrop-filter: blur(10px) saturate(124%);
    }

    .cta-wrap {
      margin-top: 0.6rem;
      border-radius: 22px;
      border: 1px solid rgba(255, 255, 255, 0.92);
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.56));
      box-shadow: 0 14px 30px rgba(61, 95, 136, 0.14);
      backdrop-filter: blur(12px) saturate(128%);
      padding: 1rem;
    }

    .cta-wrap h3 {
      font-size: 1.2rem;
      line-height: 1.24;
      color: #1d344f;
      font-family: "Space Grotesk", "Noto Sans TC", sans-serif;
      margin-bottom: 0.34rem;
    }

    .cta-wrap p {
      color: #567391;
      font-size: 0.92rem;
      line-height: 1.7;
      max-width: 70ch;
    }

    .cta-actions {
      margin-top: 0.78rem;
      display: flex;
      gap: 0.7rem;
      flex-wrap: wrap;
    }

    .footer {
      text-align: center;
      color: #5e7b9a;
      font-size: 0.8rem;
      padding: 1.4rem 0 0.7rem;
      line-height: 1.6;
    }

    .reveal {
      opacity: 0;
      transform: translateY(22px);
      will-change: transform, opacity;
    }

    .reveal.inview {
      animation: reveal-in 760ms var(--premium-ease) both;
      animation-delay: var(--delay, 0ms);
    }

    @keyframes reveal-in {
      0% { opacity: 0; transform: translateY(22px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 980px) {
      .world-landing {
        min-height: auto;
        text-align: center;
        padding: 1.1rem 0 0.9rem;
      }

      .landing-content {
        width: min(980px, 100%);
        padding: 1.9rem 0.8rem 0;
      }

      .world-manifesto,
      .world-manifesto-en,
      .landing-lead {
        margin-left: auto;
        margin-right: auto;
      }

      .landing-actions {
        justify-content: center;
      }

      .hero-dashboard {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
      }

      .lore-flow {
        grid-template-columns: 1fr;
      }

      .season-scroll-section {
        min-height: 360vh;
      }

      .season-sticky {
        top: 86px;
      }

      .season-panel {
        padding: 0.86rem;
      }

      .season-comparator {
        aspect-ratio: 16 / 10;
        min-height: clamp(420px, 58vh, 620px);
      }

      .season-layer-overlay {
        max-width: calc(100% - 2rem);
      }

      .scrolly-layout {
        grid-template-columns: 1fr;
      }

      .scrolly-layout.is-stack {
        grid-template-columns: 1fr;
        padding: 0.82rem;
      }

      .scrolly-layout.is-stack .scrolly-left {
        min-height: auto;
      }

      .scrolly-layout.is-stack .scrolly-track {
        max-height: none;
        padding-right: 0;
        border: none;
        background: transparent;
        box-shadow: none;
        overflow: visible;
        scroll-snap-type: none;
      }

      .scrolly-layout.is-stack .scrolly-item {
        flex: 0 0 auto;
        height: auto;
        min-height: auto;
        scroll-snap-align: none;
      }

      .scrolly-layout.is-stack .scrolly-card {
        padding: 0;
      }

      .scrolly-layout.is-stack .play-points li {
        min-height: 148px;
      }

      .scrolly-layout.is-comparator {
        position: relative;
        top: auto;
        min-height: auto;
        border-radius: 20px;
        grid-template-columns: 1fr;
        padding: 0.82rem;
      }

      .scrolly-layout.is-comparator .scrolly-left {
        min-height: auto;
      }

      .scrolly-layout.is-comparator .scrolly-track {
        min-height: auto;
        display: grid;
        gap: 0.72rem;
        border: none;
        background: transparent;
        box-shadow: none;
      }

      .scrolly-layout.is-comparator .scrolly-item {
        position: relative;
        inset: auto;
        min-height: auto;
        pointer-events: auto;
      }

      .scrolly-layout.is-comparator .scrolly-card {
        position: relative;
        inset: auto;
        border-radius: 16px;
        border: 1px solid rgba(236, 245, 255, 0.9);
        box-shadow: 0 12px 24px rgba(63, 95, 133, 0.12);
        opacity: 1;
        clip-path: inset(0 0 0 0) !important;
      }

      .scrolly-layout.is-comparator .play-chapter-copy {
        height: auto;
      }

      .scrolly-layout.is-comparator .play-lede {
        min-height: auto;
      }

      .scrolly-layout.is-comparator .play-points li {
        min-height: 148px;
      }

      .scrolly-layout.is-comparator .play-hook {
        min-height: auto;
      }

      .scrolly-layout.is-comparator .scrolly-wipe-divider,
      .scrolly-layout.is-comparator .scrolly-stage-nav {
        display: none;
      }

      .scrolly-left {
        position: static;
        top: auto;
      }

      .scrolly-item {
        min-height: auto;
      }

      .play-chapter-inner,
      .play-chapter.is-reverse .play-chapter-inner {
        grid-template-columns: 1fr;
      }

      .play-chapter:nth-child(odd),
      .play-chapter:nth-child(even) {
        justify-self: stretch;
        margin-left: 0;
        margin-right: 0;
      }

      .play-chapters {
        grid-template-columns: 1fr;
      }

      .module {
        grid-template-columns: 1fr;
      }

      .module-art {
        width: 100%;
        aspect-ratio: 2.6/1;
        border-radius: 14px;
      }

      .expand-grid {
        grid-template-columns: 1fr;
      }

      .scene-content {
        grid-template-columns: 1fr;
      }

    }

    @media (max-width: 820px) {
      .shell {
        width: calc(100% - 1rem);
        padding-top: 0.6rem;
      }

      .nav {
        top: 0.4rem;
        padding: 0.56rem;
        border-radius: 13px;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 0.56rem;
      }

      .brand {
        order: 1;
      }

      .lang-switcher {
        order: 1;
      }

      .nav > .btn.btn-sub {
        display: none;
      }

      .nav-links {
        order: 2;
        width: 100%;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.1rem;
        scrollbar-width: none;
      }

      .nav-links::-webkit-scrollbar {
        display: none;
      }

      .hero-dashboard {
        grid-template-columns: 1fr;
      }

      body::after {
        opacity: 0.56;
      }

      .season-scroll-section {
        min-height: 330vh;
      }

      .scrolly-layout.is-comparator .play-chapter-copy h3 {
        font-size: clamp(1.28rem, 5.8vw, 1.84rem);
      }

      .scrolly-layout.is-stack .play-chapter-copy h3 {
        font-size: clamp(1.28rem, 5.8vw, 1.84rem);
      }

      .scrolly-layout.is-stack .play-lede {
        padding: 0.8rem 0.84rem 0.82rem;
      }

      .scrolly-layout.is-stack .play-points {
        grid-template-columns: 1fr;
      }

      .scrolly-layout.is-stack .play-points li {
        min-height: 118px;
      }

      .scrolly-layout.is-comparator .play-lede {
        padding: 0.8rem 0.84rem 0.82rem;
      }

      .scrolly-layout.is-comparator .play-points {
        grid-template-columns: 1fr;
      }

      .scrolly-layout.is-comparator .play-points li {
        min-height: 118px;
      }

      .season-sticky {
        top: 74px;
        min-height: calc(100vh - 92px);
      }

      .season-header .chapter-title {
        font-size: clamp(1.52rem, 6vw, 2.06rem);
      }

      .season-layer-overlay {
        inset: auto 0.74rem 0.74rem 0.74rem;
      }

      .season-layer-overlay h3 {
        font-size: 0.96rem;
      }

      .season-layer-overlay p {
        font-size: 0.82rem;
      }

      .season-ui {
        inset: 0.64rem 0.64rem auto auto;
      }

      .season-comparator {
        aspect-ratio: 16 / 11;
        min-height: clamp(350px, 54vh, 540px);
      }

      .neural-stage {
        min-height: 520px;
      }

      #control-buttons {
        bottom: 14px;
        padding: 0.48rem 0.64rem;
      }

      .control-button {
        padding: 0.54rem 0.96rem;
        font-size: 0.66rem;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      body:not(.page-ready) .shell,
      body.page-ready .shell {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
      }

      .reveal,
      .reveal.inview {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
      }
    }
