:root {
  --paper: #111315;
  --ink: #f5f5f1;
  --muted: #a4a7a5;
  --line: rgba(255, 255, 255, 0.12);
  --glass: rgba(18, 20, 21, 0.72);
  --signal: #ffe500;
  --signal-edge: #d8c200;
  --display: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --utility: Arial, Helvetica, sans-serif;
  --mesh-text-color: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scrollbar-color: var(--signal) var(--paper);
  scrollbar-width: thin;
}

*::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

*::-webkit-scrollbar-track {
  background: var(--paper);
}

*::-webkit-scrollbar-thumb {
  border: 3px solid var(--paper);
  border-radius: 999px;
  background: var(--signal);
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--signal-edge);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--display);
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.construction-page {
  position: fixed;
  z-index: 1;
  inset: 0;
  width: 100%;
  min-height: 100svh;
  background: var(--paper);
}

.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;
}

.navbar {
  --navbar-blur: 0px;
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 104px;
  padding: 22px clamp(24px, 4vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    135deg,
    rgba(30, 32, 33, 0.82),
    rgba(14, 16, 17, 0.6)
  );
  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.24);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
}

.js .navbar {
  filter: blur(var(--navbar-blur));
  will-change: filter;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: clamp(125px, 11vw, 170px);
  height: auto;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 158px;
  padding: 6px 6px 6px 17px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: var(--signal);
  color: #111111;
  font-family: var(--utility);
  font-size: clamp(16px, 0.85vw, 12px);
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-cta__arrow {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  background: #111111;
  color: var(--signal);
  font-size: 14px;
}

.nav-cta:hover {
  background: #111111;
  color: var(--signal);
  transform: translateY(-2px);
}

.nav-cta:hover .nav-cta__arrow {
  background: var(--signal);
  color: #111111;
}

.hero {
  --hero-blur: 0px;
  --mesh-text-color: #171918;
  position: relative;
  min-height: calc(100svh - 104px);
  isolation: isolate;
  overflow: hidden;
  padding: clamp(28px, 4vw, 58px) clamp(24px, 4vw, 64px) 42px;
  background: #d8d9d5;
  color: #171918;
}

.js .hero {
  filter: blur(var(--hero-blur));
  will-change: filter;
}

.hero-topography {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  opacity: 0.58;
  pointer-events: none;
}

.hero-topography::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.32), transparent 48%);
}

.hero-topography canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.eyebrow,
.edition {
  margin: 0;
}

.headline-wrap {
  position: absolute;
  z-index: 10;
  top: clamp(58px, 8vh, 92px);
  left: clamp(24px, 4vw, 64px);
  width: min(720px, 60vw);
  margin-top: 0;
}

.eyebrow {
  margin-bottom: 18px;
  font-family: var(--utility);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1 {
  position: relative;
  margin: 0;
  max-width: 760px;
  font-size: clamp(56px, 7.6vw, 126px);
  font-weight: 650;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.mesh-headline {
  position: relative;
  width: 100%;
  padding-bottom: clamp(12px, 1.1vw, 18px);
  overflow: hidden;
  cursor: crosshair;
  user-select: none;
}

.mesh-headline canvas {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.mesh-headline.is-mesh-ready h1 {
  color: transparent;
}

.video-cards {
  position: absolute;
  z-index: 9;
  inset: 0;
  pointer-events: none;
}

.video-card {
  --card-parallax-x: 0px;
  --card-parallax-y: 0px;
  --card-scale: 1;
  position: absolute;
  width: clamp(240px, 20vw, 420px);
  aspect-ratio: 1.58;
  margin: 0;
  overflow: hidden;
  border-radius: clamp(14px, 1.2vw, 20px);
  background: #000000;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
  pointer-events: auto;
  transition:
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 320ms ease;
  transform: translate3d(
      var(--card-parallax-x),
      var(--card-parallax-y),
      0
    )
    scale(var(--card-scale));
  backface-visibility: hidden;
  will-change: transform;
}

.video-card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card--soda {
  top: 18%;
  left: 54%;
  transform-origin: center;
}

.video-card--stride {
  bottom: 3%;
  left: 19%;
  transform-origin: left bottom;
}

.video-card--ai-studio {
  right: 5.5%;
  bottom: 12%;
  transform-origin: right bottom;
}

@media (hover: hover) and (pointer: fine) {
  .video-card:hover {
    z-index: 20;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.56);
    --card-scale: 2;
  }
}

.tape-stage {
  position: absolute;
  z-index: 8;
  inset: 0;
  pointer-events: none;
}

.tape {
  position: absolute;
  left: -18vw;
  width: 142vw;
  height: clamp(64px, 7vw, 104px);
  overflow: hidden;
  border-top: 1px solid var(--signal-edge);
  border-bottom: 1px solid var(--signal-edge);
  background: var(--signal);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
  will-change: transform;
}

.tape::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.2),
    transparent 25%,
    rgba(143, 124, 0, 0.08)
  );
  mix-blend-mode: multiply;
}

