@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=Space+Mono:wght@400;700&display=swap");

:root {
  --ink: #111111;
  --paper: #f5f1e8;
  --red: #ff3b30;
  --yellow: #ffe600;
  --blue: #225cff;
  --mint: #8bffb0;
  --pink: #ff7ad9;
  --cyan: #5ce1e6;
  --border: 4px solid var(--ink);
  --shadow: 8px 8px 0 var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Space Mono", monospace;
  font-size: 1rem;
  line-height: 1.55;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem clamp(1rem, 3vw, 3rem);
  border-bottom: var(--border);
}

.site-header nav {
  display: flex;
  gap: clamp(1rem, 4vw, 3rem);
}

.brand,
.nav-link {
  font-weight: 700;
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  background: var(--yellow);
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.brand-mark {
  display: grid;
  width: 2rem;
  aspect-ratio: 1;
  place-items: center;
  color: white;
  background: var(--ink);
}

.nav-link {
  text-decoration-thickness: 3px;
  text-underline-offset: 0.35rem;
}

.nav-link:hover,
.nav-link:focus-visible {
  text-decoration-line: underline;
}

.hero {
  position: relative;
  max-width: 1400px;
  min-height: 650px;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 6rem) clamp(1rem, 3vw, 3rem) 3rem;
  overflow: hidden;
}

.hero-kicker,
.project-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
  font-weight: 700;
}

.hero h1,
.section-heading h2,
.project-card h3 {
  margin: 0;
  font-family: "Archivo Black", Impact, sans-serif;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 1100px;
  margin-top: clamp(3rem, 9vw, 8rem);
  font-size: clamp(4rem, 10.5vw, 9.5rem);
}

.hero h1 span {
  display: inline-block;
  color: var(--red);
  -webkit-text-stroke: 3px var(--ink);
  text-shadow: 6px 6px 0 var(--ink);
}

.hero-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3.5rem;
}

.hero-bottom p {
  max-width: 48ch;
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 3.75rem;
  padding: 0.85rem 1.2rem;
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 0;
  box-shadow: 6px 6px 0 var(--ink);
  font: 700 0.95rem/1 "Space Mono", monospace;
  text-decoration: none;
  cursor: pointer;
  transition: transform 100ms ease, box-shadow 100ms ease;
}

.button-yellow {
  background: var(--yellow);
}

.button-white {
  background: white;
}

.pressable:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--ink);
}

.pressable:active,
.pressable.is-pressed {
  transform: translate(5px, 5px);
  box-shadow: 1px 1px 0 var(--ink);
}

.pressable:focus-visible {
  outline: 4px solid white;
  outline-offset: 4px;
}

.orbit-sticker {
  position: absolute;
  top: 30%;
  right: clamp(1rem, 4vw, 4rem);
  display: grid;
  width: 8rem;
  aspect-ratio: 1;
  place-items: center;
  padding: 1rem;
  transform: rotate(9deg);
  background: var(--mint);
  border: var(--border);
  border-radius: 50%;
  box-shadow: var(--shadow);
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
}

.projects {
  padding: 5rem clamp(1rem, 3vw, 3rem);
  background: var(--blue);
  border-block: var(--border);
}

.drop {
  color: white;
  background: var(--ink);
  border-top: var(--border);
  overflow: hidden;
}

.drop-alert {
  display: flex;
  width: max-content;
  min-width: 100%;
  padding: 0.55rem 0;
  justify-content: space-around;
  gap: 3rem;
  color: var(--ink);
  background: var(--yellow);
  border-bottom: var(--border);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.drop-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 3vw, 3rem) clamp(4rem, 8vw, 8rem);
}

.drop-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.drop-heading > p {
  margin: 0;
  font-weight: 700;
}

.drop-seal {
  display: grid;
  width: 7rem;
  aspect-ratio: 1;
  padding: 0.8rem;
  place-items: center;
  transform: rotate(7deg);
  color: var(--ink);
  background: var(--red);
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: 6px 6px 0 var(--yellow);
  font: 400 1rem/0.9 "Archivo Black", sans-serif;
  text-align: center;
}

