:root {
  --home-ink: #10233a;
  --home-muted: #607184;
  --home-line: #d8e1e2;
  --home-paper: #f7f3eb;
  --home-surface: #fffdfa;
  --home-night: #071b2b;
  --home-night-soft: #0d2f40;
  --home-teal: #147d78;
  --home-teal-bright: #1a9188;
  --home-jade: #3f867a;
  --home-coral: #e76850;
  --home-coral-soft: #f3a48f;
  --home-mint: #acd9cf;
  --home-shell: min(1240px, calc(100% - 48px));
  --home-shadow: 0 28px 76px rgba(12, 38, 48, .16);
  --home-shadow-soft: 0 15px 40px rgba(23, 51, 59, .1);
}

.home-page {
  color: var(--home-ink);
  background: var(--home-surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

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

.home-page a { text-decoration: none; }
.home-page .xb-header__cta { background: var(--home-teal); box-shadow: 0 8px 18px rgba(20, 125, 120, .22); }
.home-page .xb-product-name::before { background: linear-gradient(180deg, var(--home-coral-soft), var(--home-teal-bright)); }
.home-page .xb-product-nav a:hover,
.home-page .xb-product-nav a.is-active { color: var(--home-teal-bright); }
.home-shell { width: var(--home-shell); margin-inline: auto; }
.home-page main :is(h1, h2, h3) {
  max-width: 100%;
  margin-top: 0;
  color: inherit;
  overflow: visible;
  word-break: keep-all;
  white-space: nowrap;
}
.home-page main p { text-wrap: pretty; }
.home-page main img { display: block; width: 100%; height: auto; }

.home-kicker,
.home-overline {
  margin: 0 0 11px;
  color: var(--home-teal-bright);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 47px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 920;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.home-button:hover { transform: translateY(-2px); }
.home-button--primary {
  color: #fff;
  background: var(--home-coral);
  box-shadow: 0 14px 28px rgba(231, 104, 80, .27);
}
.home-button--primary:hover { background: #cc563f; }
.home-button--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .38);
  background: rgba(255, 255, 255, .07);
}
.home-button--ghost:hover { border-color: rgba(255, 255, 255, .62); background: rgba(255, 255, 255, .12); }

/* Hero geometry intentionally mirrors the MES detail page, item for item. */
.home-hero {
  position: relative;
  min-height: clamp(650px, 52.5vw, 940px);
  overflow: hidden;
  color: #fff;
  background: var(--home-night);
}
.home-hero__media { position: absolute; inset: 0; overflow: hidden; }
.home-hero__media img {
  position: absolute;
  top: 0;
  left: 50%;
  width: auto;
  max-width: none;
  height: 100%;
  transform: translateX(-50%);
}
.home-hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(5, 19, 31, .99) 0%, rgba(7, 28, 42, .94) 30%, rgba(14, 52, 60, .58) 51%, rgba(17, 70, 70, .09) 76%, rgba(10, 38, 48, .11) 100%);
}
.home-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: inherit;
}
.home-hero__copy {
  width: min(610px, 51%);
  min-width: 0;
  padding-block: 72px 68px;
}
.home-hero .home-overline { color: #b9e0d7; }
.home-hero h1 {
  margin-bottom: 0;
  font-size: clamp(42px, 3.6vw, 50px);
  font-weight: 970;
  letter-spacing: -.06em;
  line-height: 1.02;
}
html[lang^="en"] .home-hero h1 { font-size: clamp(27px, 2.2vw, 33px); letter-spacing: -.05em; }
.home-hero__claim {
  margin: 20px 0 0;
  font-size: clamp(23px, 2.3vw, 32px);
  font-weight: 940;
  letter-spacing: -.04em;
  line-height: 1.28;
}
.home-hero__lead {
  margin: 17px 0 0;
  color: rgba(255, 255, 255, .74);
  font-size: 15px;
  line-height: 1.82;
}
.home-hero__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.home-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 30px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .2);
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  list-style: none;
}
.home-proof li { min-width: 0; padding: 15px 13px; border-right: 1px solid rgba(255, 255, 255, .16); }
.home-proof li:first-child { padding-left: 0; }
.home-proof li:last-child { border-right: 0; }
.home-proof strong,
.home-proof span { display: block; }
.home-proof strong { font-size: 15px; }
.home-proof span { margin-top: 5px; color: rgba(255, 255, 255, .59); font-size: 12px; line-height: 1.55; }

