:root {
  --bg: #101214;
  --panel: #171b1f;
  --text: #f0eee7;
  --muted: #9fa5aa;
  --line: #ffffff26;
  --red: #ff5b45;
  --blue: #64cfff;
  --display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --body: "DM Sans", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
a,
button {
  -webkit-tap-highlight-color: transparent;
}
::selection {
  background: var(--red);
  color: var(--bg);
}
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 6px;
}
.skip {
  position: fixed;
  top: -70px;
  left: 24px;
  padding: 12px;
  background: var(--red);
  z-index: 100;
}
.skip:focus {
  top: 12px;
}
.header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4.5%;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 29px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
}
.brand-mark {
  display: block;
  background: transparent;
  width: 39px;
  height: 48px;
  border-radius: 3px;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-sub {
  display: block;
  font-size: 8px;
  letter-spacing: 1.3px;
  line-height: 2.2;
}
.header nav {
  display: flex;
  gap: 35px;
  font-size: 14px;
}
.header nav a {
  position: relative;
  color: #ddd;
}
.header nav a:hover {
  color: var(--red);
}
.nav-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
  margin: 0 0 2px 5px;
}
.nav-cta {
  font-size: 12px;
  letter-spacing: 1.4px;
  border: 1px solid #ffffff42;
  border-radius: 3px;
  padding: 12px 19px;
}
.nav-cta span {
  margin-left: 19px;
  font-size: 17px;
}
.hero {
  min-height: 850px;
  height: 100svh;
  max-height: 1100px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  z-index: -3;
  inset: 0;
  background-image: url("./assets/character.png");
  background-position: right 40%;
  background-size: auto 120%;
  background-repeat: no-repeat;
}
.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      #101214 4%,
      #101214ee 25%,
      #10121488 48%,
      #10121400 75%
    ),
    linear-gradient(0deg, #101214 0%, transparent 30%, #10121444 100%);
}
.hero-content {
  padding: 187px 4.5% 100px;
  position: relative;
  max-width: 900px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
}
.cross {
  font-size: 24px;
  font-weight: 400;
  color: var(--red);
  line-height: 1;
}
.short-rule {
  width: 30px;
  height: 1px;
  background: #777;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(110px, 12.7vw, 190px);
  line-height: 0.84;
  font-weight: 800;
  letter-spacing: -3px;
  margin: 38px 0 29px;
}
.outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--text);
}
.hero-content p {
  color: #c9cccf;
  font-size: 19px;
  line-height: 1.5;
  margin: 0 0 31px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  min-height: 58px;
  padding: 0 23px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 2px;
}
.primary {
  background: var(--red);
  color: #101214;
}
.button-arrow {
  font-size: 24px;
  transition: transform 0.3s;
}
.button:hover .button-arrow {
  transform: translate(3px, -3px);
}
.hero-bottom {
  position: absolute;
  bottom: 30px;
  left: 4.5%;
  right: 4.5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 1.6px;
  color: var(--muted);
}
.scroll-link {
  display: flex;
  gap: 18px;
  align-items: center;
}
.scroll-link span {
  color: var(--text);
  font-size: 20px;
}
.intro {
  padding: 115px 4.5%;
  border-top: 1px solid var(--line);
}
h2 {
  font-family: var(--display);
  font-size: clamp(50px, 6.5vw, 90px);
  font-weight: 700;
  line-height: 0.99;
  text-transform: uppercase;
  letter-spacing: -1px;
}
h2 span {
  color: var(--muted);
}
.intro p {
  max-width: 450px;
  color: var(--muted);
  font-size: 18px;
}
.intro .eyebrow {
  color: var(--red);
}
@media (min-width: 1600px) {
  .hero-content {
    padding-top: 22vh;
  }
}
@media (max-width: 800px) {
  .header {
    height: 88px;
    padding: 0 6%;
  }
  .header nav {
    display: none;
  }
  .nav-cta {
    font-size: 10px;
    padding: 10px;
  }
  .hero {
    height: 820px;
    min-height: 740px;
    max-height: none;
  }
  .hero-content {
    padding: 160px 6% 100px;
  }
  .hero h1 {
    font-size: clamp(108px, 20vw, 160px);
    letter-spacing: -2px;
  }
  .hero-image {
    background-position: 70% center;
    background-size: auto 100%;
    opacity: 0.65;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, #101214dd, transparent),
      linear-gradient(0deg, #101214, transparent 70%);
  }
  .hero-bottom {
    left: 6%;
    right: 6%;
    font-size: 9px;
  }
  .hero-bottom > span:first-child {
    display: none;
  }
  .hero-caption {
    max-width: 110px;
    text-align: right;
  }
  .hero .eyebrow {
    font-size: 10px;
    letter-spacing: 1px;
  }
  .intro {
    padding: 80px 6%;
  }
  .brand-sub {
    font-size: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
/* The shadows are part of the frame, never a layer over the controls. */
body {
  overflow-x: clip;
}
.hero-image {
  background-image: url("./assets/warehouse.png");
  background-size: cover;
  background-position: center 48%;
  transform: scale(1.035)
    translate3d(var(--scene-x, 0px), var(--scene-y, 0px), 0);
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.hero-shade {
  background:
    linear-gradient(90deg, #101214dd 0%, #10121488 35%, #10121405 72%),
    linear-gradient(0deg, #101214 0%, transparent 20%, #10121433 80%);
}
.hero-content {
  animation: arrive 0.85s ease-out both;
}
.hero h1 .outline {
  display: inline-block;
  animation: outline-breathe 8s ease-in-out infinite;
}
.header nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--red);
  transition: right 0.25s;
}
.header nav a:hover:after {
  right: 0;
}
.nav-cta {
  transition:
    background 0.25s,
    color 0.25s,
    border-color 0.25s;
}
.nav-cta:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.primary {
  transition:
    background 0.25s,
    box-shadow 0.25s;
}
.primary:hover {
  background: #ff725f;
  box-shadow: 0 0 34px #ff5b4529;
}
.scroll-link span {
  animation: scroll-nudge 2.5s ease-in-out infinite;
}
.ticker {
  height: 68px;
  overflow: hidden;
  background: var(--red);
  color: var(--bg);
  display: flex;
  align-items: center;
  transform: rotate(-1deg);
  margin: -1px -1%;
  position: relative;
  z-index: 2;
}
.ticker-track {
  display: flex;
  gap: 48px;
  align-items: center;
  width: max-content;
  animation: marquee 35s linear infinite;
  white-space: nowrap;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.8px;
}
.ticker-track b {
  font-family: Arial;
  font-size: 26px;
}
.section-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.micro {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--muted);
}
.intro {
  padding: 118px 7% 78px;
  border: 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 10%;
  align-items: center;
  margin: 36px 0 70px;
}
.intro h2 {
  margin: 0;
  font-size: clamp(60px, 6.8vw, 102px);
}
.intro h2 span {
  color: #747a81;
}
.intro-copy {
  padding-top: 7px;
}
.section-kicker {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.3px;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 24px;
}
.intro-copy p {
  font-size: 17px;
  max-width: 430px;
  line-height: 1.75;
}
.intro-copy p:first-of-type {
  color: var(--text);
  font-size: 21px;
  line-height: 1.5;
}
.text-note {
  display: block;
  font-size: 13px;
  letter-spacing: 0.6px;
  margin-top: 28px;
  color: var(--text);
}
.mechanics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}
.mechanic {
  padding: 32px 34px 30px 0;
  position: relative;
  transition: background 0.3s;
}
.mechanic + .mechanic {
  border-left: 1px solid var(--line);
  padding-left: 34px;
}
.mechanic-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--red);
  letter-spacing: 1.4px;
}
.mechanic-symbol {
  font-size: 35px;
  line-height: 1;
  transition: transform 0.5s;
}
.mechanic:hover .mechanic-symbol {
  transform: rotate(90deg);
}
h3 {
  font-family: var(--display);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 1.07;
  font-size: 38px;
}
.mechanic h3 {
  margin: 24px 0 19px;
}
.mechanic p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 320px;
  margin: 0;
}
.concept-note {
  max-width: none !important;
  text-align: right;
  font-size: 12px !important;
  letter-spacing: 0.4px;
  margin-top: 17px;
  color: var(--muted);
}
.world {
  padding: 75px 7% 105px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 9%;
  background: linear-gradient(145deg, #171d23, transparent 70%);
}
.world-image {
  position: relative;
  border: 1px solid #ffffff14;
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg));
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.world-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}
.world-image:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(0deg, #0d111899, transparent 25%);
}
.image-label {
  position: absolute;
  bottom: 24px;
  left: 25px;
  font-size: 10px;
  line-height: 1.8;
  letter-spacing: 1.5px;
  z-index: 2;
}
.image-badge {
  position: absolute;
  top: 25px;
  right: 20px;
  background: var(--red);
  color: #101214;
  padding: 10px 13px;
  transform: rotate(6deg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1.35;
}
.frame-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1px solid var(--blue);
  z-index: 2;
}
.top-left {
  top: 12px;
  left: 12px;
  border-right: 0;
  border-bottom: 0;
}
.bottom-right {
  bottom: 12px;
  right: 12px;
  border-left: 0;
  border-top: 0;
}
.world-copy .eyebrow {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1.4px;
}
.world h2 {
  font-size: clamp(54px, 5.2vw, 78px);
  margin: 34px 0 26px;
  line-height: 1;
}
.red-text {
  color: var(--red);
}
.world-copy p {
  font-size: 17px;
  color: var(--muted);
  max-width: 425px;
  line-height: 1.75;
}
.color-signature {
  display: flex;
  align-items: center;
  margin-top: 39px;
}
.color-signature i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #253d56;
  box-shadow: 0 0 0 3px #171b1f;
}
.color-signature i + i {
  margin-left: -8px;
  background: var(--blue);
}
.color-signature i:nth-child(3) {
  background: var(--red);
}
.color-signature span {
  margin-left: 18px;
  font-size: 10px;
  letter-spacing: 0.8px;
  line-height: 1.6;
}
.inside {
  padding: 98px 7%;
  border-top: 1px solid var(--line);
}
.inside .eyebrow {
  color: var(--red);
}
.inside-heading {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin: 35px 0 42px;
}
.inside h2 {
  margin: 0;
  font-size: clamp(56px, 6.2vw, 92px);
}
.inside-heading p {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 8px;
}
.video-frame {
  position: relative;
  border: 1px solid var(--line);
  background: #09101d;
  overflow: hidden;
}
.video-frame video {
  width: 100%;
  display: block;
  aspect-ratio: 3024/1506;
  object-fit: contain;
}
.video-play {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  color: var(--text);
  cursor: pointer;
  background: #07102170;
  backdrop-filter: blur(1px);
  transition: background 0.3s;
}
.video-play:hover {
  background: #07102140;
}
.video-play > span:nth-child(2) {
  text-align: left;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  text-shadow: 0 1px 8px #000;
}
.video-play small {
  display: block;
  font-size: 10px;
  letter-spacing: 1px;
  font-weight: 400;
  opacity: 0.8;
  margin-top: 6px;
}
.play-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid #ffffff77;
  border-radius: 50%;
  background: var(--red);
  color: #141719;
  font-size: 20px;
  padding-left: 3px;
  box-shadow: 0 0 0 10px #ffffff06;
}
.video-play[hidden] {
  display: none;
}
.video-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 17px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 1.2px;
}
.development {
  border-top: 1px solid var(--line);
  padding: 100px 7% 110px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 12%;
}
.development .eyebrow {
  color: var(--red);
}
.development h2 {
  font-size: clamp(56px, 5.8vw, 85px);
  margin: 35px 0 26px;
}
.development-intro p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
}
.dev-stamp {
  display: inline-flex;
  gap: 30px;
  border: 1px solid #ff5b4555;
  color: var(--red);
  padding: 10px 15px;
  margin-top: 22px;
  font-size: 11px;
  letter-spacing: 1px;
}
.development-list {
  padding-top: 0;
}
.development-row {
  display: flex;
  gap: 30px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
.row-number {
  color: #777;
  font-size: 14px;
  padding-top: 4px;
}
.status-label {
  color: var(--blue);
  font-size: 10px;
  letter-spacing: 1.5px;
}
.status-label.muted {
  color: var(--muted);
}
.development-row h3 {
  font-size: 32px;
  margin: 12px 0;
}
.development-row p {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
  max-width: 410px;
}
.release-note {
  font-size: 13px;
  color: var(--muted);
  padding-left: 47px;
  border-top: 1px solid var(--line);
  margin: 0;
  padding-top: 20px;
}
.end-section {
  background: var(--red);
  color: var(--bg);
  text-align: center;
  padding: 70px 7% 0;
  overflow: hidden;
}
.end-section > p {
  font-size: 12px;
  letter-spacing: 2px;
  margin: 0 0 16px;
}
.end-section h2 {
  font-size: clamp(52px, 7vw, 98px);
  margin: 0 0 20px;
}
.back-top {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  font-size: 11px;
  letter-spacing: 1.3px;
  border-bottom: 1px solid #10121466;
  padding: 8px 0;
}
.back-top span {
  font-size: 20px;
}
.end-wordmark {
  font-family: var(--display);
  font-size: clamp(190px, 37vw, 580px);
  font-weight: 800;
  line-height: 0.73;
  letter-spacing: -1vw;
  margin-top: 70px;
  padding-top: 14px;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1.5px #10121499;
}
.end-wordmark span {
  display: inline-block;
  font-size: 10%;
  vertical-align: top;
  letter-spacing: 0;
  line-height: 1;
  padding-top: 7px;
  color: var(--bg);
  -webkit-text-stroke: 0;
}
.footer {
  min-height: 85px;
  padding: 24px 4.5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.8px;
}
.footer > span:first-child {
  font-size: 12px;
  letter-spacing: 0;
}
.motion-toggle {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.8px;
  cursor: pointer;
  min-height: 40px;
}
.motion-toggle span {
  margin-left: 12px;
  color: var(--text);
}
.motion-toggle:hover {
  color: var(--text);
}
.reveal {
  transition:
    opacity 0.7s,
    translate 0.7s;
  translate: 0 0;
}
.js-motion .reveal:not(.seen) {
  opacity: 0;
  translate: 0 28px;
}
.mechanic:nth-child(2) {
  transition-delay: 0.07s;
}
.mechanic:nth-child(3) {
  transition-delay: 0.14s;
}
body.motion-paused *,
body.motion-paused *:before,
body.motion-paused *:after {
  animation-play-state: paused !important;
  scroll-behavior: auto !important;
}
.motion-paused .hero-image,
.motion-paused .world-image {
  transform: none !important;
}
.motion-paused .reveal {
  opacity: 1 !important;
  translate: 0 0 !important;
  transition: none !important;
}
@keyframes arrive {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes outline-breathe {
  0%,
  100% {
    text-shadow: 0 0 18px #70cfff00;
  }
  50% {
    text-shadow: 0 0 32px #70cfff22;
  }
}
@keyframes scroll-nudge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
@keyframes signal {
  50% {
    opacity: 0.4;
  }
}
@media (min-width: 1700px) {
  .intro,
  .world,
  .inside,
  .development {
    padding-inline: max(7%, calc((100% - 1500px) / 2));
  }
}
@media (max-width: 1050px) {
  .header nav {
    gap: 22px;
  }
  .world {
    gap: 6%;
  }
  .world h2 {
    font-size: 61px;
  }
  .development {
    gap: 7%;
  }
  .hero {
    min-height: 820px;
  }
  .intro-grid {
    gap: 6%;
  }
  .mechanic {
    padding-right: 24px;
  }
  .mechanic + .mechanic {
    padding-left: 24px;
  }
  .hero h1 {
    font-size: 145px;
  }
  .hero-content {
    padding-top: 180px;
  }
  .hero-image {
    background-position: 59% center;
  }
}
@media (max-width: 800px) {
  .hero {
    height: 810px;
    min-height: 760px;
  }
  .hero-content {
    padding-top: 160px;
  }
  .hero h1 {
    font-size: clamp(110px, 21vw, 165px);
  }
  .hero-image {
    opacity: 1;
    background-size: auto 100%;
    background-position: 62% center;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, #101214bb, transparent 95%),
      linear-gradient(0deg, #101214, transparent 40%);
  }
  .hero-caption {
    font-size: 9px;
    letter-spacing: 0.8px;
  }
  .ticker {
    height: 56px;
  }
  .ticker-track {
    font-size: 24px;
    gap: 32px;
  }
  .intro {
    padding: 80px 6% 50px;
  }
  .section-top .micro {
    display: none;
  }
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 42px;
  }
  .intro h2 {
    font-size: 70px;
  }
  .intro-copy p {
    max-width: 100%;
  }
  .section-kicker {
    font-size: 12px;
  }
  .intro-copy {
    padding: 0;
  }
  .intro-copy p:first-of-type {
    font-size: 20px;
  }
  .mechanics {
    grid-template-columns: 1fr;
  }
  .mechanic,
  .mechanic + .mechanic {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 28px 0;
  }
  .mechanic:first-child {
    border-top: 0;
  }
  .mechanic h3 br {
    display: none;
  }
  .mechanic h3 {
    font-size: 35px;
    margin: 18px 0 12px;
  }
  .mechanic p {
    max-width: 100%;
  }
  .concept-note {
    text-align: left;
  }
  .world {
    grid-template-columns: 1fr;
    padding: 40px 6% 75px;
    gap: 40px;
  }
  .world-image {
    max-width: 560px;
    width: 100%;
    margin: auto;
  }
  .world-copy {
    max-width: 560px;
    margin: auto;
    width: 100%;
  }
  .world h2 {
    font-size: 64px;
    margin-top: 25px;
  }
  .world-copy p {
    max-width: 100%;
  }
  .inside {
    padding: 75px 6%;
  }
  .inside-heading {
    display: block;
  }
  .inside-heading p {
    margin-top: 26px;
  }
  .inside h2 {
    font-size: 64px;
  }
  .video-caption {
    font-size: 9px;
    letter-spacing: 0.4px;
  }
  .video-caption > span:last-child {
    max-width: 155px;
    text-align: right;
  }
  .video-play > span:nth-child(2) {
    font-size: 10px;
  }
  .play-icon {
    width: 48px;
    height: 48px;
    font-size: 16px;
    box-shadow: none;
  }
  .video-play {
    gap: 12px;
  }
  .video-play small {
    font-size: 8px;
    letter-spacing: 0.5px;
  }
  .development {
    grid-template-columns: 1fr;
    padding: 75px 6%;
    gap: 50px;
  }
  .development h2 {
    font-size: 68px;
  }
  .development-row {
    gap: 22px;
  }
  .release-note {
    padding-left: 39px;
  }
  .end-section {
    padding: 65px 6% 0;
  }
  .end-section h2 {
    font-size: 57px;
  }
  .end-wordmark {
    margin-top: 60px;
    font-size: 38vw;
    letter-spacing: -1.4vw;
  }
  .footer {
    padding: 25px 6%;
    flex-wrap: wrap;
    gap: 5px 20px;
  }
  .footer > span:nth-child(2) {
    display: none;
  }
  .footer > span:first-child {
    font-size: 10px;
    max-width: 180px;
  }
  .motion-toggle {
    font-size: 9px;
  }
  .hero h1 .outline {
    -webkit-text-stroke: 1.3px var(--text);
  }
}
@media (max-width: 400px) {
  .hero-content .eyebrow {
    font-size: 9px;
    gap: 8px;
    letter-spacing: 0.5px;
  }
  .hero h1 {
    font-size: 103px;
  }
  .hero-content p {
    font-size: 17px;
  }
  .hero {
    height: 780px;
  }
  .hero-image {
    background-position: 60% center;
  }
  .hero .button {
    font-size: 11px;
    gap: 30px;
  }
  .brand {
    font-size: 25px;
  }
  .brand-mark {
    width: 32px;
    height: 39px;
  }
  .nav-cta {
    padding: 9px;
    font-size: 9px;
  }
  .nav-cta span {
    margin-left: 7px;
  }
  .intro h2 {
    font-size: 61px;
  }
  .world h2,
  .inside h2 {
    font-size: 55px;
  }
  .development h2 {
    font-size: 60px;
  }
  .end-section h2 {
    font-size: 49px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-content {
    animation: none;
  }
  .js-motion .reveal:not(.seen) {
    opacity: 1;
    translate: 0 0;
  }
  .hero-image,
  .world-image {
    transform: none !important;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
/* Readable labels and narrow-screen fit. */
.nav-cta,
.button,
.back-top,
.motion-toggle {
  font-size: 14px;
}
.hero-bottom,
.micro,
.mechanic-top,
.concept-note,
.image-label,
.image-badge,
.color-signature span,
.video-caption,
.status-label,
.dev-stamp,
.footer,
.footer > span:first-child,
.video-play small {
  font-size: 12px;
}
.video-play > span:nth-child(2) {
  font-size: 14px;
}
.text-note,
.release-note {
  font-size: 14px;
}
.hero-caption {
  max-width: none;
}
.hero-bottom {
  letter-spacing: 1px;
}
.end-wordmark {
  user-select: none;
}
.mechanic p,
.development-row p {
  overflow-wrap: break-word;
}
@media (max-width: 800px) {
  .brand-sub {
    display: none;
  }
  .nav-cta {
    font-size: 12px;
    padding: 11px;
  }
  .hero .eyebrow {
    font-size: 12px;
    letter-spacing: 0.6px;
    gap: 9px;
  }
  .hero h1 {
    font-size: clamp(80px, 26.5vw, 165px);
  }
  .hero .button {
    font-size: 12px;
    gap: 27px;
  }
  .hero-bottom {
    font-size: 12px;
    letter-spacing: 0.3px;
  }
  .hero-caption {
    max-width: 110px;
    font-size: 12px;
  }
  .hero-image {
    background-position: 69% center;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, #101214df 0%, #10121488 42%, #1012140a 100%),
      linear-gradient(0deg, #101214, transparent 40%);
  }
  .video-play small {
    font-size: 12px;
  }
  .video-play > span:nth-child(2) {
    font-size: 12px;
    letter-spacing: 0;
  }
  .video-caption {
    font-size: 12px;
    flex-direction: column;
    gap: 5px;
  }
  .video-caption > span:last-child {
    max-width: none;
    text-align: left;
  }
  .footer > span:first-child {
    max-width: 180px;
    font-size: 12px;
  }
  .motion-toggle {
    font-size: 12px;
  }
  .brand {
    font-size: 26px;
  }
  .brand-mark {
    width: 33px;
    height: 41px;
  }
  .hero .short-rule {
    width: 15px;
  }
  .hero .eyebrow {
    flex-wrap: wrap;
    max-width: 300px;
  }
  .world-copy .eyebrow {
    letter-spacing: 1px;
  }
  .image-badge {
    font-size: 12px;
  }
  .footer {
    gap: 12px;
  }
  .concept-note {
    font-size: 12px !important;
  }
}
@media (max-width: 400px) {
  .hero-content .eyebrow {
    font-size: 12px;
    letter-spacing: 0;
    gap: 7px;
  }
  .hero .short-rule {
    display: none;
  }
  .hero h1 {
    font-size: 26.5vw;
    letter-spacing: -1px;
  }
  .header {
    gap: 12px;
  }
  .nav-cta {
    font-size: 12px;
    letter-spacing: 0.4px;
    padding: 10px;
  }
  .nav-cta span {
    margin-left: 8px;
  }
  .hero .button {
    font-size: 12px;
  }
  .intro h2,
  .world h2,
  .inside h2,
  .development h2 {
    font-size: 17vw;
  }
  .play-icon {
    width: 38px;
    height: 38px;
  }
  .video-play {
    gap: 10px;
  }
  .video-play small {
    font-size: 12px;
  }
  .video-play > span:nth-child(2) {
    font-size: 12px;
    max-width: 190px;
  }
  .footer {
    flex-direction: column;
    align-items: start;
  }
  .footer > span:first-child {
    max-width: none;
  }
}

/* Dark-surface brand lockup: frame the original emblem without the baked wordmark. */
.brand {
  gap: 13px;
  align-items: center;
  letter-spacing: -0.8px;
}
.brand-mark {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 36.69px;
  height: 56px;
  background: transparent;
  border-radius: 0;
  overflow: hidden;
}
.brand-mark img {
  position: absolute;
  width: 226.8293%;
  height: 181.5068%;
  max-width: none;
  left: -55.0523%;
  top: -33.3333%;
  object-fit: fill;
  filter: invert(1) hue-rotate(180deg) brightness(1.04);
  transition: filter 0.25s ease;
}
.brand:hover .brand-mark img {
  filter: invert(1) hue-rotate(180deg) brightness(1.12);
}
.brand-sub {
  font-size: 12px;
  letter-spacing: 0.6px;
  line-height: 1.5;
  margin-top: 5px;
}
@media (max-width: 800px) {
  .brand {
    gap: 11px;
    font-size: 27px;
  }
  .brand-mark {
    width: 31.45px;
    height: 48px;
  }
  .brand-sub {
    display: none;
  }
}
