@font-face {
  font-family: 'Space Grotesk';
  src: url('/fonts/SpaceGrotesk-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Space Grotesk';
  src: url('/fonts/SpaceGrotesk-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Space Grotesk';
  src: url('/fonts/SpaceGrotesk-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --green: #58a852;
  --green-dark: #34732f;
  --ink: #1c1c1e;
  --muted: #636e7a;
  --paper: #f7f7f7;
  --white: #ffffff;
  --line: #ece9e3;
  --page-gutter: clamp(1.25rem, 4vw, 4.5rem);
  --page-width: 82rem;
  --section-space: clamp(5.5rem, 11vw, 10rem);
  --hero-parallax: 0px;
  --ease-out: cubic-bezier(0.2, 0.75, 0.2, 1);
  --font: 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 300;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
}

:focus-visible {
  outline: 0.2rem solid var(--green);
  outline-offset: 0.25rem;
}

::selection {
  background: var(--green);
  color: var(--ink);
}

.page-shell {
  width: min(100%, var(--page-width));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  padding: clamp(0.85rem, 2.2vw, 1.5rem) var(--page-gutter);
}

.site-header.is-scrolled {
  position: fixed;
  animation: header-in 0.35s var(--ease-out) both;
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  width: min(100%, 76rem);
  min-height: 4rem;
  margin-inline: auto;
  padding: 0.5rem 0.55rem 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(1.1rem) saturate(1.2);
  -webkit-backdrop-filter: blur(1.1rem) saturate(1.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand img {
  width: 1.7rem;
  height: 1.8rem;
  object-fit: contain;
}

.brand span {
  white-space: nowrap;
}

.primary-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 3vw, 2.75rem);
}

.primary-navigation a,
.footer-links a {
  position: relative;
  padding-block: 0.8rem;
  color: #4c545d;
  font-size: 0.9rem;
  font-weight: 500;
}

.primary-navigation a::after,
.footer-links a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0.45rem;
  left: 0;
  height: 0.12rem;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s var(--ease-out);
}

.primary-navigation a:hover::after,
.primary-navigation a:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding-inline: 1.05rem;
  border-radius: 0.9rem;
  background: var(--green);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border-radius: 0.8rem;
  background: var(--green);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 0.82rem;
  width: 1.1rem;
  height: 0.12rem;
  border-radius: 999px;
  background: var(--ink);
  transition:
    transform 0.25s ease,
    top 0.25s ease;
}

.menu-toggle span:first-child {
  top: 1.08rem;
}

.menu-toggle span:last-child {
  top: 1.55rem;
}

.menu-toggle[aria-expanded='true'] span:first-child {
  top: 1.32rem;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded='true'] span:last-child {
  top: 1.32rem;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: max(42rem, 100svh);
  overflow: hidden;
  background: #101011;
  color: var(--white);
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -3;
  transform: translate3d(0, var(--hero-parallax), 0) scale(1.035);
  will-change: transform;
}

.hero-media img {
  object-fit: cover;
  object-position: 50% 55%;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 7, 8, 0.93) 0%, rgba(7, 7, 8, 0.7) 42%, rgba(7, 7, 8, 0.14) 76%),
    linear-gradient(0deg, rgba(7, 7, 8, 0.64) 0%, transparent 46%),
    linear-gradient(180deg, rgba(7, 7, 8, 0.36), transparent 28%);
}

.hero-inner {
  position: relative;
  display: flex;
  min-height: max(42rem, 100svh);
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  padding-top: clamp(8rem, 18vh, 12rem);
  padding-bottom: clamp(3rem, 7vh, 5.5rem);
}

.hero-copy {
  width: min(100%, 52rem);
}

.eyebrow,
.chapter-label {
  margin: 0 0 1.25rem;
  color: var(--green);
  font-size: clamp(0.72rem, 1vw, 0.84rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #e8ebed;
}

.eyebrow span {
  width: 2.25rem;
  height: 0.16rem;
  border-radius: 999px;
  background: var(--green);
}

.hero h1,
.chapter h2,
.story-panel h2,
.availability h2 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.075em;
}

.hero h1 {
  max-width: 8.3ch;
  color: var(--white);
  font-size: clamp(4.2rem, 9.2vw, 8.75rem);
  line-height: 0.85;
}

