@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/inter-var.woff2") format("woff2");
}

:root {
  color-scheme: light dark;
  --neutral-primary-soft: #ffffff;
  --neutral-primary: #ffffff;
  --neutral-secondary-soft: #f9fafb;
  --neutral-secondary-medium: #f9fafb;
  --neutral-tertiary-soft: #f3f4f6;
  --neutral-tertiary-medium: #f3f4f6;
  --border-default: #e5e7eb;
  --border-default-medium: #e5e7eb;
  --heading: #111827;
  --body: #4b5563;
  --body-subtle: #6b7280;
  --brand-softer: #eef6ff;
  --brand-soft: #dbeafe;
  --brand: #1447e6;
  --brand-medium: #bedbff;
  --brand-strong: #193cb8;
  --fg-brand: #1447e6;
  --fg-brand-strong: #193cb8;
  --success: #007a55;
  --white: #ffffff;
  --dark: #1f2937;
  --overlay: rgb(17 24 39 / 0.92);
  --color-1-400: rgb(255 255 255 / 0.25);
  --color-1-700: rgb(0 0 0 / 0.12);
  --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --radius: 8px;
  --max: 1152px;
  --read: 768px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --neutral-primary-soft: #101828;
    --neutral-primary: #030712;
    --neutral-secondary-soft: #101828;
    --neutral-secondary-medium: #1e2939;
    --neutral-tertiary-soft: #101828;
    --neutral-tertiary-medium: #333e4f;
    --border-default: #64748b;
    --border-default-medium: #94a3b8;
    --heading: #ffffff;
    --body: #9ca3af;
    --body-subtle: #9ca3af;
    --brand-softer: #162455;
    --brand-soft: #1c398e;
    --brand: #155dfc;
    --brand-medium: #1c398e;
    --brand-strong: #1447e6;
    --fg-brand: #51a2ff;
    --fg-brand-strong: #bedbff;
    --success: #009966;
    --dark: #1f2937;
    --overlay: rgb(3 7 18 / 0.92);
    --color-1-400: rgb(255 255 255 / 0.12);
    --color-1-700: rgb(0 0 0 / 0.25);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--neutral-primary);
  color: var(--body);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

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

a {
  color: var(--fg-brand);
  text-underline-offset: 0.22em;
}

a:hover {
  text-decoration: none;
}

a:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 4px;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--heading);
  font-weight: 600;
}

h1 {
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.8px;
}

h2 {
  font-size: 28px;
  line-height: 1.15;
}

h3 {
  font-size: 24px;
  line-height: 1.2;
}

p {
  margin: 0 0 16px;
  text-wrap: pretty;
}

.skip-link {
  position: absolute;
  z-index: 30;
  top: 8px;
  left: 8px;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: var(--brand);
  box-shadow: var(--shadow-xs), inset var(--color-1-400) 0 6px 0 -5px, var(--color-1-700) 0 4px 10px -5px;
  color: var(--white);
  font-weight: 500;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 32px;
  width: min(calc(100% - 48px), var(--max));
  margin: auto;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-default);
}

.brand img {
  width: 160px;
  height: 64px;
  object-fit: contain;
}

.site-header nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.site-header nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: var(--radius);
  color: var(--heading);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.site-header nav a:hover {
  background: var(--neutral-secondary-medium);
}

.status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--body-subtle);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.status i {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: var(--success);
}

.command-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.7fr);
  gap: 1px;
  width: min(calc(100% - 48px), var(--max));
  margin: 96px auto;
  overflow: hidden;
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  background: var(--border-default);
  box-shadow: var(--shadow-xs);
}

.command-hero > * {
  background: var(--neutral-primary-soft);
}

.hero-copy {
  grid-row: span 2;
  padding: clamp(48px, 6vw, 96px);
}

.eyebrow {
  color: var(--fg-brand-strong);
  font-size: 12px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.hero-copy > p:nth-of-type(2) {
  max-width: 58ch;
  margin: 24px 0;
  font-size: 20px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.hero-actions a {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--border-default-medium);
  border-radius: var(--radius);
  background: var(--neutral-secondary-medium);
  box-shadow: var(--shadow-xs), inset var(--color-1-400) 0 6px 0 -5px, var(--color-1-700) 0 4px 10px -5px;
  color: var(--body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.hero-actions a:hover {
  background: var(--neutral-tertiary-medium);
  color: var(--heading);
}

.hero-actions a:active {
  box-shadow: var(--shadow-xs);
}

.hero-actions a:first-child {
  border-color: transparent;
  background: var(--brand);
  color: var(--white);
}

.hero-actions a:first-child:hover {
  background: var(--brand-strong);
  color: var(--white);
}

.command-hero figure {
  position: relative;
  min-height: 400px;
  margin: 0;
}

.command-hero figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.05);
}

.command-hero figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--overlay);
  box-shadow: var(--shadow-xs);
  color: var(--white);
  font-size: 14px;
  line-height: 1.6;
}

