:root {
  --ink: #102225;
  --muted: #607174;
  --line: #d8e3e0;
  --paper: #f7f4ec;
  --paper-strong: #efe6d7;
  --teal: #148c8f;
  --teal-dark: #0a6065;
  --jade: #7dbda9;
  --gold: #c58a35;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(16, 34, 37, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(rgba(16, 34, 37, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 34, 37, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 80%, transparent);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(216, 227, 224, 0.72);
  border-radius: 999px;
  background: rgba(247, 244, 236, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(16, 34, 37, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

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

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

.brand small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.site-nav a {
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.site-nav a:hover {
  color: var(--teal-dark);
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(16, 34, 37, 0.16);
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.language-toggle:hover {
  border-color: rgba(10, 96, 101, 0.42);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--white) !important;
  background: var(--teal-dark);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.section-band {
  background:
    linear-gradient(135deg, rgba(20, 140, 143, 0.08), transparent 46%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.56));
}

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

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: 58px;
  align-items: center;
  min-height: calc(100vh - 90px);
  padding: 92px 0 72px;
}

.hero-screen {
  isolation: isolate;
  width: 100%;
  min-height: calc(100vh - 16px);
  padding: 120px max(20px, calc((100vw - 1180px) / 2)) 72px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(125, 189, 169, 0.22), transparent 34%),
    linear-gradient(135deg, #071616 0%, #102225 48%, #1f2a23 100%);
}

.hero-screen::before,
.hero-screen::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.hero-screen::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  transform-origin: center;
  animation: gridDrift 16s linear infinite;
}

.hero-screen::after {
  background: linear-gradient(90deg, transparent, rgba(125, 189, 169, 0.16), transparent);
  transform: translateX(-100%);
  animation: screenSweep 7s ease-in-out infinite;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.58;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-screen .eyebrow {
  color: #8ee1d1;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-screen h1 {
  color: var(--white);
  text-shadow: 0 0 34px rgba(125, 189, 169, 0.28);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 680px;
  color: #314246;
  font-size: 20px;
}

.hero-screen .hero-lead {
  color: rgba(255, 255, 255, 0.78);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--teal-dark);
  box-shadow: 0 14px 32px rgba(10, 96, 101, 0.22);
}

.button.secondary {
  border-color: rgba(16, 34, 37, 0.18);
  background: rgba(255, 255, 255, 0.72);
}

.hero-screen .button.primary {
  background: linear-gradient(135deg, var(--teal), #2fb8c1);
  box-shadow: 0 0 28px rgba(47, 184, 193, 0.34);
}

.hero-screen .button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 48px 0 0;
}

.hero-metrics div {
  padding-top: 18px;
  border-top: 1px solid rgba(16, 34, 37, 0.16);
}

.hero-screen .hero-metrics div {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.hero-metrics dt {
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.hero-screen .hero-metrics dt {
  color: #9ce9d9;
}

.hero-metrics dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-screen .hero-metrics dd {
  color: rgba(255, 255, 255, 0.66);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(16, 34, 37, 0.12);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.command-center {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: 560px;
  padding: 18px;
  border-color: rgba(142, 225, 209, 0.26);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(4, 18, 20, 0.72);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.32),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  animation: screenFloat 7s ease-in-out infinite;
}

.screen-topline,
.screen-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.screen-topline {
  padding: 4px 4px 14px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  letter-spacing: 0.16em;
}

.screen-topline strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #9ce9d9;
  letter-spacing: 0;
}

.screen-topline strong::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: #49efbc;
  box-shadow: 0 0 14px #49efbc;
}

.screen-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 14px;
  min-height: 0;
}

.screen-main {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border: 1px solid rgba(142, 225, 209, 0.18);
  border-radius: 16px;
  background: #091819;
}

.screen-main::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(10, 96, 101, 0.24));
  pointer-events: none;
}

.english-screen {
  display: none;
}

.lang-en .screen-main > img {
  display: none;
}

.lang-en .english-screen {
  display: grid;
  align-content: center;
  gap: 22px;
  min-height: 410px;
  padding: 42px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(156, 233, 217, 0.2), rgba(197, 138, 53, 0.12)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.english-screen span {
  color: #9ce9d9;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.english-screen strong {
  max-width: 520px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.06;
}

.english-screen p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.english-screen div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.english-screen small {
  padding: 8px 12px;
  border: 1px solid rgba(156, 233, 217, 0.26);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
}

.screen-side {
  display: grid;
  gap: 12px;
}

.screen-side div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  padding: 18px 14px;
  border: 1px solid rgba(142, 225, 209, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.screen-side span,
.screen-side small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.screen-side strong {
  color: #9ce9d9;
  font-size: 28px;
  line-height: 1.1;
}

.screen-footer {
  padding-top: 14px;
}

.signal-bars {
  display: flex;
  align-items: end;
  gap: 6px;
  height: 40px;
}

.signal-bars span {
  display: block;
  width: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, #9ce9d9, rgba(197, 138, 53, 0.7));
  animation: barPulse 1.7s ease-in-out infinite;
}

.signal-bars span:nth-child(1) {
  height: 18px;
}

.signal-bars span:nth-child(2) {
  height: 30px;
  animation-delay: 0.14s;
}

.signal-bars span:nth-child(3) {
  height: 24px;
  animation-delay: 0.28s;
}

.signal-bars span:nth-child(4) {
  height: 36px;
  animation-delay: 0.42s;
}

.signal-bars span:nth-child(5) {
  height: 22px;
  animation-delay: 0.56s;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
}

.command-center img {
  min-height: 410px;
  transform: scale(1.02);
  animation: imageScan 12s ease-in-out infinite;
}

.status-panel {
  position: static;
  width: min(300px, calc(100% - 44px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 18px;
  color: var(--white);
  background: rgba(10, 96, 101, 0.76);
  backdrop-filter: blur(12px);
}

.status-panel span,
.status-panel strong {
  display: block;
}

.status-panel span {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

@keyframes gridDrift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(72px, 72px, 0);
  }
}

@keyframes screenSweep {
  0%,
  28% {
    transform: translateX(-100%);
  }
  58%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes screenFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes imageScan {
  0%,
  100% {
    transform: scale(1.02) translateX(0);
  }
  50% {
    transform: scale(1.06) translateX(-14px);
  }
}

@keyframes barPulse {
  0%,
  100% {
    transform: scaleY(0.74);
    opacity: 0.62;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.reference-notes,
.scenario-section,
.platform-section,
.case-section {
  padding: 92px 0;
}

.note-grid,
.scenario-grid,
.capability-grid,
.case-grid {
  display: grid;
  gap: 18px;
}

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

.note-grid article,
.feature-list article,
.capability-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
}

.note-grid article {
  padding: 24px;
}

.note-grid p,
.feature-list p,
.scenario-grid p,
.capability-grid p,
.case-grid p,
.contact-panel p,
.split p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  padding: 96px 0;
}

.split.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.88fr);
}

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

.feature-list article {
  padding: 24px;
}

.feature-list span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-weight: 800;
}

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

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

.scenario-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 44px rgba(16, 34, 37, 0.08);
}

