:root {
  --bg: #eef6ff;
  --panel: rgba(255, 255, 255, 0.92);
  --panel-strong: #ffffff;
  --line: rgba(39, 97, 177, 0.16);
  --text: #12345d;
  --muted: #5d79a1;
  --blue: #1f6ed4;
  --blue-strong: #0d4ea6;
  --blue-soft: #dcecff;
  --track: #cfe3ff;
  --gold: #f3b637;
  --green: #17945f;
  --red: #ca4b52;
  --shadow: 0 20px 50px rgba(28, 81, 153, 0.12);
}

body.series-home {
  min-height: 100vh;
  background: #f5f9ff;
  overflow-x: hidden;
}

.series-cover {
  position: relative;
  display: grid;
  min-height: 100vh;
  isolation: isolate;
  overflow: hidden;
  color: #061f55;
}

.series-cover-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.series-cover-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0.55) 36%, rgba(255, 255, 255, 0.16) 66%, rgba(255, 255, 255, 0.04) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.08) 48%, rgba(232, 243, 255, 0.78) 100%);
}

.series-cover-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  align-self: start;
  padding: 24px 36px;
}

.series-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #082a67;
  text-decoration: none;
}

.series-brand img {
  width: 40px;
  height: 40px;
}

.series-brand strong,
.series-brand small {
  display: block;
}

.series-brand strong {
  font-size: 16px;
  line-height: 1.1;
}

.series-brand small {
  margin-top: 3px;
  color: #56739b;
  font-size: 12px;
  font-style: italic;
}