.command-hero figcaption span {
  display: block;
  color: var(--fg-brand);
  font-weight: 500;
  text-transform: uppercase;
}

.scoreboard {
  padding: 24px;
}

.scoreboard > p {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.scoreboard dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  background: var(--border-default);
  box-shadow: var(--shadow-xs);
}

.scoreboard dl div {
  padding: 16px;
  background: var(--neutral-secondary-soft);
}

.scoreboard dt {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.scoreboard dd {
  margin: 8px 0 0;
  color: var(--heading);
  font-size: 20px;
  font-weight: 600;
}

.court-map,
.plays {
  width: min(calc(100% - 48px), var(--max));
  margin: 96px auto;
}

.court-map header,
.plays > header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  margin-bottom: 48px;
}

.court-map ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.court-map li {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  background: var(--neutral-primary-soft);
  box-shadow: var(--shadow-xs);
}

.court-map li span {
  color: var(--fg-brand);
  font-size: 12px;
  font-weight: 500;
}

.court-map li strong {
  margin: auto 0;
  color: var(--heading);
  font-size: 20px;
  font-weight: 600;
}

.court-map li a {
  font-size: 14px;
  font-weight: 500;
}

.play-card {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 32px 0;
  border-top: 1px solid var(--border-default);
}

.play-no {
  color: var(--fg-brand);
  font-size: 12px;
  font-weight: 500;
}

.play-card > div {
  display: grid;
  grid-template-columns: 130px minmax(240px, 1.2fr) minmax(240px, 1fr);
  gap: 24px;
}

.play-card > div > p:first-child {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.play-card h3 {
  font-size: 20px;
  line-height: 1.25;
}

.play-card h3 a {
  color: var(--heading);
  text-decoration: none;
}

.play-card h3 a:hover {
  color: var(--fg-brand);
}

.breadcrumb {
  display: flex;
  gap: 16px;
  width: min(calc(100% - 48px), var(--max));
  margin: 32px auto;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.route-header,
.playbook-header {
  width: min(calc(100% - 48px), var(--max));
  margin: 64px auto;
}

.route-header > p:last-child,
.playbook-header > p {
  max-width: 65ch;
  margin-top: 16px;
  font-size: 20px;
  line-height: 1.7;
}

.article-shell {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 48px;
  width: min(calc(100% - 48px), var(--max));
  margin: 64px auto 96px;
}

.article-shell aside {
  position: sticky;
  top: 24px;
  align-self: start;
  padding: 24px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  background: var(--neutral-primary-soft);
  box-shadow: var(--shadow-xs);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.article-shell aside span,
.article-shell aside a {
  display: block;
  margin-top: 16px;
}

.reading {
  max-width: var(--read);
}

.reading header {
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-default);
}

.lede {
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.7;
}

.article-hero {
  width: 100%;
  max-height: 500px;
  margin-top: 32px;
  object-fit: cover;
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
}

.prose {
  padding-top: 48px;
  color: var(--body);
  font-size: 16px;
  line-height: 1.7;
}

.prose h2,
.prose h3 {
  margin: 48px 0 16px;
}

.prose p,
.prose ul,
.prose ol,
.prose blockquote,
.prose table {
  max-width: 65ch;
  margin: 0 0 24px;
}

.prose img {
  width: 100%;
  margin: 32px 0;
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
}

.video-poster {
  margin: 32px 0;
  overflow: hidden;
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  background: var(--neutral-primary-soft);
  box-shadow: var(--shadow-xs);
}

.video-poster a {
  display: block;
  text-decoration: none;
}

.video-poster img {
  aspect-ratio: 16 / 9;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
}

.video-poster figcaption {
  padding: 16px;
  background: var(--neutral-primary-soft);
  font-size: 14px;
  font-weight: 500;
}

.prose blockquote {
  padding: 24px;
  border-left: 4px solid var(--brand);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--neutral-secondary-soft);
}

.prose table {
  width: 100%;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  background: var(--neutral-primary-soft);
  box-shadow: var(--shadow-xs);
}

.prose th,
.prose td {
  padding: 12px 24px;
  border-bottom: 1px solid var(--border-default);
  text-align: left;
}

.prose tr:last-child th,
.prose tr:last-child td {
  border-bottom: 0;
}

.prose th {
  color: var(--heading);
  font-weight: 500;
}

.disclosure {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  margin-top: 40px;
  padding: 24px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  background: var(--neutral-primary-soft);
  box-shadow: var(--shadow-xs);
}

.sequence {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto 96px;
}

.sequence article {
  display: grid;
  grid-template-columns: 170px minmax(260px, 1fr) minmax(260px, 1fr);
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--border-default);
}

