:root {
  --color-bg: #071013;
  --color-bg-2: #0d171d;
  --color-bg-3: #141d24;
  --color-surface: rgba(16, 24, 31, 0.82);
  --color-surface-strong: rgba(10, 16, 22, 0.94);
  --color-line: rgba(255, 255, 255, 0.12);
  --color-line-strong: rgba(255, 255, 255, 0.2);
  --color-text: #f4f7f8;
  --color-muted: #a7b2b8;
  --color-subtle: #71808a;
  --color-cyan: #2ff3ff;
  --color-green: #28e59b;
  --color-orange: #ffb24a;
  --color-pink: #ff5a91;
  --shadow-lg:
    0 20px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  transition-property: color, background-color, border-color, box-shadow, transform, opacity;
  transition-duration: 180ms;
  transition-timing-function: ease-out;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 90, 145, 0.08), transparent 18%),
    radial-gradient(circle at 0 22%, rgba(47, 243, 255, 0.09), transparent 20%),
    linear-gradient(180deg, #071013 0%, #0c141b 40%, #081015 100%);
  font-family:
    "HarmonyOS Sans SC",
    "Microsoft YaHei",
    "PingFang SC",
    "Noto Sans SC",
    sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

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

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

button {
  color: inherit;
  font: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  top: 14px;
  left: 14px;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  padding: 10px 14px;
  color: var(--color-bg);
  background: var(--color-cyan);
  border-radius: 6px;
  z-index: 300;
}

.section-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section-band {
  position: relative;
  padding: 96px 0;
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.04));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  height: 64px;
  background: rgba(6, 12, 16, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  margin-left: -8px;
  border-radius: 10px;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 18px rgba(47, 243, 255, 0.18);
  background: #0d141a;
}

.brand-text {
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.site-nav {
  display: inline-flex;
  justify-content: center;
  gap: 20px;
}

.site-nav a {
  position: relative;
  font-size: 14px;
  color: var(--color-muted);
  padding: 8px 10px;
  border-radius: 8px;
}

.site-nav a.is-active,
.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--color-text);
}

.site-nav a.is-active::after,
.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-cyan), transparent);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--color-text);
}

.header-cta,
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.header-cta,
.btn-primary {
  color: var(--color-bg);
  background: linear-gradient(135deg, var(--color-cyan), var(--color-green));
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 0 24px rgba(47, 243, 255, 0.24);
}

.header-cta::after,
.btn-primary::after,
.btn-secondary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.28) 50%, transparent 80%);
  transform: translateX(-140%);
  opacity: 0;
  pointer-events: none;
}

.btn-secondary {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.16);
}

.header-cta:hover,
.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 88vh;
  overflow: clip;
}

.hero-backdrop,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 8, 12, 0.9), rgba(4, 8, 12, 0.52) 55%, rgba(4, 8, 12, 0.82)),
    linear-gradient(180deg, rgba(4, 8, 12, 0.18), rgba(4, 8, 12, 0.94));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 40px;
  align-items: end;
  min-height: 88vh;
  padding-top: 14vh;
  padding-bottom: 12vh;
}

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

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

.hero-title {
  margin: 0;
  font-size: clamp(36px, 5.8vw, 68px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-subtitle {
  margin: 16px 0 0;
  color: var(--color-cyan);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
}

.hero-description,
.section-text,
.footer-text,
.news-item p,
.faq-item p,
.guide-item p,
.guide-main-copy p,
.case-file p,
.overview-copy p,
.district-panel p,
.faq-card p {
  color: var(--color-muted);
}

.hero-description {
  max-width: 64ch;
  margin: 22px 0 0;
}

.strong-text {
  font-weight: 700;
  color: var(--color-text);
}

.accent-text {
  color: var(--color-cyan);
}

.hero-actions,
.footer-actions,
.data-strip,
.news-filters,
.character-tabs {
  display: flex;
  flex-wrap: wrap;
}

.hero-actions {
  gap: 14px;
  margin-top: 30px;
}

.panel {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  backdrop-filter: blur(16px);
  position: relative;
}

.elevated {
  box-shadow: var(--shadow-lg);
}

.hero-console {
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(14, 22, 29, 0.94), rgba(12, 18, 24, 0.88)),
    rgba(12, 18, 24, 0.9);
}

.console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.signal,
.tag,
.file-type,
.panel-kicker,
.news-type {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  font-size: 12px;
  border-radius: 999px;
}

.signal,
.tag {
  color: var(--color-cyan);
  border: 1px solid rgba(47, 243, 255, 0.32);
  background: rgba(47, 243, 255, 0.08);
}

.signal::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}

.console-code {
  color: var(--color-subtle);
  font-size: 12px;
}

