@font-face {
  font-family: "PP NeueBit";
  src:
    url("themes/fonts/PPNeueBit-Bold.woff2") format("woff2"),
    url("themes/fonts/PPNeueBit-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PP Mondwest";
  src:
    url("themes/fonts/PPMondwest-Regular.woff2") format("woff2"),
    url("themes/fonts/PPMondwest-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #f3f2ed;
  --paper-deep: #e7e6e0;
  --ink: #080808;
  --muted: #676761;
  --line: #c9c7bf;
  --acid: #e8ff37;
  --navy: #122941;
  --navy-line: #38516a;
  --white: #fff;
  --font-pixel: "PP NeueBit", "Courier New", monospace;
  --font-editorial: "PP Mondwest", Georgia, serif;
  --font-reading: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --page: min(1440px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { min-width: 320px; scroll-behavior: smooth; background: var(--paper); color: var(--ink); }
body { min-width: 320px; margin: 0; background: var(--paper); color: var(--ink); font-family: var(--font-reading); -webkit-font-smoothing: antialiased; }
body, button, a { color: inherit; }
button, input { font: inherit; }
img, video { display: block; width: 100%; max-width: 100%; height: auto; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--acid); outline-offset: 4px; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 11px 14px 9px;
  background: var(--acid);
  font: 700 16px/1 var(--font-pixel);
  text-decoration: none;
  text-transform: uppercase;
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.home-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 62px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  backdrop-filter: blur(16px);
}
.home-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: var(--page);
  min-height: 62px;
  margin: 0 auto;
}
.home-wordmark {
  width: max-content;
  font: 700 32px/.8 var(--font-pixel);
  letter-spacing: -.025em;
  text-decoration: none;
}
.home-nav__links {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: clamp(30px, 4vw, 64px);
}
.home-nav__links a,
.home-footer nav a {
  font: 700 16px/1 var(--font-pixel);
  letter-spacing: .035em;
  text-decoration: none;
  text-transform: uppercase;
}
.home-nav__links a { position: relative; }
.home-nav__links a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--ink);
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transition: opacity .2s ease, transform .25s var(--ease-out);
}
.home-nav__links a:hover::after,
.home-nav__links a:focus-visible::after { opacity: 1; transform: scaleX(1); }
.home-nav__actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}

.market-picker { position: relative; font: 700 14px/1 var(--font-pixel); }
.market-picker summary {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  list-style: none;
}
.market-picker summary::-webkit-details-marker { display: none; }
.market-picker summary::after {
  margin-left: 2px;
  content: "⌄";
  transform: translateY(-1px);
}
.market-picker[open] summary::after { transform: rotate(180deg) translateY(-1px); }
.market-picker__flag { font: 16px/1 system-ui, sans-serif; }
.market-picker__menu {
  position: absolute;
  top: calc(100% + 7px);
  right: 0;
  z-index: 50;
  display: grid;
  width: 244px;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--ink);
}
.market-picker__menu a {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 11px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
}
.market-picker__menu a:last-child { border-bottom: 0; }
.market-picker__menu a:hover,
.market-picker__menu a[aria-current="true"] { background: var(--acid); }
.market-picker__menu a > span:first-child { font: 17px/1 system-ui, sans-serif; }
.market-picker__menu small { color: var(--muted); font: inherit; }
.mobile-nav-toggle,
.mobile-nav-menu { display: none; }