.drop-countdown {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  margin-top: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.drop-unit {
  display: grid;
  min-width: 0;
}

.drop-unit strong,
.drop-colon {
  font: 400 clamp(3.2rem, 9.5vw, 8.5rem)/0.82 "Archivo Black", Impact, sans-serif;
  letter-spacing: -0.08em;
}

.drop-unit strong {
  color: var(--yellow);
  font-variant-numeric: tabular-nums;
}

.drop-unit small {
  margin-top: 0.65rem;
  color: var(--paper);
  font-size: clamp(0.55rem, 1.25vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.drop-colon { color: var(--red); }

.drop-status {
  display: inline-block;
  margin: 1.25rem 0 clamp(3rem, 7vw, 6rem);
  padding: 0.5rem 0.75rem;
  color: var(--ink);
  background: white;
  border: 2px solid white;
  font-size: 0.75rem;
  font-weight: 700;
}

.drop-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: stretch;
}

.drop-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.drop-copy h2 {
  margin: auto 0 1.5rem;
  color: var(--yellow);
  font: 400 clamp(3.4rem, 6.5vw, 6.8rem)/0.82 "Archivo Black", Impact, sans-serif;
  letter-spacing: -0.065em;
  -webkit-text-stroke: 2px var(--ink);
  text-shadow: -3px 0 0 var(--cyan), 5px 3px 0 var(--red);
}

.drop-copy > p:not(.drop-local-time) {
  max-width: 47ch;
  margin: 0 0 2rem;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
}

.drop-button[aria-disabled="true"] {
  color: white;
  background: #292929;
  border-color: white;
  box-shadow: 6px 6px 0 var(--red);
  cursor: not-allowed;
}

.drop.is-released .drop-button {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--ink);
  box-shadow: 6px 6px 0 var(--red);
}

.drop-local-time {
  margin: 1rem 0 0;
  font-size: 0.7rem;
  font-weight: 700;
}

.drop-teaser {
  min-width: 0;
  padding: clamp(1rem, 2.5vw, 2rem);
  transform: rotate(1.25deg);
  color: var(--ink);
  background: var(--yellow);
  border: var(--border);
  box-shadow: 12px 12px 0 var(--cyan);
}

.drop-browser {
  position: relative;
  display: flex;
  min-height: 430px;
  padding: 1.5rem;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 18%, rgb(17 17 17 / 18%) 0 1px, transparent 2px 100%),
    radial-gradient(circle at 77% 72%, rgb(17 17 17 / 15%) 0 1px, transparent 2px 100%),
    linear-gradient(115deg, transparent 0 41%, rgb(255 59 48 / 45%) 41.5% 42%, transparent 42.5%),
    var(--yellow);
  background-size: 11px 13px, 17px 19px, auto, auto;
  border: var(--border);
}

.drop-browser::before {
  position: absolute;
  inset: 3rem 0 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 48%, rgb(17 17 17 / 20%) 49% 50%, transparent 51%),
    linear-gradient(0deg, transparent 48%, rgb(17 17 17 / 20%) 49% 50%, transparent 51%);
  background-size: 5rem 5rem;
  mix-blend-mode: multiply;
}

.drop-browser::after {
  position: absolute;
  inset: 0;
  z-index: 4;
  content: "";
  pointer-events: none;
  opacity: 0.42;
  background: repeating-linear-gradient(0deg, transparent 0 5px, rgb(17 17 17 / 15%) 6px);
}

.drop-browser-bar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  display: flex;
  padding: 0.55rem 0.75rem;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ink);
  background: var(--paper);
  border-bottom: var(--border);
  font-size: 0.65rem;
  font-weight: 700;
}

.drop-live {
  position: relative;
  z-index: 5;
}

.drop-live {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.6rem;
  padding: 0.35rem 0.5rem;
  align-items: center;
  gap: 0.5rem;
  color: white;
  background: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
}

.drop-live i {
  width: 0.7rem;
  height: 0.7rem;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1s steps(2, end) infinite;
}

.drop-signal {
  position: absolute;
  inset: 4rem 0 0;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  opacity: 0.11;
}

.drop-signal i {
  width: 4%;
  height: 30%;
  background: var(--ink);
}

.drop-signal i:nth-child(2n) { height: 68%; }
.drop-signal i:nth-child(3n) { height: 43%; }
.drop-signal i:nth-child(5n) { height: 82%; }

.drop-mascot {
  position: absolute;
  top: -0.5rem;
  right: -3%;
  z-index: 3;
  display: block;
  width: min(94%, 580px);
  height: auto;
  pointer-events: none;
}

.drop-censor {
  position: absolute;
  bottom: 1rem;
  left: -5%;
  z-index: 6;
  width: 110%;
  padding: 0.85rem;
  transform: rotate(-5deg);
  color: var(--yellow);
  background: var(--ink);
  border-block: 3px solid white;
  font-weight: 700;
  text-align: center;
}