.scenario-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.scenario-grid h3,
.scenario-grid p {
  padding: 0 22px;
}

.scenario-grid h3 {
  margin-top: 22px;
}

.scenario-grid p {
  margin-bottom: 24px;
}

.enterprise-visual {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.enterprise-visual img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.layer-stack {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.layer-stack span {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: var(--white);
  background: rgba(16, 34, 37, 0.62);
  backdrop-filter: blur(10px);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.pain-grid div {
  padding: 20px;
  border: 1px solid rgba(16, 34, 37, 0.12);
  border-radius: 8px;
  background: var(--white);
}

.pain-grid strong,
.pain-grid span {
  display: block;
}

.pain-grid strong {
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 28px;
  line-height: 1;
}

.pain-grid span {
  color: var(--muted);
  font-size: 13px;
}

.team-section {
  padding: 96px 0;
  background:
    linear-gradient(135deg, rgba(10, 96, 101, 0.06), transparent 40%),
    var(--paper);
}

.team-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.team-highlights article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.team-highlights strong,
.team-highlights span {
  display: block;
}

.team-highlights strong {
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 28px;
  line-height: 1;
}

.team-highlights span {
  color: var(--muted);
  font-size: 13px;
}

.team-photo {
  overflow: hidden;
  border: 1px solid rgba(16, 34, 37, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.team-photo img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.capability-grid {
  grid-template-columns: repeat(4, 1fr);
}

.capability-grid article {
  padding: 26px;
}

.capability-grid span {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(20, 140, 143, 0.12);
  font-size: 12px;
  font-weight: 800;
}

.deployment-section {
  padding: 96px 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline li {
  display: flex;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(16, 34, 37, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal-dark);
  font-weight: 800;
}

.timeline p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.case-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 44px rgba(16, 34, 37, 0.08);
}

.case-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.case-grid h3,
.case-grid p {
  padding: 0 22px;
}

.case-grid h3 {
  margin-top: 20px;
}

.case-grid p {
  margin-bottom: 24px;
}

.contact-section {
  padding: 96px 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(16, 34, 37, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(10, 96, 101, 0.12), rgba(197, 138, 53, 0.12)),
    var(--white);
  box-shadow: var(--shadow);
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.contact-details {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid rgba(16, 34, 37, 0.12);
}

.contact-details a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(10, 96, 101, 0.16);
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer strong {
  color: var(--ink);
}

.site-footer p {
  margin-bottom: 0;
}

@media (max-width: 960px) {
  .site-header {
    align-items: flex-start;
    border-radius: 24px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(247, 244, 236, 0.96);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px 14px;
  }

  .language-toggle {
    justify-content: flex-start;
    width: 100%;
    height: auto;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
  }

  .nav-cta {
    text-align: center;
  }

  .hero,
  .split,
  .split.reverse,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

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

  .hero-visual,
  .hero-visual img {
    min-height: 420px;
  }

  .screen-grid {
    grid-template-columns: 1fr;
  }

  .screen-side {
    grid-template-columns: repeat(3, 1fr);
  }

  .note-grid,
  .scenario-grid,
  .capability-grid,
  .team-highlights,
  .timeline,
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .section-inner,
  .hero,
  .site-footer,
  .site-header {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    gap: 36px;
    padding-bottom: 56px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .command-center {
    min-height: auto;
  }

  .screen-topline {
    display: block;
  }

  .screen-grid,
  .screen-side {
    grid-template-columns: 1fr;
  }

  .screen-main,
  .command-center img {
    min-height: 320px;
  }

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

  .status-panel {
    width: 100%;
  }

  .hero-metrics,
  .note-grid,
  .scenario-grid,
  .capability-grid,
  .team-highlights,
  .timeline,
  .case-grid,
  .pain-grid {
    grid-template-columns: 1fr;
  }

  .reference-notes,
  .scenario-section,
  .platform-section,
  .case-section,
  .deployment-section,
  .contact-section {
    padding: 64px 0;
  }

  .split {
    padding: 68px 0;
  }

  .layer-stack {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    padding: 28px;
  }

  .site-footer {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