.hero h1 em,
.share-panel h2 em,
.hype h2 em {
  color: var(--green);
  font-style: normal;
}

.hero-lead {
  max-width: 38rem;
  margin: clamp(1.5rem, 3vw, 2.25rem) 0 0;
  color: #e4e8ea;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 2rem;
}

.primary-cta {
  display: inline-flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding-inline: 1.25rem;
  border-radius: 1rem;
  background: var(--green);
  box-shadow: 0 0.75rem 2rem rgba(34, 93, 30, 0.26);
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.primary-cta:hover {
  background: #65b85f;
  transform: translateY(-0.15rem);
}

.primary-cta svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.store-statuses {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.store-status {
  display: inline-flex;
  min-height: 3.5rem;
  align-items: center;
  gap: 0.65rem;
  min-width: 8.5rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 1rem;
  background: rgba(9, 9, 10, 0.34);
  color: #f5f6f7;
  cursor: not-allowed;
  backdrop-filter: blur(0.7rem);
}

.store-status svg {
  width: 1.3rem;
  height: 1.3rem;
  flex: none;
  fill: currentColor;
}

.store-status > span {
  display: grid;
  gap: 0.18rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.store-status small {
  color: #c9ced1;
  font-size: 0.62rem;
  font-weight: 500;
}

.scroll-cue {
  display: flex;
  flex: none;
  align-items: center;
  gap: 0.75rem;
  min-height: 2.75rem;
  color: #e7e9ea;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  width: 1.55rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
}

.scroll-cue i::after {
  content: '';
  position: absolute;
  top: 0.45rem;
  left: 50%;
  width: 0.18rem;
  height: 0.52rem;
  border-radius: 999px;
  background: var(--green);
  transform: translateX(-50%);
  animation: scroll-dot 1.7s ease-in-out infinite;
}

.kinetic-ribbon {
  position: relative;
  z-index: 5;
  overflow: hidden;
  padding-block: 0.85rem;
  background: var(--green);
  color: var(--ink);
}

.ribbon-track {
  display: flex;
  width: max-content;
  animation: ribbon-move 22s linear infinite;
  will-change: transform;
}

.ribbon-track span {
  padding-right: 1.4rem;
  font-size: clamp(0.74rem, 1.15vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ribbon-track b {
  margin-inline: 1rem;
  color: var(--ink);
}

.chapter {
  position: relative;
  padding-block: var(--section-space);
  overflow: hidden;
}

.discover {
  background: var(--paper);
}

.discover-layout,
.hype-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(24rem, 1.12fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.chapter-copy h2,
.story-panel h2,
.availability h2 {
  font-size: clamp(3.2rem, 7vw, 7.2rem);
  line-height: 0.9;
}

.chapter-copy > p:last-of-type,
.story-content > p,
.availability-content > p {
  max-width: 34rem;
  margin: 1.75rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.65;
}

.discovery-signal {
  position: relative;
  min-height: clamp(25rem, 47vw, 37rem);
  border: 1px solid var(--line);
  border-radius: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  background:
    linear-gradient(rgba(28, 28, 30, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 28, 30, 0.045) 1px, transparent 1px), var(--white);
  background-size: 3.25rem 3.25rem;
  box-shadow: 0 2rem 5rem rgba(28, 28, 30, 0.07);
}

.signal-ring,
.signal-core {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.signal-ring {
  border: 1px solid rgba(88, 168, 82, 0.34);
}

.ring-one {
  width: 12rem;
  height: 12rem;
  background: rgba(88, 168, 82, 0.07);
}

.ring-two {
  width: 21rem;
  height: 21rem;
}

.ring-three {
  width: 31rem;
  height: 31rem;
}

.signal-core {
  width: 4.6rem;
  height: 4.6rem;
  background: var(--green);
  box-shadow:
    0 0 0 1.1rem rgba(88, 168, 82, 0.15),
    0 1rem 2rem rgba(52, 115, 47, 0.2);
}

.signal-core i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.1rem;
  height: 1.1rem;
  border: 0.28rem solid var(--white);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -65%) rotate(-45deg);
}

.event-chip {
  position: absolute;
  display: grid;
  gap: 0.25rem;
  min-width: 9.75rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0.9rem 2.4rem rgba(28, 28, 30, 0.11);
  color: var(--muted);
  font-size: 0.76rem;
  backdrop-filter: blur(0.75rem);
}

.event-chip b {
  color: var(--ink);
  font-size: 0.88rem;
}

.chip-one {
  top: 16%;
  right: 9%;
}

.chip-two {
  bottom: 14%;
  left: 8%;
}

.chip-three {
  right: 4%;
  bottom: 31%;
}

.connection-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.story-panel {
  position: relative;
  min-height: min(58rem, 78vw);
  padding: var(--section-space) var(--page-gutter);
  overflow: hidden;
}

.story-content {
  position: relative;
  z-index: 2;
  width: min(100%, 37rem);
  height: 100%;
  margin-inline: auto;
}

.join-panel {
  background: var(--white);
}

.share-panel {
  background: var(--ink);
  color: var(--white);
}

.share-panel .chapter-label,
.share-panel h2 em {
  color: var(--green);
}

.share-panel .story-content > p {
  color: #bdc4c9;
}

.people-cluster {
  position: absolute;
  top: clamp(20rem, 32vw, 31rem);
  left: 50%;
  width: min(29rem, 82vw);
  height: 19rem;
  transform: translateX(-50%);
}

.people-cluster span {
  position: absolute;
  bottom: 0;
  width: 7rem;
  height: 9.5rem;
  border: 0.45rem solid var(--white);
  border-radius: 5rem 5rem 1.8rem 1.8rem;
  background: var(--green);
  box-shadow: 0 1.2rem 2.8rem rgba(28, 28, 30, 0.14);
}

.people-cluster span::before {
  content: '';
  position: absolute;
  top: -3.8rem;
  left: 50%;
  width: 5.4rem;
  height: 5.4rem;
  border: 0.45rem solid var(--white);
  border-radius: 50%;
  background: inherit;
  transform: translateX(-50%);
}

.people-cluster span:nth-child(1) {
  left: 1%;
  height: 8rem;
  background: #8096b8;
  transform: scale(0.82);
}

.people-cluster span:nth-child(2) {
  left: 18%;
  background: #d69265;
}

.people-cluster span:nth-child(3) {
  z-index: 2;
  left: 39%;
  height: 11rem;
}

.people-cluster span:nth-child(4) {
  right: 18%;
  background: #bd7f9c;
}

.people-cluster span:nth-child(5) {
  right: 1%;
  height: 8rem;
  background: #758779;
  transform: scale(0.82);
}

.memory-stack {
  position: absolute;
  top: clamp(20rem, 32vw, 30rem);
  left: 50%;
  width: min(29rem, 82vw);
  height: 22rem;
  transform: translateX(-50%);
}

.memory {
  position: absolute;
  width: 15.5rem;
  aspect-ratio: 4 / 5;
  border: 0.4rem solid #f6f6f4;
  border-radius: 1.65rem;
  overflow: hidden;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.52), transparent 55%),
    radial-gradient(circle at 50% 68%, #f6c247 0 6%, transparent 7%),
    linear-gradient(150deg, #1d2228 0 45%, #795e20 76%, #e3a51f 100%);
  box-shadow: 0 2rem 4.5rem rgba(0, 0, 0, 0.34);
}

.memory::before,
.memory::after,
.memory i::before,
.memory i::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  width: 3.2rem;
  height: 8rem;
  border-radius: 999px 999px 0 0;
  background: #090909;
}

.memory::before {
  left: 1.5rem;
  transform: rotate(-13deg);
}

.memory::after {
  right: 1.2rem;
  height: 9.5rem;
  transform: rotate(12deg);
}

.memory i::before {
  left: 5.6rem;
  height: 7rem;
}

.memory i::after {
  right: 5.2rem;
  height: 6rem;
}

.memory-back {
  top: 1.2rem;
  left: 1.2rem;
  opacity: 0.58;
  transform: rotate(-11deg);
}

.memory-front {
  top: 0.5rem;
  right: 1.2rem;
  transform: rotate(8deg);
}

.memory-front b {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  padding: 0.35rem 0.5rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.54);
  color: var(--white);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.memory-front b::first-letter {
  color: #ff3b30;
}

.hype {
  min-height: 50rem;
  background: var(--green);
  color: var(--ink);
  isolation: isolate;
}

.hype-layout {
  grid-template-columns: minmax(18rem, 0.75fr) minmax(0, 1.25fr);
}

.hype .chapter-label {
  color: #173a14;
}

.hype .chapter-copy > p:last-of-type {
  color: #1d381b;
}

.hype h2 em {
  color: var(--ink);
}

.hype-icon {
  position: relative;
  display: grid;
  width: min(100%, 28rem);
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2rem 5rem rgba(25, 75, 22, 0.22);
  transform: rotate(-7deg);
}

.hype-icon::before {
  content: '';
  position: absolute;
  inset: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.hype-icon img {
  width: 41%;
  height: auto;
}

.hype-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
}

.hype-tags span {
  padding: 0.7rem 1rem;
  border: 1px solid rgba(28, 28, 30, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.8rem;
  font-weight: 700;
}

.hype-signal {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: -17rem;
  width: 50rem;
  height: 50rem;
  transform: translateY(-50%);
}

.hype-signal span {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(28, 28, 30, 0.19);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.hype-signal span:nth-child(1) {
  width: 17rem;
  height: 17rem;
}

.hype-signal span:nth-child(2) {
  width: 32rem;
  height: 32rem;
}

.hype-signal span:nth-child(3) {
  width: 48rem;
  height: 48rem;
}

.availability {
  position: relative;
  min-height: 50rem;
  padding-block: var(--section-space);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
}

.availability-content {
  display: flex;
  min-height: 31rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.availability-logo {
  width: 4.5rem;
  height: auto;
  margin-bottom: 1.5rem;
  padding: 0.8rem;
  border-radius: 1.25rem;
  background: var(--white);
}

.availability h2 {
  font-size: clamp(4rem, 9vw, 9rem);
}

.availability .chapter-label {
  margin-bottom: 1rem;
}

.availability-content > p {
  color: #bac1c6;
}

.closing-stores {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.closing-store {
  display: grid;
  min-width: 10rem;
  gap: 0.25rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.06);
  cursor: not-allowed;
}

.closing-store b {
  font-size: 0.9rem;
}

.closing-store small {
  color: #9ea7ad;
  font-size: 0.72rem;
}

.availability-orbit {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: min(80vw, 60rem);
  aspect-ratio: 1;
  border: clamp(3rem, 7vw, 6rem) solid rgba(88, 168, 82, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.availability-orbit::before,
.availability-orbit::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(88, 168, 82, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.availability-orbit::before {
  width: 132%;
  height: 132%;
}

.availability-orbit::after {
  width: 164%;
  height: 164%;
}

.site-footer {
  border-top: 1px solid #303034;
  background: var(--ink);
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  min-height: 8.5rem;
}

.footer-brand img {
  padding: 0.2rem;
  border-radius: 0.35rem;
  background: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 2.25rem);
}

.footer-links a {
  color: #c5cbcf;
}

.footer-inner > p {
  margin: 0;
  color: #8f989e;
  font-size: 0.78rem;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(2rem);
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes header-in {
  from {
    opacity: 0;
    transform: translateY(-1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scroll-dot {
  0%,
  100% {
    opacity: 0.4;
    transform: translate(-50%, 0);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, 0.65rem);
  }
}

@keyframes ribbon-move {
  to {
    transform: translate3d(-33.333%, 0, 0);
  }
}

@media (max-width: 900px) {
  .hero-inner {
    align-items: flex-end;
  }

  .scroll-cue {
    display: none;
  }

  .discover-layout,
  .hype-layout {
    grid-template-columns: 1fr;
  }

  .discover-layout {
    gap: 4rem;
  }

  .hype-layout {
    gap: 4.5rem;
  }

  .hype-icon {
    width: min(72vw, 25rem);
    margin-inline: auto;
  }

  .connection-story {
    grid-template-columns: 1fr;
  }

  .story-panel {
    min-height: 49rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    padding-block: 2.5rem;
    text-align: center;
  }
}

@media (max-width: 760px) {
  :root {
    --page-gutter: 1rem;
    --section-space: clamp(5rem, 22vw, 7rem);
  }

  .site-header {
    padding-top: 0.75rem;
  }

  .nav-shell {
    position: relative;
    grid-template-columns: 1fr auto;
    min-height: 3.6rem;
    padding: 0.4rem 0.45rem 0.4rem 0.8rem;
    border-radius: 1rem;
  }

  .brand {
    min-height: 2.75rem;
    font-size: 0.92rem;
  }

  .brand img {
    width: 1.45rem;
    height: 1.55rem;
  }

  .menu-toggle {
    position: relative;
    display: block;
  }

  .nav-status {
    display: none;
  }

  .primary-navigation {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 0.55rem;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 1.2rem 2.5rem rgba(0, 0, 0, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.6rem);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  .primary-navigation.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-navigation a {
    min-height: 3.25rem;
    padding: 1rem;
    border-radius: 0.75rem;
    color: var(--ink);
  }

  .primary-navigation a:hover,
  .primary-navigation a:focus-visible {
    background: var(--paper);
  }

  .primary-navigation a::after {
    display: none;
  }

  .hero {
    min-height: max(43rem, 100svh);
  }

  .hero-media {
    transform: translate3d(0, calc(var(--hero-parallax) * 0.45), 0) scale(1.05);
  }

  .hero-media img {
    object-position: 51% 50%;
  }

  .hero-shade {
    background:
      linear-gradient(
        180deg,
        rgba(7, 7, 8, 0.75) 0%,
        rgba(7, 7, 8, 0.18) 38%,
        rgba(7, 7, 8, 0.88) 82%
      ),
      linear-gradient(90deg, rgba(7, 7, 8, 0.42), rgba(7, 7, 8, 0.04));
  }

  .hero-inner {
    min-height: max(43rem, 100svh);
    padding-top: 7.5rem;
    padding-bottom: 2rem;
  }

  .hero h1 {
    max-width: 7.4ch;
    font-size: clamp(3.55rem, 17vw, 5.4rem);
  }

  .hero-lead {
    max-width: 28rem;
    font-size: 1rem;
  }

  .hero-actions,
  .store-statuses {
    width: 100%;
  }

  .primary-cta {
    width: 100%;
  }

  .store-status {
    flex: 1 1 calc(50% - 0.3rem);
    min-width: 0;
  }

  .chapter-copy h2,
  .story-panel h2,
  .availability h2 {
    font-size: clamp(3.2rem, 15vw, 5.2rem);
  }

  .discovery-signal {
    min-height: 27rem;
  }

  .ring-three {
    width: 27rem;
    height: 27rem;
  }

  .event-chip {
    min-width: 8.7rem;
  }

  .chip-one {
    top: 10%;
    right: 4%;
  }

  .chip-two {
    bottom: 9%;
    left: 3%;
  }

  .chip-three {
    right: 2%;
    bottom: 27%;
  }

  .story-panel {
    min-height: 46rem;
  }

  .people-cluster,
  .memory-stack {
    top: 20rem;
  }

  .hype {
    min-height: auto;
  }

  .availability {
    min-height: 44rem;
  }

  .availability-orbit {
    width: 40rem;
  }
}

@media (max-width: 420px) {
  .eyebrow,
  .chapter-label {
    letter-spacing: 0.13em;
  }

  .store-status {
    padding-inline: 0.7rem;
  }

  .store-status > span {
    font-size: 0.72rem;
  }

  .event-chip {
    padding: 0.7rem 0.75rem;
  }

  .people-cluster {
    width: 24rem;
    transform: translateX(-50%) scale(0.84);
    transform-origin: top center;
  }

  .memory-stack {
    width: 24rem;
    transform: translateX(-50%) scale(0.82);
    transform-origin: top center;
  }

  .closing-store {
    min-width: 8.8rem;
  }
}

@media (max-height: 720px) and (min-width: 761px) {
  .hero,
  .hero-inner {
    min-height: 45rem;
  }

  .hero-inner {
    padding-top: 8rem;
    padding-bottom: 2rem;
  }

  .hero h1 {
    font-size: clamp(4rem, 10vh, 6rem);
  }

  .hero-lead {
    margin-top: 1rem;
  }

  .hero-actions {
    margin-top: 1.2rem;
  }
}

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

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

  .hero-media,
  .js [data-reveal],
  .js [data-reveal].is-visible {
    opacity: 1;
    transform: none;
  }
}