.home-eyebrow {
  margin: 0;
  font: 700 17px/1 var(--font-pixel);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.home-eyebrow span { display: inline-block; margin-right: 10px; padding: 8px 10px 6px; background: var(--acid); color: var(--ink); }
.home-eyebrow--acid { color: var(--acid); }

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
  min-height: calc(100svh - 62px);
  border-bottom: 1px solid var(--ink);
}
.home-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(60px, 7vw, 112px) clamp(28px, 5vw, 76px) clamp(48px, 6vw, 90px) 24px;
}
.home-hero h1 {
  max-width: 680px;
  margin: clamp(46px, 7vh, 76px) 0 32px;
  font: 400 clamp(92px, 9.2vw, 164px)/.72 var(--font-editorial);
  letter-spacing: -.058em;
}
.home-hero__lede {
  max-width: 560px;
  margin: 0;
  font: 700 clamp(27px, 2.8vw, 42px)/.92 var(--font-pixel);
  letter-spacing: -.018em;
}
.home-hero__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 42px; }
.home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 4px 24px 0;
  border: 1px solid var(--ink);
  font: 700 19px/1 var(--font-pixel);
  letter-spacing: .025em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .22s ease, color .22s ease, transform .3s var(--ease-out);
}
.home-button:hover { transform: translateY(-2px); }
.home-button--dark { background: var(--ink); color: var(--white); }
.home-button--dark:hover { background: var(--acid); color: var(--ink); }
.home-button--line { background: transparent; }
.home-button--line:hover { background: var(--paper-deep); }
.home-button--acid { border-color: var(--acid); background: var(--acid); color: var(--ink); }
.home-button--acid:hover { background: var(--white); border-color: var(--white); }
.home-button--light-line { border-color: rgba(255,255,255,.78); color: var(--white); }
.home-button--light-line:hover { background: var(--white); color: var(--ink); }
.home-hero__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 520px;
  margin: auto 0 0;
  padding-top: 56px;
}
.home-hero__facts div { padding: 18px 18px 12px 0; border-top: 1px solid var(--line); }
.home-hero__facts div + div { padding-left: 18px; border-left: 1px solid var(--line); }
.home-hero__facts dt {
  margin-bottom: 8px;
  color: var(--muted);
  font: 700 14px/1 var(--font-pixel);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.home-hero__facts dd { margin: 0; font: 700 18px/1 var(--font-pixel); text-transform: uppercase; }
.home-hero__media { position: relative; min-width: 0; overflow: hidden; background: #eee; color: var(--ink); }
.home-hero__media > img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.002);
  transition: transform 1.2s var(--ease-out);
}
.home-hero__media:hover > img { transform: scale(1.025); }

