:root {
  --accent: #3c56f4;
  --accent-soft: rgba(60, 86, 244, 0.12);
  --bg-soft: #f5f7fc;
  --line: #e4e8f1;
  --text: #191c25;
  --muted: #5f6678;
  --dark-bg: #06080f;
  --dark-panel: #101523;
  --dark-panel-alt: #0d111c;
  --dark-line: rgba(255, 255, 255, 0.13);
  --dark-text: #f4f7ff;
  --dark-muted: #a5b0c9;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--text);
  line-height: 1.5;
}

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

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

.home-page {
  background: #101525;
}

.hero-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  padding: 0 clamp(24px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
  align-items: center;
  column-gap: 24px;
  z-index: 20;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(5, 8, 15, 0.72), rgba(5, 8, 15, 0.32) 72%, rgba(5, 8, 15, 0));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px) saturate(1.15);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: 150px;
  max-width: 150px;
  min-width: 0;
  overflow: hidden;
  transition: opacity 0.2s ease;
}

.brand:hover {
  opacity: 0.86;
}

.brand-logo {
  display: block;
  width: 146px;
  max-width: 100%;
  height: auto;
  flex: 0 0 auto;
}

.ms-logo {
  width: 14px;
  height: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
}

.ms-logo span:nth-child(1) {
  background: #f25022;
}

.ms-logo span:nth-child(2) {
  background: #7fba00;
}

.ms-logo span:nth-child(3) {
  background: #00a4ef;
}

.ms-logo span:nth-child(4) {
  background: #ffb900;
}

.hero-nav-links {
  display: flex;
  gap: clamp(28px, 3vw, 44px);
  font-size: clamp(16px, 1.05vw, 18px);
  font-weight: 650;
  justify-self: center;
  justify-content: center;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.hero-nav-links a {
  position: relative;
  opacity: 0.86;
  padding: 26px 0 22px;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.hero-nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hero-nav-links a.active {
  opacity: 1;
}

.hero-nav-links a.active::after,
.hero-nav-links a:hover::after {
  opacity: 0.95;
  transform: scaleX(1);
}

.hero-nav-links a:hover {
  opacity: 1;
}

.locale-switch {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 18px;
  font-size: 13px;
  font-weight: 650;
  justify-self: end;
  min-width: 150px;
}

.locale-switch a {
  opacity: 0.76;
}

.locale-switch a.active {
  opacity: 1;
  font-weight: 700;
}

.locale-switch span {
  opacity: 0.58;
}

.home-page .hero-nav.scrolled {
  color: #ffffff;
  background: linear-gradient(180deg, rgba(5, 8, 15, 0.82), rgba(5, 8, 15, 0.58));
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
}

.home-page .hero-nav.scrolled .hero-nav-links a {
  color: #ffffff;
}

.home-page .hero-nav.scrolled .locale-switch {
  border-color: rgba(255, 255, 255, 0.22);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-video-layer {
  position: absolute;
  inset: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-video.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.64)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.7));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  padding: 110px 20px 70px;
  color: #ffffff;
}

