:root {
  --navy: #061426;
  --navy-2: #0b1f3a;
  --navy-3: #102b4d;
  --blue: #1d6fe8;
  --blue-2: #43a1ff;
  --gold: #c89b3c;
  --gold-soft: #f1d58a;
  --ink: #102033;
  --muted: #61728a;
  --line: #dce5f2;
  --line-dark: rgba(159, 188, 225, 0.24);
  --surface: #ffffff;
  --paper: #f5f7fa;
  --paper-2: #edf3fb;
  --radius: 10px;
  --shadow: 0 24px 70px rgba(13, 34, 68, 0.12);
  --shadow-soft: 0 16px 40px rgba(13, 34, 68, 0.08);
  --container: 1240px;
  --font: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p,
a,
button,
span,
strong,
dt,
dd,
li {
  overflow-wrap: break-word;
}

.hero-copy,
.hero-visual,
.page-hero .container > *,
.split-grid > *,
.capability-grid > *,
.cloud-grid > *,
.solution-grid > *,
.resource-grid > *,
.story-grid > *,
.research-grid > *,
.principle-grid > *,
.path-grid > *,
.stat-grid > *,
.footer-grid > * {
  min-width: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-weight: 800;
  box-shadow: 0 12px 32px rgba(8, 25, 48, 0.2);
}

.skip-link:focus {
  transform: none;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(67, 161, 255, 0.48);
  outline-offset: 3px;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 228, 240, 0.92);
  backdrop-filter: blur(18px);
}