.series-mini-nav {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(28, 103, 220, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 38px rgba(22, 88, 178, 0.12);
  backdrop-filter: blur(12px);
}

.series-mini-nav a {
  display: inline-grid;
  width: 46px;
  height: 34px;
  place-items: center;
  border-radius: 6px;
  color: #0d4ea6;
  text-decoration: none;
  font-weight: 900;
}

.series-mini-nav a:hover,
.series-mini-nav a:focus-visible {
  background: #0f69de;
  color: #fff;
  outline: none;
}

.series-cover-copy {
  align-self: center;
  width: min(760px, calc(100vw - 56px));
  margin: 0 0 0 8%;
  padding-top: 42px;
}

.series-kicker {
  margin: 0 0 12px;
  color: #0f69de;
  font-size: 15px;
  font-weight: 900;
}

.series-cover-copy h1 {
  margin: 0;
  max-width: 720px;
  color: #061f55;
  font-size: 64px;
  line-height: 0.96;
}

.series-cover-copy p:last-child {
  max-width: 610px;
  margin: 18px 0 0;
  color: #244365;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.75;
}

.series-hall-switcher {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-self: end;
  width: min(1180px, calc(100vw - 56px));
  margin: 0 auto 34px;
}

.series-hall-card {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 110px;
  padding: 16px;
  border: 1px solid rgba(20, 92, 196, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 52px rgba(22, 88, 178, 0.14);
  text-decoration: none;
  backdrop-filter: blur(14px);
  transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.series-hall-card:hover,
.series-hall-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(15, 105, 222, 0.42);
  box-shadow: 0 24px 62px rgba(22, 88, 178, 0.2);
  outline: none;
}

.series-hall-card.featured {
  border-color: rgba(15, 105, 222, 0.32);
  background: rgba(255, 255, 255, 0.9);
}

.series-hall-card.upcoming {
  border-color: rgba(23, 148, 95, 0.2);
}

.series-hall-number {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #0f69de, #0a3b97);
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.series-hall-card.upcoming .series-hall-number {
  background: linear-gradient(135deg, #17945f, #0a6a43);
}

.series-hall-body strong,
.series-hall-body small {
  display: block;
}

.series-hall-body strong {
  color: #082a67;
  font-size: 22px;
  line-height: 1.25;
}

.series-hall-body small {
  margin-top: 8px;
  color: #5d79a1;
  font-size: 14px;
  font-weight: 800;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "PingFang SC", "Noto Sans SC", "Helvetica Neue", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 36%),
    linear-gradient(180deg, #f7fbff 0%, var(--bg) 100%);
  color: var(--text);
}

a {
  color: inherit;
}

.page-shell {
  min-height: 100vh;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 28px 44px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(231, 242, 255, 0.88)),
    linear-gradient(180deg, #fafdff, #e8f2ff);
}

.hero-track {
  position: absolute;
  border: 14px solid rgba(31, 110, 212, 0.16);
  border-radius: 999px;
  transform: rotate(-8deg);
}

.hero-track-a {
  width: 620px;
  height: 220px;
  top: -42px;
  right: -110px;
}

.hero-track-b {
  width: 480px;
  height: 180px;
  bottom: -70px;
  left: -80px;
  border-width: 10px;
}

.hero-copy {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 12px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
}

.intro {
  max-width: 820px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-actions a,
.hero-button {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid rgba(31, 110, 212, 0.16);
  border-radius: 8px;
  background: #fff;
  color: var(--blue-strong);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.hero-button {
  cursor: pointer;
  font-family: inherit;
}

.compact-hero {
  padding-bottom: 34px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 26px;
  max-width: 860px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(31, 110, 212, 0.12);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
}

.stat-card strong {
  display: block;
  font-size: 26px;
  color: var(--blue-strong);
}

.stat-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.panel + .panel,
.two-column,
.content > .panel {
  margin-top: 20px;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 18px;
}

.panel-header h2 {
  margin: 0;
  font-size: 22px;
}

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

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.filters {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.filters input,
.filters select {
  border: 1px solid rgba(31, 110, 212, 0.2);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  background: #fff;
  color: var(--text);
}

.filters input {
  flex: 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 14px;
}

.project-card {
  position: relative;
  overflow: hidden;
  background: var(--panel-strong);
  border: 1px solid rgba(31, 110, 212, 0.12);
  border-radius: 14px;
  padding: 18px;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), #76b2ff, var(--gold));
}

.project-card h3 {
  margin: 0;
  font-size: 20px;
}

.meta-row,
.member-row {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.score-chip,
.mode-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.score-chip {
  background: var(--blue-soft);
  color: var(--blue-strong);
}

.mode-chip {
  background: #dff7ea;
  color: #086c42;
  border: 1px solid rgba(23, 148, 95, 0.22);
}

.status-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.status-rail span {
  border: 1px solid rgba(31, 110, 212, 0.14);
  border-radius: 8px;
  padding: 6px 8px;
  background: #f7fbff;
  color: var(--blue-strong);
  font-size: 12px;
  line-height: 1.35;
}

.status-rail.muted span {
  background: #fff;
  color: var(--muted);
}

.card-copy {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.7;
}

.highlight-line {
  margin: 14px 0 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.65;
}

.highlight-line strong {
  color: var(--blue-strong);
}

.review-comment,
.final-evaluation {
  margin: 14px 0 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.65;
}

.final-evaluation {
  color: var(--muted);
}

.final-evaluation strong {
  color: var(--blue-strong);
}

.card-links {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.card-links a {
  text-decoration: none;
  padding: 9px 12px;
  border-radius: 10px;
  border: 1px solid rgba(31, 110, 212, 0.15);
  background: #fff;
  font-size: 13px;
}

.tag-list,
.issue-list {
  display: grid;
  gap: 10px;
}

.innovation-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(8, 45, 95, 0.96), rgba(18, 72, 137, 0.92)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 36px);
  color: #fff;
}

.innovation-panel .panel-header h2,
.innovation-panel .panel-header p {
  color: #fff;
}

.innovation-orbit {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.innovation-tile {
  position: relative;
  min-height: 300px;
  border: 1px solid rgba(191, 224, 255, 0.25);
  border-radius: 12px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.06);
}

.judgement-tile {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.innovation-tile::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #74d4ff, #ffffff, var(--gold));
}

.tile-metric {
  color: #aee2ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.innovation-tile strong {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-size: 19px;
}

.innovation-tile p {
  margin: 12px 0 0;
  color: #d8ecff;
  font-size: 14px;
  line-height: 1.7;
}

.judgement-compare {
  border: 1px solid rgba(174, 226, 255, 0.18);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.07);
}

.judgement-compare span {
  display: block;
  color: #ffd166;
  font-size: 12px;
  font-weight: 900;
}

.judgement-compare p {
  margin-top: 6px;
}

.judgement-examples {
  display: grid;
  gap: 8px;
}

.judgement-examples article {
  display: grid;
  grid-template-columns: minmax(92px, 0.38fr) minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 10px;
}

.judgement-examples b {
  color: #fff;
  font-size: 13px;
  overflow-wrap: anywhere;
}

.judgement-examples span {
  color: #d8ecff;
  font-size: 12px;
  line-height: 1.55;
}

.judgement-examples a {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 4px 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.tile-evidence {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.tile-evidence li {
  border-left: 3px solid rgba(255, 209, 102, 0.75);
  padding-left: 9px;
  color: #eef7ff;
  font-size: 12px;
  line-height: 1.45;
}

.tile-foot {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.tile-foot span {
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
}

.tile-foot span:first-child {
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 5px 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #dff7ff;
  font-weight: 700;
}

.compact-links {
  margin-top: 14px;
}

.riding-cases-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 247, 255, 0.94)),
    linear-gradient(90deg, rgba(31, 110, 212, 0.06), transparent);
}

.riding-case-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.riding-case-card {
  border: 1px solid rgba(31, 110, 212, 0.16);
  border-radius: 12px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(8, 45, 136, 0.08);
}

.riding-case-head {
  display: grid;
  gap: 5px;
}

.riding-case-head span {
  width: fit-content;
  border: 1px solid rgba(23, 148, 95, 0.28);
  border-radius: 999px;
  padding: 5px 9px;
  background: #e8fff3;
  color: #086c42;
  font-size: 12px;
  font-weight: 800;
}

.riding-case-head strong {
  color: var(--text);
  font-size: 22px;
}

.riding-case-head small {
  color: var(--muted);
  font-weight: 700;
}

.riding-case-card h3 {
  margin: 14px 0 8px;
  color: var(--blue-strong);
  font-size: 18px;
}

.riding-case-card p {
  color: var(--muted);
  line-height: 1.7;
}

.riding-case-card .tile-evidence li {
  border-left-color: rgba(31, 110, 212, 0.5);
  color: var(--text);
}

.riding-takeaway {
  margin-top: 12px;
  padding: 10px;
  border-radius: 10px;
  background: #f4f9ff;
}

.case-study-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 246, 255, 0.94));
}

.case-study-card {
  display: grid;
  grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.case-study-score {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 260px;
  border: 1px solid rgba(31, 110, 212, 0.18);
  border-radius: 12px;
  background:
    linear-gradient(180deg, #ffffff, #e7f2ff),
    repeating-linear-gradient(0deg, rgba(31, 110, 212, 0.08) 0 1px, transparent 1px 24px);
}

.case-study-score span {
  color: var(--blue-strong);
  font-size: 13px;
  font-weight: 800;
}

.case-study-score strong {
  margin-top: 8px;
  color: var(--blue-strong);
  font-size: 74px;
  line-height: 1;
}

.case-study-score small {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 700;
}

.case-study-copy h3 {
  margin: 0;
  color: var(--text);
  font-size: 28px;
}

.case-study-copy p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.case-study-copy ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--text);
}

.case-study-copy li {
  margin-bottom: 8px;
  line-height: 1.65;
}

.tag-item,
.issue-item,
.case-card,
.group-card {
  border: 1px solid rgba(31, 110, 212, 0.12);
  border-radius: 12px;
  background: var(--panel-strong);
  padding: 14px 16px;
}

.tag-item strong,
.issue-item strong,
.case-card strong {
  color: var(--blue-strong);
}

.tag-item span,
.issue-item span,
.case-card p,
.group-card p {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.6;
}

.example-strip {
  display: grid;
  gap: 6px;
  margin-top: 10px;
}

.example-strip span {
  margin: 0;
  padding: 7px 9px;
  border-radius: 8px;
  background: #f7fbff;
  color: var(--text);
  font-size: 12px;
  line-height: 1.45;
}

.case-list,
.group-grid {
  display: grid;
  gap: 12px;
}

.case-name-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.case-name-item {
  padding: 12px 14px;
  border: 1px solid rgba(31, 110, 212, 0.12);
  border-radius: 10px;
  background: #fff;
}

.case-name-item strong,
.case-name-item span {
  display: block;
}

.case-name-item strong {
  color: var(--blue-strong);
}

.case-name-item span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.video-case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 16px;
  align-items: stretch;
}

.video-case-card {
  display: flex;
  flex-direction: column;
  height: 650px;
  overflow: hidden;
  border: 1px solid rgba(31, 110, 212, 0.12);
  border-radius: 12px;
  background: var(--panel-strong);
}

.video-list {
  display: grid;
  gap: 10px;
  padding: 10px;
  min-height: 286px;
  background: #0e2f5d;
}

.video-carousel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #dcecff;
  font-size: 12px;
  font-weight: 700;
}