.sequence article > span {
  color: var(--fg-brand);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.sequence h2 {
  font-size: 20px;
  line-height: 1.25;
}

.sequence h2 a {
  color: var(--heading);
  text-decoration: none;
}

.sequence h2 a:hover {
  color: var(--fg-brand);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding: 48px max(24px, calc((100% - var(--max)) / 2));
  border-top: 1px solid var(--border-default);
  background: var(--neutral-secondary-soft);
}

.site-footer > div {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
}

.site-footer img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.site-footer nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.site-footer nav a {
  font-size: 14px;
  font-weight: 500;
}

@media (prefers-color-scheme: dark) {
  .brand img,
  .site-footer img {
    filter: brightness(0) invert(1);
  }
}

@media (min-width: 768px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 30px;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 60px;
    line-height: 1;
  }

  h2 {
    font-size: 44px;
  }

  h3 {
    font-size: 36px;
  }
}

@media (max-width: 850px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow: auto;
  }

  .status {
    display: none;
  }

  .command-hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    grid-row: auto;
  }

  .court-map ol {
    grid-template-columns: 1fr 1fr;
  }

  .court-map header,
  .plays > header,
  .play-card > div,
  .article-shell,
  .sequence article {
    grid-template-columns: 1fr;
  }

  .play-card {
    grid-template-columns: 40px 1fr auto;
  }

  .article-shell aside {
    position: static;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .site-header,
  .command-hero,
  .court-map,
  .plays,
  .breadcrumb,
  .route-header,
  .playbook-header,
  .article-shell,
  .sequence {
    width: calc(100% - 32px);
  }

  .site-header nav {
    gap: 0;
  }

  .site-header nav a {
    padding-inline: 8px;
  }

  .command-hero,
  .court-map,
  .plays {
    margin-block: 64px;
  }

  .hero-copy {
    padding: 48px 24px;
  }

  .court-map ol,
  .scoreboard dl {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-inline: 16px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  a {
    transition: color 150ms, background-color 150ms;
  }
}

/* VibeCurb hero rework: full-bleed athlete portrait with restrained choreography. */
.command-hero {
  --hero-ink: #f9fafb;
  --hero-muted: #d1d5db;
  --hero-blue: #60a5fa;
  --hero-spring: linear(
    0,
    0.009,
    0.035 2.1%,
    0.141 4.4%,
    0.723 12.9%,
    0.938 16.7%,
    1.017 19.4%,
    1.067 22.5%,
    1.089 26%,
    1.079 30.3%,
    1.049 36%,
    1.024 42.6%,
    1.011 50.3%,
    1.004 59.2%,
    1.001 69.3%,
    1
  );
  --hero-snap: cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  display: grid;
  grid-template: 1fr auto / minmax(0, 1fr);
  align-items: end;
  isolation: isolate;
  min-height: min(680px, calc(100dvh - 120px));
  width: min(calc(100% - 48px), var(--max));
  margin: 24px auto 96px;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: #101828;
  box-shadow: var(--shadow-sm);
}

.command-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgb(3 7 18 / 0.9) 0%,
      rgb(3 7 18 / 0.56) 48%,
      transparent 78%
    ),
    linear-gradient(0deg, rgb(3 7 18 / 0.86) 0%, transparent 42%);
  pointer-events: none;
}

.command-hero > * {
  background: transparent;
}

.command-hero figure {
  position: absolute;
  z-index: -2;
  inset: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
}

.command-hero figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 34%;
  filter: saturate(0.72) contrast(1.08);
}

.command-hero figcaption {
  right: 24px;
  top: 22px;
  bottom: auto;
  left: auto;
  width: max-content;
  max-width: calc(100% - 48px);
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--hero-muted);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-align: right;
}

.command-hero figcaption span {
  color: var(--hero-blue);
  letter-spacing: 0.12em;
}

.hero-copy {
  grid-row: 1;
  align-self: center;
  max-width: 900px;
  padding: clamp(56px, 8vw, 112px);
}

.hero-copy .eyebrow {
  color: var(--hero-blue);
}

