:root {
  --blue-900: #06164a;
  --blue-800: #082d88;
  --blue-700: #0754d8;
  --blue-600: #0b70ff;
  --blue-500: #2288ff;
  --blue-200: #b9d7ff;
  --blue-100: #e7f2ff;
  --ink: #07133d;
  --muted: #51617e;
  --line: rgba(31, 113, 255, 0.24);
  --panel: rgba(255, 255, 255, 0.88);
  --shadow: 0 18px 48px rgba(8, 45, 136, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background:
    linear-gradient(110deg, 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%);
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  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(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(11, 112, 255, 0.18);
  background: rgba(250, 253, 255, 0.86);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(11, 112, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(0, 87, 232, 0.16);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

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

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.42), transparent 42%, rgba(11,112,255,0.12));
}

.brand:hover .brand-mark {
  transform: translateY(-1px);
  border-color: rgba(11, 112, 255, 0.3);
  box-shadow: 0 16px 34px rgba(0, 87, 232, 0.22);
}

.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(11, 112, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

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

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

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: end;
  padding: clamp(76px, 10vw, 132px) clamp(20px, 5vw, 72px) clamp(30px, 6vw, 60px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

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

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

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

.hero-copy {
  max-width: 850px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-700);
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(40px, 6.6vw, 76px);
  line-height: 1.04;
  letter-spacing: 0;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.76);
}

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

.hero-actions,
.center-action {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
}

.primary-action {
  color: white;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  box-shadow: 0 14px 28px rgba(11, 112, 255, 0.24);
}

.secondary-action {
  color: var(--blue-800);
  border: 1px solid rgba(11, 112, 255, 0.34);
  background: rgba(255, 255, 255, 0.72);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(118px, 1fr));
  gap: 14px;
  width: min(820px, 100%);
  margin-top: 48px;
}

.hero-metrics div,
.score-panel,
.proof-item,
.project-card,
.innovation-item,
.case-card,
.replay-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-metrics div {
  padding: 18px;
  backdrop-filter: blur(12px);
}

.hero-metrics strong {
  display: block;
  color: var(--blue-700);
  font-size: 34px;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: clamp(62px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

.band {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.84), rgba(236,247,255,0.78)),
    url("./ppt/slide-03.png") center / cover;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.08;
}

.section-heading p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.jumbotron-section {
  padding-top: clamp(56px, 7vw, 86px);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(235,247,255,0.9) 48%, rgba(255,255,255,0.98)),
    repeating-linear-gradient(105deg, transparent 0, transparent 42px, rgba(11,112,255,0.035) 43px, transparent 47px);
  border-bottom: 1px solid var(--line);
}

.jumbotron-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

.jumbotron-intro h2 {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.02;
}

.jumbotron-intro p:last-child {
  max-width: 920px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.jumbotron-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.jumbotron-links a {
  padding: 9px 12px;
  color: var(--blue-800);
  font-size: 14px;
  font-weight: 850;
  border-bottom: 2px solid rgba(11, 112, 255, 0.28);
}

.jumbotron-links a:hover {
  color: var(--blue-600);
  border-bottom-color: var(--blue-600);
}

.jumbotron-visual {
  margin: 0;
}

.jumbotron-visual img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(8, 45, 136, 0.16);
}

.jumbotron-visual figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.jumbotron-brief {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.jumbotron-brief section {
  min-width: 0;
}

.jumbotron-brief span {
  display: block;
  margin-bottom: 10px;
  color: rgba(11, 112, 255, 0.36);
  font-size: 34px;
  font-weight: 950;
  line-height: 1;
}

.jumbotron-brief h3,
.jumbotron-rules h3 {
  margin: 0;
}

.jumbotron-brief p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.jumbotron-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-top: 34px;
  padding-block: 24px;
  border-block: 1px solid var(--line);
}

.jumbotron-flow div {
  min-width: 0;
}

.jumbotron-flow strong,
.jumbotron-flow span {
  display: block;
}

.jumbotron-flow strong {
  color: var(--blue-900);
  font-size: 17px;
}

.jumbotron-flow span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.jumbotron-flow i {
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, rgba(11, 112, 255, 0.2), rgba(11, 112, 255, 0.72));
}

.jumbotron-flow i::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  margin-left: auto;
  transform: translateY(-2.5px) rotate(45deg);
  border-top: 2px solid rgba(11, 112, 255, 0.72);
  border-right: 2px solid rgba(11, 112, 255, 0.72);
}

.jumbotron-rules {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 28px;
  margin-top: 30px;
}

.jumbotron-rules ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.jumbotron-rules li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.66;
}

.jumbotron-rules li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-600);
}

.proof-grid,
.replay-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.proof-item,
.replay-grid article {
  padding: 24px;
}

