:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0b0b0f;
  color: #f4f4f5;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 75% 0%, rgba(255, 94, 31, 0.12), transparent 28rem),
    #0b0b0f;
}

a {
  color: inherit;
}

.site-shell {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 48px 0 28px;
}

.site-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 40px;
  padding: 8px 0 56px;
}

.eyebrow,
.recap-date,
dt {
  margin: 0;
  color: #ff6a2b;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 7vw, 5.7rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.lede {
  max-width: 590px;
  margin-bottom: 0;
  color: #a9a9b2;
  font-size: 1.05rem;
  line-height: 1.65;
}

.header-facts {
  display: grid;
  align-content: start;
  gap: 18px;
  margin: 0;
  padding-top: 8px;
}

.header-facts > div {
  border-top: 1px solid #303038;
  padding-top: 12px;
}

dd {
  margin: 8px 0 0;
  color: #f4f4f5;
  font-size: 1.05rem;
}

.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid #303038;
  padding: 18px 0 14px;
}

.section-note {
  margin-bottom: 0;
  color: #777782;
  font-size: 0.85rem;
  line-height: 1.5;
  text-align: right;
}

.recap-list {
  border-top: 1px solid #303038;
}

.recap-entry {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 32px;
  gap: 24px;
  align-items: start;
  border-bottom: 1px solid #303038;
  padding: 28px 0 30px;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.recap-entry:hover,
.recap-entry:focus-visible {
  background: rgba(255, 106, 43, 0.07);
  outline: none;
}

.recap-number {
  color: #777782;
  font-variant-numeric: tabular-nums;
  font-size: 0.86rem;
  padding-top: 5px;
}

.recap-copy {
  max-width: 720px;
}

.recap-date {
  margin-bottom: 10px;
  color: #777782;
  font-size: 0.68rem;
}

h2 {
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.recap-copy > p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: #a9a9b2;
  font-size: 0.95rem;
  line-height: 1.6;
}

.recap-arrow {
  color: #ff6a2b;
  font-size: 1.4rem;
  line-height: 1;
  text-align: right;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  color: #777782;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

@media (max-width: 700px) {
  .site-shell {
    width: min(100% - 32px, 560px);
    padding-top: 28px;
  }

  .site-header {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
  }

  h1 {
    font-size: clamp(2.6rem, 14vw, 4.6rem);
  }

  .section-heading {
    display: block;
  }

  .section-note {
    margin-top: 10px;
    text-align: left;
  }

  .recap-entry {
    grid-template-columns: 40px minmax(0, 1fr) 24px;
    gap: 12px;
    padding: 24px 0 26px;
  }

  .site-footer {
    display: block;
    line-height: 1.8;
  }
}
