:root {
  color-scheme: dark;
  --ink: #09090a;
  --paper: #f6f6f2;
  --white: #ffffff;
  --text: #101012;
  --muted: #9b9b9f;
  --yellow: #ffd21a;
  --magenta: #e74cad;
  --violet: #7656d8;
  --cyan: #28c7dd;
  --nav-width: clamp(96px, 27.18vw, 112px);
  --safe-top: max(18px, env(safe-area-inset-top));
  --safe-bottom: max(18px, env(safe-area-inset-bottom));
  font-family: "Microsoft YaHei", "Microsoft YaHei UI", "PingFang SC", "Noto Sans CJK SC", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 0;
  background: var(--ink);
  color: var(--white);
  overflow-x: clip;
}

html.dialog-open {
  overflow: hidden;
  overscroll-behavior: none;
}

body.dialog-open {
  position: fixed;
  top: var(--dialog-body-top, 0);
  right: 0;
  left: 0;
  width: 100%;
  padding-right: var(--dialog-scrollbar-width, 0);
  overflow: hidden;
  overscroll-behavior: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 16px;
  background: var(--yellow);
  color: var(--text);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid currentcolor;
  outline-offset: 2px;
}

.film-hero {
  position: relative;
  min-height: 100svh;
  background: var(--ink);
  overflow: hidden;
}

.film-frame {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 640px;
  margin: 0 auto;
  overflow: hidden;
  background: #d9e1e1;
}

.brand-film {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #d9e1e1;
}

.film-shade {
  position: absolute;
  inset-inline: 0;
  pointer-events: none;
}

.film-shade--top {
  top: 0;
  height: 96px;
  background: rgb(9 9 10 / 18%);
}

.film-shade--bottom {
  bottom: 0;
  height: 160px;
  background: rgb(9 9 10 / 58%);
}

.film-header {
  position: absolute;
  z-index: 3;
  top: var(--safe-top);
  left: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  text-shadow: 0 1px 12px rgb(0 0 0 / 32%);
}

.brand-lockup img {
  width: 36px;
  height: 36px;
}

.film-controls {
  display: flex;
  gap: 8px;
}

.icon-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 68%);
  border-radius: 50%;
  background: rgb(9 9 10 / 24%);
  color: var(--white);
  cursor: pointer;
}

.icon-button:hover {
  background: rgb(9 9 10 / 52%);
}

.ui-icon {
  display: block;
  flex: 0 0 auto;
}

.icon-button .ui-icon {
  width: 20px;
  height: 20px;
}

.film-footer {
  position: absolute;
  z-index: 3;
  left: 18px;
  right: 18px;
  bottom: var(--safe-bottom);
}

.brand-rule {
  width: 100%;
  height: 3px;
  object-fit: fill;
}

.scroll-cue {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
}

.scroll-cue .ui-icon {
  width: 17px;
  height: 17px;
}