.console-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.console-item {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.console-label {
  display: block;
  color: var(--color-subtle);
  font-size: 12px;
}

.console-item strong {
  display: block;
  margin-top: 4px;
  font-size: 15px;
  line-height: 1.45;
}

.console-log {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--color-muted);
}

.hero-bottom {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 2;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 48px));
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--color-subtle);
  font-size: 13px;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 36px;
}

.section-title {
  margin: 0;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.14;
  font-weight: 800;
}

.overview-grid,
.district-layout,
.character-shell,
.guide-layout,
.faq-layout,
.news-layout {
  display: grid;
  gap: 24px;
}

.overview-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.data-strip {
  gap: 10px;
  margin-bottom: 18px;
}

.tag-alt {
  color: var(--color-green);
  border-color: rgba(40, 229, 155, 0.32);
  background: rgba(40, 229, 155, 0.08);
}

.tag-warn {
  color: var(--color-orange);
  border-color: rgba(255, 178, 74, 0.32);
  background: rgba(255, 178, 74, 0.08);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.metric-row div {
  padding: 14px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
}

.metric-row span,
.route-list span {
  display: block;
  color: var(--color-subtle);
  font-size: 12px;
}

.metric-row strong,
.route-list strong {
  display: block;
  margin-top: 4px;
}

.overview-visual {
  padding: 18px;
}

.media-frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: #0d141a;
}

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

.wide-media {
  aspect-ratio: 16 / 10;
}

.overview-visual figcaption {
  margin-top: 12px;
  color: var(--color-muted);
}

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

.case-file {
  position: relative;
  padding: 20px;
}

.case-file::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-cyan), transparent);
  opacity: 0.5;
}

.file-type,
.panel-kicker,
.news-type {
  color: var(--color-subtle);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.case-file h3,
.district-panel h3,
.system-copy h3,
.character-copy h3,
.guide-main-copy h3,
.guide-item h3,
.faq-card h3,
.news-item h3 {
  margin: 14px 0 8px;
  font-size: 22px;
  line-height: 1.2;
}

.district-layout {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
}

.district-map {
  position: relative;
  padding: 18px;
}

.map-media {
  aspect-ratio: 16 / 10;
}

.map-marker {
  position: absolute;
  width: 14px;
  height: 14px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--color-cyan);
  box-shadow: 0 0 18px rgba(47, 243, 255, 0.8);
  cursor: pointer;
}

.map-marker::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(47, 243, 255, 0.4);
  border-radius: 50%;
  animation: pulse 2.4s ease-out infinite;
}

.map-marker.is-active {
  background: var(--color-orange);
  box-shadow: 0 0 18px rgba(255, 178, 74, 0.8);
}

.map-marker.is-active::after {
  border-color: rgba(255, 178, 74, 0.42);
}

.district-panel {
  padding: 24px;
}

.district-points,
.system-points {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--color-muted);
}

.route-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.route-list div {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.system-shell {
  display: grid;
  gap: 18px;
}

.system-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.system-tab,
.character-tab,
.filter-btn {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text);
  border-radius: 8px;
  cursor: pointer;
}

.system-tab,
.filter-btn {
  padding: 10px 14px;
}

.system-tab.is-active,
.character-tab.is-active,
.filter-btn.is-active {
  color: var(--color-cyan);
  border-color: rgba(47, 243, 255, 0.46);
  background: rgba(47, 243, 255, 0.1);
  box-shadow: 0 0 18px rgba(47, 243, 255, 0.1);
}

.system-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: 24px;
  padding: 18px;
}

.feature-media {
  aspect-ratio: 16 / 10;
}

.character-shell {
  grid-template-columns: minmax(320px, 0.92fr) minmax(320px, 1.08fr);
  align-items: end;
}

.character-stage {
  padding: 18px;
}

.portrait-media {
  aspect-ratio: 4 / 5;
}

.character-copy {
  padding: 24px;
}

.dossier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.dossier-grid dt {
  margin-bottom: 8px;
  color: var(--color-subtle);
  font-size: 12px;
}

.dossier-grid dd {
  margin: 0;
}

.character-tabs {
  gap: 12px;
  margin-top: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 4px;
}

.character-tab {
  padding: 12px 14px;
  white-space: nowrap;
  scroll-snap-align: start;
}

.guide-layout {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
}

.guide-main {
  overflow: hidden;
}

.guide-main-copy {
  padding: 20px;
}

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

.guide-item {
  padding: 18px;
}

.news-layout {
  grid-template-columns: 180px 1fr;
  align-items: start;
}

.news-filters {
  flex-direction: column;
  gap: 10px;
}

.filter-btn {
  min-height: 42px;
  text-align: left;
}

.news-terminal {
  padding: 0 18px;
}

