@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:wdth,wght@75..100,400..750&display=swap");

:root {
  color-scheme: dark;
  --ink: #070a0d;
  --paper: #f3f1e9;
  --paper-dim: #b1b7ba;
  --acid: #c8ff2e;
  --acid-ink: #111706;
  --line: rgb(243 241 233 / 16%);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --px: 0;
  --py: 0;
  --spot-x: 72%;
  --spot-y: 52%;
}

* { box-sizing: border-box; }

html {
  min-width: 20rem;
  min-height: 100%;
  background: var(--ink);
  scroll-behavior: smooth;
}

body {
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: "Instrument Sans", "Avenir Next", sans-serif;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; }
a { color: inherit; }
::selection { background: var(--acid); color: var(--acid-ink); }
:focus-visible { outline: 2px solid var(--acid); outline-offset: 5px; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  transform: translateY(-180%);
  border-radius: 0.3rem;
  background: var(--acid);
  color: var(--acid-ink);
  padding: 0.75rem 1rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform 180ms var(--ease-out-quint);
}

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

.site-shell {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
}

.hero-media,
.hero-media img,
.media-wash,
.pointer-light,
.grain {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -5;
  margin: 0;
  overflow: hidden;
  background: #080d13;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.045) translate3d(calc(var(--px) * -0.7rem), calc(var(--py) * -0.45rem), 0);
  filter: saturate(0.9) contrast(1.04) brightness(0.88);
  transition: transform 900ms var(--ease-out-expo);
  will-change: transform;
}

.media-wash {
  z-index: -4;
  background:
    linear-gradient(90deg, rgb(7 10 13 / 97%) 0%, rgb(7 10 13 / 90%) 31%, rgb(7 10 13 / 44%) 58%, rgb(7 10 13 / 10%) 100%),
    linear-gradient(180deg, rgb(7 10 13 / 36%) 0%, transparent 35%, rgb(7 10 13 / 40%) 100%);
}

.pointer-light {
  z-index: -3;
  opacity: 0.58;
  background: radial-gradient(circle at var(--spot-x) var(--spot-y), rgb(200 255 46 / 9%), transparent 16rem);
  transition: opacity 300ms ease;
}

.grain {
  z-index: 10;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.site-header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - clamp(2rem, 6vw, 7rem)), 96rem);
  min-height: 6.6rem;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: block;
  margin-left: -1.2rem;
  border-radius: 0.25rem;
}

.brand img { width: clamp(6.2rem, 7vw, 7.6rem); height: auto; }

.header-signal {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgb(243 241 233 / 67%);
  font-size: 0.64rem;
  font-weight: 680;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.signal-dot {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 0.32rem rgb(200 255 46 / 11%);
  animation: signal-pulse 2.8s ease-in-out infinite;
}

.divider { width: 1.6rem; height: 1px; background: var(--line); }

.hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(12rem, 0.3fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 5rem);
  width: min(calc(100% - clamp(2rem, 6vw, 7rem)), 96rem);
  margin: 0 auto;
  padding: clamp(3rem, 7vh, 5.5rem) 0 clamp(3.2rem, 7vh, 5.8rem);
}

.hero-copy { max-width: 68rem; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 clamp(1.5rem, 3vh, 2.4rem);
  color: rgb(243 241 233 / 62%);
  font-size: 0.68rem;
  font-weight: 720;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span:first-child { color: var(--acid); }
.eyebrow-line { width: clamp(2rem, 5vw, 4.8rem); height: 1px; background: var(--line); }

h1 {
  max-width: 64rem;
  margin: 0;
  font-size: clamp(3.8rem, 7.7vw, 7.55rem);
  line-height: 0.79;
  font-weight: 650;
  letter-spacing: -0.078em;
}

.headline-line {
  display: block;
  overflow: hidden;
  padding: 0.08em 0.08em 0.12em 0;
}

.headline-line + .headline-line { margin-top: -0.02em; }
.accent-line { color: var(--acid); }

.js .reveal-word {
  display: block;
  transform: translateY(118%);
  opacity: 0;
}

.hero-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  max-width: 57rem;
  margin-top: clamp(2rem, 4vh, 3.2rem);
}

.hero-foot > p {
  margin: 0;
  color: var(--paper-dim);
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  line-height: 1.55;
}

.launch-stamp {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 0.8rem;
  flex: none;
}

.launch-stamp b {
  color: var(--paper);
  font-size: 2rem;
  line-height: 1;
  font-weight: 450;
  letter-spacing: -0.06em;
}

