:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0d0f0c;
  color: #f3f0e7;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 3%, rgba(230, 255, 92, .09), transparent 32rem),
    #0d0f0c;
}

header, main, footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

header {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #292d26;
  color: #808878;
  font: 650 11px/1 monospace;
  letter-spacing: .13em;
}

header a { color: #e6ff5c; text-decoration: none; }

.intro { padding: clamp(72px, 11vw, 150px) 0 96px; }

.tag, .section-title p {
  margin: 0 0 18px;
  color: #e6ff5c;
  font: 650 11px/1 monospace;
  letter-spacing: .17em;
}

h1 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(54px, 10vw, 126px);
  font-weight: 620;
  line-height: .94;
  letter-spacing: -.065em;
}

.lede {
  max-width: 700px;
  margin: 32px 0 0;
  color: #a8afa0;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
}

.status {
  width: fit-content;
  margin-top: 36px;
  padding: 10px 14px;
  border: 1px solid #343a2e;
  border-radius: 999px;
  color: #c8d0be;
  font-size: 13px;
}

.status i {
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 50%;
  background: #e6ff5c;
  box-shadow: 0 0 15px rgba(230, 255, 92, .7);
}

.replay, .workstreams {
  padding: 76px 0;
  border-top: 1px solid #292d26;
}

.section-title {
  margin-bottom: 30px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-title h2 { margin: 0; font-size: clamp(30px, 4vw, 54px); letter-spacing: -.045em; }
.section-title > span { color: #737a6c; font: 12px/1 monospace; }

video {
  width: 100%;
  display: block;
  border: 1px solid #343a2e;
  border-radius: 16px;
  background: #182230;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid #292d26;
}

.metrics article { padding: 25px 0; }
.metrics article + article { padding-left: 24px; border-left: 1px solid #292d26; }
.metrics strong { display: block; font-size: 27px; letter-spacing: -.04em; }
.metrics span { color: #727a6c; font-size: 12px; }
.caveat { max-width: 760px; color: #727a6c; font-size: 13px; line-height: 1.7; }

.grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid #292d26; }
.grid article { min-height: 250px; padding: 24px 20px 24px 0; border-bottom: 1px solid #292d26; }
.grid article + article { padding-left: 20px; border-left: 1px solid #292d26; }
.grid b { color: #6d7466; font: 12px/1 monospace; }
.grid h3 { margin: 48px 0 12px; font-size: 20px; }
.grid p { min-height: 72px; color: #888f81; font-size: 13px; line-height: 1.6; }
.grid em { color: #777e70; font: normal 11px/1 monospace; }
.grid em.active { color: #e6ff5c; }

footer {
  padding: 30px 0 46px;
  display: flex;
  justify-content: space-between;
  color: #666d61;
  font: 11px/1 monospace;
  letter-spacing: .08em;
}

@media (max-width: 820px) {
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .metrics article:nth-child(3) { border-left: 0; border-top: 1px solid #292d26; }
  .metrics article:nth-child(4) { border-top: 1px solid #292d26; }
  .grid { grid-template-columns: 1fr 1fr; }
  .grid article:nth-child(odd) { padding-left: 0; border-left: 0; }
  .grid article:nth-child(even) { padding-left: 20px; border-left: 1px solid #292d26; }
}

@media (max-width: 520px) {
  header, main, footer { width: min(100% - 28px, 1180px); }
  .intro { padding-bottom: 64px; }
  .section-title { align-items: start; flex-direction: column; }
  .metrics { grid-template-columns: 1fr; }
  .metrics article + article { padding-left: 0; border-top: 1px solid #292d26; border-left: 0; }
  .grid { grid-template-columns: 1fr; }
  .grid article, .grid article:nth-child(even) { min-height: auto; padding: 22px 0; border-left: 0; }
  .grid h3 { margin-top: 26px; }
  .grid p { min-height: auto; }
}