.drop-fineprint {
  display: flex;
  margin-top: 1rem;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.62rem;
  font-weight: 700;
}

.drop-schedule {
  margin-top: clamp(5rem, 10vw, 10rem);
  border-top: 3px solid white;
}

.schedule-heading {
  display: flex;
  padding: 2rem 0;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.schedule-heading p {
  max-width: 26ch;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
}

.schedule-heading h3 {
  max-width: 700px;
  margin: 0;
  font: 400 clamp(2.2rem, 5vw, 5rem)/0.9 "Archivo Black", Impact, sans-serif;
  letter-spacing: -0.055em;
  text-align: right;
}

.drop-schedule ol {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 1rem;
  list-style: none;
}

.schedule-drop {
  display: grid;
  min-width: 0;
  padding: clamp(1rem, 2.2vw, 1.7rem);
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: clamp(1rem, 3vw, 3rem);
  align-items: center;
  color: var(--ink);
  border: 3px solid white;
  box-shadow: 7px 7px 0 white;
}

.schedule-drop-primary { background: var(--yellow); }
.schedule-drop-secondary { background: var(--paper); }
.schedule-drop-tertiary { background: #d9d4c8; }

.schedule-copy { min-width: 0; }

.schedule-number {
  display: grid;
  width: 4rem;
  aspect-ratio: 1;
  place-items: center;
  background: white;
  border: 3px solid var(--ink);
  font-weight: 700;
}

.schedule-drop span,
.schedule-drop p {
  font-size: 0.68rem;
  font-weight: 700;
}

.schedule-drop h4 {
  margin: 0.15rem 0;
  font: 400 clamp(1.5rem, 3vw, 2.8rem)/0.9 "Archivo Black", Impact, sans-serif;
  letter-spacing: -0.04em;
}

.schedule-drop p { margin: 0; }

.schedule-drop.is-classified h4 {
  width: fit-content;
  padding: 0.2rem 0.35rem;
  color: var(--yellow);
  background: var(--ink);
  font-size: clamp(1.15rem, 2.3vw, 2rem);
  letter-spacing: 0.035em;
}

.schedule-redactions {
  display: grid;
  width: min(100%, 25rem);
  margin-top: 0.55rem;
  gap: 0.3rem;
}

.schedule-redactions i {
  display: block;
  width: 94%;
  height: 0.42rem;
  background: var(--ink);
}

.schedule-redactions i:last-child { width: 62%; }

.schedule-clock {
  min-width: 12ch;
  font-size: clamp(0.8rem, 1.8vw, 1.25rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.schedule-drop a {
  padding: 0.7rem 0.85rem;
  background: var(--ink);
  border: 3px solid var(--ink);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
}

.schedule-drop a[aria-disabled="true"] { cursor: not-allowed; }

.schedule-drop.is-released {
  box-shadow: 7px 7px 0 var(--yellow);
}

.schedule-drop.is-released a {
  color: var(--ink);
  background: var(--yellow);
}

.schedule-drop.is-released:not(.is-classified) {
  background: var(--cyan);
}

.section-heading,
.project-card {
  max-width: 1304px;
  margin-inline: auto;
}

.section-heading {
  margin-bottom: 2.5rem;
  color: white;
}

.section-heading p {
  margin: 0 0 1rem;
  font-weight: 700;
}

.section-heading h2 {
  font-size: clamp(3rem, 7vw, 7rem);
  -webkit-text-stroke: 2px var(--ink);
  text-shadow: 5px 5px 0 var(--ink);
}

.project-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 520px;
  border: var(--border);
  box-shadow: 12px 12px 0 var(--ink);
}

.project-card + .project-card {
  margin-top: clamp(3.5rem, 8vw, 7rem);
}

.project-redwatch {
  background: var(--red);
}

.project-copy,
.watch-demo {
  padding: clamp(1.5rem, 4vw, 3.5rem);
}

.project-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.project-card h3 {
  margin-top: auto;
  font-size: clamp(3.7rem, 8vw, 8rem);
}

.project-lede {
  max-width: 58ch;
  margin: 1.5rem 0 2rem;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 700;
}

.watch-demo {
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  background: #fff;
  border-left: var(--border);
}

.watch-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
}

.pulse {
  width: 0.9rem;
  height: 0.9rem;
  background: var(--red);
  border: 2px solid var(--ink);
  border-radius: 50%;
  animation: pulse 1.2s steps(2, end) infinite;
}

#watch-time {
  display: flex;
  gap: clamp(0.45rem, 1.5vw, 1.2rem);
  margin: 1rem 0;
  font-family: "Space Mono", monospace;
}

.watch-unit {
  display: grid;
  justify-items: center;
}

.watch-unit strong {
  font-size: clamp(2.4rem, 5vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.09em;
}

.watch-unit small {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

#watch-status {
  margin: 0;
  padding: 0.5rem 0.75rem;
  color: white;
  background: var(--ink);
  font-size: 0.875rem;
  font-weight: 700;
}

.watch-detail {
  max-width: 38ch;
  margin: 1rem 0 0;
  font-size: clamp(0.95rem, 1.35vw, 1.15rem);
  line-height: 1.45;
  font-weight: 700;
}

.about {
  position: relative;
  display: grid;
  grid-template-columns: minmax(200px, 0.4fr) minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 8rem);
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 10rem) clamp(1rem, 3vw, 3rem);
  align-items: center;
}