.home-section { padding-block: 84px; }
.home-section--paper { background: var(--home-paper); }
.home-section--dark { color: #fff; background: var(--home-night); }
.home-section--ink {
  color: #fff;
  background:
    radial-gradient(circle at 86% 8%, rgba(26, 145, 136, .28), transparent 30%),
    linear-gradient(135deg, #0d2f40, #071e2e 64%, #0b303d);
}
.home-section--console {
  color: #fff;
  background:
    radial-gradient(circle at 84% 12%, rgba(26, 145, 136, .22), transparent 31%),
    linear-gradient(145deg, #071b2b, #0d2f40 68%, #123c47);
}
.home-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  margin-bottom: 35px;
}
.home-heading > div { min-width: 0; }
.home-heading h2 {
  margin-bottom: 0;
  font-size: clamp(33px, 3.55vw, 50px);
  font-weight: 960;
  letter-spacing: -.055em;
  line-height: 1.09;
}
.home-heading > p {
  max-width: 820px;
  margin: 0;
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.84;
}
.home-section--dark .home-heading > p,
.home-section--ink .home-heading > p,
.home-section--console .home-heading > p { color: rgba(255, 255, 255, .67); }
.home-section--dark .home-kicker,
.home-section--ink .home-kicker,
.home-section--console .home-kicker { color: var(--home-mint); }

.home-roles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--home-line);
  border-left: 1px solid var(--home-line);
}
.home-roles article {
  min-width: 0;
  padding: 23px;
  border-right: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
  background: rgba(255, 255, 255, .74);
  transition: transform .22s ease, background-color .22s ease, box-shadow .22s ease;
}
.home-roles article:hover { z-index: 1; background: #fff; box-shadow: var(--home-shadow-soft); transform: translateY(-3px); }
.home-roles span { color: var(--home-teal-bright); font-size: 13px; font-weight: 920; }
.home-roles h3 { margin: 9px 0 0; font-size: 19px; font-weight: 900; }
.home-roles p { margin: 8px 0 0; color: var(--home-muted); font-size: 14px; line-height: 1.72; }

.home-pains {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, .85fr));
  margin-top: 30px;
  border: 1px solid var(--home-line);
}
.home-pains article { min-width: 0; padding: 22px; border-right: 1px solid var(--home-line); }
.home-pains article:last-child { border-right: 0; }
.home-pains article:first-child {
  color: #fff;
  background: linear-gradient(145deg, var(--home-night-soft), #164553);
}
.home-pains strong { display: block; font-size: 16px; }
.home-pains p { margin: 8px 0 0; color: var(--home-muted); font-size: 14px; line-height: 1.72; }
.home-pains article:first-child p { color: rgba(255, 255, 255, .68); }

.home-scene,
.home-wide-scene {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(20, 125, 120, .2);
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--home-shadow);
}
.home-scene img,
.home-wide-scene img { width: 100%; height: auto; border-radius: 14px 14px 0 0; }
.home-scene figcaption,
.home-wide-scene figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 19px;
  color: #fff;
  background: linear-gradient(100deg, var(--home-night-soft), #164b55);
}
.home-scene figcaption strong,
.home-wide-scene figcaption strong { font-size: 15px; white-space: nowrap; }
.home-scene figcaption span,
.home-wide-scene figcaption span { color: rgba(255, 255, 255, .64); font-size: 12px; line-height: 1.55; text-align: right; }