.news-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.news-item:last-child {
  border-bottom: 0;
}

.news-item time {
  font-size: 13px;
  color: var(--color-subtle);
}

.faq-layout {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 20px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] {
  border-color: rgba(47, 243, 255, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 0 0 1px rgba(47, 243, 255, 0.08);
}

.faq-card {
  padding: 22px;
}

.faq-avatar {
  width: 96px;
  height: 96px;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

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

.site-footer {
  padding: 28px 0 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 16, 19, 0.75);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
}

.footer-text {
  margin: 0;
  max-width: 64ch;
}

@media (hover: hover) and (pointer: fine) {
  .brand:hover,
  .brand:focus-visible {
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  }

  .brand:hover .brand-mark,
  .brand:focus-visible .brand-mark {
    transform: translateY(-1px) scale(1.04);
    box-shadow: 0 0 22px rgba(47, 243, 255, 0.28);
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a.is-active {
    background: rgba(255, 255, 255, 0.045);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  }

  .header-cta:hover,
  .btn-primary:hover,
  .btn-secondary:hover {
    transform: translateY(-2px);
  }

  .header-cta:hover::after,
  .btn-primary:hover::after,
  .btn-secondary:hover::after {
    opacity: 1;
    transform: translateX(140%);
    transition: transform 520ms ease, opacity 180ms ease;
  }

  .header-cta:hover,
  .btn-primary:hover {
    box-shadow: 0 10px 34px rgba(47, 243, 255, 0.3);
  }

  .btn-secondary:hover {
    border-color: rgba(47, 243, 255, 0.22);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  }

  .hero-console:hover,
  .overview-visual:hover,
  .district-map:hover,
  .district-panel:hover,
  .system-stage:hover,
  .character-stage:hover,
  .character-copy:hover,
  .guide-main:hover,
  .guide-item:hover,
  .faq-card:hover {
    transform: translateY(-4px);
    border-color: rgba(47, 243, 255, 0.2);
    box-shadow:
      0 24px 60px rgba(0, 0, 0, 0.38),
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 0 0 1px rgba(47, 243, 255, 0.06);
  }

  .case-file:hover {
    transform: translateY(-4px) rotate(-0.2deg);
    border-color: rgba(47, 243, 255, 0.22);
    box-shadow:
      0 18px 40px rgba(0, 0, 0, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.05),
      0 0 0 1px rgba(47, 243, 255, 0.05);
  }

  .case-file:hover::before {
    opacity: 0.95;
    background: linear-gradient(90deg, var(--color-cyan), var(--color-green));
  }

  .overview-visual:hover .media-frame img,
  .district-map:hover .media-frame img,
  .system-stage:hover .media-frame img,
  .character-stage:hover .media-frame img,
  .guide-main:hover .media-frame img {
    transform: scale(1.04);
  }

  .news-item:hover {
    background: linear-gradient(90deg, rgba(47, 243, 255, 0.06), rgba(255, 255, 255, 0.015));
    box-shadow: inset 3px 0 0 rgba(47, 243, 255, 0.9);
  }

  .faq-item:hover {
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
  }

  .faq-item:hover summary,
  .faq-item[open] summary {
    color: var(--color-cyan);
  }

  .system-tab:hover,
  .character-tab:hover,
  .filter-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(47, 243, 255, 0.28);
    background: rgba(47, 243, 255, 0.08);
  }

  .map-marker:hover {
    transform: scale(1.14);
    box-shadow: 0 0 24px rgba(47, 243, 255, 0.95);
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  70% {
    transform: scale(1.8);
    opacity: 0;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

@media (max-width: 1199px) {
  .overview-grid,
  .district-layout,
  .system-stage,
  .character-shell,
  .guide-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-items: end;
  }
}

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

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

  .news-filters {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .site-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px 24px 16px;
    background: rgba(6, 12, 16, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav a {
    width: 100%;
    padding: 12px 0;
  }

  .site-nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }
}

@media (max-width: 768px) {
  .section-band {
    padding: 64px 0;
  }

  .section-inner {
    width: min(1180px, calc(100% - 28px));
  }

  .hero-inner {
    min-height: 82vh;
    padding-top: 18vh;
    padding-bottom: 14vh;
  }

  .console-grid,
  .metric-row,
  .dossier-grid {
    grid-template-columns: 1fr;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .news-type {
    justify-self: start;
  }

  .menu-toggle {
    justify-self: end;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary,
  .header-cta {
    width: 100%;
  }

  .header-cta {
    display: none;
  }

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

  .hero-title {
    font-size: clamp(32px, 11vw, 52px);
  }

  .section-title {
    font-size: clamp(22px, 7vw, 30px);
  }
}

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

  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