.video-nav-row {
  display: flex;
  gap: 6px;
}

.video-nav-button {
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  padding: 6px 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font: inherit;
  font-size: 12px;
}

.video-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: #0e2f5d;
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0e2f5d;
}

.video-lazy-shell {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 190px;
}

.video-lazy-shell video {
  grid-area: 1 / 1;
}

.load-video-button {
  grid-area: 1 / 1;
  z-index: 1;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-strong);
  font: inherit;
  font-weight: 700;
}

.video-missing {
  display: grid;
  min-height: 190px;
  place-items: center;
  color: #fff;
  font-weight: 700;
}

.video-status {
  display: grid;
  gap: 4px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #dcecff;
  font-size: 12px;
  line-height: 1.35;
}

.video-status small {
  color: #a9c7f1;
}

.video-case-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  overflow: auto;
  padding: 14px 16px 16px;
}

.video-case-body p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.video-case-body .card-links {
  margin-top: auto;
  padding-top: 14px;
}

.project-intro {
  display: -webkit-box;
  min-height: 68px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.toggle-review-button {
  align-self: flex-start;
  margin-top: 12px;
  cursor: pointer;
  border: 1px solid rgba(31, 110, 212, 0.18);
  border-radius: 8px;
  padding: 9px 12px;
  background: var(--blue-soft);
  color: var(--blue-strong);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
}

.manual-review-panel {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(31, 110, 212, 0.12);
}

.manual-review-field {
  display: grid;
  gap: 6px;
  margin-top: 12px;
}

.manual-review-field span {
  color: var(--blue-strong);
  font-size: 13px;
  font-weight: 700;
}

.manual-review-field input,
.manual-review-field textarea {
  width: 100%;
  border: 1px solid rgba(31, 110, 212, 0.2);
  border-radius: 10px;
  padding: 10px 12px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.manual-review-field textarea {
  resize: vertical;
}

.advice-list {
  margin: 0;
  padding-left: 22px;
  color: var(--text);
}

.advice-list li {
  margin: 0 0 12px;
  line-height: 1.7;
}

.group-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.group-card h3 {
  margin: 0;
  font-size: 18px;
}

.group-meta {
  color: var(--muted);
  font-size: 13px;
}

.group-repo-list {
  margin: 12px 0 0;
  padding-left: 18px;
}

.group-repo-list li {
  margin: 0 0 8px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .series-cover-header {
    padding: 20px;
  }

  .series-cover-copy {
    align-self: start;
    width: min(620px, calc(100vw - 40px));
    margin: 28px auto 0;
    padding-top: 0;
  }

  .series-cover-copy h1 {
    font-size: 46px;
  }

  .series-hall-switcher {
    grid-template-columns: 1fr;
    width: min(560px, calc(100vw - 40px));
    margin-bottom: 22px;
  }

  .series-hall-card {
    min-height: 92px;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .innovation-orbit,
  .riding-case-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-study-card {
    grid-template-columns: 1fr;
  }

  .case-study-score {
    min-height: 180px;
  }
}

@media (max-width: 640px) {
  .series-cover {
    min-height: 100svh;
  }

  .series-cover-image {
    object-position: center top;
  }

  .series-cover-shade {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.42) 48%, rgba(238, 246, 255, 0.94) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.28));
  }

  .series-cover-header {
    display: grid;
    padding: 16px;
  }

  .series-mini-nav {
    width: 100%;
    justify-content: space-between;
  }

  .series-mini-nav a {
    width: 100%;
  }

  .series-cover-copy {
    width: calc(100vw - 32px);
    margin-top: 12px;
  }

  .series-cover-copy h1 {
    font-size: 36px;
  }

  .series-cover-copy p:last-child {
    font-size: 15px;
    line-height: 1.65;
  }

  .series-hall-switcher {
    width: calc(100vw - 32px);
    gap: 10px;
    margin-bottom: 16px;
  }

  .series-hall-card {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    min-height: 82px;
    padding: 12px;
  }

  .series-hall-number {
    width: 56px;
    height: 56px;
    font-size: 21px;
  }

  .series-hall-body strong {
    font-size: 17px;
  }

  .series-hall-body small {
    font-size: 12px;
  }

  .hero {
    padding: 44px 18px 32px;
  }

  .content {
    padding: 18px;
  }

  .panel {
    padding: 18px;
  }

  .panel-header {
    display: block;
  }

  .filters {
    flex-direction: column;
  }

  .innovation-orbit,
  .riding-case-list {
    grid-template-columns: 1fr;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.96), rgba(237, 247, 255, 0.9) 52%, rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at 50% 0%, rgba(34, 136, 255, 0.14), transparent 42%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(31, 110, 212, 0.18);
  background: rgba(250, 253, 255, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(31, 110, 212, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(0, 87, 232, 0.16);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(31, 110, 212, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.nav a {
  min-width: 54px;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--blue-strong);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.nav a:hover {
  background: var(--blue-soft);
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: end;
  padding: clamp(76px, 10vw, 132px) clamp(20px, 5vw, 72px) clamp(34px, 6vw, 62px);
  background: transparent;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.52;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.78) 48%, rgba(255, 255, 255, 0.95));
}

.hero-copy {
  z-index: 2;
  max-width: 1120px;
}

.hero h1 {
  margin: 0;
  color: #06164a;
  font-size: clamp(42px, 6.6vw, 78px);
  line-height: 1.04;
  letter-spacing: 0;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.76);
}

.hero-title-main,
.hero-title-sub {
  display: block;
  max-width: 100%;
  overflow-wrap: normal;
  word-break: keep-all;
}

.hero-title-main {
  font-size: clamp(42px, 6.2vw, 74px);
}

.hero-title-sub {
  margin-top: 8px;
  font-size: clamp(46px, 7vw, 86px);
}

.compact-hero .video-hero-title {
  max-width: 900px;
  color: #06164a;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.04;
}

.compact-hero .hero-title-main {
  font-size: clamp(40px, 5.8vw, 70px);
}

.compact-hero .hero-title-sub {
  margin-top: 6px;
  font-size: clamp(42px, 6.2vw, 76px);
}

.lead {
  max-width: 820px;
  margin: 22px 0 0;
  color: #172657;
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.62;
  font-weight: 650;
}

.intro {
  display: none;
}

.race-facts {
  display: grid;
  grid-template-columns: repeat(7, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.race-facts article {
  min-height: 92px;
  padding: 14px;
  border: 1px solid rgba(31, 110, 212, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(28, 81, 153, 0.1);
  backdrop-filter: blur(12px);
}

.race-facts span,
.legacy-card span,
.project-media span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.race-facts strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.35;
}

.hero-actions a,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
}

.primary-action,
.hero-actions a:first-child {
  color: white;
  background: linear-gradient(135deg, var(--blue-strong), #2288ff);
  box-shadow: 0 14px 28px rgba(11, 112, 255, 0.24);
}

.secondary-action,
.hero-actions a:last-child {
  color: var(--blue-strong);
  border: 1px solid rgba(31, 110, 212, 0.28);
  background: rgba(255, 255, 255, 0.76);
}

.hero-stats {
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  width: min(840px, 100%);
  margin-top: 34px;
}

.stat-card {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
}

.content {
  width: min(1480px, 100%);
  padding-top: 34px;
}

.panel {
  border-radius: 8px;
}

.panel-header {
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1fr);
}

.panel-header .eyebrow {
  margin-bottom: 8px;
}

.rank-badge {
  width: fit-content;
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(255, 209, 102, 0.16);
  color: #8a5b00;
  font-size: 12px;
  font-weight: 850;
}

.fusion-panel {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 247, 255, 0.94)),
    linear-gradient(90deg, rgba(31, 110, 212, 0.05), transparent);
}