.hero-project {
  font-size: clamp(48px, 7.5vw, 110px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  font-weight: 800;
}

.hero-title {
  font-size: clamp(24px, 3vw, 80px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin-bottom: 34px;
  font-weight: 400;
}

.hero-affiliation {
  font-size: clamp(14px, 1.4vw, 19px);
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 26px;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 80px;
}

.action {
  min-width: 132px;
  border-radius: 999px;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 650;
  border: 1px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.action.primary {
  background: var(--accent);
  color: #ffffff;
}

.action.ghost {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(12, 14, 18, 0.26);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

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

.placeholder-action {
  cursor: default;
  opacity: 0.78;
  pointer-events: none;
}

.placeholder-action:hover {
  transform: none;
}

.results-main {
  max-width: 1660px;
  margin: 0 auto;
  padding: 74px max(16px, 5vw) 26px;
  color: var(--dark-text);
}

.results-section {
  margin-bottom: 80px;
}

.section-header {
  margin-bottom: 24px;
}

.eyebrow {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: #8ea5ff;
  margin-bottom: 8px;
}

.section-header h2 {
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.15;
}

.section-intro {
  margin-top: 10px;
  color: #a5b0c9;
  max-width: 760px;
}

.section-intro code {
  font-family: "Outfit", sans-serif;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1px 5px;
}

.taxonomy-sections {
  display: block;
}

.taxonomy-section-block {
  margin-bottom: 34px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(22, 29, 47, 0.96);
  padding: clamp(14px, 1.8vw, 20px);
}

.taxonomy-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.taxonomy-section-head h3 {
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 5px;
  color: #eef3ff;
}

.taxonomy-section-head p {
  color: #aeb9d2;
  font-size: 14px;
  max-width: 620px;
  text-align: right;
}

.taxonomy-subsection {
  margin-bottom: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.taxonomy-subsection h4 {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  padding: 5px 11px;
  font-size: 14px;
  margin-bottom: 12px;
  font-weight: 700;
  color: #eff3ff;
}

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

.video-card {
  overflow: hidden;
  background: rgba(13, 18, 30, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.video-card:hover {
  transform: translateY(-2px);
  border-color: rgba(142, 165, 255, 0.5);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.34);
}

.video-shell {
  position: relative;
}

.video-shell video {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.chip {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  background: rgba(4, 7, 13, 0.6);
  backdrop-filter: blur(12px);
  padding: 3px 9px;
}

.prompt {
  color: #d5ddf2;
  min-height: 70px;
  font-size: 14px;
  line-height: 1.55;
  padding: 11px 12px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(16, 22, 36, 0.94);
}

.empty-card {
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  min-height: 140px;
  color: #aeb9d2;
  font-size: 13px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer {
  text-align: center;
  padding: 18px 16px 42px;
  color: #a5b0c9;
  font-size: 15px;
  line-height: 1.72;
}

.tech-page {
  background: var(--dark-bg);
  color: var(--dark-text);
}

.tech-nav {
  background: rgba(8, 12, 21, 0.72);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.tech-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 118px max(16px, 4vw) 56px;
}

.tech-hero-panel {
  border: 1px solid var(--dark-line);
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(60, 86, 244, 0.2), rgba(16, 21, 35, 0.9));
  padding: clamp(18px, 3vw, 34px);
  margin-bottom: 26px;
}

.tech-kicker {
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #98abff;
  margin-bottom: 8px;
}

.tech-hero-panel h1 {
  font-size: clamp(30px, 4.3vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.tech-lead {
  color: #d7def2;
  font-size: 16px;
  line-height: 1.75;
  /* max-width: 900px; */
  margin-bottom: 18px;
}

.tech-authors {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 4px 14px;
  margin: 4px 0 10px;
}

.tech-authors a {
  font-size: 15px;
  color: #e9eeff;
  opacity: 0.92;
  text-decoration: none;
}

.tech-authors a:hover {
  text-decoration: underline;
}

.tech-authors sup {
  font-size: 10px;
  vertical-align: super;
  margin-left: 1px;
}

.tech-affiliations {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 6px 16px;
  font-size: 15px;
  color: #b9c4df;
  margin-bottom: 12px;
}

.tech-affiliations sup {
  font-size: 10px;
  vertical-align: super;
}

.tech-author-notes {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 2px 10px;
  font-size: 12px;
  line-height: 1.25;
  color: #b9c4df;
  margin-bottom: 8px;
}

.tech-author-notes sup {
  font-size: 8px;
  vertical-align: super;
}

.team-main {
  max-width: 1180px;
}

.team-hero-panel {
  background:
    linear-gradient(155deg, rgba(60, 86, 244, 0.18), rgba(22, 32, 52, 0.92)),
    radial-gradient(circle at 82% 16%, rgba(0, 164, 239, 0.22), transparent 34%);
}

.team-lead {
  color: #d7def2;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.68;
  max-width: 920px;
  margin: 10px 0 20px;
}

.video-main {
  max-width: 1480px;
  padding-top: 118px;
  padding-bottom: 44px;
}

.video-intro {
  max-width: none;
  margin: 0 0 14px;
  color: #d7def2;
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.45;
  white-space: nowrap;
}

.promo-video-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(60, 86, 244, 0.16), rgba(9, 13, 24, 0.92)),
    #05070d;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.promo-video-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

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

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

.group-card {
  padding: 20px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.group-card h3 {
  color: #f2f6ff;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
  margin-bottom: 10px;
}

.group-card p:not(.stat-key) {
  color: #d3dcf0;
  font-size: 15px;
  line-height: 1.68;
}

.group-focus-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 18px;
}

.group-focus-list li {
  color: #bfc9e2;
  font-size: 14px;
  line-height: 1.55;
}

.group-link {
  color: #b9c8ff;
  font-size: 14px;
  font-weight: 700;
  margin-top: auto;
  padding-top: 18px;
}

.group-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.team-card {
  min-height: 118px;
  padding: 15px 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    var(--dark-panel);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.team-card:hover {
  border-color: rgba(142, 165, 255, 0.48);
  transform: translateY(-2px);
}

.team-name {
  display: inline-block;
  color: #f2f6ff;
  font-size: 20px;
  font-weight: 720;
  line-height: 1.2;
  margin-bottom: 6px;
}

.team-name:hover {
  text-decoration: underline;
}

.team-meta {
  color: #b9c4df;
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 0;
}

.team-meta sup {
  font-size: 10px;
  vertical-align: super;
}

.team-role {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 999px;
  background: rgba(142, 165, 255, 0.12);
  color: #dfe6ff;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 650;
}

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

.team-note p:not(.stat-key) {
  color: #d3dcf0;
  font-size: 15px;
  line-height: 1.65;
}

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

.tech-stat-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 12, 20, 0.56);
  border-radius: 12px;
  padding: 10px;
}

.stat-key {
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  color: #93a6ea;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
}

.stat-value {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 3px;
}

.stat-desc {
  color: #b9c4df;
  font-size: 13px;
}

.tech-section {
  margin-bottom: 24px;
}

.abstract-section {
  margin-top: 8px;
}

.tech-section-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
}

.section-index {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  color: #8ea5ff;
}

.tech-section h2 {
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.panel {
  border-radius: 14px;
  border: 1px solid var(--dark-line);
  background: var(--dark-panel);
  padding: 14px;
}

.abstract-panel {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.03), rgba(60, 86, 244, 0.1));
  padding: clamp(16px, 3vw, 28px);
}

.abstract-text {
  font-size: 15px;
  line-height: 1.72;
  color: #d3dcf0;
  font-weight: 400;
  max-width: 1080px;
}

.full-row {
  width: 100%;
  margin-top: 12px;
}

.media-panel img {
  border-radius: 10px;
}

.media-panel figcaption {
  color: var(--dark-muted);
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

.table-caption {
  text-align: center;
}

.text-panel h3,
.tech-card h3,
.taxonomy-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.text-panel p,
.tech-card p,
.tech-muted {
  color: #d3dcf0;
  font-size: 15px;
  line-height: 1.72;
}

.text-panel ul,
.taxonomy-card ul {
  margin-top: 8px;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.text-panel li,
.taxonomy-card li {
  color: #d3dcf0;
  line-height: 1.65;
}

.text-panel code {
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 1px 4px;
}

.tech-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.tech-figure-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
}

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

.tech-figure-grid .full-row {
  grid-column: 1 / -1;
}

.finding-card h3 {
  color: #eef3ff;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.25;
  margin-bottom: 8px;
}

.finding-card p:not(.stat-key) {
  color: #d3dcf0;
  font-size: 14px;
  line-height: 1.68;
}

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

.result-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--dark-line);
  border-radius: 12px;
  margin-top: 10px;
}

.result-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.result-table th,
.result-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
}

.result-table th {
  color: #eef3ff;
  background: rgba(60, 86, 244, 0.16);
}

.result-table td {
  color: #cdd6eb;
}

.tech-muted {
  color: var(--dark-muted);
  margin-bottom: 10px;
}

.comparison-list {
  display: grid;
  gap: 12px;
}

.comparison-block {
  border-radius: 12px;
  border: 1px solid var(--dark-line);
  background: var(--dark-panel-alt);
  padding: 12px;
}

.comparison-prompt {
  font-size: clamp(14px, 1.8vw, 20px);
  margin-bottom: 12px;
  color: #dbe3f6;
  font-weight: 600;
}

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

.model-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0a0d15;
}

.model-name {
  padding: 9px 10px;
  font-size: 12px;
  color: #c9d2e5;
  font-weight: 600;
}

.model-card video {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.tech-footer,
.tech-footer a {
  color: var(--dark-muted);
}

@media (max-width: 1280px) {
  .tech-stat-grid,
  .tech-card-grid,
  .taxonomy-card-grid,
  .tech-figure-grid,
  .finding-grid,
  .group-grid,
  .team-grid,
  .team-note-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .comparison-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .hero-nav {
    height: 60px;
    padding: 0 12px;
    grid-template-columns: 94px minmax(0, 1fr) auto;
    column-gap: 10px;
  }

  .brand {
    width: 94px;
    max-width: 94px;
    min-width: auto;
  }

  .brand-logo {
    width: 92px;
  }

  .hero-nav-links {
    font-size: 12px;
    gap: 12px;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .hero-nav-links::-webkit-scrollbar {
    display: none;
  }

  .hero-nav-links a {
    padding: 20px 0 18px;
  }

  .hero-nav-links a::after {
    bottom: 12px;
  }

  .locale-switch {
    font-size: 12px;
    padding-left: 10px;
    gap: 6px;
    min-width: auto;
  }

  .hero-content {
    padding-top: 100px;
  }

  .hero-project {
    margin-bottom: 10px;
  }

  .hero-title {
    line-height: 1.12;
    margin-bottom: 12px;
  }

  .hero-affiliation {
    margin-bottom: 20px;
  }

  .action {
    min-width: 114px;
    padding: 10px 14px;
    font-size: 12px;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .results-main {
    padding-top: 54px;
  }

  .taxonomy-section-block {
    margin-bottom: 24px;
    padding: 12px;
  }

  .taxonomy-section-head {
    display: block;
  }

  .taxonomy-section-head p {
    max-width: none;
    text-align: left;
  }

  .video-grid,
  .comparison-grid,
  .tech-stat-grid,
  .tech-card-grid,
  .taxonomy-card-grid,
  .tech-figure-grid,
  .finding-grid,
  .group-grid,
  .team-grid,
  .team-note-grid {
    grid-template-columns: 1fr;
  }

  .tech-main {
    padding-top: 96px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .video-main {
    padding-top: 88px;
  }

  .video-intro {
    white-space: normal;
  }

  .tech-lead,
  .abstract-text,
  .text-panel p,
  .tech-card p,
  .taxonomy-card li,
  .tech-muted {
    font-size: 14px;
  }

  .home-page .prompt,
  .home-page .footer {
    font-size: 14px;
  }

  .tech-authors a,
  .tech-affiliations {
    font-size: 14px;
  }

  .tech-author-notes {
    font-size: 11px;
    gap: 2px 8px;
    margin-bottom: 8px;
  }
}