.proof-item span {
  color: rgba(11, 112, 255, 0.28);
  font-size: 38px;
  font-weight: 900;
}

h3 {
  margin: 0;
  color: var(--blue-900);
  font-size: 22px;
}

.proof-item h3 {
  margin-top: 8px;
}

.proof-item p,
.case-card p,
.replay-grid p,
.project-card p,
.innovation-copy p {
  color: var(--muted);
  line-height: 1.68;
}

.split-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(246,251,255,0.96)),
    repeating-linear-gradient(100deg, transparent 0, transparent 30px, rgba(11,112,255,0.035) 31px, transparent 35px);
}

.score-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}

.score-panel {
  padding: 26px;
}

.tier-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.tier-row {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(11, 112, 255, 0.18);
  border-radius: 8px;
  background: rgba(247, 251, 255, 0.9);
}

.tier-row strong {
  color: var(--blue-700);
}

.tier-row span {
  color: var(--muted);
  line-height: 1.55;
}

.bar-chart {
  display: grid;
  gap: 15px;
  margin-top: 20px;
}

.bar-row {
  display: grid;
  grid-template-columns: 138px 1fr 42px;
  align-items: center;
  gap: 12px;
}

.bar-label {
  color: var(--blue-900);
  font-weight: 800;
}

.bar-track {
  height: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: #e3efff;
}

.bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue-700), #44b7ff);
}

.bar-value {
  color: var(--blue-700);
  font-weight: 900;
  text-align: right;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.filter-button {
  min-height: 40px;
  padding: 0 16px;
  color: var(--blue-800);
  font: inherit;
  font-weight: 800;
  border: 1px solid rgba(11, 112, 255, 0.28);
  border-radius: 999px;
  background: white;
  cursor: pointer;
  transition: transform 200ms ease, opacity 200ms ease;
}

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

.filter-button.active {
  color: white;
  border-color: var(--blue-700);
  background: var(--blue-700);
  box-shadow: 0 14px 28px rgba(11, 112, 255, 0.18);
}

.project-gallery {
  position: relative;
  margin-inline: clamp(-42px, -3vw, -18px);
  padding-inline: clamp(42px, 3vw, 72px);
}

.project-gallery::before,
.project-gallery::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(42px, 8vw, 110px);
  pointer-events: none;
}

.project-gallery::before {
  left: 0;
  background: linear-gradient(90deg, rgba(249, 253, 255, 0.98), rgba(249, 253, 255, 0));
}

.project-gallery::after {
  right: 0;
  background: linear-gradient(270deg, rgba(249, 253, 255, 0.98), rgba(249, 253, 255, 0));
}

.project-grid {
  display: flex;
  gap: 24px;
  padding: 6px 0 18px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.project-grid::-webkit-scrollbar {
  display: none;
}

.project-card {
  position: relative;
  flex: 0 0 clamp(330px, 31vw, 430px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.project-card:hover {
  transform: translateY(-5px);
  border-color: rgba(11, 112, 255, 0.36);
  box-shadow: 0 24px 58px rgba(8, 45, 136, 0.16);
}

.project-card:focus-visible {
  outline: 3px solid rgba(11, 112, 255, 0.34);
  outline-offset: 4px;
}

.project-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #edf5ff;
  border-bottom: 1px solid var(--line);
  transition: transform 350ms ease;
}

.project-card:hover img,
.project-card:focus-visible img {
  transform: scale(1.035);
}

.project-body {
  padding: 16px;
  color: var(--ink);
}

.project-topline,
.score-chips {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.project-topline {
  justify-content: space-between;
  margin-bottom: 14px;
}

.tier-badge,
.score-chip {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 9px;
  color: var(--blue-800);
  font-size: 12px;
  font-weight: 900;
  border: 1px solid rgba(11, 112, 255, 0.22);
  border-radius: 999px;
  background: #eff7ff;
}

.tier-badge.top {
  color: white;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-500));
}

.tier-badge.watch {
  color: #5a6480;
  background: #f2f5fa;
}

.project-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--blue-900);
  font-size: 20px;
  line-height: 1.25;
}

.group-badge {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0;
  color: #637394;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  border: 0;
  background: transparent;
}

.group-badge::before {
  content: "";
  width: 4px;
  height: 4px;
  margin-right: 7px;
  border-radius: 50%;
  background: rgba(99, 115, 148, 0.46);
}

.group-badge.subtle {
  color: #8a93a7;
}

