:root {
  --bg: #091823;
  --bg-2: #0e2330;
  --paper: #f5efe5;
  --paper-2: #f8f4ec;
  --ink: #102130;
  --muted: #60707a;
  --gold: #f0ad4f;
  --gold-2: #ebb05d;
  --line: rgba(16, 33, 48, 0.12);
  --navy: #102130;
  --green-dark: #0d3d22;
  --green: #0f5f2b;
  --green-light: #168335;
  --field-line: rgba(228, 244, 220, 0.72);
  --shadow: 0 30px 80px rgba(3, 10, 16, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background:
    radial-gradient(circle at top, rgba(240, 173, 79, 0.12), transparent 24%),
    linear-gradient(180deg, #08131d 0%, #0d1b26 38%, #f5efe5 38%, #f3ede3 100%);
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.04), transparent 20%),
    radial-gradient(circle at 80% 12%, rgba(240, 173, 79, 0.05), transparent 24%),
    radial-gradient(circle at 50% 82%, rgba(16, 33, 48, 0.08), transparent 28%);
  opacity: 0.7;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.hero {
  position: relative;
  min-height: 100svh;
  color: #f7f1e7;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 18, 28, 0.94) 0%, rgba(7, 18, 28, 0.86) 56%, rgba(7, 18, 28, 0.62) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.hero__glow,
.hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__glow {
  background:
    radial-gradient(circle at 76% 24%, rgba(240, 173, 79, 0.18), transparent 18%),
    radial-gradient(circle at 16% 76%, rgba(33, 95, 52, 0.3), transparent 26%);
}

.hero__grain {
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mix-blend-mode: soft-light;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100vw - 2rem));
  margin: 0 auto;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.96fr);
  gap: 2rem 3rem;
  align-items: center;
  padding: 1.5rem 0 2.2rem;
}

.hero__brand {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.hero__logo {
  width: 150px;
  height: auto;
  flex: none;
}

.hero__links {
  display: grid;
  gap: 0.35rem;
  justify-items: end;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero__links a {
  color: rgba(247, 241, 231, 0.85);
  text-decoration: none;
}

.hero__links a:hover {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.hero__copy {
  max-width: 720px;
  align-self: start;
  padding: 2rem 0 1rem;
}

.eyebrow,
.section__header .eyebrow,
.hero__scene-caption span,
.legend,
.inspector__panel .eyebrow,
.archive-card__kicker,
.player-meta,
.bench-card__meta {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 800;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--gold);
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.hero h1 {
  font-size: clamp(3.9rem, 8vw, 7.8rem);
  max-width: 9ch;
}

.hero__lede {
  max-width: 36rem;
  margin: 1.1rem 0 0;
  font-size: clamp(1.02rem, 1.7vw, 1.28rem);
  line-height: 1.7;
  color: rgba(247, 241, 231, 0.88);
}

.hero__note {
  margin: 1rem 0 0;
  max-width: 32rem;
  line-height: 1.65;
  color: rgba(247, 241, 231, 0.75);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  color: #0f1c29;
  background: var(--gold);
}

.button--ghost {
  color: #f7f1e7;
  border: 1px solid rgba(247, 241, 231, 0.28);
  background: rgba(255, 255, 255, 0.03);
}

.hero__scene {
  align-self: center;
  justify-self: end;
  width: min(100%, 620px);
  display: grid;
  gap: 0.8rem;
}

.hero__scene-board {
  position: relative;
  aspect-ratio: 1.1 / 1;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 20%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 25%, rgba(255, 255, 255, 0.06) 25% 50%, rgba(255, 255, 255, 0.03) 50% 75%, rgba(255, 255, 255, 0.06) 75% 100%),
    linear-gradient(180deg, #1a7d34 0%, #16682e 48%, #105025 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero__scene-board::before {
  content: "";
  position: absolute;
  inset: 4%;
  border-radius: 22px;
  border: 2px solid rgba(229, 245, 220, 0.82);
  box-shadow: inset 0 0 0 1px rgba(5, 20, 12, 0.2);
}

.hero__scene-lines {
  position: absolute;
  inset: 7%;
  border-radius: 18px;
  background:
    linear-gradient(90deg, transparent 0 11.5%, rgba(225, 242, 216, 0.18) 11.5% 11.8%, transparent 11.8% 22%, rgba(225, 242, 216, 0.18) 22% 22.3%, transparent 22.3% 33%, rgba(225, 242, 216, 0.18) 33% 33.3%, transparent 33.3% 44%, rgba(225, 242, 216, 0.18) 44% 44.3%, transparent 44.3% 55%, rgba(225, 242, 216, 0.18) 55% 55.3%, transparent 55.3% 66%, rgba(225, 242, 216, 0.18) 66% 66.3%, transparent 66.3% 77%, rgba(225, 242, 216, 0.18) 77% 77.3%, transparent 77.3% 88%, rgba(225, 242, 216, 0.18) 88% 88.3%, transparent 88.3% 100%),
    linear-gradient(180deg, transparent 0 13%, rgba(225, 242, 216, 0.18) 13% 13.3%, transparent 13.3% 29%, rgba(225, 242, 216, 0.18) 29% 29.3%, transparent 29.3% 45%, rgba(225, 242, 216, 0.18) 45% 45.3%, transparent 45.3% 62%, rgba(225, 242, 216, 0.18) 62% 62.3%, transparent 62.3% 77%, rgba(225, 242, 216, 0.18) 77% 77.3%, transparent 77.3% 100%);
  opacity: 0.8;
}

.hero__scene-marker {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.32), transparent 32%),
    linear-gradient(180deg, #17324e 0%, #102130 100%);
  border: 3px solid rgba(240, 173, 79, 0.92);
  box-shadow: 0 12px 22px rgba(3, 10, 16, 0.28);
  display: grid;
  place-items: center;
  color: #f7f1e7;
  font-weight: 900;
  font-size: 1.4rem;
}

.hero__scene-marker::before,
.hero__scene-marker::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(240, 173, 79, 0.5);
}

.hero__scene-marker::before {
  top: -12px;
  width: 18px;
  height: 2px;
}

.hero__scene-marker::after {
  bottom: -12px;
  width: 18px;
  height: 2px;
}

.hero__scene-marker--one {
  left: 30%;
  top: 16%;
}

.hero__scene-marker--two {
  left: 48%;
  top: 44%;
}

.hero__scene-marker--three {
  left: 62%;
  top: 72%;
}

.hero__scene-caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0.4rem;
  color: rgba(247, 241, 231, 0.84);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero__scene-caption strong {
  color: var(--gold);
}

main {
  position: relative;
  z-index: 2;
}

.section {
  width: min(1320px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: 5.2rem 0;
}

.section__header {
  margin-bottom: 1.8rem;
}

.section h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  max-width: 12ch;
}

.section__lede {
  max-width: 62ch;
  margin: 0.95rem 0 0;
  font-size: 1.03rem;
  line-height: 1.72;
  color: var(--muted);
}

.pitch-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.7fr);
  gap: 1.6rem;
  align-items: start;
}