.home-journey {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 31px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
  border-left: 1px solid rgba(255, 255, 255, .16);
  list-style: none;
}
.home-journey li {
  min-width: 0;
  padding: 21px;
  border-right: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  background: linear-gradient(135deg, rgba(255, 255, 255, .035), transparent);
  transition: transform .22s ease, background-color .22s ease;
}
.home-journey li:hover { background: rgba(26, 145, 136, .16); transform: translateY(-2px); }
.home-journey span { color: #b9e0d7; font-size: 12px; font-weight: 920; letter-spacing: .05em; }
.home-journey h3 { margin: 9px 0 0; font-size: 18px; }
.home-journey p { margin: 8px 0 0; color: rgba(255, 255, 255, .63); font-size: 14px; line-height: 1.68; }

.home-story {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
  align-items: center;
  gap: 58px;
}
.home-story--reverse { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.home-story--reverse .home-scene { order: 2; transform: translateY(18px); }
.home-story__copy { min-width: 0; }
.home-story__copy h2 {
  margin: 0;
  font-size: clamp(31px, 3vw, 42px);
  font-weight: 960;
  letter-spacing: -.05em;
  line-height: 1.1;
}
html[lang^="en"] .home-story__copy h2 { font-size: clamp(26px, 2.25vw, 32px); }
.home-story__lead { margin: 15px 0 0; color: var(--home-muted); font-size: 15px; line-height: 1.82; }

.home-ledger { margin-top: 22px; border-top: 1px solid var(--home-line); }
.home-ledger article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 11px;
  padding: 18px 0;
  border-bottom: 1px solid var(--home-line);
}
.home-ledger span { grid-row: 1 / 3; color: var(--home-coral); font-size: 12px; font-weight: 950; }
.home-ledger h3 { margin: 0; font-size: 18px; }
.home-ledger p { margin: 7px 0 0; color: var(--home-muted); font-size: 14px; line-height: 1.7; }

.home-genealogy {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 29px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  border-left: 1px solid rgba(255, 255, 255, .16);
}
.home-genealogy article {
  min-width: 0;
  padding: 21px;
  border-right: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  background: linear-gradient(135deg, rgba(255, 255, 255, .035), transparent);
}
.home-genealogy span { color: var(--home-coral-soft); font-size: 12px; font-weight: 950; }
.home-genealogy h3 { margin: 9px 0 0; font-size: 18px; }
.home-genealogy p { margin: 8px 0 0; color: rgba(255, 255, 255, .66); font-size: 14px; line-height: 1.68; }

.home-timeline { margin-top: 23px; border-left: 1px solid #bdd2ce; }
.home-timeline article { position: relative; padding: 1px 0 19px 24px; }
.home-timeline article::before {
  position: absolute;
  top: 5px;
  left: -6px;
  width: 11px;
  height: 11px;
  border: 2px solid #fff;
  border-radius: 50%;
  content: "";
  background: var(--home-teal-bright);
  box-shadow: 0 0 0 1px var(--home-teal-bright);
}
.home-timeline h3 { margin: 0; font-size: 18px; }
.home-timeline p { margin: 7px 0 0; color: var(--home-muted); font-size: 14px; line-height: 1.68; }

.home-attribution,
.home-commission,
.home-growth {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 52px;
}
.home-attribution .home-scene,
.home-growth .home-scene { transform: translateY(15px); }
.home-commission .home-scene { order: 2; }

.home-evidence {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 27px;
  border-top: 1px solid var(--home-line);
  border-left: 1px solid var(--home-line);
}
.home-evidence article {
  min-width: 0;
  padding: 20px;
  border-right: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
  background: rgba(255, 255, 255, .72);
}
.home-evidence b { display: block; color: var(--home-teal-bright); font-size: 12px; letter-spacing: .04em; }
.home-evidence h3 { margin: 9px 0 0; font-size: 18px; }
.home-evidence p { margin: 7px 0 0; color: var(--home-muted); font-size: 14px; line-height: 1.68; }

.home-states {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 29px;
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
}
.home-states article { min-width: 0; padding: 20px; border-right: 1px solid var(--home-line); }
.home-states article:last-child { border-right: 0; }
.home-states span { display: block; color: var(--home-coral); font-size: 12px; font-weight: 950; }
.home-states h3 { margin: 9px 0 0; font-size: 17px; }
.home-states p { margin: 7px 0 0; color: var(--home-muted); font-size: 14px; line-height: 1.68; }

.home-rules {
  position: relative;
  padding: 34px 32px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(26, 145, 136, .3), transparent 57%),
    var(--home-night-soft);
  box-shadow: var(--home-shadow);
}
.home-rules::before {
  display: block;
  width: 54px;
  height: 4px;
  margin-bottom: 22px;
  content: "";
  background: linear-gradient(90deg, var(--home-coral), var(--home-coral-soft));
}
.home-rules .home-kicker { color: #b9e0d7; }
.home-rules article {
  display: grid;
  grid-template-columns: minmax(120px, .4fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .15);
}
.home-rules b { color: #fff; font-size: 15px; }
.home-rules span { color: rgba(255, 255, 255, .68); font-size: 14px; line-height: 1.7; }

.home-checklist { display: grid; gap: 0; margin-top: 24px; border-top: 1px solid var(--home-line); }
.home-checklist article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--home-line);
}
.home-checklist b {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  color: #fff;
  background: var(--home-teal);
  font-size: 12px;
}
.home-checklist h3 { margin: 2px 0 0; font-size: 18px; }
.home-checklist p { margin: 7px 0 0; color: var(--home-muted); font-size: 14px; line-height: 1.68; }

.home-capabilities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--home-line);
  border-left: 1px solid var(--home-line);
}
.home-capabilities article {
  min-width: 0;
  padding: 23px;
  border-right: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
  transition: transform .22s ease, background-color .22s ease;
}
.home-capabilities article:hover { background: #fff; transform: translateY(-2px); }
.home-capabilities span { color: var(--home-coral); font-size: 12px; font-weight: 950; }
.home-capabilities h3 { margin: 9px 0 0; font-size: 19px; }
.home-capabilities p { margin: 8px 0 0; color: var(--home-muted); font-size: 14px; line-height: 1.7; }

.home-console-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 29px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  border-left: 1px solid rgba(255, 255, 255, .16);
}
.home-console-grid article {
  min-width: 0;
  padding: 21px;
  border-right: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  transition: background-color .22s ease;
}
.home-console-grid article:hover { background: rgba(26, 145, 136, .14); }
.home-console-grid strong { display: block; font-size: 16px; }
.home-console-grid span { display: block; margin-top: 7px; color: rgba(255, 255, 255, .63); font-size: 14px; line-height: 1.68; }