.film-play-prompt {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  display: inline-flex;
  min-height: 50px;
  padding: 0 18px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgb(255 255 255 / 70%);
  border-radius: 6px;
  background: rgb(9 9 10 / 72%);
  color: var(--white);
  font-weight: 700;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.film-play-prompt .ui-icon {
  width: 18px;
  height: 18px;
}

.film-fallback {
  position: absolute;
  z-index: 4;
  left: 24px;
  right: 24px;
  top: 50%;
  padding: 24px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 6px;
  background: rgb(9 9 10 / 88%);
  text-align: center;
  transform: translateY(-50%);
}

.film-fallback p {
  margin: 0 0 18px;
  font-size: 17px;
  font-weight: 700;
}

.film-fallback__actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.film-fallback button,
.film-fallback a {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: 6px;
  background: transparent;
  color: var(--white);
  line-height: 42px;
  cursor: pointer;
}

.desktop-word {
  display: none;
}

.belief-section {
  position: relative;
  min-height: 100svh;
  background: var(--paper);
  color: var(--text);
  overflow: hidden;
}

.belief-inner {
  position: relative;
  width: 100%;
  min-height: 100svh;
  padding: max(88px, calc(var(--safe-top) + 68px)) 22px max(36px, var(--safe-bottom));
}

.belief-marker {
  position: absolute;
  top: 0;
  left: 22px;
  width: 15px;
  height: 72px;
  background: var(--yellow);
}

.section-kicker {
  position: absolute;
  left: 22px;
  bottom: max(24px, var(--safe-bottom));
  margin: 0;
  font-size: 10px;
  font-weight: 800;
}

.belief-inner h1 {
  display: flex;
  margin: 0;
  flex-direction: column;
  gap: 5px;
  font-size: 32px;
  line-height: 1.38;
  font-weight: 900;
}

.belief-rule {
  width: 224px;
  height: 3px;
  margin: 34px 0 62px;
  object-fit: fill;
}

.belief-values {
  display: grid;
  gap: 20px;
}

.belief-values p {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 900;
}

.belief-note {
  position: relative;
  z-index: 2;
  max-width: 338px;
  margin-top: 84px;
  padding-top: 28px;
  border-top: 1px solid #d9d9d5;
}

.belief-note strong {
  display: block;
  margin-bottom: 16px;
  font-size: 15px;
}

.belief-note p {
  margin: 0;
  color: #626266;
  font-size: 14px;
  line-height: 1.8;
}

.belief-grid {
  position: absolute;
  right: -80px;
  bottom: -84px;
  width: 290px;
  height: 290px;
  object-fit: cover;
  opacity: 1;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  transform: rotate(0.001deg);
}

.belief-next {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: max(24px, var(--safe-bottom));
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
}

.belief-next .ui-icon {
  width: 18px;
  height: 18px;
}

.world-section {
  position: relative;
  height: 520svh;
  background: var(--ink);
}

.world-sticky {
  position: sticky;
  top: 0;
  display: flex;
  width: 100%;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  background: var(--ink);
}

.module-nav {
  position: relative;
  z-index: 5;
  display: flex;
  width: var(--nav-width);
  flex: 0 0 var(--nav-width);
  flex-direction: column;
  background: var(--ink);
}

.module-nav__logo {
  display: grid;
  min-height: 96px;
  place-items: center;
}

.module-nav__logo img {
  width: 42px;
  height: 42px;
}

.module-nav__items {
  display: grid;
  min-height: 0;
  flex: 1;
  grid-template-rows: repeat(5, 1fr);
}

.module-tab {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 0;
  padding: 18px 9px 14px 28px;
  align-content: center;
  border: 0;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
  background: transparent;
  color: rgb(255 255 255 / 42%);
  text-align: left;
  cursor: pointer;
  transition: color 220ms ease;
}

.module-tab__bar {
  position: absolute;
  left: 15px;
  top: 50%;
  width: 3px;
  height: 22px;
  background: currentcolor;
  transform: translateY(-50%);
  transition: height 220ms ease;
}

.module-tab__bar--yellow { color: var(--yellow); }
.module-tab__bar--magenta { color: var(--magenta); }
.module-tab__bar--cyan { color: var(--cyan); }
.module-tab__bar--violet { color: var(--violet); }

.module-tab__index {
  display: block;
  margin-bottom: 8px;
  font-size: 9px;
  font-weight: 800;
}

.module-tab__name {
  display: block;
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}

.module-tab.is-active { color: var(--white); }
.module-tab.is-active .module-tab__bar { height: 58px; }

.module-stage {
  position: relative;
  min-width: 0;
  flex: 1;
  overflow: hidden;
  background: var(--yellow);
}

.module-stage[data-active-module="0"],
.module-stage[data-active-module="1"],
.module-stage[data-active-module="3"] {
  color: var(--text);
}

.module-stage[data-active-module="2"],
.module-stage[data-active-module="4"] {
  color: var(--white);
}

.stage-rule {
  position: absolute;
  z-index: 8;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  object-fit: fill;
}

.stage-overline {
  position: absolute;
  z-index: 8;
  top: 28px;
  left: 20px;
  right: 18px;
  margin: 0;
  color: currentcolor;
  font-size: 12px;
  font-weight: 800;
  opacity: 0.74;
}

.module-panel {
  --panel-bg: var(--paper);
  --panel-fg: var(--text);
  --accent: var(--magenta);
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 54% 46%;
  background: var(--panel-bg);
  color: var(--panel-fg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 340ms ease, transform 520ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.module-panel.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.module-panel--time { --panel-bg: var(--yellow); --panel-fg: var(--text); --accent: var(--yellow); }
.module-panel--mood { --panel-bg: var(--paper); --panel-fg: var(--text); --accent: var(--magenta); }
.module-panel--blind { --panel-bg: #101113; --panel-fg: var(--white); --accent: var(--cyan); }
.module-panel--best { --panel-bg: var(--paper); --panel-fg: var(--text); --accent: var(--violet); }
.module-panel--love { --panel-bg: #0d0d0f; --panel-fg: var(--white); --accent: var(--magenta); }

.module-copy {
  display: flex;
  min-height: 0;
  padding: 80px 18px 20px 20px;
  flex-direction: column;
}

.module-label {
  margin: 0 0 34px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.module-panel--time .module-label {
  color: var(--text);
}

.module-copy h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.33;
  font-weight: 900;
}

.module-description {
  margin: 34px 0 0;
  color: currentcolor;
  font-size: 14px;
  line-height: 1.75;
  opacity: 0.76;
}

.module-cta {
  width: fit-content;
  min-width: 124px;
  min-height: 48px;
  margin-top: 36px;
  padding: 0 20px;
  border: 0;
  border-radius: 6px;
  background: var(--text);
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.module-cta:hover { transform: translateY(-2px); }
.module-panel--blind .module-cta { background: var(--cyan); color: var(--text); }
.module-panel--love .module-cta { background: var(--magenta); color: var(--white); }
.module-cta--wide { min-width: 178px; }

.time-proof {
  display: none;
}

.module-count {
  margin: auto 0 0;
  padding-top: 20px;
  border-top: 1px solid currentcolor;
  font-size: 10px;
  font-weight: 800;
  opacity: 0.46;
}

.module-visual {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-top: 7px solid var(--accent);
  background: var(--ink);
}

.module-photo,
.module-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.module-photo {
  transform: scale(1.025);
  transition: transform 900ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.module-panel.is-active .module-photo { transform: scale(1); }
.module-panel--time .module-photo { object-position: center 58%; }
.module-panel--mood .module-photo { object-position: center 54%; }
.module-panel--blind .module-photo { object-position: center 59%; }
.module-panel--best .module-photo { object-position: center 53%; }
.module-panel--love .module-photo { object-position: center 58%; }

.module-grid {
  z-index: 2;
  opacity: 0.8;
  pointer-events: none;
}

.world-hint {
  position: absolute;
  z-index: 9;
  left: calc(var(--nav-width) + 20px);
  bottom: max(12px, env(safe-area-inset-bottom));
  margin: 0;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
}

.download-section {
  position: relative;
  min-height: 100svh;
  background: var(--ink);
  overflow: hidden;
}

.download-inner {
  display: flex;
  width: 100%;
  min-height: 100svh;
  padding: max(42px, var(--safe-top)) 24px max(24px, var(--safe-bottom));
  align-items: center;
  flex-direction: column;
}

.download-rule {
  width: 100%;
  height: 3px;
  object-fit: fill;
}

.download-inner h2 {
  align-self: stretch;
  margin: 52px 0 0;
  color: var(--white);
  font-size: 35px;
  line-height: 1.36;
  font-weight: 900;
}

.brand-convergence {
  position: relative;
  width: 100%;
  height: 280px;
  margin-top: 38px;
}

.brand-fragments {
  position: absolute;
  left: 0;
  top: 0;
  width: 145px;
  height: auto;
  transition: transform 900ms cubic-bezier(0.2, 0.72, 0.2, 1), opacity 900ms ease;
}

.download-logo {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 154px;
  height: 154px;
  opacity: 0.62;
  transform: translateX(-50%) scale(0.92);
  transition: transform 700ms 180ms cubic-bezier(0.2, 0.72, 0.2, 1), opacity 520ms 180ms ease;
}

.download-inner.is-visible .brand-fragments {
  opacity: 0.74;
  transform: translate(18px, 10px);
}

.download-inner.is-visible .download-logo {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.download-brand {
  margin: 30px 0 0;
  font-size: 38px;
  font-weight: 900;
}

.download-slogan {
  margin: 18px 0 0;
  color: rgb(255 255 255 / 78%);
  font-size: 17px;
}

.download-button {
  display: inline-flex;
  width: 100%;
  min-height: 64px;
  margin-top: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 6px;
  background: var(--yellow);
  color: var(--text);
  font-size: 21px;
  font-weight: 900;
  cursor: pointer;
}

.download-button:hover { background: #ffe05c; }
.download-button .ui-icon { width: 21px; height: 21px; }

.download-platforms {
  margin: 22px 0 0;
  color: rgb(255 255 255 / 68%);
  font-size: 14px;
}

.site-footer {
  display: flex;
  width: 100%;
  margin-top: auto;
  padding-top: 30px;
  justify-content: center;
  gap: 14px;
  border-top: 1px solid rgb(255 255 255 / 16%);
  color: rgb(255 255 255 / 42%);
  font-size: 10px;
}

.site-footer a:hover { color: var(--white); }

.download-dialog {
  width: min(354px, calc(100vw - 36px));
  padding: 30px 24px 24px;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 6px;
  background: #121214;
  color: var(--white);
  text-align: center;
}

.download-dialog::backdrop { background: rgb(0 0 0 / 76%); }

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
}

.download-dialog > img {
  width: 72px;
  height: 72px;
  margin: 8px auto 0;
}

.dialog-kicker {
  margin: 18px 0 8px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
}

.download-dialog h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.35;
}

.download-dialog > p:not(.dialog-kicker):not(.dialog-platform) {
  margin: 16px 0 0;
  color: rgb(255 255 255 / 66%);
  font-size: 14px;
  line-height: 1.7;
}

.dialog-primary {
  display: inline-flex;
  width: 100%;
  min-height: 52px;
  margin-top: 24px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 6px;
  background: var(--yellow);
  color: var(--text);
  font-weight: 900;
}

.dialog-primary .ui-icon { width: 18px; height: 18px; }

.dialog-platform {
  margin: 16px 0 0;
  color: rgb(255 255 255 / 42%);
  font-size: 11px;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 620ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.download-inner.is-scroll-driven {
  opacity: var(--download-opacity, 0.12);
  transform: translateY(var(--download-shift, 24px));
  transition: none;
  will-change: opacity, transform;
}

.download-inner.is-scroll-driven .brand-fragments {
  opacity: var(--download-fragment-opacity, 0.16);
  transform: translate(var(--download-fragment-x, 0), var(--download-fragment-y, 0));
  transition: none;
}

.download-inner.is-scroll-driven .download-logo {
  opacity: var(--download-logo-opacity, 0.25);
  transform: translateX(-50%) scale(var(--download-logo-scale, 0.9));
  transition: none;
  will-change: opacity, transform;
}

@media (max-width: 767px) {
  .belief-section {
    height: 100svh;
    min-height: 100svh;
    background: #09090b;
    color: #f7f7f4;
    -webkit-font-smoothing: antialiased;
  }

  .belief-inner {
    height: 100svh;
    min-height: 100svh;
    padding: max(calc(var(--safe-top) + 70px), 13.5svh) 24px 0;
  }

  .belief-marker {
    left: 24px;
    width: 14px;
    height: 74px;
  }

  .belief-inner h1 {
    gap: 3px;
    color: #f7f7f4;
    font-size: clamp(29px, 8vw, 32px);
    line-height: 1.34;
    letter-spacing: 0;
    text-shadow: none;
  }

  .belief-rule {
    width: clamp(206px, 57vw, 244px);
    margin: 28px 0 0;
  }

  .belief-values {
    position: absolute;
    top: 42%;
    right: 24px;
    left: 24px;
    gap: 16px;
  }

  .belief-values p {
    color: #f7f7f4;
    font-size: clamp(23px, 6.3vw, 26px);
    line-height: 1.24;
    font-weight: 800;
    letter-spacing: 0;
    text-shadow: none;
  }

  .belief-note {
    position: absolute;
    top: 61%;
    right: 24px;
    left: 24px;
    width: auto;
    max-width: 350px;
    margin: 0;
    padding-top: 22px;
    border-color: rgb(247 247 244 / 14%);
  }

  .belief-note strong {
    margin-bottom: 14px;
    color: #f7f7f4;
    font-size: 16px;
    line-height: 1.4;
  }

  .belief-note p {
    color: rgb(247 247 244 / 72%);
    font-size: 15px;
    line-height: 1.72;
  }

  .belief-grid {
    right: -64px;
    bottom: -78px;
    width: 292px;
    height: 292px;
    opacity: 0.34;
  }

  .belief-next,
  .belief-inner > .section-kicker {
    display: none;
  }

  .world-section {
    height: 600svh;
  }

  .world-sticky {
    display: grid;
    min-height: 0;
    grid-template-rows: 64px minmax(0, 1fr);
  }

  .module-nav {
    width: 100%;
    height: 64px;
    min-width: 0;
    flex: none;
    flex-direction: row;
    border-bottom: 1px solid rgb(255 255 255 / 14%);
  }

  .module-nav__logo {
    width: 48px;
    height: 64px;
    min-height: 0;
    flex: 0 0 48px;
    border-right: 1px solid rgb(255 255 255 / 14%);
  }

  .module-nav__logo img {
    width: 30px;
    height: 30px;
  }

  .module-nav__items {
    width: 100%;
    min-width: 0;
    height: 64px;
    flex: 1;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-template-rows: 1fr;
  }

  .module-tab {
    padding: 8px 2px 7px;
    align-content: center;
    justify-items: center;
    border-right: 1px solid rgb(255 255 255 / 10%);
    border-bottom: 0;
    text-align: center;
  }

  .module-tab:last-child {
    border-right: 0;
  }

  .module-tab.is-active {
    background: rgb(255 255 255 / 5%);
  }

  .module-tab__bar {
    left: 8px;
    right: 8px;
    top: auto;
    bottom: 0;
    width: auto;
    height: 3px;
    opacity: 0.28;
    transform: none;
    transition: opacity 220ms ease;
  }

  .module-tab.is-active .module-tab__bar {
    height: 3px;
    opacity: 1;
  }

  .module-tab__index {
    margin-bottom: 4px;
    font-size: 8px;
    line-height: 1;
  }

  .module-tab__name {
    font-size: 13px;
    line-height: 1;
  }

  .module-stage {
    width: 100%;
    min-height: 0;
  }

  .stage-overline,
  .world-hint {
    display: none;
  }

  .module-panel {
    grid-template-columns: 1fr;
    grid-template-rows: 52% 48%;
  }

  .module-copy {
    grid-row: 2;
    padding: 22px 22px 18px;
  }

  .module-label {
    margin-bottom: 14px;
    font-size: 13px;
  }

  .module-copy h2 {
    font-size: 32px;
    line-height: 1.23;
  }

  .module-description {
    margin-top: 16px;
    line-height: 1.65;
  }

  .module-cta {
    min-height: 46px;
    margin-top: 20px;
  }

  .module-count {
    padding-top: 14px;
  }

  .module-visual {
    grid-row: 1;
    border-top: 0;
    border-bottom: 6px solid var(--accent);
  }

  .module-panel--time .module-photo { object-position: center 58%; }
  .module-panel--mood .module-photo { object-position: center 52%; }
  .module-panel--blind .module-photo { object-position: center 61%; }
  .module-panel--best .module-photo { object-position: center 54%; }
  .module-panel--love .module-photo { object-position: center 59%; }
}

@media (max-height: 720px) and (max-width: 767px) {
  .world-sticky { grid-template-rows: 60px minmax(0, 1fr); }
  .module-nav,
  .module-nav__logo,
  .module-nav__items { height: 60px; }
  .module-panel { grid-template-rows: 50% 50%; }
  .module-copy { padding: 18px 20px 16px; }
  .module-label { margin-bottom: 10px; }
  .module-copy h2 { font-size: 29px; }
  .module-description { margin-top: 12px; }
  .module-cta { min-height: 44px; margin-top: 16px; }
  .module-count { padding-top: 10px; }
  .belief-inner { padding-top: max(calc(var(--safe-top) + 64px), 12.5svh); }
  .belief-rule { margin-top: 22px; }
  .belief-values { top: 41.5%; gap: 13px; }
  .belief-values p { font-size: clamp(22px, 6.1vw, 24px); }
  .belief-note { top: 60.5%; margin: 0; padding-top: 18px; }
  .belief-note strong { margin-bottom: 10px; }
  .belief-note p { font-size: 14px; line-height: 1.62; }
  .belief-grid { right: -64px; bottom: -70px; width: 250px; height: 250px; }
  .brand-convergence { height: 220px; }
  .download-logo { width: 126px; height: 126px; }
  .download-button { margin-top: 32px; }
}

@media (min-width: 768px) {
  :root { --nav-width: clamp(180px, 15.625vw, 200px); }
  .film-frame { width: min(100vw, calc(100svh * 0.5625)); }
  .desktop-word {
    position: absolute;
    z-index: 1;
    top: 50%;
    display: block;
    color: rgb(255 255 255 / 88%);
    font-size: 52px;
    line-height: 1;
    font-weight: 900;
    writing-mode: vertical-rl;
    transform: translateY(-50%);
  }
  .desktop-word--left { left: max(28px, calc(50% - 390px)); }
  .desktop-word--right { right: max(28px, calc(50% - 390px)); }
  .belief-inner {
    display: grid;
    width: min(1180px, calc(100% - 96px));
    margin: 0 auto;
    padding: 110px 0 70px;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    grid-template-rows: auto 1fr auto;
    column-gap: 84px;
  }
  .belief-marker { left: 0; height: 82px; }
  .belief-inner h1 { grid-column: 1; font-size: 64px; line-height: 1.28; }
  .belief-rule { width: 320px; margin: 38px 0 0; grid-column: 1; }
  .belief-values { align-self: center; grid-column: 2; grid-row: 1 / 3; }
  .belief-values p { font-size: 42px; }
  .belief-note { max-width: 460px; margin-top: 70px; grid-column: 1; }
  .belief-grid { right: -80px; bottom: -120px; width: 520px; height: 520px; }
  .belief-next { display: flex; right: 0; bottom: 24px; }
  .section-kicker { left: 0; bottom: 24px; }
  .module-nav__logo { min-height: 132px; }
  .module-nav__logo img { width: 58px; height: 58px; }
  .module-tab { padding-left: 68px; }
  .module-tab__bar { left: 40px; }
  .module-tab__index { font-size: 11px; }
  .module-tab__name { font-size: 25px; }
  .stage-overline { top: 40px; left: 48px; font-size: 14px; }
  .module-panel { grid-template-columns: minmax(300px, 40%) 1fr; grid-template-rows: 1fr; }
  .module-copy { padding: 112px clamp(32px, 3.75vw, 48px) 44px; }
  .module-label { margin-bottom: 34px; font-size: 15px; }
  .module-copy h2 { font-size: clamp(38px, 3.9vw, 52px); line-height: 1.26; }
  .module-description { margin-top: 30px; font-size: 17px; }
  .module-cta { min-height: 52px; margin-top: 30px; padding-inline: 24px; font-size: 16px; }
  .module-visual { border-top: 0; border-left: 7px solid var(--accent); }
  .module-count { font-size: 12px; }
  .time-proof {
    --app-blue: #667eea;
    --app-orange: #ff9500;
    --app-past: #5b6eae;
    display: block;
    flex: 0 0 auto;
    width: 100%;
    max-width: 360px;
    margin-top: 26px;
    overflow: hidden;
    border: 1px solid rgb(16 16 18 / 14%);
    border-radius: 6px;
    background: #fff;
    color: #333;
    box-shadow: 0 16px 40px rgb(16 16 18 / 14%);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 420ms ease 140ms, transform 520ms cubic-bezier(0.2, 0.72, 0.2, 1) 140ms;
  }
  .module-panel.is-active .time-proof {
    opacity: 1;
    transform: translateY(0);
  }
  .time-proof__topbar {
    display: flex;
    min-height: 34px;
    padding: 7px 11px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    font-size: 10px;
  }
  .time-proof__brand {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .time-proof__brand img {
    width: 18px;
    height: 18px;
  }
  .time-proof__brand strong { font-size: 11px; }
  .time-proof__section { color: #666; font-weight: 700; }
  .time-proof__body { padding: 11px 12px 12px; }
  .time-proof__journey {
    margin: 0;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
  }
  .time-proof__journey strong { color: var(--app-blue); }
  .time-proof__meta {
    margin: 2px 0 0;
    color: #666;
    font-size: 10px;
    line-height: 1.5;
  }
  .time-proof__track {
    position: relative;
    height: 4px;
    margin-top: 9px;
    border-radius: 3px;
    background: rgb(224 224 224 / 72%);
  }
  .time-proof__track span {
    display: block;
    width: 34.2%;
    height: 100%;
    border-radius: inherit;
    background: var(--app-blue);
  }
  .time-proof__track i {
    position: absolute;
    top: 50%;
    left: 34.2%;
    width: 10px;
    height: 10px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: var(--app-orange);
    transform: translate(-50%, -50%);
  }
  .time-proof__progress-labels {
    display: flex;
    margin-top: 5px;
    justify-content: space-between;
    color: #666;
    font-size: 8px;
    line-height: 1.4;
  }
  .time-proof__year {
    margin-top: 8px;
    padding-top: 7px;
    border-top: 1px solid #eee;
  }
  .time-proof__year-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .time-proof__year-title strong {
    color: var(--app-blue);
    font-size: 13px;
    line-height: 1.2;
  }
  .time-proof__year-title span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #333;
    font-size: 9px;
    font-weight: 700;
  }
  .time-proof__year-title i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--app-orange);
  }
  .time-proof__months {
    display: grid;
    margin-top: 7px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 5px;
  }
  .time-proof__months > span {
    position: relative;
    display: grid;
    min-width: 0;
    height: 24px;
    place-items: center;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
  }
  .time-proof__months .is-past {
    background: var(--app-past);
    color: #fff;
  }
  .time-proof__months .is-future {
    border: 1px dashed #e0e0e0;
    background: #fff;
    color: #666;
  }
  .time-proof__months .is-current {
    grid-template-rows: 1fr auto;
    border: 2px solid var(--app-blue);
    background: #fff;
    color: var(--app-blue);
  }
  .time-proof__months small {
    margin-top: -4px;
    color: #333;
    font-size: 6px;
    line-height: 1;
  }
  .time-proof__months .has-memory::after {
    position: absolute;
    right: 3px;
    bottom: 3px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #fff;
    content: "";
  }
  .download-inner { width: min(760px, calc(100% - 80px)); margin: 0 auto; padding-top: 54px; }
  .download-inner h2 { margin-top: 50px; font-size: 56px; }
  .brand-convergence { height: 290px; margin-top: 24px; }
  .brand-fragments { left: 90px; width: 190px; }
  .download-logo { width: 176px; height: 176px; }
  .download-button { width: 420px; }
  .site-footer { font-size: 12px; }
}

@media (min-width: 1280px) {
  :root { --nav-width: 200px; }
  .desktop-word { font-size: 66px; }
  .desktop-word--left { left: max(52px, calc(50% - 480px)); }
  .desktop-word--right { right: max(52px, calc(50% - 480px)); }
  .module-panel { grid-template-columns: minmax(400px, 40%) 1fr; }
  .module-copy { padding-left: 48px; padding-right: 48px; }
  .module-copy h2 { font-size: 54px; }
}

/* Confirmed module-world redesign. */
.world-section {
  height: 600svh;
  background: #050506;
}

.world-sticky {
  display: grid;
  min-height: 640px;
  grid-template-rows: 64px minmax(0, 1fr);
  background: #050506;
}

.module-nav {
  width: 100%;
  height: 64px;
  min-width: 0;
  flex: none;
  flex-direction: row;
  background: #050506;
  border-bottom: 1px solid rgb(255 255 255 / 14%);
}

.module-nav__logo {
  width: 48px;
  height: 64px;
  min-height: 0;
  flex: 0 0 48px;
  border-right: 1px solid rgb(255 255 255 / 14%);
}

.module-nav__logo img {
  width: 30px;
  height: 30px;
}

.module-nav__items {
  width: 100%;
  min-width: 0;
  height: 64px;
  flex: 1;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: 1fr;
}

.module-tab {
  padding: 8px 2px 7px;
  align-content: center;
  justify-items: center;
  border-right: 1px solid rgb(255 255 255 / 10%);
  border-bottom: 0;
  color: rgb(255 255 255 / 58%);
  text-align: center;
}

.module-tab:last-child {
  border-right: 0;
}

.module-tab.is-active {
  background: rgb(255 255 255 / 4%);
  color: var(--white);
}

.module-tab__bar {
  left: 8px;
  right: 8px;
  top: auto;
  bottom: 0;
  width: auto;
  height: 3px;
  opacity: 0.24;
  transform: none;
  transition: opacity 220ms ease;
}

.module-tab.is-active .module-tab__bar {
  height: 3px;
  opacity: 1;
}

.module-tab__index,
.module-count {
  display: none;
}

.module-tab__name {
  font-size: 13px;
  line-height: 1;
}

.module-stage {
  width: 100%;
  min-width: 0;
  overflow: clip;
  background: var(--yellow);
}

.stage-rule,
.stage-overline,
.world-hint {
  display: none;
}

.module-panel {
  --panel-bg: var(--paper);
  --panel-fg: var(--text);
  --accent: var(--magenta);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 49% 51%;
  background: var(--panel-bg);
  color: var(--panel-fg);
  transform: none;
  transition: opacity 340ms ease;
}

.module-panel--time {
  --panel-bg: var(--yellow);
  --panel-fg: var(--text);
  --accent: var(--yellow);
}

.module-panel--mood {
  --panel-bg: #f5f2ec;
  --panel-fg: var(--text);
  --accent: var(--magenta);
}

.module-panel--blind {
  --panel-bg: #101316;
  --panel-fg: #f5f3ee;
  --accent: var(--cyan);
}

.module-panel--best {
  --panel-bg: #f7f4ef;
  --panel-fg: var(--text);
  --accent: var(--violet);
}

.module-panel--love {
  --panel-bg: #120b10;
  --panel-fg: #f5f3ee;
  --accent: var(--magenta);
}

.module-copy {
  position: static;
  z-index: 3;
  grid-row: 2;
  padding: 108px 24px 24px;
  background: var(--panel-bg);
}

.module-panel--time .module-copy {
  padding-top: 150px;
}

.module-panel--best .module-copy {
  padding-top: 128px;
}

.module-label {
  position: absolute;
  z-index: 6;
  left: 24px;
  top: calc(49% - 46px);
  margin: 0;
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
  text-shadow: 0 2px 12px rgb(0 0 0 / 58%);
}

.module-panel--time .module-label {
  color: var(--yellow);
}

.module-panel--best .module-label {
  color: #a98cff;
}

.module-copy h2 {
  margin: 0;
  font-size: clamp(29px, 8.2vw, 34px);
  line-height: 1.2;
  font-weight: 900;
}

.module-description {
  margin: 17px 0 0;
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.76;
}

.module-cta,
.module-cta--wide {
  min-width: 132px;
  min-height: 46px;
  margin-top: 22px;
  padding: 0 20px;
  border-radius: 6px;
  font-size: 15px;
}

.module-panel--blind .module-cta {
  background: var(--cyan);
  color: var(--text);
}

.module-panel--love .module-cta {
  background: var(--magenta);
  color: var(--text);
}

.module-visual {
  position: relative;
  z-index: 1;
  grid-row: 1;
  border: 0;
}

.module-grid {
  opacity: 0.22;
}

.module-panel--mood .module-grid,
.module-panel--best .module-grid {
  opacity: 0.14;
}

.module-panel--blind .module-grid,
.module-panel--love .module-grid {
  opacity: 0.16;
}

.module-trace {
  position: absolute;
  z-index: 5;
  top: calc(49% - 2px);
  left: 0;
  right: 0;
  pointer-events: none;
}

.module-trace p {
  margin: 0;
}

.time-proof {
  display: block;
  padding: 12px 24px 0;
  color: var(--text);
}

.time-proof__journey {
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.time-proof__journey strong {
  margin: 0 5px;
  font-size: 36px;
  line-height: 1;
}

.time-proof__track {
  position: relative;
  width: calc(100% + 24px);
  height: 2px;
  margin-top: 8px;
  background: repeating-linear-gradient(90deg, #f06416 0 4px, transparent 4px 7px);
}

.time-proof__track span {
  display: block;
  width: 54%;
  height: 100%;
  background: #6478f2;
}

.time-proof__track i {
  position: absolute;
  left: 54%;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #f06416;
  transform: translate(-50%, -50%);
}

.time-proof__meta {
  margin-top: 10px !important;
  font-size: 11px;
  font-weight: 700;
}

.time-proof__meta strong {
  color: #f06416;
}

.time-proof__months {
  display: grid;
  margin-top: 10px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 5px;
}

.time-proof__months span {
  display: grid;
  min-width: 0;
  gap: 5px;
  justify-items: center;
  font-size: 8px;
  font-weight: 700;
}

.time-proof__months span::after {
  width: 17px;
  height: 17px;
  border: 1px solid rgb(16 16 18 / 72%);
  border-radius: 3px;
  content: "";
}

.time-proof__months .is-current::after {
  border-color: #f06416;
  background: #f06416;
}

.time-proof__months .is-future::after {
  border: 1px dashed #f06416;
}

.module-trace--mood {
  display: grid;
  padding: 20px 24px 0;
  grid-template-columns: minmax(54px, 1fr) 10px auto auto;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.mood-pulse {
  height: 2px;
  background: var(--magenta);
}

.mood-node {
  width: 10px;
  height: 10px;
  background: var(--magenta);
}

.module-trace--mood p {
  font-size: 11px;
  white-space: nowrap;
}

.mood-swatches {
  display: flex;
  gap: 6px;
}

.mood-swatches i {
  width: 12px;
  height: 12px;
  background: var(--magenta);
}

.mood-swatches i:last-child {
  background: #ef981e;
}

.module-trace--blind {
  display: grid;
  padding: 14px 24px 0;
  grid-template-columns: 32px minmax(36px, 1fr) auto;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
}

.blind-square {
  width: 32px;
  height: 32px;
  border: 1px solid var(--cyan);
}

.blind-line {
  height: 1px;
  background: var(--cyan);
}

.module-trace--blind p {
  font-size: 11px;
  white-space: nowrap;
}

.blind-fragments {
  position: absolute;
  left: 30px;
  top: 53px;
  display: grid;
  width: 26px;
  height: 22px;
  grid-template-columns: repeat(3, 4px);
  gap: 5px;
}

.blind-fragments i {
  width: 4px;
  height: 4px;
  background: var(--magenta);
}

.blind-fragments i:nth-child(2) { background: var(--yellow); }
.blind-fragments i:nth-child(3) { background: var(--violet); }
.blind-fragments i:nth-child(4) { background: var(--cyan); }

.best-trace-title {
  display: none;
}

.module-trace--best {
  padding: 9px 24px 0;
  color: var(--text);
}

.module-trace--best p {
  display: flex;
  width: min(250px, 76vw);
  min-height: 26px;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid rgb(231 76 173 / 68%);
  font-size: 10px;
}

.module-trace--best p:nth-of-type(2) {
  margin-left: clamp(24px, 10vw, 44px);
}

.module-trace--best p:nth-of-type(3) {
  margin-left: clamp(48px, 20vw, 88px);
}

.module-trace--best i {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  background: var(--magenta);
}

.module-trace--best p:nth-of-type(2) i { background: #ef981e; }
.module-trace--best p:nth-of-type(3) i { background: #218fe5; }

.module-trace--love {
  display: grid;
  padding: 22px 24px 0;
  grid-template-columns: minmax(24px, 1fr) auto 8px auto minmax(24px, 1fr);
  align-items: center;
  gap: 9px;
  color: var(--magenta);
}

.module-trace--love p {
  font-size: 10px;
  white-space: nowrap;
}

.love-line {
  height: 1px;
  background: var(--magenta);
}

.love-node {
  width: 7px;
  height: 7px;
  background: var(--yellow);
}

@media (max-height: 720px) and (max-width: 767px) {
  .world-sticky {
    grid-template-rows: 60px minmax(0, 1fr);
  }

  .module-nav,
  .module-nav__logo,
  .module-nav__items {
    height: 60px;
  }

  .module-panel {
    grid-template-rows: 44% 56%;
  }

  .module-label {
    top: calc(44% - 40px);
  }

  .module-trace {
    top: calc(44% - 2px);
  }

  .module-copy {
    padding-top: 82px;
  }

  .module-panel--time .module-copy {
    padding-top: 116px;
  }

  .module-panel--best .module-copy {
    padding-top: 102px;
  }

  .module-copy h2 {
    font-size: 28px;
  }

  .module-description {
    margin-top: 12px;
    font-size: 13px;
  }

  .module-cta,
  .module-cta--wide {
    min-height: 42px;
    margin-top: 15px;
  }

  .time-proof {
    padding-top: 9px;
  }

  .time-proof__journey strong {
    font-size: 30px;
  }

  .time-proof__meta,
  .time-proof__months {
    margin-top: 7px !important;
  }

  .time-proof__months span::after {
    width: 14px;
    height: 14px;
  }

  .module-trace--best p {
    min-height: 22px;
  }
}

@media (min-width: 768px) {
  :root {
    --nav-width: clamp(150px, 12vw, 180px);
  }

  .world-section {
    height: 520svh;
  }

  .world-sticky {
    display: flex;
    min-height: 640px;
  }

  .module-nav {
    width: var(--nav-width);
    height: auto;
    flex: 0 0 var(--nav-width);
    flex-direction: column;
    border-right: 1px solid rgb(255 255 255 / 10%);
    border-bottom: 0;
  }

  .module-nav__logo {
    width: 100%;
    height: auto;
    min-height: 142px;
    flex: none;
    border-right: 0;
  }

  .module-nav__logo img {
    width: 54px;
    height: 54px;
  }

  .module-nav__items {
    width: 100%;
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 1fr);
  }

  .module-tab {
    padding: 12px 12px 12px clamp(46px, 4vw, 58px);
    justify-items: start;
    border: 0;
    color: rgb(255 255 255 / 58%);
    text-align: left;
  }

  .module-tab.is-active {
    background: transparent;
  }

  .module-tab__bar {
    left: clamp(26px, 2.2vw, 34px);
    right: auto;
    top: 50%;
    bottom: auto;
    width: 3px;
    height: 42px;
    opacity: 0.82;
    transform: translateY(-50%);
  }

  .module-tab.is-active .module-tab__bar {
    height: 48px;
    opacity: 1;
  }

  .module-tab__name {
    font-size: clamp(19px, 1.7vw, 23px);
    line-height: 1;
  }

  .module-stage {
    flex: 1;
  }

  .stage-overline {
    display: block;
    top: clamp(96px, 12vh, 112px);
    left: clamp(28px, 3.7vw, 54px);
    right: auto;
    color: currentcolor;
    font-size: 13px;
    font-weight: 600;
    opacity: 0.54;
  }

  .module-panel {
    --copy-pad: clamp(28px, 3.7vw, 54px);
    grid-template-columns: minmax(300px, 36%) 1fr;
    grid-template-rows: 1fr;
  }

  .module-copy {
    grid-column: 1;
    grid-row: 1;
    padding: clamp(198px, 24vh, 222px) var(--copy-pad) 44px;
    border-right: 1px solid rgb(255 255 255 / 6%);
  }

  .module-panel--time .module-copy,
  .module-panel--best .module-copy {
    padding-top: clamp(198px, 24vh, 222px);
  }

  .module-label {
    position: static;
    margin: 0 0 64px;
    color: var(--accent);
    font-size: 16px;
    text-shadow: none;
  }

  .module-panel--time .module-label {
    color: var(--text);
  }

  .module-panel--best .module-label {
    color: var(--violet);
  }

  .module-copy h2 {
    font-size: clamp(40px, 3.9vw, 52px);
    line-height: 1.14;
    font-weight: 800;
  }

  .module-description {
    margin-top: 40px;
    font-size: 17px;
    line-height: 1.65;
  }

  .module-cta,
  .module-cta--wide {
    width: 142px;
    min-width: 142px;
    min-height: 50px;
    margin-top: 48px;
    padding: 0 18px;
    font-size: 16px;
  }

  .module-visual {
    grid-column: 2;
    grid-row: 1;
    border-left: 0;
  }

  .module-grid {
    opacity: 0.18;
  }

  .module-panel--mood .module-grid,
  .module-panel--best .module-grid {
    opacity: 0.1;
  }

  .module-panel--blind .module-grid,
  .module-panel--love .module-grid {
    opacity: 0.12;
  }

  .module-trace {
    top: auto;
    left: var(--copy-pad);
    right: auto;
  }

  .module-trace--time {
    bottom: 38px;
    width: calc(36% + 250px - var(--copy-pad));
    max-width: none;
    margin: 0;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--text);
    box-shadow: none;
  }

  .time-proof__journey {
    font-size: 16px;
  }

  .time-proof__journey strong {
    color: currentcolor;
    font-size: 42px;
  }

  .time-proof__track {
    width: 100%;
    margin-top: 12px;
  }

  .time-proof__meta {
    margin-top: 14px !important;
    font-size: 12px;
  }

  .time-proof__months {
    margin-top: 14px;
    gap: 8px;
  }

  .time-proof__months span {
    height: auto;
    gap: 7px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: currentcolor;
    font-size: 9px;
    place-items: initial;
  }

  .time-proof__months .is-past,
  .time-proof__months .is-current,
  .time-proof__months .is-future {
    border: 0;
    background: transparent;
    color: currentcolor;
  }

  .time-proof__months span::after {
    width: 24px;
    height: 24px;
  }

  .module-trace--mood {
    bottom: 74px;
    width: calc(100% - var(--copy-pad) - 40px);
    padding: 0;
    grid-template-columns: minmax(120px, 36%) 12px auto auto;
    gap: 14px;
  }

  .module-trace--mood p {
    font-size: 13px;
  }

  .mood-swatches i {
    width: 16px;
    height: 16px;
  }

  .module-trace--blind {
    bottom: 84px;
    display: grid;
    width: calc(100% - var(--copy-pad) - 72px);
    padding: 0;
    grid-template-columns: 42px minmax(220px, 1fr);
    align-items: center;
  }

  .blind-square {
    width: 42px;
    height: 42px;
  }

  .blind-line {
    height: 2px;
  }

  .module-trace--blind p {
    position: absolute;
    left: 96px;
    top: 58px;
    font-size: 13px;
  }

  .blind-fragments {
    left: 50px;
    top: 58px;
  }

  .module-trace--best {
    bottom: 34px;
    width: calc(36% + 230px - var(--copy-pad));
    padding: 0;
  }

  .module-trace--best p {
    width: min(330px, 100%);
    min-height: 34px;
    font-size: 13px;
  }

  .module-trace--best p:nth-of-type(2) {
    margin-left: 28px;
  }

  .module-trace--best p:nth-of-type(3) {
    margin-left: 56px;
  }

  .module-trace--best i {
    width: 12px;
    height: 12px;
  }

  .module-trace--love {
    bottom: 96px;
    width: calc(100% - var(--copy-pad) - 36px);
    padding: 0;
    grid-template-columns: minmax(80px, 1fr) auto 8px auto minmax(120px, 2fr);
    gap: 14px;
  }

  .module-trace--love p {
    font-size: 13px;
  }
}

@media (min-width: 768px) and (max-height: 760px) {
  .module-copy,
  .module-panel--time .module-copy,
  .module-panel--best .module-copy {
    padding-top: 132px;
  }

  .module-label {
    margin-bottom: 22px;
  }

  .module-copy h2 {
    font-size: clamp(34px, 3.1vw, 44px);
  }

  .module-description {
    margin-top: 24px;
  }

  .module-cta,
  .module-cta--wide {
    margin-top: 22px;
  }

  .module-trace--time,
  .module-trace--blind,
  .module-trace--best {
    bottom: 22px;
  }

  .module-trace--mood,
  .module-trace--love {
    bottom: 42px;
  }

  .time-proof__months span::after {
    width: 20px;
    height: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 120ms !important;
    animation-duration: 120ms !important;
  }
  .module-photo, .reveal-on-scroll { transform: none; }
}

/* Final desktop composition. Mobile rules above remain the source of truth below 768px. */
.desktop-hero,
.belief-brand,
.belief-frame-desktop,
.download-storyline {
  display: none;
}

.story-dialog {
  width: 100vw;
  max-width: none;
  height: 100svh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgb(3 3 4 / 96%);
  overflow: hidden;
}

.story-dialog::backdrop {
  background: rgb(0 0 0 / 84%);
}

.story-dialog__frame {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
}

.story-dialog video {
  width: auto;
  height: min(100svh, 1080px);
  max-width: 100vw;
  object-fit: contain;
  background: #000;
}

.story-dialog__close {
  position: absolute;
  z-index: 2;
  top: max(22px, env(safe-area-inset-top));
  right: max(22px, env(safe-area-inset-right));
  width: 54px;
  height: 54px;
  overflow: hidden;
  border-color: rgb(255 255 255 / 34%);
  border-radius: 2px;
  background: rgb(4 4 5 / 68%);
  box-shadow: 0 12px 32px rgb(0 0 0 / 28%);
  backdrop-filter: blur(10px);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.story-dialog__close .ui-icon {
  width: 22px;
  height: 22px;
  transition: transform 180ms ease;
}

.story-dialog__close-accent {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  object-fit: fill;
}

.story-dialog__close:hover {
  border-color: rgb(255 255 255 / 72%);
  background: rgb(4 4 5 / 84%);
  transform: translateY(-2px);
}

.story-dialog__close:hover .ui-icon {
  transform: scale(1.08);
}

.story-dialog__close:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

@media (max-width: 767px) {
  .story-dialog__close {
    top: max(16px, env(safe-area-inset-top));
    right: max(16px, env(safe-area-inset-right));
    width: 48px;
    height: 48px;
  }
}

@media (min-width: 768px) {
  .film-hero,
  .belief-section,
  .download-section {
    height: 100vh;
    min-height: 720px;
  }

  .film-frame--mobile,
  .desktop-word {
    display: none;
  }

  .desktop-hero {
    position: absolute;
    inset: 0;
    display: block;
    overflow: hidden;
    background: #5f747d;
  }

  .desktop-hero__image,
  .desktop-hero__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .desktop-hero__image {
    object-fit: cover;
    object-position: center center;
  }

  .desktop-hero__shade {
    background: rgb(5 14 18 / 18%);
    pointer-events: none;
  }

  .desktop-hero__header {
    position: absolute;
    z-index: 2;
    top: clamp(28px, 4.2vh, 44px);
    left: clamp(38px, 3.2vw, 56px);
    right: clamp(52px, 4.6vw, 78px);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .desktop-brand {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    color: var(--white);
    font-size: clamp(25px, 1.9vw, 32px);
    font-weight: 900;
    text-shadow: 0 2px 20px rgb(0 0 0 / 42%);
  }

  .desktop-brand img {
    width: clamp(52px, 4vw, 66px);
    height: clamp(52px, 4vw, 66px);
  }

  .desktop-hero__nav {
    display: flex;
    align-items: flex-start;
    gap: clamp(34px, 4.2vw, 70px);
  }

  .desktop-hero__nav a {
    display: grid;
    min-width: 44px;
    gap: 11px;
    justify-items: center;
    color: rgb(255 255 255 / 88%);
    font-size: clamp(17px, 1.35vw, 23px);
    font-weight: 800;
    text-shadow: 0 2px 14px rgb(0 0 0 / 54%);
  }

  .desktop-hero__nav i {
    display: block;
    width: 44px;
    height: 4px;
    background: currentcolor;
    box-shadow: 0 1px 8px rgb(0 0 0 / 42%);
  }

  .desktop-hero__nav .is-yellow { color: var(--yellow); }
  .desktop-hero__nav .is-magenta { color: var(--magenta); }
  .desktop-hero__nav .is-cyan { color: var(--cyan); }
  .desktop-hero__nav .is-violet { color: var(--violet); }

  .desktop-hero__copy {
    position: absolute;
    z-index: 2;
    top: 31.5%;
    left: 54.2%;
    color: var(--white);
    text-shadow: 0 4px 30px rgb(0 0 0 / 36%);
  }

  .desktop-hero__copy h1 {
    margin: 0;
    font-size: clamp(108px, 9.3vw, 156px);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: 0;
  }

  .desktop-hero__copy p {
    margin: 26px 0 0;
    font-size: clamp(28px, 2.6vw, 44px);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0;
  }

  .desktop-story-button {
    position: absolute;
    z-index: 3;
    right: clamp(72px, 8.4vw, 142px);
    bottom: clamp(78px, 9.6vh, 102px);
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--white);
    font-size: clamp(18px, 1.5vw, 25px);
    font-weight: 800;
    cursor: pointer;
    text-shadow: 0 2px 18px rgb(0 0 0 / 58%);
  }

  .desktop-story-button__icon {
    display: grid;
    width: clamp(68px, 5.2vw, 86px);
    height: clamp(68px, 5.2vw, 86px);
    place-items: center;
    border: 2px solid var(--cyan);
    background: rgb(5 14 18 / 20%);
    transition: background 180ms ease, transform 180ms ease;
  }

  .desktop-story-button__icon img {
    width: 34%;
    height: 34%;
    filter: brightness(0) saturate(100%) invert(78%) sepia(76%) saturate(995%) hue-rotate(143deg) brightness(91%) contrast(90%);
  }

  .desktop-story-button:hover .desktop-story-button__icon {
    background: rgb(40 199 221 / 24%);
    transform: translateY(-2px);
  }

  .desktop-hero__signature {
    position: absolute;
    z-index: 2;
    left: 38.2%;
    bottom: 3.8%;
    display: grid;
    width: min(22vw, 370px);
    grid-template-columns: 1fr 72px 1fr;
    align-items: center;
    gap: 12px;
  }

  .desktop-hero__signature > span {
    height: 1px;
    background: rgb(255 255 255 / 62%);
  }

  .desktop-hero__signature img {
    width: 72px;
    height: 7px;
    object-fit: fill;
  }

  .belief-section {
    background: #09090b;
  }

  .belief-inner {
    position: relative;
    display: block;
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }

  .belief-brand {
    position: absolute;
    z-index: 3;
    top: clamp(32px, 4.2vh, 44px);
    left: clamp(38px, 3.2vw, 56px);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #f7f7f4;
    font-size: clamp(20px, 1.45vw, 25px);
    font-weight: 900;
  }

  .belief-brand img {
    width: clamp(38px, 2.8vw, 46px);
    height: clamp(38px, 2.8vw, 46px);
  }

  .belief-marker,
  .belief-rule,
  .belief-next,
  .belief-inner > .section-kicker {
    display: none;
  }

  .belief-inner h1 {
    position: absolute;
    top: 21.4%;
    left: 8.1%;
    display: block;
    width: 56%;
    margin: 0;
    color: #f7f7f4;
  }

  .belief-inner h1 span {
    display: block;
    letter-spacing: 0;
  }

  .belief-inner h1 span:first-child {
    margin-bottom: clamp(20px, 2.5vh, 28px);
    font-size: clamp(34px, 2.8vw, 47px);
    line-height: 1.15;
    font-weight: 800;
  }

  .belief-inner h1 span:nth-child(2),
  .belief-inner h1 span:nth-child(3) {
    font-size: clamp(58px, 5.15vw, 86px);
    line-height: 1.34;
    font-weight: 900;
  }

  .belief-values {
    position: absolute;
    top: 64.5%;
    left: 8.35%;
    display: grid;
    grid-template-columns: auto auto;
    gap: clamp(80px, 9.2vw, 154px);
    color: #f7f7f4;
  }

  .belief-values p {
    position: relative;
    margin: 0;
    padding-bottom: 24px;
    font-size: clamp(24px, 2.15vw, 36px);
    line-height: 1.2;
    font-weight: 800;
    white-space: nowrap;
  }

  .belief-values p::after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 82px;
    height: 4px;
    background: var(--yellow);
    content: "";
  }

  .belief-values p:last-child::after {
    background: var(--magenta);
  }

  .belief-note {
    position: absolute;
    left: 8.35%;
    bottom: 10.5%;
    width: 58vw;
    max-width: none;
    margin: 0;
    padding: 0;
    border: 0;
    color: #f7f7f4;
  }

  .belief-note strong {
    font-size: clamp(19px, 1.55vw, 26px);
    font-weight: 800;
  }

  .belief-note p {
    margin: 15px 0 0;
    color: rgb(255 255 255 / 82%);
    font-size: clamp(15px, 1.25vw, 20px);
    line-height: 1.55;
    white-space: nowrap;
  }

  .belief-note br {
    display: none;
  }

  .belief-grid--mobile {
    display: none;
  }

  .belief-frame-desktop {
    position: absolute;
    top: 12.6%;
    right: 5.1%;
    display: block;
    width: min(35vw, 560px);
    height: auto;
    object-fit: contain;
    opacity: 1;
    clip-path: none;
    transform: none;
  }

  :root {
    --nav-width: clamp(154px, 10.4vw, 182px);
  }

  .world-section {
    height: 520vh;
  }

  .world-sticky {
    display: grid;
    min-height: 720px;
    grid-template-columns: var(--nav-width) minmax(0, 1fr);
    background: #050506;
  }

  .module-nav {
    width: auto;
    height: 100vh;
    min-height: 720px;
    flex: none;
    border-right: 1px solid rgb(255 255 255 / 10%);
  }

  .module-nav__logo {
    min-height: 136px;
  }

  .module-nav__logo img {
    width: 52px;
    height: 52px;
  }

  .module-tab {
    padding: 12px 12px 12px clamp(48px, 3.75vw, 62px);
  }

  .module-tab:focus-visible {
    outline: 0;
  }

  .module-tab:focus-visible .module-tab__name {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
  }

  .module-tab__bar {
    left: clamp(28px, 2.05vw, 34px);
    width: 3px;
    height: 38px;
  }

  .module-tab.is-active .module-tab__bar {
    height: 44px;
  }

  .module-tab__name {
    font-size: clamp(19px, 1.55vw, 25px);
    font-weight: 800;
  }

  .module-stage {
    position: relative;
    width: auto;
    min-width: 0;
    height: 100vh;
    min-height: 720px;
  }

  .stage-overline {
    z-index: 8;
    top: clamp(106px, 12.7vh, 124px);
    left: clamp(50px, 4vw, 68px);
    color: #101012;
    font-size: clamp(14px, 1.05vw, 18px);
    font-weight: 600;
    opacity: 1;
  }

  .module-stage[data-active-module="2"] .stage-overline,
  .module-stage[data-active-module="4"] .stage-overline {
    color: rgb(255 255 255 / 86%);
  }

  .module-panel {
    --copy-pad: clamp(50px, 4vw, 68px);
    grid-template-columns: minmax(430px, 41.2%) minmax(0, 58.8%);
    grid-template-rows: 1fr;
  }

  .module-copy,
  .module-panel--time .module-copy,
  .module-panel--best .module-copy {
    padding: clamp(206px, 22.8vh, 220px) var(--copy-pad) 42px;
    border-right: 0;
  }

  .module-label {
    margin: 0 0 clamp(48px, 5.8vh, 58px);
    font-size: clamp(16px, 1.2vw, 20px);
  }

  .module-copy h2 {
    font-size: clamp(48px, 4vw, 68px);
    line-height: 1.17;
    font-weight: 900;
  }

  .module-description {
    margin-top: clamp(30px, 4vh, 40px);
    font-size: clamp(17px, 1.35vw, 22px);
    line-height: 1.58;
    opacity: 0.86;
  }

  .module-cta,
  .module-cta--wide,
  .module-panel--blind .module-cta,
  .module-panel--love .module-cta {
    width: clamp(184px, 13vw, 218px);
    min-width: 0;
    min-height: clamp(58px, 7.5vh, 72px);
    margin-top: clamp(34px, 5.2vh, 50px);
    padding: 0 24px;
    border: 2px solid currentcolor;
    border-radius: 0;
    background: transparent;
    color: inherit;
    font-size: clamp(17px, 1.35vw, 22px);
    font-weight: 800;
  }

  .module-cta:hover,
  .module-cta--wide:hover {
    background: rgb(127 127 127 / 12%);
  }

  .module-panel--blind .module-cta {
    border-color: var(--cyan);
    color: #f5f3ee;
  }

  .module-panel--love .module-cta {
    border-color: rgb(255 255 255 / 82%);
    color: #f5f3ee;
  }

  .module-visual {
    grid-column: 2;
    grid-row: 1;
    border: 0;
  }

  .module-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .module-grid {
    opacity: 0.06;
  }

  .module-trace {
    z-index: 7;
    left: var(--copy-pad);
    right: auto;
  }

  .time-proof__track,
  .mood-pulse,
  .blind-line,
  .module-trace--best p,
  .love-line {
    filter: drop-shadow(0 1px 0 rgb(0 0 0 / 82%)) drop-shadow(0 -1px 0 rgb(255 255 255 / 42%));
  }

  .module-trace--time {
    bottom: 62px;
    width: calc(100% - var(--copy-pad) - 46px);
  }

  .time-proof__track {
    height: 2px;
  }

  .time-proof__months span::after {
    width: 20px;
    height: 20px;
  }

  .time-proof__months span:nth-child(n+7) {
    color: #fff;
    text-shadow: 0 1px 5px rgb(0 0 0 / 96%);
  }

  .time-proof__months span:nth-child(n+7)::after {
    border-color: rgb(255 255 255 / 88%);
    box-shadow: 0 0 0 1px rgb(0 0 0 / 58%), 0 0 5px rgb(255 255 255 / 36%);
  }

  .time-proof__months .is-current:nth-child(n+7)::after {
    border-color: #f06416;
    background: #f06416;
  }

  .time-proof__months .is-future:nth-child(n+7)::after {
    border-color: rgb(255 255 255 / 88%);
  }

  .module-trace--mood {
    bottom: 92px;
    width: calc(41.2% + 320px - var(--copy-pad));
    grid-template-columns: auto 10px minmax(200px, 1fr) auto;
    gap: 12px;
  }

  .module-trace--mood p {
    grid-column: 1;
    grid-row: 1;
    color: #101012;
    font-size: 14px;
    font-weight: 700;
    text-shadow: none;
  }

  .module-trace--mood .mood-node {
    grid-column: 2;
    grid-row: 1;
  }

  .module-trace--mood .mood-pulse {
    grid-column: 3;
    grid-row: 1;
    height: 2px;
    background: #c72d92;
    filter: drop-shadow(0 1px 0 rgb(255 255 255 / 68%)) drop-shadow(0 -1px 0 rgb(0 0 0 / 28%));
  }

  .module-trace--mood .mood-swatches {
    grid-column: 4;
    grid-row: 1;
  }

  .module-trace--blind {
    bottom: 92px;
    width: calc(100% - var(--copy-pad) - 50px);
    grid-template-columns: 48px minmax(220px, 1fr);
  }

  .blind-square {
    width: 48px;
    height: 48px;
    border-width: 2px;
    filter: drop-shadow(0 0 4px rgb(0 0 0 / 85%));
  }

  .module-trace--blind p {
    left: 104px;
    top: 62px;
    font-size: 14px;
  }

  .blind-fragments {
    left: 54px;
    top: 62px;
  }

  .module-trace--best {
    bottom: 54px;
    width: calc(41.2% + 230px - var(--copy-pad));
  }

  .best-trace-title {
    display: block;
    margin: 0 0 10px;
    color: #101012;
    font-size: clamp(18px, 1.5vw, 25px);
    font-weight: 900;
  }

  .module-trace--best p {
    width: 100%;
    min-height: 42px;
    border-bottom-width: 1px;
    border-bottom-color: rgb(231 76 173 / 82%);
    font-size: 14px;
  }

  .module-trace--best p:nth-of-type(2) {
    width: calc(100% - 70px);
    margin-left: 36px;
    border-bottom-color: rgb(239 152 30 / 84%);
  }

  .module-trace--best p:nth-of-type(3) {
    width: calc(100% - 140px);
    margin-left: 72px;
    border-bottom-color: rgb(40 199 221 / 86%);
  }

  .module-trace--love {
    bottom: 104px;
    width: calc(100% - var(--copy-pad) - 44px);
  }

  .module-trace--love p {
    color: rgb(255 255 255 / 92%);
    font-size: 14px;
    text-shadow: 0 1px 5px rgb(0 0 0 / 92%);
  }

  .download-section {
    background: #030304;
  }

  .download-inner {
    position: relative;
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }

  .download-rule {
    position: absolute;
    top: 5.6%;
    left: 3.3%;
    width: 93.4%;
    height: 7px;
    object-fit: fill;
  }

  .download-inner h2 {
    position: absolute;
    top: 28.7%;
    left: 4.8%;
    margin: 0;
    color: #f7f7f4;
    font-size: clamp(64px, 6vw, 102px);
    line-height: 1.42;
    font-weight: 900;
  }

  .download-storyline {
    position: absolute;
    top: 63.4%;
    left: 4.3%;
    display: block;
    width: min(50vw, 838px);
    height: auto;
  }

  .brand-convergence {
    position: absolute;
    top: 14.3%;
    right: 18.2%;
    width: clamp(230px, 18.7vw, 312px);
    height: clamp(230px, 18.7vw, 312px);
    margin: 0;
  }

  .brand-fragments {
    display: none;
  }

  .download-logo {
    width: 100%;
    height: 100%;
    opacity: 1;
    transform: none;
  }

  .download-brand {
    position: absolute;
    top: 43.4%;
    right: 15.3%;
    width: 310px;
    margin: 0;
    color: #f7f7f4;
    font-size: clamp(44px, 4vw, 66px);
    font-weight: 900;
    text-align: center;
  }

  .download-slogan {
    position: absolute;
    top: 55.2%;
    right: 13.4%;
    width: 370px;
    margin: 0;
    color: rgb(255 255 255 / 82%);
    font-size: clamp(19px, 1.6vw, 27px);
    text-align: center;
  }

  .download-button {
    position: absolute;
    top: 63.5%;
    right: 13.3%;
    width: clamp(350px, 28vw, 468px);
    min-height: clamp(76px, 10vh, 96px);
    margin: 0;
    border-radius: 8px;
    font-size: clamp(27px, 2.2vw, 37px);
    font-weight: 900;
  }

  .download-button .ui-icon {
    width: clamp(35px, 3vw, 50px);
    height: clamp(35px, 3vw, 50px);
  }

  .download-platforms {
    position: absolute;
    top: 76.2%;
    right: 17.2%;
    width: 300px;
    margin: 0;
    color: rgb(255 255 255 / 68%);
    font-size: clamp(17px, 1.35vw, 23px);
    text-align: center;
  }

  .download-inner::after {
    position: absolute;
    left: 4.8%;
    right: 4.8%;
    bottom: 12.8%;
    height: 1px;
    background: rgb(255 255 255 / 22%);
    content: "";
  }

  .site-footer {
    position: absolute;
    z-index: 2;
    left: 31%;
    right: 31%;
    width: auto;
    bottom: 4.7%;
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    border: 0;
    color: rgb(255 255 255 / 52%);
    font-size: clamp(15px, 1.25vw, 20px);
  }
}

@media (min-width: 768px) and (max-height: 760px) {
  .desktop-hero__copy { top: 27%; }
  .desktop-story-button { bottom: 50px; }
  .belief-inner h1 { top: 18%; }
  .belief-values { top: 63%; }
  .belief-note { bottom: 7%; }
  .module-copy,
  .module-panel--time .module-copy,
  .module-panel--best .module-copy { padding-top: 154px; }
  .module-label { margin-bottom: 28px; }
  .module-description { margin-top: 22px; }
  .module-cta,
  .module-cta--wide,
  .module-panel--blind .module-cta,
  .module-panel--love .module-cta { min-height: 52px; margin-top: 24px; }
  .module-trace--time,
  .module-trace--blind,
  .module-trace--best { bottom: 38px; }
  .module-trace--mood,
  .module-trace--love { bottom: 62px; }
}

@media (prefers-reduced-motion: reduce) {
  .desktop-story-button__icon { transition: none; }
}