.fusion-showcase {
  display: grid;
  gap: 16px;
}

.ary-native-stage {
  overflow: hidden;
  border: 1px solid rgba(31, 110, 212, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(235, 246, 255, 0.94)),
    linear-gradient(90deg, rgba(31, 110, 212, 0.06), transparent);
  box-shadow: 0 24px 70px rgba(8, 45, 136, 0.13);
}

.ary-stage-topbar {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(360px, 0.85fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid rgba(31, 110, 212, 0.13);
}

.ary-stage-topbar h3 {
  margin: 10px 0 0;
  color: var(--text);
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1;
}

.ary-stage-topbar p {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.ary-stage-status {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.ary-stage-status article,
.stage-debug-toggle {
  min-height: 70px;
  border: 1px solid rgba(31, 110, 212, 0.14);
  border-radius: 8px;
  padding: 11px;
  background: #fff;
}

.ary-stage-status strong {
  display: block;
  color: var(--blue-strong);
  font-size: 26px;
  line-height: 1;
}

.ary-stage-status span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.stage-debug-toggle {
  cursor: pointer;
  color: var(--blue-strong);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
}

.stage-debug-toggle[aria-pressed="true"] {
  border-color: rgba(23, 148, 95, 0.35);
  background: #e8fff3;
  color: #086c42;
}

.ary-stage-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.62fr);
  gap: 14px;
  padding: 14px;
  align-items: start;
}

.ary-leaderboard,
.ary-track-stage,
.ary-inspector,
.ary-stage-bottom {
  border: 1px solid rgba(31, 110, 212, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
}

.ary-leaderboard,
.ary-inspector {
  padding: 14px;
}

.ary-track-stage {
  grid-column: 1 / -1;
  grid-row: 1;
}

.ary-leaderboard {
  grid-column: 1;
  grid-row: 2;
}

.ary-inspector {
  grid-column: 2;
  grid-row: 2;
}

.ary-panel-title {
  display: grid;
  gap: 4px;
  margin-bottom: 10px;
}

.ary-panel-title.compact {
  margin: 18px 0 10px;
}

.ary-panel-title span {
  color: var(--blue-strong);
  font-size: 12px;
  font-weight: 900;
}

.ary-panel-title strong {
  color: var(--text);
  font-size: 17px;
}

.ary-top-entry,
.ary-entry-button {
  cursor: pointer;
  width: 100%;
  border: 1px solid rgba(31, 110, 212, 0.12);
  border-radius: 8px;
  padding: 10px;
  background: #f8fbff;
  color: var(--text);
  font: inherit;
  text-align: left;
}

.ary-top-entry {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 10px;
  align-items: center;
  margin-bottom: 8px;
}

.ary-top-entry strong {
  overflow-wrap: anywhere;
}

.ary-top-entry small {
  grid-column: 2;
  color: var(--muted);
  line-height: 1.35;
}

.ary-top-entry:hover,
.ary-top-entry.active,
.ary-entry-button:hover,
.ary-entry-button.active {
  border-color: rgba(31, 110, 212, 0.34);
  background: var(--blue-soft);
}

.source-credit-list {
  display: grid;
  gap: 8px;
}

.source-credit-list article {
  border-left: 3px solid rgba(31, 110, 212, 0.28);
  padding: 8px 0 8px 10px;
}

.source-credit-list strong,
.source-credit-list span {
  display: block;
}

.source-credit-list strong {
  color: var(--text);
}

.source-credit-list span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.ary-signal-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.ary-signal-list article {
  border: 1px solid rgba(31, 110, 212, 0.12);
  border-radius: 8px;
  padding: 10px 8px;
  background: #f8fbff;
}

.ary-signal-list strong,
.ary-signal-list span {
  display: block;
  text-align: center;
}

.ary-signal-list strong {
  color: var(--blue-strong);
  font-size: 24px;
  line-height: 1;
}

.ary-signal-list span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.ary-track-stage {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(6, 22, 74, 0.92), rgba(8, 45, 136, 0.72)),
    #06164a;
}

.ary-track-toolbar {
  position: absolute;
  z-index: 4;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(6, 22, 74, 0.7);
  color: #fff;
  backdrop-filter: blur(12px);
}

.ary-track-toolbar strong,
.ary-track-toolbar span {
  display: block;
}

.ary-track-toolbar span {
  margin-top: 4px;
  color: #cde6ff;
  font-size: 12px;
}

.ary-track-legend {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ary-track-legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0;
}

.ary-track-svg {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

.ary-track-svg image {
  opacity: 0.95;
  filter: saturate(0.96) contrast(1.03) brightness(0.9);
}

.track-centerline {
  fill: none;
  stroke: rgba(255, 255, 255, 0);
  stroke-width: 6;
  stroke-dasharray: 16 12;
}

.debug-on .track-centerline {
  stroke: rgba(116, 212, 255, 0.9);
}

.track-lane-line {
  fill: none;
  opacity: 0;
  stroke: rgba(255, 255, 255, 0.42);
  stroke-width: 3;
  stroke-dasharray: 18 18;
}

.track-lane-line.center {
  stroke: rgba(255, 209, 102, 0.7);
  stroke-width: 5;
}

.debug-on .track-lane-line {
  opacity: 1;
}

.track-message-zone,
.track-safe-zone {
  opacity: 0;
  pointer-events: none;
}

.track-message-zone {
  fill: rgba(23, 148, 95, 0.14);
  stroke: rgba(23, 148, 95, 0.42);
  stroke-width: 3;
}

.track-safe-zone {
  fill: rgba(211, 107, 42, 0.18);
  stroke: rgba(211, 107, 42, 0.44);
  stroke-width: 3;
}

.debug-on .track-message-zone,
.debug-on .track-safe-zone {
  opacity: 1;
}

.track-checkpoint {
  opacity: 0;
}

.debug-on .track-checkpoint {
  opacity: 1;
}

.track-checkpoint circle {
  fill: rgba(255, 209, 102, 0.22);
  stroke: #ffd166;
  stroke-width: 3;
}

.track-checkpoint text {
  fill: #fff;
  font-size: 24px;
  font-weight: 900;
  paint-order: stroke;
  stroke: rgba(6, 22, 74, 0.9);
  stroke-width: 5px;
}

.ary-entry-marker {
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.marker-shadow {
  fill: rgba(0, 0, 0, 0.2);
}

.marker-body {
  fill: #1f6ed4;
  stroke: #fff;
  stroke-width: 4;
}

.ary-entry-marker.sprinting .marker-body {
  fill: #17945f;
}

.ary-entry-marker.blocked .marker-body {
  fill: #d36b2a;
}

.ary-entry-marker.stale .marker-body {
  fill: #7a8aa6;
}

.ary-entry-marker.selected .marker-body {
  stroke: #ffd166;
  stroke-width: 7;
}

.marker-initials {
  fill: #fff;
  font-size: 15px;
  font-weight: 900;
  text-anchor: middle;
}

.marker-label,
.marker-score {
  fill: #fff;
  font-size: 30px;
  font-weight: 900;
  paint-order: stroke;
  stroke: rgba(6, 22, 74, 0.88);
  stroke-width: 8px;
}

.marker-score {
  fill: #cde6ff;
  font-size: 22px;
}

.ary-message-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ary-message-bubble {
  position: absolute;
  max-width: 210px;
  transform: translate(-50%, -100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 8px 10px;
  background: rgba(6, 22, 74, 0.78);
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  transition: left 0.18s linear, top 0.18s linear, opacity 0.2s ease;
}

.ary-message-bubble strong,
.ary-message-bubble span {
  display: block;
}

.ary-message-bubble span {
  margin-top: 4px;
  color: #cde6ff;
  font-size: 12px;
  line-height: 1.35;
}

.ary-message-bubble.blocked {
  border-color: rgba(211, 107, 42, 0.55);
}

.ary-message-bubble.stale {
  opacity: 0.78;
}

.ary-ticker {
  position: static;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  padding: 12px 14px;
  background: rgba(6, 22, 74, 0.78);
  color: #fff;
}

.ary-ticker strong {
  color: #ffd166;
}

.ary-ticker span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #cde6ff;
}

.ary-inspector-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 28px;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.ary-inspector-card > p {
  color: var(--muted);
  line-height: 1.62;
}

.ary-risk-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(31, 110, 212, 0.12);
  padding: 10px 0;
}

.ary-risk-item strong {
  color: var(--text);
  line-height: 1.35;
}

.ary-risk-item span {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 5px 8px;
  background: #ffe9ec;
  color: #9b2734;
  font-size: 12px;
  font-weight: 900;
}

.ary-stage-bottom {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(320px, 0.8fr);
  gap: 14px;
  margin: 0 14px 14px;
  padding: 14px;
}

.ary-project-switcher {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.ary-entry-button {
  display: grid;
  gap: 4px;
}

.ary-entry-button span,
.ary-entry-button small {
  color: var(--muted);
  font-size: 12px;
}

.ary-entry-button strong {
  overflow-wrap: anywhere;
}

.ary-innovation-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.ary-innovation-strip article {
  border: 1px solid rgba(31, 110, 212, 0.13);
  border-radius: 8px;
  padding: 10px;
  background: #f8fbff;
}

.ary-innovation-strip strong,
.ary-innovation-strip span {
  display: block;
}

.ary-innovation-strip strong {
  color: var(--blue-strong);
}

.ary-innovation-strip span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.material-feed h3 {
  margin: 0 0 10px;
  color: #fff;
}

.fusion-screen {
  overflow: hidden;
  border: 1px solid rgba(9, 38, 89, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(5, 18, 54, 0.98), rgba(7, 62, 112, 0.96) 48%, rgba(9, 95, 107, 0.94)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 28px);
  color: #eef7ff;
  box-shadow: 0 24px 70px rgba(8, 45, 136, 0.2);
}

.fusion-topbar,
.fusion-body,
.fusion-bottom {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.fusion-topbar {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.fusion-topbar h3 {
  margin: 10px 0 0;
  color: #fff;
  font-size: clamp(26px, 4vw, 50px);
  line-height: 1;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border: 1px solid rgba(40, 210, 124, 0.32);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(40, 210, 124, 0.1);
  color: #bfffe0;
  font-size: 12px;
  font-weight: 900;
}

.live-pill i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #28d27c;
}

.fusion-clock {
  min-width: 132px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 12px;
  text-align: right;
  background: rgba(255, 255, 255, 0.08);
}

.fusion-clock strong,
.fusion-score strong,
.spotlight-score strong {
  display: block;
  color: #ffd166;
  font-size: 34px;
  line-height: 1;
}

.fusion-clock span,
.fusion-track-head span,
.fusion-lane-meta small,
.fusion-score span,
.fusion-source-list p,
.fusion-message-board span,
.fusion-risk-board span {
  color: #cde6ff;
  line-height: 1.45;
}

.fusion-body {
  grid-template-columns: minmax(360px, 1.5fr) minmax(260px, 0.7fr);
  align-items: stretch;
}

.fusion-track,
.fusion-radar,
.fusion-message-board,
.fusion-risk-board {
  border: 1px solid rgba(191, 224, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.fusion-track {
  padding: 14px;
}

.fusion-track-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.fusion-track-head strong,
.fusion-radar h3,
.fusion-message-board h3,
.fusion-risk-board h3 {
  color: #fff;
}

.fusion-track-head b {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 209, 102, 0.14);
  color: #ffe7a3;
  font-size: 12px;
}

.fusion-lanes {
  display: grid;
  gap: 9px;
}

.fusion-lane {
  display: grid;
  grid-template-columns: minmax(118px, 0.46fr) minmax(160px, 1fr) 54px;
  gap: 12px;
  align-items: center;
  min-height: 58px;
}

.fusion-lane-meta span,
.fusion-lane-meta strong,
.fusion-lane-meta small {
  display: block;
}

.fusion-lane-meta span {
  color: #ffd166;
  font-size: 12px;
  font-weight: 900;
}

.fusion-lane-meta strong {
  color: #fff;
  line-height: 1.25;
}

.fusion-progress {
  position: relative;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.fusion-progress i {
  position: absolute;
  inset: 3px auto 3px 3px;
  width: calc(var(--progress) - 6px);
  border-radius: 999px;
  background: linear-gradient(90deg, #4cc9f0, #28d27c, #ffd166);
}

.fusion-progress b {
  position: absolute;
  top: 50%;
  left: var(--progress);
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  background: #0d4ea6;
  color: #fff;
  font-size: 11px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.26);
}

.fusion-score {
  text-align: right;
}

.fusion-score strong {
  font-size: 22px;
}

.fusion-radar {
  padding: 14px;
}

.fusion-source-list {
  display: grid;
  gap: 10px;
}

.fusion-source-list article {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 10px;
}

.fusion-source-list span {
  color: #90e0ff;
  font-size: 12px;
  font-weight: 900;
}

.fusion-source-list strong {
  display: block;
  margin-top: 5px;
  color: #fff;
}

.fusion-source-list p {
  margin: 6px 0 0;
  font-size: 13px;
}

.fusion-bottom {
  grid-template-columns: 1fr 1fr;
  padding-top: 0;
}

.fusion-message-board,
.fusion-risk-board {
  padding: 14px;
}

.fusion-message-board article,
.fusion-risk-board article {
  display: grid;
  gap: 4px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.fusion-message-board strong,
.fusion-risk-board strong {
  color: #fff;
}

.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
}

.project-card {
  overflow: hidden;
  padding: 0;
}

.project-card > *:not(.project-media) {
  margin-left: 18px;
  margin-right: 18px;
}

.project-card > .card-links {
  margin-bottom: 18px;
}

.project-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0e2f5d;
}

.project-media video,
.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-media span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  border-radius: 999px;
  padding: 6px 9px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--blue-strong);
}

.project-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
}

.project-card-head h3 {
  margin-top: 9px;
}

.project-card-head > strong {
  color: var(--blue-strong);
  font-size: 42px;
  line-height: 1;
}

.project-mini-meta {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.project-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.project-keywords span {
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--blue-soft);
  color: var(--blue-strong);
  font-size: 12px;
  font-weight: 900;
}

.project-card-highlight {
  min-height: 3.4em;
  margin-top: 13px;
  color: #233e68;
  font-size: 15px;
  font-weight: 720;
  line-height: 1.65;
}

.project-architecture-fallback {
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(31, 110, 212, 0.9), rgba(10, 42, 96, 0.96)),
    #0e2f5d;
}

.project-architecture-fallback div {
  display: grid;
  gap: 8px;
  color: #fff;
  text-align: center;
}

.project-architecture-fallback strong {
  font-size: 28px;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.project-architecture-fallback small {
  color: #cde6ff;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.evidence-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.evidence-strip span {
  border: 1px solid rgba(23, 148, 95, 0.22);
  border-radius: 999px;
  padding: 6px 9px;
  background: #ecfbf3;
  color: #086c42;
  font-size: 12px;
  font-weight: 800;
}

.legacy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.legacy-card {
  min-height: 190px;
  border: 1px solid rgba(31, 110, 212, 0.13);
  border-radius: 8px;
  padding: 16px;
  background: #fff;
}

.legacy-card strong {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-size: 19px;
  line-height: 1.45;
}

.legacy-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 1180px) {
  .race-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ary-stage-topbar,
  .ary-stage-bottom,
  .legacy-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ary-stage-grid {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 760px) {
  .site-header {
    position: static;
    display: grid;
    gap: 12px;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    border-radius: 8px;
  }

  .hero {
    min-height: auto;
    padding: 56px 18px 34px;
  }

  .race-facts,
  .hero-stats,
  .ary-stage-topbar,
  .ary-stage-status,
  .ary-stage-grid,
  .ary-stage-bottom,
  .ary-project-switcher,
  .ary-innovation-strip,
  .legacy-grid,
  .panel-header {
    grid-template-columns: 1fr;
  }

  .ary-track-stage {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .ary-leaderboard,
  .ary-inspector {
    grid-column: auto;
    grid-row: auto;
  }

  .ary-track-svg {
    aspect-ratio: 16 / 9;
  }

  .ary-track-toolbar,
  .ary-ticker {
    position: static;
    margin: 10px;
  }

  .ary-message-bubble {
    display: none;
  }

  .live-status strong {
    font-size: 34px;
  }

  .project-card > *:not(.project-media) {
    margin-left: 14px;
    margin-right: 14px;
  }
}