.pitch-stage {
  position: relative;
}

.pitch-stage__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.4rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.pitch-stage__meta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  color: var(--green-dark);
}

.legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.legend__dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  display: inline-block;
}

.legend__dot--field {
  background: var(--gold);
}

.legend__dot--bench {
  background: #80bf9b;
}

.legend__dot--dugout {
  background: var(--navy);
}

.pitch-shell {
  position: relative;
  padding: 1.6rem;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 18%),
    linear-gradient(180deg, #143424 0%, #0f251b 100%);
  box-shadow: var(--shadow);
}

.pitch-shadow {
  position: absolute;
  inset: auto 7% 4% 7%;
  height: 20px;
  border-radius: 999px;
  background: rgba(4, 13, 16, 0.55);
  filter: blur(18px);
  transform: translateY(24px);
}

.pitch-board {
  position: relative;
  aspect-ratio: 1.72 / 1;
  border-radius: 24px;
  margin: 0 auto;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 6.25%, rgba(255, 255, 255, 0.075) 6.25% 12.5%, rgba(255, 255, 255, 0.035) 12.5% 18.75%, rgba(255, 255, 255, 0.075) 18.75% 25%, rgba(255, 255, 255, 0.035) 25% 31.25%, rgba(255, 255, 255, 0.075) 31.25% 37.5%, rgba(255, 255, 255, 0.035) 37.5% 43.75%, rgba(255, 255, 255, 0.075) 43.75% 50%, rgba(255, 255, 255, 0.035) 50% 56.25%, rgba(255, 255, 255, 0.075) 56.25% 62.5%, rgba(255, 255, 255, 0.035) 62.5% 68.75%, rgba(255, 255, 255, 0.075) 68.75% 75%, rgba(255, 255, 255, 0.035) 75% 81.25%, rgba(255, 255, 255, 0.075) 81.25% 87.5%, rgba(255, 255, 255, 0.035) 87.5% 93.75%, rgba(255, 255, 255, 0.075) 93.75% 100%),
    linear-gradient(180deg, #1a8d39 0%, #167232 48%, #0d5a27 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.15),
    inset 0 28px 40px rgba(255, 255, 255, 0.04),
    0 20px 35px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.pitch-board::before {
  content: "";
  position: absolute;
  inset: 4%;
  border-radius: 18px;
  border: 2px solid rgba(237, 250, 225, 0.88);
  box-shadow: inset 0 0 0 1px rgba(4, 15, 8, 0.08);
}

.pitch-board::after {
  content: "";
  position: absolute;
  inset: 4% 4% 4% 4%;
  border-radius: 18px;
  background:
    linear-gradient(180deg, transparent 49.4%, rgba(237, 250, 225, 0.86) 49.4% 50.6%, transparent 50.6% 100%),
    linear-gradient(90deg, transparent 49.2%, rgba(237, 250, 225, 0.86) 49.2% 50.8%, transparent 50.8% 100%),
    linear-gradient(180deg, transparent 0 12%, rgba(237, 250, 225, 0.86) 12% 12.4%, transparent 12.4% 88%, rgba(237, 250, 225, 0.86) 88% 88.4%, transparent 88.4% 100%),
    linear-gradient(90deg, transparent 0 6%, rgba(237, 250, 225, 0.86) 6% 6.4%, transparent 6.4% 93.6%, rgba(237, 250, 225, 0.86) 93.6% 94%, transparent 94% 100%);
  opacity: 0.62;
}

.pitch-board__surface,
.pitch-board__slots,
.pitch-board__markers {
  position: absolute;
  inset: 4%;
  border-radius: 18px;
}

.pitch-board__surface {
  background:
    linear-gradient(90deg, transparent 0 25%, rgba(255, 255, 255, 0.025) 25% 50%, transparent 50% 75%, rgba(255, 255, 255, 0.018) 75% 100%),
    linear-gradient(180deg, transparent 0 18%, rgba(255, 255, 255, 0.03) 18% 50%, transparent 50% 68%, rgba(255, 255, 255, 0.018) 68% 100%);
  mix-blend-mode: soft-light;
}

.pitch-board__slots {
  pointer-events: none;
}

.slot {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 6.9%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(232, 245, 220, 0.52);
  background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02) 55%, transparent 70%);
  color: rgba(240, 250, 228, 0.9);
  display: grid;
  place-items: center;
  font-size: clamp(0.65rem, 1vw, 0.9rem);
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(4, 17, 9, 0.16);
}