.tape--one {
  top: 58%;
  transform: rotate(-8deg);
}

.tape--two {
  top: 69%;
  left: -20vw;
  z-index: 2;
  transform: rotate(11deg);
}

.tape--three {
  top: 83%;
  left: -23vw;
  transform: rotate(-18deg);
}

.tape__rail {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: 100%;
  height: 100%;
  will-change: transform;
  animation: tape-scroll-left var(--marquee-duration, 48s) linear infinite;
}

.tape--one .tape__rail {
  --marquee-duration: 48s;
}

.tape--two .tape__rail {
  --marquee-duration: 56s;
  animation-name: tape-scroll-right;
}

.tape--three .tape__rail {
  --marquee-duration: 52s;
}

.tape__rail span {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding-inline: clamp(34px, 4vw, 80px);
  color: #080808;
  font-size: clamp(18px, 2vw, 34px);
  font-weight: 800;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.tape__rail span::after {
  content: "✦";
  margin-left: clamp(68px, 8vw, 140px);
  font-size: 0.6em;
}

.edition {
  position: absolute;
  z-index: 4;
  right: clamp(24px, 4vw, 64px);
  bottom: 25px;
  color: var(--muted);
  font-family: var(--utility);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.is-ready .headline-wrap {
  animation: reveal-up 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.is-ready .headline-wrap {
  animation-delay: 0.16s;
}

.is-ready .tape--one {
  animation: tape-one-in 1s 0.2s cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.is-ready .tape--two {
  animation: tape-two-in 1s 0.32s cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.is-ready .tape--three {
  animation: tape-three-in 1s 0.44s cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tape-one-in {
  from {
    opacity: 0;
    transform: translateX(-16vw) rotate(-8deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotate(-8deg);
  }
}

@keyframes tape-two-in {
  from {
    opacity: 0;
    transform: translateX(16vw) rotate(11deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotate(11deg);
  }
}

@keyframes tape-three-in {
  from {
    opacity: 0;
    transform: translateX(-16vw) rotate(-18deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotate(-18deg);
  }
}

@keyframes tape-scroll-left {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes tape-scroll-right {
  from {
    transform: translate3d(-50%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

.footer-reveal {
  --bird-size: clamp(160px, 17vw, 240px);
  --headline-bottom: 320px;
  --footer-reveal-guard: 0;
  position: relative;
  z-index: 30;
  margin-top: 100svh;
  padding-top: calc(var(--bird-size) / 2);
  pointer-events: none;
}

.site-footer {
  --footer-reveal: 1;
  --footer-blur: 0px;
  --footer-offset: 0px;
  --footer-scale: 1;
  position: relative;
  height: clamp(420px, calc(100svh - var(--headline-bottom)), 560px);
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 0;
  border-radius: clamp(30px, 4vw, 58px) clamp(30px, 4vw, 58px) 0 0;
  background: #202124;
  color: #f6f6f2;
  pointer-events: auto;
  transform-origin: 50% 100%;
}

.js .site-footer {
  opacity: var(--footer-reveal);
  filter: blur(var(--footer-blur));
  transform: translate3d(0, var(--footer-offset), 0)
    scale(var(--footer-scale));
  will-change: opacity, filter, transform;
}

.site-footer::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 229, 0, 0.07), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 45%);
  pointer-events: none;
}

.footer-topography {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  opacity: 0.43;
  pointer-events: none;
}

.footer-topography canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.footer__bird {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 50%;
  width: var(--bird-size);
  aspect-ratio: 1;
  overflow: hidden;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

.footer__bird img {
  position: absolute;
  top: -24%;
  left: -79%;
  display: block;
  width: 267%;
  max-width: none;
  height: auto;
}

.footer__inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: min(100%, 1440px);
  height: 100%;
  margin-inline: auto;
  padding: clamp(94px, 10vw, 126px) clamp(24px, 5vw, 78px) 22px;
}

.footer__brand-lockup {
  display: flex;
  justify-content: center;
}

.footer__logo {
  display: block;
  width: clamp(230px, 29vw, 430px);
  height: auto;
  filter: brightness(0) invert(1);
}

.footer__details {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  align-items: end;
  gap: 40px;
  margin-top: clamp(24px, 4vh, 42px);
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer__contact address {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(13px, 1.1vw, 15px);
  font-style: normal;
  line-height: 1.55;
}

.footer__contact strong {
  color: #ffffff;
}

.footer__label {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--utility);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 190px;
  padding: 8px 8px 8px 22px;
  border: 1px solid var(--signal);
  border-radius: 999px;
  background: var(--signal);
  color: #111111;
  font-family: var(--utility);
  font-size: clamp(16px, 1vw, 15px);
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.footer__cta-arrow {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 50%;
  background: #111111;
  color: var(--signal);
  font-size: 16px;
}

.footer__cta:hover {
  background: transparent;
  color: var(--signal);
  transform: translateY(-2px);
}

.footer__cta:focus-visible {
  outline-color: var(--signal);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--utility);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  .navbar {
    height: 86px;
    padding-block: 18px;
  }

  .hero {
    min-height: calc(100svh - 86px);
  }

  .footer-reveal {
    --footer-reveal-guard: 0.12;
    margin-top: 88svh;
  }

  .footer__cta {
    position: relative;
    justify-content: center;
    padding-inline: 56px;
    font-size: 15px;
  }

  .footer__cta-arrow {
    position: absolute;
    top: 50%;
    right: 8px;
    line-height: 1;
    transform: translateY(-50%);
  }

  .headline-wrap {
    position: relative;
    top: auto;
    left: auto;
    width: 90vw;
    margin-top: clamp(46px, 7vh, 68px);
  }

  h1 {
    font-size: clamp(56px, 12vw, 88px);
  }

  .video-card {
    width: clamp(120px, 32vw, 245px);
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.38);
    cursor: zoom-in;
    touch-action: manipulation;
  }

  .video-card.is-expanded {
    z-index: 20;
    --card-scale: 2;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.56);
    cursor: zoom-out;
  }

  .video-card--soda {
    top: 49%;
    left: 24%;
    right: auto;
    bottom: auto;
    transform-origin: center;
  }

  .video-card--stride {
    top: 64%;
    right: 7%;
    bottom: auto;
    left: auto;
    transform-origin: right center;
  }

  .video-card--ai-studio {
    top: 76%;
    left: 10%;
    right: auto;
    bottom: auto;
    transform-origin: left center;
  }

  .tape--one {
    top: 54%;
  }

  .tape--two {
    top: 67%;
  }

  .tape--three {
    top: 81%;
  }
}

@media (max-width: 560px) {
  .navbar {
    align-items: flex-start;
  }

  .brand img {
    width: 112px;
  }

  .nav-cta {
    min-width: 122px;
    gap: 10px;
    padding-left: 14px;
    font-size: 10px;
  }

  .nav-cta__arrow {
    width: 27px;
    height: 27px;
  }

  .hero {
    min-height: calc(100svh - 86px);
    padding-top: 22px;
  }

  .headline-wrap {
    width: 100%;
    margin-top: 72px;
  }

  .mesh-headline {
    width: calc(100% + 18px);
    padding-bottom: clamp(12px, 3vw, 20px);
  }

  .eyebrow {
    margin-bottom: 13px;
  }

  h1 {
    font-size: clamp(54px, 17vw, 82px);
    line-height: 0.88;
  }

  .tape {
    left: -45vw;
    width: 195vw;
    height: 61px;
  }

  .tape--one {
    top: 52%;
  }

  .tape--two {
    top: 66%;
    left: -47vw;
  }

  .tape--three {
    top: 80%;
    left: -50vw;
  }

  .tape__rail span {
    padding-inline: 30px;
    font-size: 17px;
  }

  .tape__rail span::after {
    margin-left: 58px;
  }

  .footer-reveal {
    --bird-size: 150px;
    --footer-reveal-guard: 0.18;
    margin-top: 82svh;
  }

  .site-footer,
  .footer__inner {
    min-height: 0;
  }

  .site-footer {
    height: clamp(480px, calc(100svh - var(--headline-bottom)), 540px);
  }

  .footer__inner {
    height: 100%;
  }

  .site-footer {
    border-radius: 30px 30px 0 0;
  }

  .footer__inner {
    padding-top: 88px;
    padding-bottom: 24px;
  }

  .footer__logo {
    width: min(78vw, 310px);
  }

  .footer__details {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 18px;
    margin-top: 30px;
  }

  .footer__cta {
    width: 100%;
    font-size: 15px;
  }

  .footer__bottom {
    align-items: flex-end;
  }

  .footer__bottom span:first-child {
    max-width: 130px;
  }
}

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

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

  .tape__rail {
    transform: none !important;
  }

  .js .site-footer {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  .js .hero {
    filter: none !important;
  }

  .js .navbar {
    filter: none !important;
  }
}