.home-thesis {
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr);
  min-height: 780px;
  background: var(--ink);
  color: var(--white);
}
.home-thesis__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(72px, 9vw, 140px) clamp(28px, 7vw, 104px) clamp(72px, 9vw, 140px) 6vw;
}
.home-thesis h2 {
  max-width: 660px;
  margin: 44px 0 32px;
  font: 400 clamp(72px, 7.4vw, 122px)/.78 var(--font-editorial);
  letter-spacing: -.055em;
}
.home-thesis__copy > p:not(.home-eyebrow) {
  max-width: 540px;
  margin: 0 0 34px;
  color: #c7c7c2;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
}
.home-text-link {
  width: max-content;
  max-width: 100%;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font: 700 17px/1 var(--font-pixel);
  letter-spacing: .045em;
  text-decoration: none;
  text-transform: uppercase;
}
.home-text-link:hover { color: var(--muted); }
.home-text-link--light { color: var(--white); }
.home-text-link--light:hover { color: var(--acid); }
.home-thesis__motion { position: relative; min-width: 0; margin: 0; overflow: hidden; background: #d6d4ce; }
.home-thesis__motion video { height: 100%; object-fit: cover; }

.home-section-heading { padding: 96px 24px 70px; }
.home-section-heading h2,
.home-collection__heading h2 {
  margin: 30px 0 0;
  font: 400 clamp(68px, 7vw, 116px)/.8 var(--font-editorial);
  letter-spacing: -.055em;
}
.home-section-heading > p:last-child {
  max-width: 440px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}
.home-section-heading--center { text-align: center; }
.home-section-heading--center > p:last-child { margin-right: auto; margin-left: auto; }

.home-how { border-bottom: 1px solid var(--ink); }
.home-how__story {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, .9fr);
  min-height: 720px;
  border-top: 1px solid var(--ink);
}
.home-how__media {
  position: sticky;
  top: 62px;
  align-self: start;
  height: calc(100svh - 62px);
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #d9d7d0;
}
.home-how__media img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity .5s ease, transform 1s var(--ease-out);
}
.home-how__media img.is-active { z-index: 1; opacity: 1; transform: scale(1); }
.home-how__index {
  position: absolute;
  bottom: 22px;
  left: 22px;
  z-index: 3;
  padding: 11px 13px 8px;
  background: var(--acid);
  font: 700 16px/1 var(--font-pixel);
  letter-spacing: .045em;
}
.home-how__steps { display: flex; flex-direction: column; min-width: 0; margin: 0; padding: 0; list-style: none; }
.home-how__steps li { border-bottom: 1px solid var(--line); }
.home-how__steps li:not(.home-how__deep-link) { min-height: calc(100svh - 62px); }
.home-how__steps button {
  display: grid;
  align-content: center;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  width: 100%;
  min-height: inherit;
  padding: 28px 34px 26px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: background .25s ease;
}
.home-how__steps button:hover { background: var(--paper-deep); }
.home-how__steps button.is-active { background: var(--acid); }
.home-how__steps button > span:first-child {
  padding-top: 3px;
  font: 700 16px/1 var(--font-pixel);
  letter-spacing: .045em;
}
.home-how__steps button > span:last-child { display: grid; gap: 15px; }
.home-how__steps strong { font: 700 clamp(27px, 2.4vw, 36px)/.86 var(--font-pixel); letter-spacing: -.01em; }
.home-how__steps small { max-width: 520px; color: var(--muted); font-size: 16px; line-height: 1.45; }
.home-how__steps button.is-active small { color: #31312d; }
.home-how__deep-link { margin-top: auto; border-bottom: 0 !important; }
.home-how__deep-link a {
  display: flex;
  align-items: center;
  min-height: 94px;
  padding: 10px 34px;
  font: 700 17px/1 var(--font-pixel);
  letter-spacing: .035em;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-transform: uppercase;
}

.home-outcomes { padding-bottom: 90px; border-bottom: 1px solid var(--ink); }
.home-outcomes__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}
.home-outcome {
  min-width: 0;
  border-right: 1px solid var(--ink);
  background: var(--paper);
}
.home-outcome:last-child { border-right: 0; }
.home-outcome img { aspect-ratio: 1; object-fit: cover; }
.home-outcome:nth-child(2) img { object-position: center 28%; }
.home-outcome > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 148px;
  padding: 24px;
}
.home-outcome strong { font: 700 clamp(58px, 5vw, 88px)/.68 var(--font-pixel); }
.home-outcome span { font: 400 clamp(25px, 2vw, 34px)/.88 var(--font-editorial); }
.home-app {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(540px, 1.18fr);
  min-height: 820px;
  padding: 96px 5vw;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}
.home-app__copy { align-self: center; max-width: 620px; padding-right: 5vw; }
.home-app__copy.home-reveal { opacity: 1; transform: none; }
.home-app h2 {
  margin: 42px 0 30px;
  font: 400 clamp(72px, 7.5vw, 122px)/.78 var(--font-editorial);
  letter-spacing: -.055em;
}
.home-app__copy > p:not(.home-eyebrow) { margin: 0 0 34px; color: #b9c7d5; font-size: 19px; line-height: 1.5; }
.home-app__screens {
  align-self: end;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 5vw;
  min-width: 0;
}
.home-app__screens figure { min-width: 0; margin: 0; }
.home-app__screens img {
  width: auto;
  max-width: 100%;
  max-height: 660px;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 50px rgba(0,0,0,.28));
}
.home-app__screens figcaption {
  margin-top: 18px;
  padding-top: 13px;
  border-top: 1px solid var(--navy-line);
  color: var(--acid);
  font: 700 15px/1 var(--font-pixel);
  letter-spacing: .045em;
}

.home-collection { padding: 110px 24px 96px; border-bottom: 1px solid var(--ink); }
.home-collection__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  align-items: end;
  gap: 8vw;
  margin-bottom: 72px;
}
.home-collection__heading > p {
  max-width: 470px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}