.about .eyebrow {
  font-weight: 700;
}

.about h2 {
  margin: 0;
  max-width: 950px;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(3.2rem, 7vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.about div > p:last-child {
  max-width: 62ch;
  margin: 2rem 0 0;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
}

.about-stamp {
  display: grid;
  width: clamp(10.5rem, 17vw, 15rem);
  aspect-ratio: 1;
  place-items: center;
  transform: rotate(-8deg);
  color: white;
  background: var(--blue);
  border: var(--border);
  border-radius: 50%;
  box-shadow: 10px 10px 0 var(--ink);
  font: 400 clamp(1.15rem, 2.2vw, 1.9rem)/0.95 "Archivo Black", sans-serif;
  text-align: center;
  padding: 1rem;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem clamp(1rem, 3vw, 3rem);
  background: var(--yellow);
  border-top: var(--border);
  font-size: 0.85rem;
  font-weight: 700;
}

@keyframes pulse {
  50% { opacity: 0.25; }
}

@media (max-width: 760px) {
  .site-header nav {
    gap: 0.85rem;
  }

  .nav-link {
    font-size: 0.8rem;
  }

  .site-header nav .nav-link:first-child {
    display: none;
  }

  .brand > span:last-child {
    display: none;
  }

  .hero {
    min-height: 590px;
  }

  .hero h1 {
    margin-top: 4.5rem;
    font-size: clamp(3rem, 12.5vw, 5rem);
  }

  .project-card h3 {
    font-size: 3rem;
    overflow-wrap: anywhere;
  }

  .hero-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .orbit-sticker {
    top: auto;
    right: 1.5rem;
    bottom: 1rem;
    width: 6.5rem;
    font-size: 0.8rem;
  }

  .project-card {
    grid-template-columns: minmax(0, 1fr);
    min-width: 0;
  }

  .drop-alert span:nth-child(n + 2) { display: none; }

  .drop-inner { padding-top: 1.5rem; }

  .drop-seal {
    width: 5.5rem;
    font-size: 0.8rem;
  }

  .drop-heading > p {
    max-width: 22ch;
    font-size: 0.72rem;
  }

  .drop-countdown { margin-top: 2rem; }

  .drop-unit strong,
  .drop-colon { font-size: clamp(2.25rem, 12vw, 4.4rem); }

  .drop-unit small {
    margin-top: 0.4rem;
    font-size: 0.48rem;
    letter-spacing: 0;
  }

  .drop-grid { grid-template-columns: minmax(0, 1fr); }

  .drop-copy { min-height: 480px; }

  .drop-browser { min-height: 360px; }

  .drop-mascot {
    top: 0;
    right: -7%;
    width: min(110%, 510px);
  }

  .schedule-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .schedule-heading h3 { text-align: left; }

  .schedule-drop {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
  }

  .schedule-number { width: 3.25rem; }

  .schedule-clock {
    grid-column: 2;
    text-align: left;
  }

  .schedule-drop a {
    grid-column: 2;
    text-align: center;
  }

  .project-copy,
  .watch-demo {
    min-width: 0;
  }

  .project-copy {
    min-height: 480px;
  }

  .watch-demo {
    min-height: 330px;
    border-top: var(--border);
    border-left: 0;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .about-stamp {
    width: 9.5rem;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .pulse { animation: none; }
  .drop-live i { animation: none; }
  .button { transition: none; }
}