.hero-copy h1 {
  max-width: 9ch;
  color: var(--hero-ink);
  font-family: "Inter", sans-serif;
  font-size: clamp(4rem, 9.2vw, 8.2rem);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.hero-copy > p:nth-of-type(2) {
  max-width: 43ch;
  margin: clamp(24px, 4vh, 40px) 0 0;
  color: var(--hero-muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.55;
}

.hero-actions {
  align-items: center;
  gap: 20px;
  margin-top: clamp(28px, 4vh, 42px);
}

.hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid rgb(255 255 255 / 0.38);
  border-radius: 999px;
  background: transparent;
  color: var(--hero-ink);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.025em;
}

.hero-actions a:first-child {
  border-color: var(--brand);
  background: var(--brand);
}

.hero-actions a:last-child {
  min-height: 44px;
  padding-inline: 0;
  border: 0;
  border-radius: 0;
  color: var(--hero-ink);
  text-decoration: underline;
  text-decoration-color: rgb(255 255 255 / 0.38);
  text-underline-offset: 0.35em;
}

.scoreboard {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(520px, calc(100% - 48px));
  margin: 0 24px 20px auto;
  padding: 0;
  color: var(--hero-muted);
}

.scoreboard > p {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.scoreboard dl {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-color: rgb(255 255 255 / 0.38);
  background: rgb(255 255 255 / 0.38);
  box-shadow: none;
}

.scoreboard dl div {
  padding: 12px 16px;
  background: rgb(3 7 18 / 0.76);
}

.scoreboard dt {
  color: var(--hero-muted);
}

.scoreboard dd {
  color: var(--hero-ink);
}

@media (prefers-reduced-motion: no-preference) {
  .command-hero {
    animation: hero-frame-in 480ms var(--hero-spring) both;
  }

  .command-hero figure {
    animation: hero-image-in 620ms var(--hero-spring) both;
  }

  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-copy > p:nth-of-type(2),
  .hero-actions,
  .scoreboard,
  .command-hero figcaption {
    animation: hero-copy-in 580ms var(--hero-spring) both;
  }

  .hero-copy .eyebrow {
    animation-delay: 60ms;
  }

  .hero-copy h1 {
    animation-delay: 130ms;
  }

  .hero-copy > p:nth-of-type(2) {
    animation-delay: 220ms;
  }

  .hero-actions {
    animation-delay: 310ms;
  }

  .scoreboard,
  .command-hero figcaption {
    animation-delay: 390ms;
  }

  .hero-actions a {
    transition:
      transform 420ms var(--hero-snap),
      box-shadow 420ms var(--hero-snap),
      background-color 300ms var(--hero-snap),
      color 300ms var(--hero-snap);
  }

  .hero-actions a:hover {
    transform: translateY(-2px);
  }

  .hero-actions a:first-child:hover {
    box-shadow: 0 14px 34px rgb(20 71 230 / 0.32);
  }

  .hero-actions a:active {
    transform: translateY(0) scale(0.97);
  }

  .command-hero figure img {
    animation: hero-scroll-settle 1s both;
    animation-timeline: scroll(root);
    animation-range: 0 720px;
  }
}

@keyframes hero-frame-in {
  from {
    opacity: 0;
    transform: scale(0.985);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes hero-image-in {
  from {
    opacity: 0;
    transform: scale(1.035);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-scroll-settle {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.045) translateY(12px);
  }
}

@media (max-width: 850px) {
  .command-hero {
    grid-template: 1fr auto / 1fr;
    min-height: min(720px, calc(100dvh - 145px));
  }

  .hero-copy {
    grid-row: 1;
    align-self: end;
    padding: 52px 34px 128px;
  }

  .hero-copy h1 {
    font-size: clamp(3.6rem, 13vw, 6.5rem);
  }

  .scoreboard {
    right: 0;
    bottom: 0;
  }
}

@media (max-width: 520px) {
  .command-hero {
    min-height: 650px;
    width: calc(100% - 28px);
    margin-top: 14px;
    margin-bottom: 72px;
  }

  .command-hero::after {
    background:
      linear-gradient(
        0deg,
        rgb(3 7 18 / 0.96) 0%,
        rgb(3 7 18 / 0.65) 66%,
        rgb(3 7 18 / 0.15) 100%
      ),
      linear-gradient(90deg, rgb(3 7 18 / 0.3), transparent);
  }

  .command-hero figure img {
    object-position: 66% 22%;
  }

  .hero-copy {
    padding: 40px 24px 108px;
  }

  .hero-copy h1 {
    font-size: clamp(3.35rem, 16.5vw, 5rem);
  }

  .hero-copy > p:nth-of-type(2) {
    max-width: 34ch;
    font-size: 0.98rem;
  }

  .hero-actions {
    gap: 12px 18px;
  }

  .hero-actions a {
    padding-inline: 17px;
  }

  .scoreboard {
    width: calc(100% - 32px);
    margin: 0 16px 16px;
  }

  .scoreboard dl {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .scoreboard dl div {
    padding: 10px;
  }

  .scoreboard dt {
    font-size: 10px;
  }

  .scoreboard dd {
    font-size: 18px;
  }

  .command-hero figcaption {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .command-hero,
  .command-hero figure,
  .command-hero figure img,
  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-copy > p:nth-of-type(2),
  .hero-actions,
  .scoreboard,
  .command-hero figcaption {
    animation: none !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (prefers-color-scheme: dark) {
  a {
    transition: none;
  }

  .hero-actions a {
    transition: transform 420ms var(--hero-snap), box-shadow 420ms var(--hero-snap);
  }
}