.home-current-release {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(430px, .85fr);
  min-height: 640px;
  border: 1px solid var(--ink);
}
.home-current-release > img { height: 100%; object-fit: cover; }
.home-current-release__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 6vw, 86px);
  background: var(--white);
}
.home-current-release h3 {
  margin: 55px 0 24px;
  font: 700 clamp(100px, 10vw, 164px)/.62 var(--font-pixel);
  letter-spacing: -.05em;
}
.home-current-release__copy > p:not(.home-eyebrow) { max-width: 480px; margin: 0 0 34px; color: var(--muted); font-size: 18px; line-height: 1.5; }
.home-current-release__copy .home-button { width: max-content; max-width: 100%; }
.home-archive {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 32px;
  background: var(--line);
  border: 1px solid var(--line);
}
.home-archive-card { position: relative; min-width: 0; overflow: hidden; background: var(--paper); }
.home-archive-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(.5) saturate(.55) contrast(.92);
  opacity: .72;
  transition: filter .5s ease, opacity .5s ease, transform .8s var(--ease-out);
}
.home-archive-card:hover img { filter: grayscale(.15) saturate(.8); opacity: .9; transform: scale(1.025); }
.home-archive-card > div { padding: 18px; border-top: 1px solid var(--line); }
.home-archive-card span {
  display: inline-block;
  margin-bottom: 28px;
  padding: 7px 8px 5px;
  background: var(--ink);
  color: var(--white);
  font: 700 13px/1 var(--font-pixel);
  letter-spacing: .05em;
}
.home-archive-card h3 { margin: 0; font: 700 31px/.8 var(--font-pixel); text-transform: uppercase; }
.home-archive-card p { margin: 8px 0 0; color: var(--muted); font: 700 14px/1 var(--font-pixel); letter-spacing: .035em; text-transform: uppercase; }
.home-collection__link { margin: 48px 0 0; }

.home-close { position: relative; min-height: 800px; overflow: hidden; background: var(--ink); color: var(--white); }
.home-close > img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.home-close__shade { position: absolute; inset: 0; background: rgba(0,0,0,.56); }
.home-close__copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(760px, calc(100% - 48px));
  min-height: 800px;
  margin-left: 6vw;
}
.home-close h2 {
  margin: 42px 0 30px;
  font: 400 clamp(76px, 8.5vw, 144px)/.76 var(--font-editorial);
  letter-spacing: -.055em;
}
.home-close__copy > p:not(.home-eyebrow) { max-width: 590px; margin: 0; color: #dddcd7; font-size: 20px; line-height: 1.5; }
.home-close__copy > div { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }

.home-footer {
  display: grid;
  grid-template-columns: .8fr 1.2fr 1fr auto;
  align-items: start;
  gap: 40px;
  padding: 58px 24px 44px;
  background: var(--ink);
  color: var(--white);
}
.home-footer p { max-width: 360px; margin: 0; color: #bdbdb7; font-size: 16px; line-height: 1.45; }
.home-footer nav { display: grid; grid-template-columns: repeat(2, max-content); gap: 18px 34px; }
.home-footer small { color: #777771; font: 700 14px/1 var(--font-pixel); letter-spacing: .04em; }

.home-reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .9s var(--ease-out); }
.home-reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .home-hero { grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr); }
  .home-hero h1 { font-size: clamp(78px, 10vw, 120px); }
  .home-thesis { grid-template-columns: 1fr 1fr; min-height: 680px; }
  .home-how__story { grid-template-columns: minmax(0, 1fr) minmax(390px, .9fr); }
  .home-app { grid-template-columns: .85fr 1.15fr; }
  .home-current-release { min-height: 540px; }
}