.slot span {
  display: block;
  text-align: center;
  line-height: 1;
  transform: rotate(4deg);
}

.slot strong {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.72;
}

.pitch-board__markers {
  pointer-events: none;
}

.marker {
  position: absolute;
  transform: translate(-50%, -50%);
  width: clamp(56px, 5vw, 76px);
  aspect-ratio: 1;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: none;
  pointer-events: auto;
  transition: transform 180ms ease, filter 180ms ease, opacity 180ms ease;
}

.marker:hover {
  transform: translate(-50%, -54%) scale(1.04);
}

.marker.is-active {
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.26));
}

.marker.is-bench {
  opacity: 0.45;
  filter: grayscale(0.25);
}

.marker__disc {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 4px solid rgba(240, 173, 79, 0.95);
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.28), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.05)),
    #102130;
  box-shadow:
    0 10px 18px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.marker__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.marker__fallback {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(180deg, #163d27 0%, #102130 100%);
  color: #f7f1e7;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.inspector {
  display: grid;
  gap: 1rem;
}

.inspector__panel {
  padding: 1.25rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 33, 48, 0.08);
  box-shadow: 0 20px 40px rgba(16, 33, 48, 0.08);
}

.selected {
  display: grid;
  gap: 0.85rem;
}

.selected__photo {
  margin: 0;
  border-radius: 50%;
  overflow: clip;
  background: #dde4d7;
  aspect-ratio: 1 / 1;
  width: min(42%, 170px);
  margin-inline: auto;
}

.selected__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  gap: 0.3rem;
  padding: 1rem;
  text-align: center;
  background:
    radial-gradient(circle at 50% 18%, rgba(240, 173, 79, 0.32), transparent 40%),
    linear-gradient(145deg, rgba(16, 33, 48, 0.08), rgba(16, 33, 48, 0.02));
  color: var(--navy);
}

.portrait-fallback span {
  display: grid;
  place-items: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: rgba(16, 33, 48, 0.88);
  color: #f7f1e7;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 1.35rem;
}