.home-scenarios {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--home-line);
  border-left: 1px solid var(--home-line);
}
.home-scenarios article { min-width: 0; padding: 23px; border-right: 1px solid var(--home-line); border-bottom: 1px solid var(--home-line); }
.home-scenarios span { color: var(--home-teal-bright); font-size: 12px; font-weight: 950; }
.home-scenarios h3 { margin: 9px 0 0; font-size: 19px; }
.home-scenarios p { margin: 8px 0 0; color: var(--home-muted); font-size: 14px; line-height: 1.7; }

.home-boundary {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  margin-top: 35px;
  padding: 31px;
  color: #fff;
  background:
    linear-gradient(130deg, transparent, rgba(26, 145, 136, .2)),
    var(--home-night-soft);
}
.home-boundary h2 {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 45px);
  font-weight: 960;
  letter-spacing: -.05em;
}
.home-boundary p { margin: 14px 0 0; color: rgba(255, 255, 255, .65); font-size: 14px; line-height: 1.75; }
.home-boundary ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.home-boundary li { padding: 11px 0; border-bottom: 1px solid rgba(255, 255, 255, .14); color: rgba(255, 255, 255, .74); font-size: 14px; line-height: 1.68; }
.home-boundary li strong,
.home-boundary li span { display: block; }
.home-boundary li strong { color: #fff; font-size: 15px; }
.home-boundary li span { margin-top: 5px; }

.home-faq { margin-top: 35px; border-top: 1px solid var(--home-line); }
.home-faq details { border-bottom: 1px solid var(--home-line); }
.home-faq summary {
  position: relative;
  padding: 19px 44px 19px 1px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}
.home-faq summary::-webkit-details-marker { display: none; }
.home-faq summary::after { position: absolute; top: 18px; right: 8px; content: "+"; color: var(--home-teal-bright); font-size: 21px; }
.home-faq details[open] summary::after { content: "−"; }
.home-faq p { max-width: 960px; margin: -2px 0 19px; color: var(--home-muted); font-size: 14px; line-height: 1.8; }

.home-contact {
  padding-block: 70px;
  color: #fff;
  background: linear-gradient(115deg, #0b3442, #147d78 53%, #b84f43);
}
.home-contact__inner { display: flex; align-items: center; justify-content: space-between; gap: 44px; }
.home-contact h2 { margin: 0; font-size: clamp(31px, 3.35vw, 48px); font-weight: 960; letter-spacing: -.05em; }
.home-contact p:not(.home-kicker) { max-width: 760px; margin: 14px 0 0; color: rgba(255, 255, 255, .82); font-size: 15px; line-height: 1.76; }
.home-contact .home-kicker { color: #d3eee8; }
.home-contact__actions { display: flex; flex: 0 0 auto; gap: 10px; }
.home-contact .home-button--primary { color: var(--home-ink); background: #fff; box-shadow: none; }

.home-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .52s ease, transform .52s cubic-bezier(.2, .7, .2, 1);
}
.home-reveal.is-visible { opacity: 1; transform: none; }

.home-page :where(a, button, summary):focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--home-teal-bright);
}

@media (max-width: 1040px) {
  :root { --home-shell: min(100% - 34px, 1240px); }
  .home-section { padding-block: 70px; }
  .home-heading { grid-template-columns: minmax(0, 1fr); gap: 16px; }

  /* MES-identical responsive Hero: media becomes a natural-ratio block. */
  .home-hero { min-height: 0; }
  .home-hero__media { position: relative; aspect-ratio: 1672 / 941; }
  .home-hero__media img { position: static; width: 100%; max-width: 100%; height: auto; transform: none; }
  .home-hero__media::after { background: linear-gradient(180deg, rgba(8, 14, 36, 0) 52%, var(--home-night) 100%); }
  .home-hero__inner { min-height: 0; }
  .home-hero__copy { width: 100%; padding-block: 46px 52px; }
  html[lang^="en"] .home-hero h1 { font-size: clamp(22px, 4.2vw, 34px); }

  .home-story,
  .home-story--reverse,
  .home-attribution,
  .home-commission,
  .home-growth { grid-template-columns: minmax(0, 1fr); gap: 34px; }
  html[lang^="en"] .home-story__copy h2 { font-size: clamp(24px, 3.4vw, 32px); }
  .home-roles,
  .home-capabilities,
  .home-scenarios { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-story--reverse .home-scene,
  .home-commission .home-scene { order: initial; transform: none; }
  .home-attribution .home-scene,
  .home-growth .home-scene { transform: none; }
  .home-console-grid,
  .home-states,
  .home-genealogy { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-states article:nth-child(2) { border-right: 0; }
  .home-states article { border-bottom: 1px solid var(--home-line); }
  .home-contact__inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 820px) {
  .home-heading { grid-template-columns: 1fr; align-items: start; gap: 16px; }
  .home-roles,
  .home-capabilities,
  .home-scenarios { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-pains { grid-template-columns: 1fr; }
  .home-pains article { border-right: 0; border-bottom: 1px solid var(--home-line); }
  .home-pains article:last-child { border-bottom: 0; }
  .home-story,
  .home-story--reverse,
  .home-attribution,
  .home-commission,
  .home-growth { grid-template-columns: 1fr; }
  .home-story--reverse .home-scene,
  .home-commission .home-scene { order: initial; }
  .home-evidence { grid-template-columns: 1fr; }
  .home-rules article { grid-template-columns: 1fr; gap: 7px; }
  .home-boundary { grid-template-columns: 1fr; gap: 22px; }
  .home-contact__inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 720px) {
  .home-roles,
  .home-capabilities,
  .home-scenarios { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  :root { --home-shell: calc(100% - 24px); }
  .home-section { padding-block: 54px; }
  .home-heading { margin-bottom: 26px; }
  .home-heading h2,
  .home-story__copy h2,
  .home-boundary h2,
  .home-contact h2 { font-size: clamp(17px, 5.3vw, 27px); }
  .home-hero h1 { font-size: clamp(24px, 7.7vw, 36px); }
  html[lang^="en"] .home-hero h1 { font-size: clamp(17px, 5vw, 25px); }
  html[lang^="en"] .home-page main h2 { font-size: clamp(17px, 4.8vw, 22px); }
  html[lang^="en"] .home-page main h3 { font-size: clamp(14px, 4.2vw, 18px); }
  .home-hero__claim { font-size: clamp(20px, 6.5vw, 27px); }
  .home-proof { grid-template-columns: 1fr; }
  .home-proof li { padding-inline: 0; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .16); }
  .home-proof li:last-child { border-bottom: 0; }
  .home-roles,
  .home-capabilities,
  .home-scenarios,
  .home-journey,
  .home-evidence,
  .home-states,
  .home-genealogy,
  .home-console-grid { grid-template-columns: 1fr; }
  .home-roles article,
  .home-capabilities article,
  .home-scenarios article,
  .home-journey li,
  .home-console-grid article { padding: 19px; }
  .home-states article { border-right: 0; }
  .home-scene figcaption,
  .home-wide-scene figcaption { align-items: flex-start; flex-direction: column; gap: 5px; }
  .home-scene figcaption span,
  .home-wide-scene figcaption span { text-align: left; }
  .home-rules { padding: 25px 22px; }
  .home-boundary { padding: 23px; }
  .home-boundary ul { grid-template-columns: 1fr; }
  .home-contact__actions { width: 100%; flex-direction: column; }
  .home-contact__actions .home-button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .home-reveal,
  .home-button,
  .home-roles article,
  .home-journey li,
  .home-capabilities article { transition: none; }
  .home-reveal { opacity: 1; transform: none; }
  .home-button:hover,
  .home-roles article:hover,
  .home-journey li:hover,
  .home-capabilities article:hover { transform: none; }
}