.launch-stamp > span {
  padding-left: 0.8rem;
  border-left: 1px solid var(--line);
  color: rgb(243 241 233 / 56%);
  font-size: 0.58rem;
  line-height: 1.45;
  font-weight: 680;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.photo-note {
  align-self: end;
  justify-self: end;
  display: grid;
  grid-template-columns: 2.8rem auto;
  align-items: start;
  gap: 0.85rem;
  margin-bottom: 0.7rem;
  color: rgb(243 241 233 / 68%);
}

.photo-note-line { height: 1px; margin-top: 0.45rem; background: var(--acid); }
.photo-note p { margin: 0; font-size: 0.7rem; line-height: 1.55; letter-spacing: 0.04em; }
.photo-note strong { color: var(--paper); font-weight: 700; }

.ticker {
  position: relative;
  z-index: 5;
  overflow: hidden;
  background: var(--acid);
  color: var(--acid-ink);
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 3rem;
  animation: ticker 24s linear infinite;
  will-change: transform;
}

.ticker-group {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: space-around;
  min-width: 100vw;
}

.ticker span,
.ticker strong {
  padding: 0 1.35rem;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker strong { font-weight: 500; font-style: italic; }
.ticker i { width: 0.28rem; height: 0.28rem; border-radius: 50%; background: currentColor; opacity: 0.52; }

.js .reveal {
  transform: translateY(1rem);
  opacity: 0;
}

html.js.loaded .reveal-word {
  transform: translateY(0);
  opacity: 1;
  transition: transform 900ms var(--ease-out-expo), opacity 400ms ease;
}

html.js.loaded .reveal {
  transform: translateY(0);
  opacity: 1;
  transition: transform 760ms var(--ease-out-quint), opacity 600ms ease;
}

html.js.loaded .reveal-1 { transition-delay: 80ms; }
html.js.loaded .reveal-2 { transition-delay: 130ms; }
html.js.loaded .reveal-3 { transition-delay: 210ms; }
html.js.loaded .reveal-4 { transition-delay: 290ms; }
html.js.loaded .reveal-5 { transition-delay: 450ms; }
html.js.loaded .reveal-6 { transition-delay: 590ms; }

@keyframes signal-pulse {
  0%, 100% { transform: scale(0.9); opacity: 0.72; }
  50% { transform: scale(1); opacity: 1; }
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@media (max-width: 62rem) {
  .hero { grid-template-columns: 1fr; }
  .photo-note { position: absolute; right: 0; bottom: 2.8rem; }
  h1 { font-size: clamp(4rem, 10.2vw, 6.3rem); }
  .media-wash {
    background:
      linear-gradient(90deg, rgb(7 10 13 / 96%) 0%, rgb(7 10 13 / 82%) 42%, rgb(7 10 13 / 21%) 100%),
      linear-gradient(180deg, rgb(7 10 13 / 22%) 0%, transparent 30%, rgb(7 10 13 / 60%) 100%);
  }
}

@media (max-width: 43.75rem) {
  .site-shell { min-height: 100svh; }
  .hero-media { inset: 0 0 35% 0; }
  .hero-media img {
    object-position: 63% center;
    transform: scale(1.08) translate3d(calc(var(--px) * -0.25rem), 0, 0);
    filter: saturate(0.92) contrast(1.02) brightness(0.8);
  }
  .media-wash {
    background:
      linear-gradient(180deg, rgb(7 10 13 / 15%) 0%, rgb(7 10 13 / 20%) 23%, rgb(7 10 13 / 97%) 64%, var(--ink) 100%),
      linear-gradient(90deg, rgb(7 10 13 / 60%), transparent 76%);
  }
  .pointer-light { display: none; }
  .site-header {
    width: calc(100% - 2.25rem);
    min-height: 5.6rem;
  }
  .brand { margin-left: -0.85rem; }
  .brand img { width: 6rem; }
  .header-signal { gap: 0.48rem; font-size: 0.54rem; }
  .divider { width: 0.8rem; }
  .hero {
    align-items: end;
    width: calc(100% - 2.25rem);
    padding: clamp(14rem, 35vh, 20rem) 0 2.1rem;
  }
  .hero-copy { align-self: end; }
  .eyebrow { margin-bottom: 1.25rem; font-size: 0.59rem; }
  .eyebrow-line { width: 1.7rem; }
  h1 {
    font-size: clamp(3.35rem, 15.7vw, 5rem);
    line-height: 0.82;
    letter-spacing: -0.072em;
  }
  .hero-foot { margin-top: 1.6rem; }
  .hero-foot > p { font-size: 0.9rem; }
  .launch-stamp { display: none; }
  .photo-note { display: none; }
  .ticker-track { min-height: 2.65rem; animation-duration: 19s; }
  .ticker span, .ticker strong { padding: 0 1rem; font-size: 0.58rem; }
}

@media (max-width: 43.75rem) and (max-height: 46rem) {
  .site-header { min-height: 4.9rem; }
  .brand img { width: 5.4rem; }
  .hero { padding-top: 11.75rem; padding-bottom: 1.3rem; }
  .eyebrow { margin-bottom: 1rem; }
  .hero-foot { margin-top: 1.2rem; }
}

@media (max-height: 43rem) and (orientation: landscape) {
  body { overflow-y: auto; }
  .site-shell { min-height: 44rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal,
  .reveal-word {
    transform: none !important;
    opacity: 1 !important;
  }
  .hero-media img { transform: scale(1.045); }
}

@media (forced-colors: active) {
  .ticker { border-top: 1px solid CanvasText; border-bottom: 1px solid CanvasText; }
  .signal-dot { border: 1px solid CanvasText; }
}