.portrait-fallback strong {
  font-size: 0.82rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  max-width: 14ch;
}

.selected__label {
  color: var(--green);
  margin: 0;
}

.selected h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.05;
  color: var(--ink);
}

.selected__position {
  margin: -0.2rem 0 0;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}

.selected__summary {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.selected__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.selected__meta div {
  padding: 0.75rem 0.85rem;
  border-radius: 16px;
  background: rgba(16, 33, 48, 0.05);
}

.selected__meta dt {
  margin: 0 0 0.18rem;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  font-weight: 800;
}

.selected__meta dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.selected__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.3rem;
}

.selected__actions .button {
  min-height: 2.75rem;
  padding-inline: 1rem;
}

.selected__actions .button--ghost {
  border-color: rgba(16, 33, 48, 0.16);
  color: var(--navy);
}

.selected__actions .button--primary {
  color: #0f1c29;
}

.selected__actions a {
  border: 1px solid rgba(16, 33, 48, 0.16);
  background: rgba(255, 255, 255, 0.74);
  color: var(--navy);
}

.host-list {
  display: grid;
  gap: 0.85rem;
}

.host-card {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  padding: 0.8rem;
  border-radius: 18px;
  background: rgba(16, 33, 48, 0.04);
}

.host-card img {
  width: 78px;
  height: 78px;
  object-fit: cover;
  border-radius: 16px;
}

.host-card h3 {
  margin: 0 0 0.2rem;
  font-size: 1rem;
  color: var(--ink);
}

.host-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.92rem;
}

.bench-root {
  display: grid;
  gap: 0.95rem;
}

.bench-empty {
  padding: 1.1rem 1.2rem;
  border-radius: 20px;
  background: rgba(240, 173, 79, 0.12);
  color: var(--navy);
  border: 1px dashed rgba(240, 173, 79, 0.42);
  font-weight: 700;
}

.bench-card {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.85rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 33, 48, 0.08);
  box-shadow: 0 16px 24px rgba(16, 33, 48, 0.05);
}

.bench-card__avatar {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  overflow: clip;
  background: #dde4d7;
}

.bench-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bench-card__avatar .portrait-fallback {
  font-size: 0.7rem;
}

.bench-card__avatar .portrait-fallback span {
  width: 2.8rem;
  height: 2.8rem;
  font-size: 0.88rem;
}

.bench-card__avatar .portrait-fallback strong {
  font-size: 0.62rem;
  max-width: 8ch;
}

.bench-card h3 {
  margin: 0 0 0.22rem;
  font-size: 1rem;
  color: var(--ink);
}

.bench-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.92rem;
}

.bench-card__actions button {
  border: 0;
  background: var(--green);
  color: #f7f1e7;
  border-radius: 999px;
  min-height: 2.5rem;
  padding: 0 1rem;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.archive-card {
  display: grid;
  gap: 0.7rem;
  padding: 1.1rem 1.15rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(16, 33, 48, 0.08);
  box-shadow: 0 16px 30px rgba(16, 33, 48, 0.05);
}

.archive-card__top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: baseline;
  justify-content: space-between;
}

.archive-card__episode {
  margin: 0;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  font-weight: 800;
}

.archive-card h3 {
  margin: 0;
  font-size: 1.18rem;
  color: var(--ink);
}

.archive-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.archive-card__status {
  width: fit-content;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: rgba(240, 173, 79, 0.14);
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.archive-card__link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #1546a8;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.archive-card__link:hover {
  color: #113786;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

body.is-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    min-height: auto;
    padding-bottom: 2.8rem;
  }

  .hero__scene {
    justify-self: stretch;
    width: 100%;
  }

  .pitch-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .hero__brand {
    flex-direction: column;
  }

  .hero__links {
    justify-items: start;
  }

  .section {
    width: min(100vw - 1rem, 1320px);
    padding: 4rem 0;
  }

  .pitch-shell {
    padding: 1rem;
    border-radius: 26px;
  }

  .pitch-board {
    transform: none;
    aspect-ratio: 1 / 1.15;
  }

  .pitch-stage__meta {
    align-items: flex-start;
  }

  .slot {
    width: 8.6%;
  }

  .marker {
    width: clamp(70px, 18vw, 96px);
  }
}

@media (max-width: 640px) {
  .hero__logo {
    width: 126px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .hero__scene-caption {
    flex-direction: column;
    align-items: flex-start;
  }

  .bench-card {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .bench-card__actions {
    grid-column: 1 / -1;
  }

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