@media (max-width: 820px) {
  :root { --page: calc(100vw - 24px); }
  .home-nav { grid-template-columns: 1fr auto; min-height: 54px; }
  .home-wordmark { font-size: 28px; }
  .home-nav__links { display: none; }
  .home-nav__actions { gap: 5px; }
  .market-picker summary {
    justify-content: center;
    width: 42px;
    min-height: 42px;
    padding: 0;
  }
  .market-picker summary::after,
  .market-picker__code { display: none; }
  .market-picker__menu {
    right: -89px;
    width: min(244px, calc(100vw - 24px));
  }
  .mobile-nav-toggle {
    position: relative;
    display: grid;
    width: 42px;
    height: 42px;
    padding: 11px 10px;
    border: 1px solid var(--ink);
    border-radius: 0;
    background: transparent;
    cursor: pointer;
  }
  .mobile-nav-toggle span {
    display: block;
    align-self: center;
    width: 100%;
    height: 1px;
    background: var(--ink);
    transform-origin: center;
    transition: transform .24s var(--ease-out), opacity .18s ease;
  }
  .mobile-nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(6.5px) rotate(45deg); }
  .mobile-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .mobile-nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-6.5px) rotate(-45deg); }
  .mobile-nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    max-height: 0;
    overflow: hidden;
    border-bottom: 0 solid var(--ink);
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: max-height .42s var(--ease-out), opacity .2s ease, transform .42s var(--ease-out), visibility 0s .42s, border-width 0s .42s;
  }
  .mobile-nav-menu.is-open {
    max-height: 180px;
    border-bottom-width: 1px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0s;
  }
  .mobile-nav-menu a {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 0 18px;
    border-top: 1px solid rgba(250, 250, 247, .2);
    color: var(--white);
    font: 700 20px/1 var(--font-pixel);
    letter-spacing: .04em;
    text-decoration: none;
    text-transform: uppercase;
  }
  .mobile-nav-menu a::after {
    margin-left: auto;
    color: var(--acid);
    content: "↗";
    font-size: 20px;
  }

  .home-hero { grid-template-columns: 1fr; }
  .home-hero__copy { min-height: 610px; padding: 64px 20px 40px; }
  .home-hero h1 { margin-top: 54px; font-size: clamp(88px, 21vw, 144px); }
  .home-hero__lede { font-size: clamp(28px, 7vw, 42px); }
  .home-hero__facts { margin-top: 58px; }
  .home-hero__media { min-height: 690px; }

  .home-thesis { grid-template-columns: 1fr; }
  .home-thesis__copy { min-height: 620px; padding: 84px 24px; }
  .home-thesis h2 { font-size: clamp(70px, 16vw, 112px); }
  .home-thesis__motion { min-height: 650px; }

  .home-section-heading { padding: 78px 20px 56px; }
  .home-section-heading h2,
  .home-collection__heading h2 { font-size: clamp(64px, 15vw, 104px); }
  .home-how__story { display: block; }
  .home-how__media {
    position: sticky;
    top: 54px;
    z-index: 3;
    height: 40svh;
    min-height: 300px;
    max-height: 400px;
  }
  .home-how__steps {
    position: relative;
    z-index: 1;
    background: var(--paper);
  }
  .home-how__steps li:not(.home-how__deep-link) {
    min-height: clamp(380px, 58svh, 560px);
  }
  .home-how__steps button { align-content: center; min-height: inherit; }

  .home-outcomes__grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(82vw, 330px);
    overflow-x: auto;
    padding: 0 12px 12px;
    border-top: 0;
    scroll-padding-left: 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .home-outcomes__grid::-webkit-scrollbar { display: none; }
  .home-outcome {
    border-top: 1px solid var(--ink);
    border-right: 1px solid var(--ink);
    scroll-snap-align: start;
  }
  .home-outcome:last-child { border-right: 1px solid var(--ink); }

  .home-app { grid-template-columns: 1fr; padding: 84px 24px 0; }
  .home-app__copy { padding: 0; }
  .home-app h2 { font-size: clamp(70px, 16vw, 112px); }
  .home-app__screens {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(64vw, 1fr);
    gap: 20px;
    margin: 76px -24px 0;
    padding: 0 24px 22px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    overscroll-behavior-inline: contain;
  }
  .home-app__screens figure { scroll-snap-align: start; }

  .home-collection { padding: 90px 20px 76px; }
  .home-collection__heading { grid-template-columns: 1fr; gap: 34px; }
  .home-current-release { grid-template-columns: 1fr; }
  .home-current-release > img { aspect-ratio: 1.1; }
  .home-current-release__copy { min-height: 450px; }
  .home-archive {
    grid-template-columns: repeat(4, minmax(230px, 1fr));
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }
  .home-archive-card { scroll-snap-align: start; }

  .home-close__copy { min-height: 720px; margin: 0 24px; }
  .home-close { min-height: 720px; }
  .home-close h2 { font-size: clamp(68px, 16vw, 112px); }
  .home-footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .home-hero__copy { min-height: 570px; padding-top: 52px; }
  .home-hero h1 { margin: 46px 0 28px; font-size: clamp(82px, 25vw, 118px); }
  .home-hero__actions { display: grid; grid-template-columns: 1fr; }
  .home-button { width: 100%; min-height: 56px; padding-right: 14px; padding-left: 14px; }
  .home-hero__facts { padding-top: 42px; }
  .home-hero__facts div { padding-right: 8px; }
  .home-hero__facts div + div { padding-left: 8px; }
  .home-hero__facts dt { font-size: 12px; }
  .home-hero__facts dd { font-size: 14px; }
  .home-hero__media { min-height: 480px; }
  .home-thesis__copy { min-height: 600px; padding: 72px 20px; }
  .home-thesis h2 { font-size: clamp(66px, 20vw, 94px); }
  .home-thesis__motion { min-height: 500px; }

  .home-section-heading { padding-right: 20px; padding-left: 20px; }
  .home-section-heading h2,
  .home-collection__heading h2 { font-size: clamp(61px, 18vw, 88px); }
  .home-how__media {
    height: 39svh;
    min-height: 280px;
    max-height: 360px;
  }
  .home-how__steps li:not(.home-how__deep-link) {
    min-height: clamp(390px, 59svh, 540px);
  }
  .home-how__steps button { grid-template-columns: 35px 1fr; gap: 12px; min-height: inherit; padding: 24px 20px 22px; }
  .home-how__steps strong { font-size: 29px; }
  .home-how__steps small { font-size: 15px; }
  .home-how__deep-link a { padding-right: 20px; padding-left: 20px; font-size: 15px; }

  .home-outcomes { padding-bottom: 72px; }
  .home-outcomes__grid { padding: 0 12px 12px; }
  .home-outcome > div { min-height: 120px; padding: 18px; }
  .home-outcome strong { font-size: 61px; }
  .home-outcome span { font-size: 28px; }
  .home-app { padding: 74px 20px 0; }
  .home-app h2 { font-size: clamp(66px, 19vw, 94px); }
  .home-app__screens {
    grid-auto-columns: minmax(76vw, 1fr);
    gap: 14px;
    margin: 58px -20px 0;
    padding-right: 20px;
    padding-left: 20px;
  }
  .home-app__screens img { width: auto; max-height: min(148vw, 620px); }

  .home-collection { padding: 78px 12px 68px; }
  .home-collection__heading { padding: 0 8px; }
  .home-current-release > img { aspect-ratio: 1; }
  .home-current-release__copy { min-height: 390px; padding: 34px 22px; }
  .home-current-release h3 { margin-top: 44px; font-size: 104px; }
  .home-archive { grid-template-columns: repeat(4, minmax(76vw, 1fr)); }
  .home-collection__link { margin-left: 8px; }

  .home-close__copy { width: auto; min-height: 680px; margin: 0 20px; }
  .home-close h2 { font-size: clamp(62px, 18vw, 88px); }
  .home-close__copy > div { display: grid; width: 100%; }
  .home-footer { grid-template-columns: 1fr; gap: 30px; padding: 48px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .home-reveal { opacity: 1; transform: none; }
  .home-thesis__motion video { display: none; }
  .home-thesis__motion { background: url("_nuxt/img/dino-retro-2e-dancing-icon-poster.jpg") center/cover no-repeat; }
}