.nav-container {
  width: min(1360px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 245px;
}

.brand img {
  width: 106px;
  height: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand-name {
  color: #0a1f3b;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.brand-desc {
  color: #54708f;
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
}

.brand-mark {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, #0b1f3a, #1d6fe8);
}

.brand.logo-error img {
  display: none;
}

.brand.logo-error .brand-mark {
  display: grid;
}

.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 8px;
  color: #20344f;
  font-size: 15px;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  background: #eef5ff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--navy-2);
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.btn:focus-visible {
  box-shadow: 0 0 0 4px rgba(67, 161, 255, 0.16);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #1d6fe8, #0e55c7);
  box-shadow: 0 14px 34px rgba(29, 111, 232, 0.25);
}

.btn-ghost {
  color: var(--navy-2);
  background: #fff;
  border-color: #cfdced;
}

.btn-dark {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-light {
  color: var(--navy-2);
  background: #fff;
  border-color: #fff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--blue);
  font-weight: 800;
  border: 0;
  background: transparent;
  padding: 0;
}

.text-link:focus-visible {
  border-radius: 4px;
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 72% 28%, rgba(29, 111, 232, 0.35), transparent 28%),
    linear-gradient(135deg, #061426 0%, #0b1f3a 52%, #102b4d 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 86%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1360px, calc(100% - 56px));
  margin: 0 auto;
  padding: 78px 0 84px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(560px, 1.08fr);
  gap: 48px;
  align-items: center;
}

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

.section-kicker,
.hero-kicker {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.section.white .section-kicker,
.section.tint .section-kicker,
.modal-head .section-kicker {
  color: #9d6d17;
}

.hero h1 {
  margin: 0;
  font-size: 72px;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero h1 span {
  display: block;
}

.hero-lead {
  margin: 24px 0 0;
  color: #e5eefb;
  font-size: 20px;
  line-height: 1.9;
  max-width: 640px;
}

.hero-proof {
  margin: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}

.hero-proof span {
  padding: 6px 12px;
  border: 1px solid rgba(241, 213, 138, 0.42);
  border-radius: 8px;
  background: rgba(241, 213, 138, 0.08);
}

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

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

.hero-entry a {
  min-height: 112px;
  padding: 19px;
  border: 1px solid rgba(172, 204, 245, 0.26);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
}

.hero-entry strong {
  display: block;
  color: #fff;
  font-size: 17px;
  line-height: 1.35;
}

.hero-entry span {
  display: block;
  margin-top: 8px;
  color: #b9cbe4;
  font-size: 14px;
}

.hero-visual {
  position: relative;
  min-height: 566px;
  border: 1px solid rgba(158, 198, 246, 0.22);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(8, 25, 48, 0.62);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.34);
}

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

.hero-panel {
  position: absolute;
  min-width: 230px;
  padding: 18px 20px;
  border: 1px solid rgba(174, 210, 255, 0.32);
  border-radius: 10px;
  background: rgba(9, 31, 58, 0.9);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.hero-panel small {
  display: block;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 800;
}

.hero-panel strong {
  display: block;
  margin-top: 7px;
  color: #fff;
  font-size: 18px;
}

.hero-panel em {
  display: block;
  margin-top: 5px;
  color: #b8cce6;
  font-style: normal;
  font-size: 13px;
}

.panel-input {
  top: 20%;
  left: 5%;
}

.panel-center {
  right: 5%;
  top: 42%;
}

.panel-output {
  left: 18%;
  bottom: 8%;
}

.section {
  padding: 96px 0;
}

.section.compact {
  padding: 72px 0;
}

.section.white {
  background: #fff;
}

.section.dark {
  color: #fff;
  background: var(--navy);
}

.section.tint {
  background: linear-gradient(180deg, #f7faff 0%, #eef4fb 100%);
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2,
.page-hero h1,
.final-cta h2 {
  margin: 0;
  font-size: 44px;
  line-height: 1.18;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.section-head p,
.page-hero .lead,
.final-cta p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.section.dark .section-head p,
.section.dark .section-kicker,
.final-cta p {
  color: #c6d7ec;
}

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

.capability-card,
.product-card,
.solution-card,
.resource-card,
.story-card,
.research-card,
.principle-card,
.path-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.capability-card {
  padding: 28px;
}

.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: 9px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), #144a9d);
}

.capability-card h3,
.product-card h3,
.solution-card h3,
.resource-card h3,
.story-card h3,
.research-card h3,
.principle-card h3,
.path-card h3 {
  margin: 0;
  color: var(--navy-2);
  font-size: 21px;
  line-height: 1.35;
}

.capability-card p,
.product-card p,
.solution-card p,
.resource-card p,
.story-card p,
.research-card p,
.principle-card p,
.path-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.asset-flow {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.flow-column {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.flow-column.center {
  background:
    linear-gradient(rgba(10, 32, 60, 0.82), rgba(10, 32, 60, 0.82)),
    url("./assets/editorial/asset-evaluation-dashboard.webp") center / cover;
}

.flow-column h3 {
  margin: 0 0 20px;
  color: var(--navy-2);
  font-size: 22px;
}

.flow-column.center h3 {
  color: #fff;
}

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

.flow-item {
  padding: 14px 16px;
  border: 1px solid #dbe6f3;
  border-radius: 8px;
  color: var(--ink);
  background: #f7faff;
}

.flow-item strong {
  display: block;
  color: var(--navy-2);
}

.flow-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.flow-column.center .flow-item {
  border-color: rgba(185, 210, 241, 0.2);
  color: #e4eefc;
  background: rgba(255, 255, 255, 0.06);
}

.flow-column.center .flow-item strong {
  color: #fff;
}

.flow-column.center .flow-item span {
  color: #b8cce6;
}

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

.product-card {
  padding: 24px;
}

.product-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
}

.product-meta,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.product-meta span,
.tag-row span,
.text-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid #dbe6f3;
  border-radius: 7px;
  color: #31506f;
  background: #f7faff;
  font-size: 13px;
  font-weight: 700;
}

.stats-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(6, 20, 38, 0.82), rgba(6, 20, 38, 0.9)),
    url("./assets/editorial/core-enterprise-ecosystem.webp") center / cover;
}

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

.stat-card {
  padding: 26px;
  border: 1px solid rgba(182, 210, 244, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.stat-value {
  display: block;
  color: var(--gold-soft);
  font-size: 36px;
  line-height: 1;
  font-weight: 900;
}

.stat-card span:last-child {
  display: block;
  margin-top: 10px;
  color: #c8d8ec;
  font-size: 14px;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
}

.image-frame {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow);
  background: #102b4d;
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

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

.badge-wall .text-badge {
  min-height: 48px;
  justify-content: center;
  text-align: center;
  background: #fff;
}

.badge-wall.dark .text-badge {
  color: #dceaff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(190, 218, 252, 0.22);
}

.page-hero {
  color: #fff;
  background:
    linear-gradient(100deg, rgba(6, 20, 38, 0.94), rgba(6, 20, 38, 0.76)),
    url("./assets/editorial/home-hero-paper.webp") center / cover;
}

.page-hero .container {
  min-height: 390px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.65fr);
  gap: 34px;
  align-items: center;
  padding: 72px 0;
}

.page-hero .lead {
  color: #d5e5f8;
}

.page-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.page-hero-card {
  padding: 26px;
  border: 1px solid rgba(182, 210, 244, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.page-hero-card strong {
  display: block;
  color: #fff;
  font-size: 20px;
}

.page-hero-card strong:not(:first-child) {
  margin-top: 18px;
}

.page-hero-card span {
  display: block;
  margin-top: 12px;
  color: #bed1ea;
}

.deep-hero {
  background:
    linear-gradient(95deg, rgba(6, 20, 38, 0.95), rgba(6, 20, 38, 0.55)),
    var(--hero-image) center / cover;
}

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

.solution-card,
.resource-card,
.principle-card,
.path-card {
  padding: 26px;
}

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

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

.ecosystem-cards {
  margin-top: 22px;
}

.path-card {
  position: relative;
}

.path-card::before {
  content: attr(data-step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  background: var(--blue);
}

.story-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -12px 0 30px;
}

.story-toolbar button {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid #d7e4f2;
  color: #31506f;
  background: #fff;
  font-weight: 800;
}

.story-toolbar button.active {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

.story-toolbar button:focus-visible {
  outline-offset: 2px;
}

.filter-status {
  margin: -14px 0 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.story-card,
.research-card {
  overflow: hidden;
}

.story-card img,
.research-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.story-content,
.research-content {
  padding: 24px;
}

.story-facts,
.research-facts,
.detail-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.story-facts div,
.research-facts div,
.detail-list div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid #e7eef7;
  font-size: 14px;
}

.story-facts dt,
.research-facts dt,
.detail-list dt {
  color: #71829a;
  font-weight: 800;
}

.story-facts dd,
.research-facts dd,
.detail-list dd {
  margin: 0;
  color: #20344f;
  font-weight: 700;
}

.final-cta {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(100deg, rgba(6, 20, 38, 0.96), rgba(6, 20, 38, 0.72)),
    url("./assets/editorial/financial-resources-network.webp") center / cover;
}

.final-cta .container {
  padding: 78px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.site-footer {
  color: #c6d4e7;
  background: #06111f;
}

.footer-grid {
  padding: 54px 0;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto minmax(260px, 0.7fr);
  gap: 40px;
  align-items: start;
}

.site-footer img {
  width: 120px;
  padding: 6px;
  border-radius: 8px;
  background: #fff;
}

.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
}

.footer-logo-wrap .footer-mark {
  display: none;
}

.footer-logo-wrap.logo-error img {
  display: none;
}

.footer-logo-wrap.logo-error .footer-mark {
  display: grid;
}

.site-footer p {
  margin: 18px 0 0;
  color: #9fb0c7;
  font-size: 14px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(110px, 1fr));
  gap: 10px 22px;
}

.footer-links a {
  color: #dceaff;
  font-size: 14px;
  font-weight: 700;
}

.footer-links a[aria-current="page"] {
  color: var(--gold-soft);
}

.legal {
  max-width: 360px;
}

.modal,
.mobile-dock {
  display: none;
}

.modal.active {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 15, 30, 0.72);
  backdrop-filter: blur(10px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(86vh, 900px);
  overflow: auto;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.32);
}

.modal-panel.large {
  width: min(980px, 100%);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 1px solid #dbe6f3;
  border-radius: 8px;
  background: #fff;
  color: #263a54;
  font-size: 28px;
  line-height: 1;
}

.modal-head {
  padding: 34px 34px 10px;
}

.modal-head.center {
  text-align: center;
}

.modal-head h2 {
  margin: 0;
  color: var(--navy-2);
  font-size: 30px;
}

.modal-head p:not(.section-kicker) {
  margin: 12px 0 0;
  color: var(--muted);
}

.project-form {
  padding: 18px 34px 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.project-form label {
  display: grid;
  gap: 8px;
  color: #233b57;
  font-size: 14px;
  font-weight: 800;
}

.project-form input,
.project-form select {
  width: 100%;
  height: 46px;
  border: 1px solid #d6e2f0;
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
}

.project-form input:focus,
.project-form select:focus {
  border-color: var(--blue);
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.form-actions p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.success-box {
  margin: 18px 34px 34px;
  padding: 26px;
  border: 1px solid #dbe6f3;
  border-radius: 10px;
  background: #f7faff;
}

.success-box strong {
  display: block;
  color: var(--navy-2);
  font-size: 24px;
}

.success-box p {
  margin: 10px 0 18px;
  color: var(--muted);
}

.success-qr,
.contact-qr {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.success-qr article,
.contact-qr article {
  padding: 16px;
  border: 1px solid #dbe6f3;
  border-radius: 10px;
  text-align: center;
  background: #fff;
}

.success-qr img,
.contact-qr img {
  width: min(220px, 100%);
  margin: 0 auto 10px;
}

.contact-panel {
  width: min(640px, 100%);
  padding-bottom: 30px;
}

.contact-qr {
  padding: 10px 34px 24px;
}

.modal-done {
  margin: 0 auto;
}

[hidden] {
  display: none !important;
}

.motion-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: var(--motion-delay, 0ms);
}

.motion-visible,
.motion-reduced .motion-item {
  opacity: 1;
  transform: none;
}

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

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

  .btn:hover {
    transform: none;
  }
}

@media (max-width: 1120px) {
  .nav-actions {
    display: none;
  }

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

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

  .hero h1 {
    font-size: 60px;
  }

  .section-head h2,
  .page-hero h1,
  .final-cta h2 {
    font-size: 40px;
  }

  .capability-grid,
  .cloud-grid,
  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .asset-flow,
  .split-grid,
  .page-hero .container,
  .final-cta .container {
    grid-template-columns: 1fr;
  }

  .solution-grid,
  .resource-grid,
  .principle-grid,
  .path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  body {
    padding-bottom: 86px;
  }

  body.modal-open {
    padding-bottom: 0;
  }

  .container,
  .hero-inner,
  .nav-container {
    width: min(100% - 32px, var(--container));
  }

  .nav-container {
    min-height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 92px;
  }

  .brand-desc {
    display: none;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-header.menu-open .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 48px 0 80px;
    gap: 28px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .section-head h2,
  .page-hero h1,
  .final-cta h2 {
    font-size: 34px;
  }

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

  .hero-entry,
  .capability-grid,
  .cloud-grid,
  .stat-grid,
  .solution-grid,
  .resource-grid,
  .principle-grid,
  .path-grid,
  .story-grid,
  .research-grid,
  .badge-wall,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 430px;
  }

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

  .hero-panel {
    position: static;
    margin: 10px;
    min-width: 0;
  }

  .page-hero .container {
    min-height: auto;
    padding: 52px 0;
  }

  .section {
    padding: 68px 0;
  }

  .project-form {
    grid-template-columns: 1fr;
  }

  .mobile-dock {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 48;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(200, 218, 240, 0.85);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 50px rgba(8, 25, 48, 0.16);
    backdrop-filter: blur(14px);
  }

  .mobile-dock button {
    min-height: 44px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    background: var(--blue);
    font-weight: 800;
  }

  .modal.active {
    padding: 14px;
  }

  .modal-panel {
    max-height: calc(100vh - 28px);
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 38px;
  }

  .section-head h2,
  .page-hero h1,
  .final-cta h2 {
    font-size: 30px;
  }

  .hero-actions,
  .page-actions,
  .cta-actions,
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-panel strong,
  .capability-card h3,
  .product-card h3,
  .solution-card h3,
  .resource-card h3,
  .story-card h3,
  .research-card h3 {
    font-size: 19px;
  }

  .success-qr,
  .contact-qr {
    grid-template-columns: 1fr;
  }

  .modal-head {
    padding: 30px 22px 8px;
  }

  .modal-head h2 {
    font-size: 26px;
  }

  .project-form {
    padding: 16px 22px 28px;
    gap: 14px;
  }

  .success-box {
    margin: 16px 22px 28px;
    padding: 20px;
  }

  .contact-qr {
    padding: 8px 22px 20px;
  }

  .modal-close {
    top: 10px;
    right: 10px;
  }
}