.project-card p {
  min-height: 80px;
  margin: 10px 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.project-scroll-button {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(11, 112, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-800);
  font: inherit;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 200ms ease, opacity 200ms ease;
}

.project-scroll-button:hover {
  transform: translateY(-50%) scale(1.04);
}

.project-scroll-button:disabled {
  opacity: 0.28;
  cursor: default;
}

.project-scroll-button:disabled:hover {
  transform: translateY(-50%);
}

.project-scroll-prev {
  left: clamp(8px, 1vw, 18px);
}

.project-scroll-next {
  right: clamp(8px, 1vw, 18px);
}

.project-scroll-progress {
  height: 6px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #e3efff;
}

.project-scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue-700), #44b7ff);
  transition: width 200ms ease;
}

.innovation-band {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(236,247,255,0.94)),
    url("./ppt/slide-08.png") center / cover fixed;
}

.innovation-list {
  display: grid;
  gap: 18px;
}

.innovation-item {
  display: grid;
  grid-template-columns: 210px 1fr 310px;
  gap: 22px;
  align-items: stretch;
  overflow: hidden;
}

.innovation-rank {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 24px;
  color: white;
  background: linear-gradient(145deg, var(--blue-900), var(--blue-600));
}

.innovation-rank strong {
  font-size: 46px;
  line-height: 1;
}

.innovation-rank span {
  font-weight: 800;
}

.innovation-copy {
  padding: 24px 0;
}

.innovation-copy h3 {
  font-size: 24px;
}

.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.project-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  color: var(--blue-800);
  font-size: 13px;
  font-weight: 800;
  border: 1px solid rgba(11, 112, 255, 0.24);
  border-radius: 999px;
  background: #f1f7ff;
}

.innovation-image img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-left: 1px solid var(--line);
}

.case-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(244,250,255,0.95)),
    url("./ppt/slide-07.png") center / cover;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.case-card {
  overflow: hidden;
}

.case-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.case-card div {
  padding: 16px;
}

.case-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 18px;
}

.case-card p {
  margin: 10px 0 0;
  font-size: 14px;
}

.replay-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(237,247,255,0.88)),
    url("./ppt/slide-11.png") center / cover;
}

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

.project-dialog {
  width: min(980px, calc(100vw - 34px));
  max-height: calc(100vh - 34px);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(11, 112, 255, 0.24);
  border-radius: 8px;
  background: white;
  box-shadow: 0 30px 80px rgba(6, 22, 74, 0.28);
}

.project-dialog::backdrop {
  background: rgba(6, 22, 74, 0.38);
  backdrop-filter: blur(8px);
}

.dialog-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 38px;
  height: 38px;
  color: var(--blue-900);
  font-size: 24px;
  line-height: 1;
  border: 1px solid rgba(11, 112, 255, 0.24);
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  cursor: pointer;
}

.dialog-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-height: calc(100vh - 34px);
  overflow: auto;
}

.dialog-body img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  background: #eef6ff;
}

.dialog-copy {
  padding: 34px;
}

.dialog-copy h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 12px;
  color: var(--blue-900);
  font-size: 34px;
}

.dialog-copy p {
  color: var(--muted);
  line-height: 1.72;
}

.dialog-links {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.dialog-links a {
  padding: 12px 14px;
  color: var(--blue-800);
  font-weight: 800;
  border: 1px solid rgba(11, 112, 255, 0.22);
  border-radius: 8px;
  background: #f4f9ff;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 86px;
  color: var(--blue-800);
  font-weight: 800;
  border-top: 1px solid var(--line);
  background: white;
}

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

  .proof-grid,
  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .innovation-item {
    grid-template-columns: 160px 1fr;
  }

  .innovation-image {
    grid-column: 1 / -1;
  }

  .innovation-image img {
    aspect-ratio: 16 / 7;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .jumbotron-flow {
    grid-template-columns: 1fr;
  }

  .jumbotron-flow i {
    width: 2px;
    height: 24px;
    margin-left: 10px;
    background: linear-gradient(180deg, rgba(11, 112, 255, 0.2), rgba(11, 112, 255, 0.72));
  }

  .jumbotron-flow i::after {
    margin-top: 17px;
    margin-left: -2.5px;
    transform: rotate(135deg);
  }
}

@media (max-width: 780px) {
  .site-header {
    position: static;
    align-items: flex-start;
    gap: 14px;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
    padding-top: 92px;
  }

  .hero-metrics,
  .score-layout,
  .project-grid,
  .proof-grid,
  .jumbotron-intro,
  .jumbotron-brief,
  .jumbotron-rules,
  .replay-grid,
  .case-grid,
  .dialog-body {
    grid-template-columns: 1fr;
  }

  .jumbotron-links {
    justify-content: flex-start;
  }

  .bar-row {
    grid-template-columns: 94px 1fr 36px;
  }

  .innovation-item {
    grid-template-columns: 1fr;
  }

  .innovation-rank {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .innovation-copy {
    padding: 0 20px 20px;
  }

  .dialog-body img {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .footer {
    flex-wrap: wrap;
    padding: 20px;
  }
}
