@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=DM+Mono:wght@300;400;500&display=swap');

:root {
  --ink: #0a0a0a;
  --paper: #f0eee9;
  --white: #faf9f6;
  --line: rgba(10, 10, 10, .22);
  --pad: clamp(20px, 3.2vw, 54px);
  --mono: 'DM Mono', 'Courier New', monospace;
  --display: 'Archivo Black', Impact, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.45;
  text-transform: uppercase;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { color: var(--white); background: var(--ink); }

.noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: .035;
  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='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.announcement {
  height: 31px;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  border-bottom: 1px solid var(--ink);
  white-space: nowrap;
}
.announcement-track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}
.announcement span {
  display: block;
  padding: 7px 7vw 0;
  letter-spacing: .16em;
  font-size: 10px;
}
@keyframes marquee { to { transform: translateX(-33.333%); } }

.site-header {
  height: 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 var(--pad);
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
  position: relative;
  z-index: 5;
}
.wordmark {
  justify-self: start;
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 29px);
  letter-spacing: -.06em;
}
.wordmark span { font: 7px var(--mono); vertical-align: top; margin-left: 5px; }
.site-header nav { display: flex; gap: clamp(22px, 4vw, 60px); }
.site-header nav a, .status { padding: 14px 0; letter-spacing: .08em; }
.site-header nav a { position: relative; }
.site-header nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: 8px;
  height: 1px;
  background: var(--ink);
  transition: right .25s ease;
}
.site-header nav a:hover::after, .site-header nav a:focus-visible::after { right: 0; }
.status { justify-self: end; display: flex; align-items: center; gap: 9px; }
.status i { width: 6px; height: 6px; border-radius: 50%; background: var(--ink); animation: blink 1.8s infinite; }
@keyframes blink { 50% { opacity: .25; } }

.hero {
  min-height: calc(100vh - 115px);
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  border-bottom: 1px solid var(--ink);
}
.hero-copy {
  padding: clamp(58px, 8vh, 100px) var(--pad) 38px;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  border-right: 0;
}
.eyebrow {
  margin: 0;
  color: rgba(10, 10, 10, .46);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: .2em;
  line-height: 1;
}
h1 {
  margin: clamp(45px, 7vh, 78px) 0;
  font-family: var(--display);
  font-size: clamp(62px, 8.7vw, 152px);
  line-height: .78;
  letter-spacing: -.085em;
  font-weight: 900;
}
.text-link { width: max-content; padding-bottom: 5px; border-bottom: 1px solid var(--ink); letter-spacing: .08em; }
.text-link span { margin-left: 28px; }
.hero-index {
  position: absolute;
  right: calc(var(--pad) * .9);
  top: 30px;
  margin: 0;
  color: rgba(10, 10, 10, .38);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: .18em;
}

.manifesto {
  padding: clamp(90px, 14vw, 210px) var(--pad);
  color: var(--paper);
  background: var(--ink);
  border-bottom: 1px solid var(--ink);
}
.manifesto p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 7.4vw, 120px);
  line-height: .96;
  letter-spacing: -.065em;
}
.manifesto p:last-child { color: transparent; -webkit-text-stroke: 1px var(--paper); text-align: right; }

.drop { padding: clamp(76px, 9vw, 136px) var(--pad); }
.section-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 20px;
  margin-bottom: 30px;
}
.section-head p { margin: 0 0 7px; letter-spacing: .1em; }
.section-head p:last-child { text-align: right; }
h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 76px);
  line-height: .9;
  letter-spacing: -.06em;
}
.product-void {
  aspect-ratio: 16 / 8;
  min-height: 420px;
  position: relative;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  overflow: hidden;
}
.product-void::before, .product-void::after {
  content: '';
  position: absolute;
  background: rgba(240,238,233,.18);
}
.product-void::before { width: 1px; height: 140%; transform: rotate(63deg); }
.product-void::after { width: 1px; height: 140%; transform: rotate(-63deg); }
.soon {
  z-index: 1;
  font-family: var(--display);
  font-size: clamp(48px, 10vw, 170px);
  letter-spacing: -.075em;
}
.corner { position: absolute; z-index: 1; letter-spacing: .12em; font-size: 10px; }
.top-left { top: 22px; left: 24px; }
.top-right { top: 22px; right: 24px; }
.bottom-left { bottom: 22px; left: 24px; }
.bottom-right { bottom: 22px; right: 24px; }

footer {
  min-height: 330px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  align-items: end;
  gap: 40px;
  padding: 55px var(--pad);
  color: var(--paper);
  background: var(--ink);
  border-top: 1px solid var(--ink);
}
.footer-brand { display: flex; align-items: end; gap: 22px; }
.footer-brand img { width: 62px; height: 94px; object-fit: contain; filter: invert(1); }
.footer-brand p { margin: 0; font-family: var(--display); font-size: clamp(34px, 5vw, 72px); line-height: .75; letter-spacing: -.07em; }
.footer-copy { line-height: 1.8; }
footer > p:last-child { text-align: right; }
footer a { border-bottom: 1px solid rgba(240,238,233,.55); padding-bottom: 5px; width: max-content; }

:focus-visible { outline: 2px solid currentColor; outline-offset: 5px; }
@media (max-width: 760px) {
  .site-header { height: 72px; grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { min-height: 610px; border-right: 0; border-bottom: 1px solid var(--ink); }
  h1 { font-size: clamp(60px, 20vw, 96px); }
  .manifesto p { font-size: 12.5vw; }
  .section-head { grid-template-columns: 1fr auto; align-items: start; }
  .section-head h2 { grid-row: 2; grid-column: 1 / -1; }
  .product-void { aspect-ratio: 4 / 5; min-height: 470px; min-width: 0; width: 100%; }
  .soon { font-size: 14vw; }
  footer {
    min-height: 0;
    grid-template-columns: 1fr auto;
    align-items: end;
    align-content: start;
    gap: 46px 24px;
    padding: 52px var(--pad) 38px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    align-items: center;
    gap: 14px;
  }
  .footer-brand img { width: 34px; height: 52px; }
  .footer-brand p {
    font-size: 28px;
    line-height: 1;
    letter-spacing: -.055em;
  }
  .footer-copy {
    grid-column: 1 / -1;
    margin: 0;
    max-width: 30ch;
    font-size: 10px;
    line-height: 1.75;
  }
  footer a {
    grid-column: 1;
    font-size: 9px;
    letter-spacing: .03em;
  }
  footer > p:last-child {
    grid-column: 2;
    margin: 0;
    font-size: 9px;
    text-align: right;
    white-space: nowrap;
  }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .announcement-track, .status i { animation: none; }
}
