:root {
  --paper: #f3f5f2;
  --surface: #ffffff;
  --surface-quiet: #e8ece9;
  --ink: #0d1210;
  --ink-soft: #18201d;
  --text: #202824;
  --muted: #626c67;
  --line: #cfd6d2;
  --line-dark: #39433f;
  --brand: #075fd8;
  --brand-deep: #064aa4;
  --signal: #55b887;
  --header-height: 72px;
  --shell-width: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: "MiSans", "HarmonyOS Sans SC", "Noto Sans CJK SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-weight: 650;
  line-height: 1.16;
  letter-spacing: 0;
}

h1,
h2,
.metric-grid strong,
.capability-index,
.audience-index {
  font-family: "Bahnschrift", "DIN Alternate", "MiSans", "Microsoft YaHei", sans-serif;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--brand);
}

main:focus {
  outline: none;
}

.shell,
.section-shell,
.page-hero-inner,
.nav-shell {
  width: min(calc(100% - 64px), var(--shell-width));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 3000;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(13, 18, 16, 0.1);
  backdrop-filter: blur(20px) saturate(150%);
  transition: box-shadow 240ms ease, background-color 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 32px rgba(13, 18, 16, 0.09);
}

.nav-shell {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-link img,
.brand-mark {
  width: auto;
  height: 40px;
  object-fit: contain;
}

.brand-copy {
  min-width: 0;
  display: grid;
  gap: 1px;
  padding-left: 12px;
  border-left: 1px solid var(--line);
  line-height: 1.2;
}

.brand-copy strong {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 720;
  white-space: nowrap;
}

.brand-copy small {
  color: var(--muted);
  font-family: "Bahnschrift", "DIN Alternate", sans-serif;
  font-size: 0.58rem;
  font-weight: 650;
  letter-spacing: 0;
  white-space: nowrap;
}

.site-nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 44px;
  min-height: 44px;
  align-self: center;
  color: #2b332f;
  font-size: 0.88rem;
  font-weight: 620;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms var(--ease);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after,
.nav-link.active::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: center;
}

.nav-link:hover {
  color: var(--brand);
}

.nav-contact {
  height: 40px;
  min-height: 40px;
  align-self: center;
  gap: 10px;
  padding-inline: 17px;
  color: #fff;
  background: var(--ink);
  transition: background-color 180ms ease, color 180ms ease;
}

.nav-contact::after {
  display: none;
}

.nav-contact svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.nav-contact:hover {
  color: #fff;
  background: var(--brand);
}

.nav-contact:hover svg,
.nav-contact:focus-visible svg {
  transform: translateY(-2px);
}

.icon-button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  color: currentColor;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
}

.icon-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-toggle {
  display: none;
  flex: 0 0 44px;
}

.nav-toggle-close,
.nav-toggle[aria-expanded="true"] .nav-toggle-open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-close {
  display: block;
}

.hero-statement {
  color: #fff;
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
}

.hero-statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 80px;
  align-items: end;
  padding-block: 54px 68px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--brand);
  font-family: "Bahnschrift", "DIN Alternate", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #76aefa;
}

.hero-heading h1 {
  max-width: 760px;
  margin-bottom: 0;
  color: #fff;
  font-size: 4.75rem;
  font-weight: 680;
}

.hero-copy {
  padding-bottom: 9px;
}

.hero-tagline {
  margin-bottom: 28px;
  color: #c5ceca;
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
}

.text-link,
.route-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}

.text-link svg,
.route-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 220ms var(--ease);
}

.text-link:hover svg,
.route-link:hover svg {
  transform: translateX(5px);
}

.text-link-light {
  color: #fff;
}

.content-band {
  padding-block: 118px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 64px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  gap: 70px;
  align-items: end;
}

.section-heading h2,
.display-title,
.section-title {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 3.5rem;
}

.section-lead {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.9;
}

.company-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: 96px;
  align-items: start;
}

.company-story > p {
  max-width: 760px;
  margin-bottom: 28px;
  color: #313a36;
  font-size: 1.16rem;
  line-height: 2;
}

.inline-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.inline-facts li {
  padding: 8px 12px;
  color: #26312c;
  background: transparent;
  border: 1px solid #aeb8b3;
  font-size: 0.88rem;
  font-weight: 650;
}

.capability-list {
  border-bottom: 1px solid var(--line);
}

.capability-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding-block: 26px;
  border-top: 1px solid var(--line);
}

.capability-index,
.capability-row .capability-index {
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 700;
}

.capability-row h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

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

.gallery-band {
  background: var(--surface-quiet);
}

.enterprise-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(420px, 1fr);
  gap: 24px;
  align-items: start;
}

.enterprise-gallery figure {
  margin: 0;
}

.enterprise-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #dfe4e1;
}

.gallery-feature,
.gallery-item {
  min-width: 0;
}

.gallery-feature figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-block: 20px 22px;
  border-bottom: 1px solid #aeb8b3;
}

.gallery-feature figcaption strong {
  color: var(--ink);
  font-size: 1.18rem;
  text-align: right;
}

.gallery-label {
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

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

.gallery-rail .gallery-item:first-child {
  grid-column: 1 / -1;
}

.gallery-item figcaption {
  padding-block: 12px 14px;
  color: #303a35;
  border-bottom: 1px solid #aeb8b3;
  font-size: 0.92rem;
  font-weight: 600;
}

.product-overview {
  padding-block: 118px;
  color: #fff;
  background: var(--ink);
}

.product-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 100px;
  align-items: end;
}

.product-lockup img {
  width: 193px;
  height: 70px;
  margin-bottom: 38px;
  object-fit: contain;
}

.product-lockup h2 {
  max-width: 560px;
  margin-bottom: 0;
  color: #fff;
  font-size: 3.25rem;
}

.product-copy > p {
  margin-bottom: 34px;
  color: #c4ceca;
  font-size: 1.12rem;
  line-height: 2;
}

.product-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 84px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.product-feature-grid article {
  min-height: 264px;
  padding: 32px 28px;
  border-right: 1px solid var(--line-dark);
}

.product-feature-grid article:last-child {
  border-right: 0;
}

.product-feature-grid span {
  display: block;
  margin-bottom: 58px;
  color: #76aefa;
  font-family: "Bahnschrift", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
}

.product-feature-grid h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 1.2rem;
}

.product-feature-grid p {
  margin-bottom: 0;
  color: #9faaa5;
  font-size: 0.93rem;
}

.topic-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 34px;
  padding-top: 30px;
}

.topic-links a {
  color: #d8dfdc;
  font-size: 0.92rem;
  text-decoration: none;
}

.topic-links a:hover {
  color: #fff;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.audience-grid > a,
.audience-panel {
  position: relative;
  min-width: 0;
  min-height: 244px;
  padding: 34px 36px;
  color: var(--text);
  background: transparent;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: color 220ms ease, background-color 220ms ease;
}

.audience-grid > a:hover {
  color: #fff;
  background: var(--brand);
}

.audience-grid > a:hover h3,
.audience-grid > a:hover p,
.audience-grid > a:hover span {
  color: #fff;
}

.audience-grid > a span,
.audience-index {
  display: block;
  margin-bottom: 60px;
  color: var(--brand);
  font-size: 0.84rem;
  font-weight: 700;
}

.audience-grid h3 {
  margin-bottom: 12px;
  font-size: 1.42rem;
}

.audience-grid > a p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 34px;
}

.contact-band {
  padding-block: 108px;
  color: #fff;
  background: var(--brand-deep);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: 100px;
}

.contact-heading h2 {
  margin-bottom: 22px;
  color: #fff;
  font-size: 3.5rem;
}

.contact-heading > p:last-child {
  max-width: 480px;
  margin-bottom: 0;
  color: #c7dcf7;
  font-size: 1.08rem;
}

.contact-details {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.contact-subheading {
  margin: 20px 0 4px;
  color: #fff;
  font-size: 1.08rem;
}

.contact-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding-block: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-row span {
  color: #b9d3f4;
  font-size: 0.86rem;
}

.contact-row p,
.contact-row a {
  margin-bottom: 0;
  color: #fff;
  font-size: 1.05rem;
  text-decoration: none;
}

.route-link {
  margin-top: 30px;
  color: #fff;
}

.contact-note {
  margin: 16px 0 0;
  color: #b9d3f4;
  font-size: 0.86rem;
}

.site-footer {
  padding-bottom: 28px;
  color: #aeb8b3;
  background: #090e0c;
  border-top: 1px solid #26302c;
}

.footer-assurance {
  color: var(--text);
  background: #edf1ef;
  border-block: 1px solid #d4dbd7;
}

.footer-assurance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.assurance-item {
  min-width: 0;
  min-height: 116px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 24px 26px;
  border-right: 1px solid #d4dbd7;
}

.assurance-item:first-child {
  border-left: 1px solid #d4dbd7;
}

.assurance-item > span {
  align-self: start;
  padding-top: 2px;
  color: var(--brand);
  font-family: "Bahnschrift", "DIN Alternate", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
}

.assurance-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
}

.site-footer .assurance-item p {
  margin: 0;
  color: #64706a;
  font-size: 0.8rem;
  line-height: 1.55;
}

.assurance-item a {
  color: inherit;
  font-family: "Bahnschrift", "DIN Alternate", sans-serif;
  text-decoration: none;
}

.assurance-item a:hover {
  color: var(--brand);
}

.footer-masthead {
  min-height: 148px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-block: 34px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-identity {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #fff;
  text-decoration: none;
}

.footer-identity img {
  width: auto;
  height: 56px;
  flex: 0 0 auto;
  padding: 4px;
  object-fit: contain;
  background: #fff;
}

.footer-identity span {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.footer-identity strong {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 650;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.footer-identity small {
  color: #7f8b85;
  font-family: "Bahnschrift", "DIN Alternate", sans-serif;
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 186px;
  gap: 24px;
  padding-block: 14px;
  color: #fff;
  border-block: 1px solid #68746e;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease;
}

.footer-cta svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 220ms var(--ease);
}

.footer-cta:hover {
  color: #8bbcff;
  border-color: #8bbcff;
}

.footer-cta:hover svg {
  transform: translateX(6px);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.45fr) minmax(130px, 0.55fr) minmax(170px, 0.75fr) minmax(230px, 1fr);
  gap: 48px;
  padding-block: 48px 44px;
}

.footer-brand p,
.site-footer p {
  margin-bottom: 12px;
  color: #95a19b;
  font-size: 0.92rem;
}

.footer-brand .footer-tagline {
  margin-bottom: 18px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 620;
}

.footer-brand p:last-child {
  max-width: 430px;
  margin-bottom: 0;
  line-height: 1.9;
}

.footer-nav,
.footer-contact,
.site-footer nav,
.site-footer address {
  font-style: normal;
}

.footer-nav h3,
.footer-contact h3,
.footer-contact h2,
.site-footer nav h2,
.site-footer section h2 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 0.92rem;
}

.footer-nav h3::before,
.footer-contact h3::before {
  content: "";
  width: 24px;
  height: 2px;
  display: block;
  margin-bottom: 14px;
  background: var(--brand);
}

.footer-nav a,
.footer-contact a,
.site-footer nav a,
.site-footer address a {
  display: block;
  width: fit-content;
  margin-bottom: 11px;
  color: #909c96;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-nav a:hover,
.footer-contact a:hover,
.site-footer nav a:hover,
.site-footer address a:hover,
.footer-nav a[aria-current="page"] {
  color: #fff;
  transform: translateX(4px);
}

.footer-contact a[href^="tel:"] {
  margin-top: 18px;
  color: #fff;
  font-family: "Bahnschrift", "DIN Alternate", sans-serif;
  font-size: 1.28rem;
  font-weight: 650;
  line-height: 1.25;
}

.site-footer ul {
  padding: 0;
  list-style: none;
}

.footer-bottom,
.site-footer > .section-shell:last-child {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
}

.footer-bottom p,
.site-footer > .section-shell:last-child p {
  margin-bottom: 0;
  color: #707b75;
  font-size: 0.76rem;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  color: #fff;
  background: var(--ink);
  border-color: rgba(255, 255, 255, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top.is-over-footer,
.back-to-top.is-over-film {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px);
}

/* Detail pages */
.page-hero {
  min-height: 410px;
  display: flex;
  align-items: flex-end;
  padding-block: 82px;
  color: #fff;
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
}

.page-hero-inner,
.page-hero .section-shell {
  width: min(calc(100% - 64px), var(--shell-width));
  margin-inline: auto;
}

.page-hero img {
  width: 193px;
  height: 70px;
  margin-bottom: 50px;
  object-fit: contain;
}

.page-title {
  margin-bottom: 20px;
  color: #fff;
  font-size: 4.5rem;
}

.page-hero .page-lead {
  max-width: 680px;
  margin-bottom: 0;
  color: #b8c2bd;
  font-size: 1.1rem;
}

.section-kicker,
.kicker {
  margin-bottom: 16px;
  color: var(--brand);
  font-family: "Bahnschrift", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
}

.detail-page + .site-footer,
body:not([data-page="home"]) .site-footer {
  border-top: 1px solid var(--line-dark);
}

.feature-grid,
.metric-grid,
.value-grid,
.case-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.product-positioning {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 26px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.product-positioning article {
  min-height: 150px;
  padding: 28px 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-positioning h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

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

.feature-grid,
.value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.feature-panel {
  min-width: 0;
  margin: 0;
  padding: 34px;
  background: transparent;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.feature-panel h3 {
  margin-bottom: 14px;
  font-size: 1.2rem;
}

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

.feature-panel > span {
  display: block;
  margin-bottom: 54px;
  color: var(--brand);
  font-family: "Bahnschrift", sans-serif;
  font-weight: 700;
}

.architecture-stack {
  display: grid;
  gap: 12px;
  padding: 20px;
  color: #fff;
  background: var(--ink);
}

.architecture-stack .feature-panel {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  padding: 28px 34px;
  border: 1px solid var(--line-dark);
}

.architecture-stack h3 {
  margin-bottom: 0;
  color: #fff;
}

.architecture-stack ul,
.case-grid ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.architecture-stack li {
  padding: 7px 12px;
  color: #d4ddd9;
  border: 1px solid var(--line-dark);
  font-size: 0.9rem;
}

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
}

.comparison-wrap:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--brand);
}

.comparison-wrap table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  text-align: left;
}

.comparison-wrap th,
.comparison-wrap td {
  padding: 20px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.comparison-wrap th:last-child,
.comparison-wrap td:last-child {
  color: #fff;
  background: var(--brand);
  border-right: 0;
}

.comparison-wrap tr:last-child th,
.comparison-wrap tr:last-child td {
  border-bottom: 0;
}

.metric-grid strong {
  display: block;
  margin-bottom: 56px;
  color: var(--brand);
  font-size: 4rem;
  line-height: 1;
}

.case-grid .feature-panel {
  min-height: 270px;
  display: flex;
  flex-direction: column;
}

.case-grid ul {
  margin-top: auto;
  padding-top: 36px;
}

.case-grid li {
  padding: 6px 10px;
  color: var(--brand-deep);
  border: 1px solid #9db8dc;
  font-size: 0.8rem;
}

.value-grid + .feature-panel {
  margin-top: 22px;
  color: #fff;
  background: var(--ink);
  border: 0;
}

.value-grid + .feature-panel h3 {
  color: #fff;
}

.value-grid + .feature-panel p {
  color: #b8c2bd;
}

.content-band--contrast {
  color: #fff;
  background: var(--ink);
  border-bottom-color: var(--line-dark);
}

.content-band--contrast .section-heading h2,
.content-band--contrast .display-title,
.content-band--contrast h3 {
  color: #fff;
}

.content-band--contrast .kicker {
  color: #76aefa;
}

.content-band--contrast p {
  color: #aeb8b3;
}

.audience-panel h4 {
  margin: 28px 0 12px;
  font-size: 1rem;
}

.audience-panel p,
.audience-panel li {
  color: var(--muted);
}

.audience-panel ul {
  margin-bottom: 0;
  padding-left: 1.2rem;
}

.capability-list:has(.capability-item) {
  border-top: 1px solid var(--line-dark);
  border-bottom: 0;
}

.capability-item {
  display: grid;
  grid-template-columns: 80px minmax(200px, 0.45fr) minmax(300px, 1fr);
  gap: 36px;
  align-items: start;
  padding-block: 32px;
  border-bottom: 1px solid var(--line-dark);
}

.capability-item .capability-index {
  margin-bottom: 0;
  color: #76aefa;
}

.capability-item h3 {
  margin-bottom: 0;
  color: #fff;
  font-size: 1.3rem;
}

.capability-item p:last-child {
  margin-bottom: 0;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

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

@media (max-width: 1100px) {
  .site-nav {
    gap: 20px;
  }

  .hero-heading h1 {
    font-size: 3.8rem;
  }

  .company-layout,
  .product-intro-grid,
  .contact-layout {
    gap: 60px;
  }

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

  .product-feature-grid article:nth-child(2) {
    border-right: 0;
  }

  .product-feature-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

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

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

  .assurance-item:nth-child(3) {
    border-left: 1px solid #d4dbd7;
  }

  .assurance-item:nth-child(n + 3) {
    border-top: 1px solid #d4dbd7;
  }
}

@media (max-width: 1060px) {
  :root {
    --header-height: 68px;
  }

  .shell,
  .section-shell,
  .page-hero-inner,
  .nav-shell,
  .page-hero .section-shell {
    width: min(calc(100% - 40px), var(--shell-width));
  }

  .site-header {
    background: #fff;
    backdrop-filter: none;
  }

  .js .nav-toggle {
    display: inline-grid;
  }

  .brand-copy strong {
    font-size: 0.86rem;
  }

  .brand-copy small {
    display: none;
  }

  .js .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    height: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    align-content: start;
    justify-content: stretch;
    gap: 0;
    padding: 28px 20px calc(40px + env(safe-area-inset-bottom));
    overflow-y: auto;
    background: rgba(247, 248, 246, 0.99);
    overscroll-behavior-y: contain;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-16px);
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
    counter-reset: site-nav;
  }

  .js .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  html:not(.js) .site-header {
    position: relative;
    height: auto;
  }

  html:not(.js) .nav-shell {
    flex-wrap: wrap;
    padding-block: 12px;
  }

  html:not(.js) .site-nav {
    height: auto;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    counter-reset: site-nav;
  }

  html:not(.js) .nav-contact {
    margin-top: 0;
  }

  .nav-link {
    height: auto;
    min-height: 58px;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) auto;
    padding-inline: 6px;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
    counter-increment: site-nav;
  }

  .nav-link::before {
    content: "0" counter(site-nav);
    color: #77827c;
    font-family: "Bahnschrift", "DIN Alternate", sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
  }

  .nav-link::after {
    display: none;
  }

  .nav-contact {
    margin-top: 16px;
    min-height: 54px;
    align-self: stretch;
    padding-inline: 18px;
    border-bottom: 0;
  }

  .nav-contact::before {
    color: rgba(255, 255, 255, 0.62);
  }

  .hero-statement-grid,
  .split-heading,
  .company-layout,
  .product-intro-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero-heading h1 {
    font-size: 3.25rem;
  }

  .section-heading h2,
  .display-title,
  .section-title,
  .contact-heading h2 {
    font-size: 3rem;
  }

  .section-lead {
    max-width: 640px;
  }

  .company-layout {
    gap: 68px;
  }

  .enterprise-gallery {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .gallery-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-rail .gallery-item:first-child {
    grid-column: auto;
  }

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

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

  .architecture-stack .feature-panel {
    grid-template-columns: 160px 1fr;
  }

  .contact-layout {
    gap: 56px;
  }
}

@media (max-width: 640px) {
  .shell,
  .section-shell,
  .page-hero-inner,
  .nav-shell,
  .page-hero .section-shell {
    width: calc(100% - 32px);
  }

  .nav-shell {
    gap: 12px;
  }

  .brand-link img,
  .brand-mark {
    height: 38px;
  }

  .brand-link {
    gap: 9px;
  }

  .brand-copy {
    padding-left: 9px;
  }

  .brand-copy strong {
    font-size: 0.72rem;
  }

  html:not(.js) .site-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-assurance-grid {
    grid-template-columns: 1fr;
  }

  .assurance-item,
  .assurance-item:nth-child(3) {
    min-height: 94px;
    padding: 20px 16px;
    border-right: 1px solid #d4dbd7;
    border-left: 1px solid #d4dbd7;
  }

  .assurance-item:nth-child(n + 2) {
    border-top: 1px solid #d4dbd7;
  }

  .hero-statement-grid {
    padding-block: 42px 52px;
  }

  .hero-heading h1 {
    font-size: 2.55rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .content-band,
  .product-overview {
    padding-block: 78px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .display-title,
  .section-title,
  .contact-heading h2 {
    font-size: 2.35rem;
  }

  .company-story > p,
  .product-copy > p {
    font-size: 1rem;
    line-height: 1.9;
  }

  .inline-facts {
    display: grid;
    grid-template-columns: 1fr;
  }

  .gallery-feature figcaption {
    display: grid;
    gap: 8px;
  }

  .gallery-feature figcaption strong {
    text-align: left;
  }

  .gallery-rail {
    grid-template-columns: 1fr;
  }

  .product-lockup h2 {
    font-size: 2.35rem;
  }

  .product-feature-grid,
  .audience-grid,
  .feature-grid,
  .metric-grid,
  .value-grid,
  .case-grid,
  .product-positioning {
    grid-template-columns: 1fr;
  }

  .product-feature-grid article,
  .product-feature-grid article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .product-feature-grid article:last-child {
    border-bottom: 0;
  }

  .audience-grid > a,
  .audience-panel {
    min-height: 220px;
    padding: 28px 24px;
  }

  .contact-band {
    padding-block: 78px;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-masthead {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
    padding-block: 38px;
  }

  .footer-identity {
    gap: 14px;
  }

  .footer-identity img {
    height: 48px;
  }

  .footer-identity strong {
    font-size: 1.05rem;
  }

  .footer-identity small {
    font-size: 0.66rem;
  }

  .footer-grid {
    padding-block: 44px;
  }

  .footer-cta {
    width: 100%;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding-block: 20px 0;
  }

  .page-hero {
    min-height: 330px;
    padding-block: 58px;
  }

  .page-title {
    font-size: 3rem;
  }

  .page-hero img {
    margin-bottom: 34px;
  }

  .feature-panel {
    padding: 28px 24px;
  }

  .architecture-stack {
    padding: 12px;
  }

  .architecture-stack .feature-panel {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .metric-grid strong {
    font-size: 3.35rem;
  }

  .capability-item {
    grid-template-columns: 52px 1fr;
    gap: 14px 20px;
  }

  .capability-item p:last-child {
    grid-column: 2;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Product-led site refresh */
:root {
  --signal-soft: #dff2e8;
  --blue-soft: #e8f1fc;
  --warm: #d85d43;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.92rem;
  font-weight: 680;
  line-height: 1.2;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.button-primary:hover {
  background: #064da9;
  border-color: #064da9;
}

.button-quiet {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
}

.button-quiet:hover {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.button-outline-dark {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

.button-outline-dark:hover {
  color: #fff;
  background: var(--ink);
}

.home-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
}

.home-hero-grid {
  min-height: 670px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(440px, 0.96fr);
  gap: 72px;
  align-items: center;
  padding-block: 72px 64px;
}

.home-hero-copy {
  position: relative;
  z-index: 2;
}

.home-hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  color: #fff;
  font-size: 4.45rem;
  font-weight: 680;
  line-height: 1.08;
}

.home-hero h1 em {
  color: #7cb5ff;
  font-style: normal;
}

.home-hero-lead {
  max-width: 660px;
  margin-bottom: 34px;
  color: #bcc7c1;
  font-size: 1.08rem;
  line-height: 1.9;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 54px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.hero-proof-row span {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 14px 14px 14px 0;
  color: #d2d9d5;
  border-right: 1px solid var(--line-dark);
  font-size: 0.78rem;
  white-space: nowrap;
}

.hero-proof-row span + span {
  padding-left: 14px;
}

.hero-proof-row span:last-child {
  border-right: 0;
}

.hero-proof-row b {
  color: #74adf9;
  font-family: "Bahnschrift", sans-serif;
  font-size: 0.66rem;
}

.agent-field {
  position: relative;
  min-width: 0;
  aspect-ratio: 1.08;
  overflow: hidden;
  background: #111a17;
  border: 1px solid #3b4a44;
}

.field-grid {
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.field-grid::before,
.field-grid::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
}

.field-grid::before {
  top: 33%;
  right: 0;
  left: 0;
  height: 1px;
  box-shadow: 0 116px 0 rgba(255, 255, 255, 0.08);
}

.field-grid::after {
  top: 0;
  bottom: 0;
  left: 33%;
  width: 1px;
  box-shadow: 150px 0 0 rgba(255, 255, 255, 0.08);
}

.field-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 142px;
  height: 142px;
  display: grid;
  place-content: center;
  text-align: center;
  background: var(--brand);
  border: 12px solid #203b51;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.field-core strong {
  color: #fff;
  font-family: "Bahnschrift", sans-serif;
  font-size: 1.85rem;
  line-height: 1;
}

.field-core small {
  margin-top: 8px;
  color: #d5e8ff;
  font-size: 0.68rem;
}

.field-node {
  position: absolute;
  z-index: 2;
  min-width: 124px;
  padding: 12px 14px;
  background: #19241f;
  border: 1px solid #53645c;
}

.field-node span,
.field-node b {
  display: block;
}

.field-node span {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 650;
}

.field-node b {
  margin-top: 3px;
  color: #8e9d96;
  font-size: 0.66rem;
  font-weight: 500;
}

.field-node-device { top: 12%; left: 9%; }
.field-node-parse { top: 12%; right: 9%; }
.field-node-control { bottom: 14%; left: 8%; }
.field-node-ai { right: 8%; bottom: 14%; border-color: #3f9870; }
.field-node-app { top: 43%; right: 4%; border-color: #6f9fd9; }

.field-line {
  position: absolute;
  z-index: 1;
  height: 1px;
  background: #567067;
  transform-origin: left center;
}

.field-line::after {
  content: "";
  position: absolute;
  top: -3px;
  right: -1px;
  width: 7px;
  height: 7px;
  background: var(--signal);
  border-radius: 50%;
}

.field-line-a { top: 29%; left: 26%; width: 29%; transform: rotate(34deg); }
.field-line-b { top: 29%; left: 74%; width: 29%; transform: rotate(146deg); }
.field-line-c { top: 70%; left: 25%; width: 32%; transform: rotate(-34deg); }
.field-line-d { top: 70%; left: 74%; width: 30%; transform: rotate(214deg); }

.field-caption {
  position: absolute;
  right: 24px;
  bottom: 18px;
  left: 24px;
  margin: 0;
  color: #788980;
  font-family: "Bahnschrift", sans-serif;
  font-size: 0.65rem;
  text-align: center;
}

.thesis-band {
  padding-block: 58px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.thesis-grid {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) 280px;
  gap: 54px;
  align-items: center;
}

.section-marker {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-family: "Bahnschrift", sans-serif;
  font-size: 0.68rem;
}

.section-marker span:first-child {
  color: var(--brand);
  font-size: 1rem;
}

.thesis-copy {
  max-width: 760px;
}

.thesis-copy h2 {
  margin-bottom: 18px;
  font-size: 2.25rem;
}

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

.thesis-signal {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #68736d;
  font-family: "Bahnschrift", sans-serif;
  font-size: 0.75rem;
}

.thesis-signal i {
  width: 34px;
  height: 1px;
  margin-inline: 10px;
  background: var(--line);
}

.thesis-signal strong {
  padding: 8px 10px;
  color: #fff;
  background: var(--brand);
}

.problem-band,
.workflow-band,
.partner-band,
.cooperation-band,
.dios-why,
.build-band,
.agent-types-band {
  padding-block: 112px;
}

.problem-band {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.problem-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 42px;
  background: #fff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.problem-card > span {
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 700;
}

.problem-card h3 {
  max-width: 490px;
  margin: 62px 0 18px;
  font-size: 1.85rem;
}

.problem-card p {
  max-width: 520px;
  color: var(--muted);
}

.problem-card-accent {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.problem-card-accent > span,
.problem-card-accent h3 {
  color: #fff;
}

.problem-card-accent p {
  color: #dbe9fb;
}

.problem-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 32px;
}

.problem-tags b {
  padding: 5px 9px;
  color: var(--muted);
  border: 1px solid var(--line);
  font-size: 0.7rem;
  font-weight: 600;
}

.problem-card-accent .problem-tags b {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.workflow-band {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}

.workflow-step {
  position: relative;
  min-height: 340px;
  padding: 28px 28px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.workflow-step::after {
  content: "";
  position: absolute;
  top: 84px;
  right: -1px;
  z-index: 2;
  width: 18px;
  height: 18px;
  background: #fff;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transform: translateX(50%) rotate(45deg);
}

.workflow-step:last-child::after {
  display: none;
}

.workflow-number {
  color: var(--brand);
  font-family: "Bahnschrift", sans-serif;
  font-size: 0.72rem;
}

.workflow-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin: 54px 0 36px;
  color: var(--brand);
  background: var(--blue-soft);
}

.workflow-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.workflow-step h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.workflow-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.capability-band {
  padding-block: 112px;
  color: #fff;
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
}

.capability-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(500px, 1.22fr);
  gap: 100px;
}

.capability-intro h2 {
  margin-bottom: 24px;
  color: #fff;
  font-size: 3rem;
}

.capability-intro > p:not(.eyebrow) {
  color: #aeb9b3;
}

.capability-list-home {
  border-top: 1px solid var(--line-dark);
}

.capability-list-home article {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 24px;
  padding-block: 26px;
  border-bottom: 1px solid var(--line-dark);
}

.capability-list-home article > span {
  color: #76aefa;
  font-family: "Bahnschrift", sans-serif;
  font-size: 0.74rem;
}

.capability-list-home h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.25rem;
}

.capability-list-home p {
  margin-bottom: 0;
  color: #9faba5;
}

.scenario-showcase-band,
.system-examples-band {
  padding-block: 112px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.scenario-showcase-band {
  background: #fff;
}

.system-examples-band {
  background: #f3f6f9;
}

.showcase-heading {
  max-width: 940px;
  margin: 0 auto 54px;
  text-align: center;
}

.showcase-heading .eyebrow {
  justify-content: center;
}

.showcase-heading h2 {
  margin-bottom: 22px;
  font-size: 3rem;
  font-weight: 520;
}

.showcase-heading > p:last-child {
  max-width: 860px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.scenario-showcase-list {
  height: 440px;
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.scenario-showcase-card {
  position: relative;
  scroll-margin-top: calc(var(--header-height) + 24px);
  min-width: 0;
  flex: 1 1 0;
  overflow: hidden;
  background: #102849;
  border-radius: 8px;
  cursor: pointer;
  isolation: isolate;
  transition: flex-grow 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.scenario-showcase-card.is-active {
  flex-grow: 2.55;
}

.scenario-showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 31, 67, 0.12) 18%, rgba(5, 26, 61, 0.55) 58%, rgba(3, 18, 48, 0.94) 100%),
    linear-gradient(90deg, rgba(12, 65, 130, 0.18), rgba(20, 86, 156, 0.04));
  pointer-events: none;
}

.scenario-showcase-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(0.94);
  transform: scale(1.035);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), filter 320ms ease;
}

.scenario-showcase-card.is-active img {
  filter: saturate(0.98) contrast(0.98);
  transform: scale(1);
}

.scenario-showcase-body {
  position: absolute;
  inset: 0;
  z-index: 2;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px;
  color: #fff;
}

.scenario-showcase-index {
  margin-bottom: 10px;
  color: #bdd8fb;
  font-family: "Bahnschrift", sans-serif;
  font-size: 0.65rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease 80ms, transform 220ms ease 80ms;
}

.scenario-showcase-title {
  margin: 0;
}

.scenario-showcase-trigger {
  width: 100%;
  min-width: 0;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.scenario-showcase-trigger::before {
  content: "";
  position: absolute;
  inset: 0;
}

.scenario-showcase-trigger > span {
  min-width: 0;
  overflow: hidden;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.scenario-showcase-trigger svg,
.system-example-card > svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scenario-showcase-trigger svg {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 220ms ease 100ms, transform 220ms ease 100ms;
}

.scenario-showcase-detail {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px);
  transition: max-height 360ms ease, opacity 240ms ease, transform 280ms ease;
}

.scenario-showcase-detail p {
  max-width: 620px;
  margin: 14px 0 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  line-height: 1.75;
}

.scenario-showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.scenario-showcase-tags span {
  padding: 5px 9px;
  color: #dceafe;
  border: 1px solid rgba(199, 222, 251, 0.46);
  font-size: 0.68rem;
  line-height: 1;
}

.scenario-showcase-card.is-active .scenario-showcase-body {
  padding: 30px;
}

.scenario-showcase-card.is-active .scenario-showcase-index,
.scenario-showcase-card.is-active .scenario-showcase-trigger svg {
  opacity: 1;
  transform: none;
}

.scenario-showcase-card.is-active .scenario-showcase-trigger {
  justify-content: flex-start;
}

.scenario-showcase-card.is-active .scenario-showcase-trigger > span {
  overflow: visible;
  font-size: 1.55rem;
  text-overflow: clip;
  white-space: normal;
}

.scenario-showcase-card.is-active .scenario-showcase-detail {
  max-height: 210px;
  opacity: 1;
  transform: none;
}

.scenario-showcase-trigger:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
  box-shadow: none;
}

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

.system-example-card {
  position: relative;
  min-width: 0;
  min-height: 11rem;
  aspect-ratio: 8 / 5;
  display: block;
  overflow: hidden;
  color: #fff;
  background: #12345c;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(28, 52, 81, 0.1);
  text-decoration: none;
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.system-example-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7, 31, 65, 0.04) 34%, rgba(5, 29, 65, 0.9) 100%);
  pointer-events: none;
}

.system-example-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), filter 220ms ease;
}

.system-example-card > div,
.system-example-card > svg {
  position: absolute;
  z-index: 2;
}

.system-example-card > div {
  right: 48px;
  bottom: 18px;
  left: 18px;
}

.system-example-card h3 {
  margin-bottom: 4px;
  color: #fff;
  font-size: 1.15rem;
}

.system-example-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.system-example-card > svg {
  right: 18px;
  bottom: 24px;
  transition: transform 180ms ease;
}

.system-example-card:hover,
.system-example-card:focus-visible {
  color: #fff;
  box-shadow: 0 14px 30px rgba(28, 52, 81, 0.18);
  transform: translateY(-4px);
}

.system-example-card:hover img,
.system-example-card:focus-visible img {
  filter: saturate(1.04);
  transform: scale(1.035);
}

.system-example-card:hover > svg,
.system-example-card:focus-visible > svg {
  transform: translateX(4px);
}

.js .system-example-card.reveal.is-visible {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.js .system-example-card.reveal.is-visible:hover,
.js .system-example-card.reveal.is-visible:focus-visible {
  transform: translateY(-4px);
}

.system-examples-more {
  margin: 48px 0 0;
  text-align: center;
}

.system-examples-more a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 44px;
  color: var(--brand);
  font-weight: 650;
  text-decoration: none;
}

.system-examples-more a:hover {
  color: var(--brand-deep);
}

.js .build-panel:not(.is-active) {
  display: none;
}

.company-band-new {
  padding-block: 112px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.company-new-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 100px;
  align-items: start;
}

.company-new-copy h2 {
  max-width: 620px;
  margin-bottom: 26px;
  font-size: 3rem;
}

.company-new-copy > p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
}

.company-facts {
  border-top: 1px solid var(--line);
}

.company-facts div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  min-height: 116px;
  border-bottom: 1px solid var(--line);
}

.company-facts strong {
  color: var(--brand);
  font-family: "Bahnschrift", sans-serif;
  font-size: 1.8rem;
}

.company-facts span {
  color: var(--muted);
}

.news-strip {
  margin-top: 94px;
  padding-top: 56px;
  border-top: 1px solid var(--line);
}

.news-strip-header {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 38px;
}

.news-strip-heading h2 {
  margin-bottom: 0;
  font-size: 2.35rem;
}

.news-strip-intro {
  width: min(100%, 580px);
  margin: 0;
  justify-self: end;
  color: var(--muted);
  line-height: 1.8;
}

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

.news-feature {
  min-width: 0;
}

.news-feature-media,
.news-brief-media {
  margin: 0;
  overflow: hidden;
  background: #e9eef3;
  border: 1px solid #dce3ea;
  border-radius: 5px;
}

.news-feature-media {
  aspect-ratio: 16 / 9;
  box-shadow: 0 16px 38px rgba(25, 48, 78, 0.08);
}

.news-brief-media {
  aspect-ratio: 8 / 5;
}

.news-feature-media img,
.news-brief-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-feature-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  font-family: "Bahnschrift", sans-serif;
  font-size: 0.68rem;
  font-weight: 650;
}

.news-feature-meta time {
  color: var(--brand);
}

.news-feature-meta span {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--muted);
}

.news-feature-meta span::before {
  width: 20px;
  height: 1px;
  background: var(--line-strong);
  content: "";
}

.news-feature h3,
.news-brief h3 {
  color: var(--ink);
  font-weight: 620;
  line-height: 1.4;
}

.news-feature h3 {
  margin: 10px 0 8px;
  font-size: 1.35rem;
}

.news-feature > p,
.news-brief-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.75;
}

.news-secondary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 46px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.news-brief {
  display: grid;
  grid-template-columns: minmax(150px, 0.82fr) minmax(0, 1.18fr);
  gap: 22px;
  align-items: center;
  padding-block: 22px;
}

.news-brief:first-child {
  padding-right: 28px;
}

.news-brief + .news-brief {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.news-brief-copy .news-feature-meta {
  margin-top: 0;
}

.news-brief h3 {
  margin: 8px 0 6px;
  font-size: 1.15rem;
}

.news-brief-copy {
  min-width: 0;
}

.news-brief-copy > p {
  color: var(--text);
  max-width: 720px;
}

.contact-band-new {
  padding-block: 100px;
}

.contact-new-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.75fr);
  gap: 100px;
}

.contact-band-new .contact-heading h2 {
  max-width: 690px;
  font-size: 3.35rem;
}

/* DIOS product page */
.dios-hero,
.services-hero {
  color: #fff;
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
}

.dios-hero-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 84px;
  align-items: center;
  padding-block: 68px;
}

.dios-hero-logo {
  width: 154px;
  height: auto;
  margin-bottom: 34px;
}

.problem-band .section-heading h2,
.workflow-band .section-heading h2,
.dios-why .section-heading h2,
.build-band .section-heading h2,
.agent-types-band .section-heading h2,
.dios-scenes-band .section-heading h2,
.partner-band .section-heading h2,
.cooperation-band .section-heading h2 {
  font-size: 3rem;
}

.dios-hero h1 {
  margin-bottom: 24px;
  color: #fff;
  font-size: 4rem;
}

.dios-hero-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 32px;
  color: #b5c0ba;
}

.runtime-window {
  min-width: 0;
  background: #121b18;
  border: 1px solid #405048;
}

.runtime-toolbar {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-inline: 16px;
  border-bottom: 1px solid #34423b;
}

.runtime-toolbar > span {
  width: 7px;
  height: 7px;
  background: #65736c;
  border-radius: 50%;
}

.runtime-toolbar > span:first-child {
  background: var(--signal);
}

.runtime-toolbar b {
  margin-left: auto;
  color: #829089;
  font-family: "Bahnschrift", sans-serif;
  font-size: 0.62rem;
}

.runtime-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  color: #a9b5af;
  border-bottom: 1px solid #34423b;
  font-size: 0.7rem;
}

.runtime-status span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.runtime-status i {
  width: 7px;
  height: 7px;
  background: var(--signal);
  border-radius: 50%;
}

.runtime-status time {
  color: #6f7c76;
  font-family: "Bahnschrift", sans-serif;
}

.runtime-flow {
  min-height: 440px;
  display: grid;
  grid-template-columns: 0.7fr 46px 1.2fr 0.7fr;
  gap: 16px;
  align-items: center;
  padding: 30px;
}

.runtime-source,
.runtime-output,
.runtime-agents {
  display: grid;
  gap: 10px;
}

.runtime-source span,
.runtime-output span {
  color: #829089;
  font-size: 0.65rem;
}

.runtime-source b,
.runtime-output b,
.runtime-agents b {
  padding: 12px 10px;
  color: #d7dedb;
  background: #19231f;
  border: 1px solid #405048;
  font-size: 0.72rem;
  font-weight: 600;
  text-align: center;
}

.runtime-agents b:last-child {
  color: #fff;
  background: #17412f;
  border-color: #398362;
}

.runtime-bus {
  height: 82%;
  display: grid;
  place-items: center;
  color: #81b6f5;
  border-right: 1px solid #305d8f;
  border-left: 1px solid #305d8f;
}

.runtime-bus span {
  font-family: "Bahnschrift", sans-serif;
  font-size: 0.58rem;
  writing-mode: vertical-rl;
}

.dios-why {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.dios-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.dios-proof-grid article {
  min-height: 300px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dios-proof-grid article > span {
  display: block;
  margin-bottom: 70px;
  color: var(--brand);
  font-family: "Bahnschrift", sans-serif;
  font-size: 0.72rem;
}

.dios-proof-grid h3 {
  margin-bottom: 14px;
  font-size: 1.25rem;
}

.dios-proof-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.architecture-band {
  padding-block: 112px;
  color: #fff;
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
}

.architecture-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(600px, 1.28fr);
  gap: 86px;
  align-items: center;
}

.architecture-copy h2 {
  margin-bottom: 24px;
  color: #fff;
  font-size: 3.15rem;
}

.architecture-copy > p:not(.eyebrow) {
  color: #aeb9b3;
}

.architecture-legend {
  margin: 42px 0 0;
  border-top: 1px solid var(--line-dark);
}

.architecture-legend div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  padding-block: 16px;
  border-bottom: 1px solid var(--line-dark);
}

.architecture-legend dt {
  color: #fff;
  font-weight: 650;
}

.architecture-legend dd {
  margin: 0;
  color: #8e9a94;
  font-size: 0.82rem;
}

.architecture-canvas {
  min-width: 0;
  display: grid;
  gap: 16px;
  padding: 28px;
  background: #111a17;
  border: 1px solid #3e4c45;
}

.architecture-layer {
  display: grid;
  grid-template-columns: minmax(100px, 1fr) repeat(3, minmax(70px, 0.5fr));
  gap: 8px;
  align-items: center;
  padding: 14px;
  border: 1px solid #3b4942;
}

.architecture-layer span {
  color: #87958e;
  font-size: 0.68rem;
}

.architecture-layer b {
  padding: 8px;
  color: #cdd5d1;
  background: #19241f;
  font-size: 0.7rem;
  font-weight: 600;
  text-align: center;
}

.architecture-brain {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 17px;
  color: #fff;
  background: #17412f;
  border: 1px solid #3f8e6b;
}

.architecture-brain span {
  font-weight: 700;
}

.architecture-brain strong {
  color: #b7dec9;
  font-size: 0.72rem;
  font-weight: 500;
}

.architecture-bus {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  color: #91c1fb;
  font-family: "Bahnschrift", sans-serif;
  font-size: 0.62rem;
}

.architecture-bus i {
  height: 1px;
  background: #3f709f;
}

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

.architecture-agents div {
  padding: 16px 10px;
  background: #19241f;
  border: 1px solid #45534c;
  text-align: center;
}

.architecture-agents span,
.architecture-agents b {
  display: block;
}

.architecture-agents span {
  color: #fff;
  font-size: 0.74rem;
  font-weight: 650;
}

.architecture-agents b {
  margin-top: 5px;
  color: #87958e;
  font-size: 0.62rem;
  font-weight: 500;
}

.build-band {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.build-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  background: #fff;
  border: 1px solid var(--line);
}

.build-steps {
  border-right: 1px solid var(--line);
}

.build-steps button {
  width: 100%;
  min-height: 116px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 20px 22px;
  color: var(--text);
  background: #fff;
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  text-align: left;
}

.build-steps button:last-child {
  border-bottom: 0;
}

.build-steps button > span {
  color: var(--brand);
  font-family: "Bahnschrift", sans-serif;
  font-size: 0.68rem;
}

.build-steps .build-step-copy,
.build-steps button strong,
.build-steps button small {
  display: block;
}

.build-steps button strong {
  font-size: 0.95rem;
}

.build-steps button small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.7rem;
}

.build-steps button[aria-selected="true"] {
  color: #fff;
  background: var(--brand);
}

.build-steps button[aria-selected="true"] > span,
.build-steps button[aria-selected="true"] small {
  color: #dceafe;
}

.build-stage {
  min-width: 0;
}

.build-panel {
  min-height: 464px;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(380px, 1.18fr);
}

.build-panel-copy {
  padding: 44px;
}

.build-panel-copy > p {
  margin-bottom: 72px;
  color: var(--brand);
  font-family: "Bahnschrift", sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
}

.build-panel-copy h3 {
  margin-bottom: 18px;
  font-size: 1.8rem;
}

.build-panel-copy > span {
  color: var(--muted);
}

.build-visual {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-content: center;
  padding: 42px;
  background: #111a17;
  border-left: 1px solid var(--line);
}

.build-visual b {
  position: relative;
  z-index: 2;
  padding: 16px 8px;
  color: #d7dedb;
  background: #1a2520;
  border: 1px solid #45544c;
  font-size: 0.72rem;
  text-align: center;
}

.build-visual i {
  grid-column: 1 / -1;
  height: 1px;
  margin-block: 26px 16px;
  background: #3f709f;
}

.build-visual strong {
  grid-column: 1 / -1;
  padding: 18px;
  color: #fff;
  background: var(--brand);
  font-size: 0.78rem;
  text-align: center;
}

.build-model strong { background: #176947; }
.build-coordinate strong { background: #5c4d23; }
.build-output strong { background: #174b73; }

.agent-types-band {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.agent-type-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.agent-type-grid article {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.agent-type-grid article > span {
  margin-bottom: 58px;
  color: var(--brand);
  font-family: "Bahnschrift", sans-serif;
  font-size: 0.7rem;
}

.agent-type-grid h3 {
  margin-bottom: 13px;
  font-size: 1.1rem;
}

.agent-type-grid p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.84rem;
}

.agent-type-grid article > b {
  margin-top: auto;
  color: #7b8881;
  font-family: "Bahnschrift", sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
}

.dios-scenes-band {
  padding-block: 112px;
  color: #fff;
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
}

.dios-scenes-band .section-heading h2 {
  color: #fff;
}

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

.dios-scene-grid a {
  display: block;
  padding-bottom: 24px;
  color: #fff;
  border-bottom: 1px solid var(--line-dark);
  text-decoration: none;
}

.dios-scene-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 22px;
  object-fit: cover;
  border: 1px solid var(--line-dark);
  filter: saturate(0.82);
  transition: filter 180ms ease;
}

.dios-scene-grid a:hover img {
  filter: saturate(1.08);
}

.dios-scene-grid span {
  color: #76aefa;
  font-family: "Bahnschrift", sans-serif;
  font-size: 0.68rem;
}

.dios-scene-grid h3 {
  margin: 12px 0 7px;
  color: #fff;
  font-size: 1.25rem;
}

.dios-scene-grid p {
  margin-bottom: 0;
  color: #8f9b95;
  font-size: 0.84rem;
}

.terminal-cta {
  padding-block: 86px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.terminal-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.7fr) auto;
  gap: 60px;
  align-items: end;
}

.terminal-cta h2 {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 2.8rem;
}

.terminal-cta-grid > p {
  margin-bottom: 5px;
  color: var(--muted);
}

/* Services page */
.services-hero-grid {
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
  gap: 100px;
  align-items: center;
  padding-block: 72px;
}

.services-hero h1 {
  margin-bottom: 26px;
  color: #fff;
  font-size: 4.35rem;
}

.services-hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 32px;
  color: #b4c0ba;
  font-size: 1.05rem;
}

.services-hero-list {
  padding: 28px;
  background: #111a17;
  border: 1px solid #405048;
}

.services-hero-list > p {
  color: #7e8c85;
  font-family: "Bahnschrift", sans-serif;
  font-size: 0.64rem;
}

.services-hero-list ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid #405048;
  list-style: none;
}

.services-hero-list li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  padding-block: 21px;
  border-bottom: 1px solid #405048;
}

.services-hero-list li > span {
  grid-row: 1 / 3;
  color: #76aefa;
  font-family: "Bahnschrift", sans-serif;
  font-size: 0.68rem;
}

.services-hero-list strong,
.services-hero-list small {
  display: block;
}

.services-hero-list strong {
  color: #fff;
  font-size: 0.94rem;
}

.services-hero-list small {
  color: #8f9b95;
  font-size: 0.72rem;
}

.partner-band {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.partner-card {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.partner-card > span {
  margin-bottom: 68px;
  color: var(--brand);
  font-family: "Bahnschrift", sans-serif;
  font-size: 0.72rem;
}

.partner-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.partner-card > p {
  color: var(--muted);
}

.partner-card ul {
  margin: auto 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.partner-card li {
  position: relative;
  padding: 5px 0 5px 14px;
  color: #525d57;
  font-size: 0.78rem;
}

.partner-card li::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--signal);
}

.service-capability-band {
  padding-block: 112px;
  color: #fff;
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
}

.service-capability-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
  gap: 100px;
}

.service-capability-intro h2 {
  margin-bottom: 24px;
  color: #fff;
  font-size: 3rem;
}

.service-capability-intro > p:not(.eyebrow) {
  color: #a9b5af;
}

.service-capability-rows {
  border-top: 1px solid var(--line-dark);
}

.service-capability-rows article {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 22px;
  padding-block: 25px;
  border-bottom: 1px solid var(--line-dark);
}

.service-capability-rows article > span {
  color: #76aefa;
  font-family: "Bahnschrift", sans-serif;
  font-size: 0.7rem;
}

.service-capability-rows h3 {
  margin-bottom: 7px;
  color: #fff;
  font-size: 1.2rem;
}

.service-capability-rows p {
  margin-bottom: 0;
  color: #8f9b95;
}

.cooperation-band {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.cooperation-path {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}

.cooperation-path li {
  min-height: 230px;
  padding: 26px;
  background: #fff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cooperation-path li > span {
  display: block;
  margin-bottom: 46px;
  color: var(--brand);
  font-family: "Bahnschrift", sans-serif;
  font-size: 0.7rem;
}

.cooperation-path h3 {
  margin-bottom: 9px;
  font-size: 1.15rem;
}

.cooperation-path p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.cooperation-note {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  margin-top: 24px;
  padding: 28px 32px;
  background: var(--signal-soft);
  border-left: 4px solid var(--signal);
}

.cooperation-note > span {
  color: #18583e;
  font-weight: 700;
}

.cooperation-note > p {
  margin-bottom: 0;
  color: #426052;
}

.terminal-cta-services {
  background: #fff;
}

.terminal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 1180px) {
  .home-hero-grid,
  .dios-hero-grid {
    gap: 48px;
  }

  .home-hero h1 {
    font-size: 3.8rem;
  }

  .agent-field-hero {
    min-height: 480px;
  }

  .architecture-grid,
  .service-capability-grid {
    gap: 58px;
  }

  .architecture-grid {
    grid-template-columns: minmax(280px, 0.62fr) minmax(540px, 1.38fr);
  }

  .agent-type-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .agent-type-grid article:nth-child(n + 4) {
    min-height: 280px;
  }
}

@media (max-width: 1060px) {
  .home-hero-grid,
  .dios-hero-grid,
  .services-hero-grid,
  .architecture-grid,
  .capability-layout,
  .company-new-grid,
  .contact-new-grid,
  .service-capability-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-grid,
  .dios-hero-grid,
  .services-hero-grid {
    min-height: 0;
    padding-block: 68px;
  }

  .home-hero-copy,
  .dios-hero-copy,
  .services-hero-copy {
    max-width: 760px;
  }

  .agent-field-hero {
    width: min(100%, 660px);
    min-height: 0;
    margin-inline: auto;
  }

  .thesis-grid {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .thesis-signal {
    grid-column: 2;
    justify-content: flex-start;
  }

  .workflow-grid,
  .dios-proof-grid,
  .partner-grid,
  .cooperation-path {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workflow-step:nth-child(2)::after {
    display: none;
  }

  .capability-layout,
  .architecture-grid,
  .service-capability-grid,
  .company-new-grid,
  .contact-new-grid,
  .services-hero-grid {
    gap: 56px;
  }

  .capability-intro,
  .architecture-copy,
  .service-capability-intro,
  .company-new-copy {
    max-width: 720px;
  }

  .architecture-canvas {
    max-width: 800px;
  }

  .build-layout {
    grid-template-columns: 240px minmax(0, 1fr);
  }

  .build-panel {
    grid-template-columns: 1fr;
  }

  .build-panel-copy > p {
    margin-bottom: 34px;
  }

  .build-visual {
    min-height: 260px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .news-strip-header {
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 32px;
  }

  .terminal-cta-grid {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .terminal-cta-grid > p {
    grid-column: 1;
  }

  .terminal-cta-grid > .button,
  .terminal-actions {
    grid-row: 1 / 3;
    grid-column: 2;
  }

  .cooperation-note {
    grid-template-columns: 160px minmax(0, 1fr);
  }

  .cooperation-note .text-link {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  .problem-band,
  .workflow-band,
  .partner-band,
  .cooperation-band,
  .dios-why,
  .build-band,
  .agent-types-band,
  .capability-band,
  .company-band-new,
  .architecture-band,
  .service-capability-band,
  .dios-scenes-band {
    padding-block: 78px;
  }

  .home-hero h1,
  .services-hero h1,
  .dios-hero h1 {
    font-size: 3.1rem;
  }

  .thesis-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .thesis-signal {
    grid-column: 1;
  }

  .problem-grid,
  .workflow-grid,
  .dios-proof-grid,
  .agent-type-grid,
  .partner-grid,
  .cooperation-path,
  .dios-scene-grid {
    grid-template-columns: 1fr;
  }

  .problem-card {
    min-height: 340px;
    padding: 32px;
  }

  .problem-card h3 {
    margin-top: 48px;
  }

  .workflow-step {
    min-height: 260px;
  }

  .workflow-step::after {
    top: auto;
    right: 50%;
    bottom: -1px;
    transform: translate(50%, 50%) rotate(135deg);
  }

  .workflow-step:nth-child(2)::after {
    display: block;
  }

  .workflow-step:last-child::after {
    display: none;
  }

  .company-facts div {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .news-strip-header {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
    margin-bottom: 30px;
  }

  .news-strip-intro {
    width: min(100%, 620px);
    justify-self: start;
  }

  .news-feature-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .news-secondary-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 36px;
  }

  .news-brief {
    grid-template-columns: minmax(132px, 210px) minmax(0, 1fr);
    gap: 22px;
  }

  .news-brief:first-child {
    padding-right: 0;
  }

  .news-brief + .news-brief {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .runtime-flow {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .runtime-bus {
    width: 82%;
    height: 42px;
    margin-inline: auto;
    border-top: 1px solid #305d8f;
    border-right: 0;
    border-bottom: 1px solid #305d8f;
    border-left: 0;
  }

  .runtime-bus span {
    writing-mode: horizontal-tb;
  }

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

  .architecture-layer {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .architecture-layer span {
    grid-column: 1 / -1;
  }

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

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

  .build-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .build-steps button {
    min-height: 96px;
    border-right: 1px solid var(--line);
  }

  .build-steps button:nth-child(3) {
    border-bottom: 0;
  }

  .build-panel {
    min-height: 0;
  }

  .agent-type-grid article,
  .agent-type-grid article:nth-child(n + 4),
  .partner-card {
    min-height: 280px;
  }

  .agent-type-grid article > span,
  .partner-card > span {
    margin-bottom: 40px;
  }

  .terminal-cta-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .terminal-cta-grid > p,
  .terminal-cta-grid > .button,
  .terminal-actions {
    grid-row: auto;
    grid-column: 1;
  }

  .cooperation-note {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cooperation-note .text-link {
    grid-column: 1;
    margin-top: 8px;
  }
}

@media (max-width: 640px) {
  .home-hero-grid,
  .dios-hero-grid,
  .services-hero-grid {
    gap: 36px;
    padding-block: 48px 42px;
  }

  .home-hero h1,
  .services-hero h1,
  .dios-hero h1 {
    margin-bottom: 20px;
    font-size: 2.55rem;
  }

  .home-hero-lead,
  .services-hero-copy > p:not(.eyebrow) {
    margin-bottom: 26px;
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .home-hero-actions .button {
    flex: 1 1 148px;
  }

  .home-hero .hero-proof-row {
    display: none;
  }

  .agent-field-hero {
    height: 170px;
    aspect-ratio: auto;
  }

  .field-core {
    width: 92px;
    height: 92px;
    border-width: 8px;
  }

  .field-core strong {
    font-size: 1.25rem;
  }

  .field-core small {
    font-size: 0.55rem;
  }

  .field-node {
    min-width: 94px;
    padding: 8px;
  }

  .field-node span {
    font-size: 0.64rem;
  }

  .field-node b {
    display: none;
  }

  .field-node-device,
  .field-node-parse {
    top: 7%;
  }

  .field-node-control,
  .field-node-ai {
    bottom: 8%;
  }

  .field-node-app,
  .field-caption {
    display: none;
  }

  .thesis-band {
    padding-block: 28px 46px;
  }

  .thesis-grid {
    align-items: start;
  }

  .thesis-copy h2,
  .problem-card h3,
  .build-panel-copy h3 {
    font-size: 1.65rem;
  }

  .capability-intro h2,
  .company-new-copy h2,
  .architecture-copy h2,
  .service-capability-intro h2,
  .contact-band-new .contact-heading h2,
  .terminal-cta h2 {
    font-size: 2.25rem;
  }

  .problem-card,
  .build-panel-copy {
    padding: 26px 22px;
  }

  .workflow-step {
    padding: 24px 22px 28px;
  }

  .workflow-icon {
    margin-block: 38px 28px;
  }

  .capability-layout,
  .architecture-grid,
  .service-capability-grid,
  .company-new-grid,
  .contact-new-grid,
  .services-hero-grid {
    gap: 42px;
  }

  .capability-list-home article,
  .service-capability-rows article {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
  }

  .company-facts div {
    min-height: 94px;
  }

  .company-facts strong {
    font-size: 1.45rem;
  }

  .news-strip {
    margin-top: 68px;
    padding-top: 42px;
  }

  .news-feature-grid {
    gap: 32px;
  }

  .news-secondary-grid {
    margin-top: 32px;
  }

  .news-brief {
    grid-template-columns: minmax(118px, 148px) minmax(0, 1fr);
    gap: 16px;
    padding-block: 18px;
  }

  .news-brief h3 {
    font-size: 1rem;
  }

  .runtime-flow,
  .architecture-canvas,
  .build-visual {
    padding: 18px;
  }

  .dios-hero .runtime-window {
    display: none;
  }

  .runtime-source,
  .runtime-output {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .runtime-source span,
  .runtime-output span {
    grid-column: 1 / -1;
  }

  .architecture-brain {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .architecture-bus {
    gap: 7px;
    font-size: 0.52rem;
  }

  .build-steps button {
    grid-template-columns: 30px minmax(0, 1fr);
    padding: 14px;
  }

  .build-steps button small {
    display: none;
  }

  .build-visual {
    min-height: 220px;
    gap: 7px;
  }

  .build-visual b {
    padding-inline: 4px;
    font-size: 0.62rem;
  }

  .services-hero-list {
    padding: 20px;
  }

  .services-hero-grid {
    gap: 26px;
    padding-block: 42px 34px;
  }

  .services-hero-list li {
    padding-block: 16px;
  }

  .services-hero-list small {
    display: none;
  }

  .partner-card,
  .agent-type-grid article {
    padding: 24px 22px;
  }

  .cooperation-note {
    padding: 24px 22px;
  }

  .terminal-cta {
    padding-block: 68px;
  }

  .terminal-actions {
    display: grid;
  }
}

@media (max-width: 380px) {
  .home-hero h1,
  .services-hero h1,
  .dios-hero h1 {
    font-size: 2.25rem;
  }

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

  .hero-proof-row span,
  .hero-proof-row span + span {
    grid-template-columns: 32px minmax(0, 1fr);
    padding: 8px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .hero-proof-row span:last-child {
    border-bottom: 0;
  }

  .agent-field-hero {
    height: 220px;
  }

  .home-hero-actions .button {
    min-width: 0;
    flex: 1 1 0;
    gap: 7px;
    padding-inline: 9px;
    font-size: 0.8rem;
  }

  .field-node {
    min-width: 84px;
  }

  .news-brief {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .news-brief-media {
    width: 100%;
  }

  .footer-identity {
    gap: 10px;
  }

  .footer-identity img {
    height: 38px;
  }

  .footer-identity strong {
    font-size: 0.92rem;
    white-space: nowrap;
  }

  .architecture-layer b,
  .runtime-source b,
  .runtime-output b,
  .runtime-agents b {
    padding-inline: 4px;
    font-size: 0.62rem;
  }

  .build-steps {
    grid-template-columns: 1fr;
  }

  .build-steps button,
  .build-steps button:nth-child(3) {
    min-height: 72px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .build-steps button:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) and (max-height: 740px) {
  .agent-field-hero {
    display: none;
  }

  .home-hero-grid {
    min-height: calc(100svh - var(--header-height) - 84px);
    padding-block: 32px 28px;
  }

  .home-hero .hero-proof-row,
  .services-hero-list {
    display: none;
  }

  .dios-hero-grid {
    padding-block: 28px 24px;
  }

  .dios-hero-logo {
    width: 128px;
    margin-bottom: 20px;
  }

  .dios-hero-copy > p:not(.eyebrow) {
    margin-bottom: 22px;
  }

  .dios-why {
    padding-top: 30px;
  }
}

@media (min-width: 900px) and (max-width: 1060px) {
  .home-hero-grid,
  .dios-hero-grid,
  .services-hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.78fr);
    gap: 36px;
    min-height: 620px;
    padding-block: 50px;
  }

  .home-hero h1,
  .dios-hero h1,
  .services-hero h1 {
    font-size: 3.15rem;
  }

  .home-hero-lead,
  .dios-hero-copy > p:not(.eyebrow),
  .services-hero-copy > p:not(.eyebrow) {
    font-size: 0.92rem;
  }

  .hero-proof-row {
    margin-top: 36px;
  }

  .hero-proof-row span {
    grid-template-columns: 1fr;
    gap: 3px;
    white-space: normal;
  }

  .agent-field-hero {
    width: 100%;
    min-height: 0;
    margin: 0;
  }

  .field-core {
    width: 112px;
    height: 112px;
    border-width: 9px;
  }

  .field-node {
    min-width: 106px;
    padding: 10px;
  }

  .field-node-app,
  .field-caption {
    display: none;
  }

  .runtime-flow {
    min-height: 360px;
    grid-template-columns: 0.65fr 34px 1.05fr 0.65fr;
    gap: 10px;
    padding: 20px;
  }

  .runtime-source b,
  .runtime-output b,
  .runtime-agents b {
    padding-inline: 5px;
    font-size: 0.64rem;
  }

  .services-hero-list {
    padding: 22px;
  }

  .services-hero-list li {
    padding-block: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dios-scene-grid img {
    transition: none;
  }
}

/* Brand film */
.film-band {
  padding-block: 92px 104px;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.film-intro {
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 42px;
  text-align: center;
}

.film-intro h2 {
  max-width: 1080px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: 3.25rem;
  font-weight: 520;
  line-height: 1.25;
}

.film-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 46px;
  margin-top: 22px;
}

.film-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand);
  font-size: 1.06rem;
  font-weight: 560;
  line-height: 1.4;
  text-decoration: none;
}

.film-links a:hover {
  color: var(--brand-deep);
}

.film-links span {
  transition: transform 180ms ease;
}

.film-links a:hover span {
  transform: translateX(3px);
}

.film-player {
  max-width: 720px;
  overflow: hidden;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 22px;
  box-shadow: 0 8px 20px rgba(13, 18, 16, 0.16);
}

.film-player video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  background: transparent;
  border-radius: inherit;
}

@media (max-width: 1060px) {
  .film-intro h2 {
    max-width: 860px;
    font-size: 2.9rem;
  }

  .film-links {
    gap-inline: 32px;
  }
}

@media (max-width: 760px) {
  .film-band {
    padding-block: 76px 84px;
  }

  .film-intro {
    margin-bottom: 42px;
  }

  .film-intro h2 {
    max-width: 680px;
    font-size: 2.45rem;
  }

  .film-player {
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(13, 18, 16, 0.14);
  }
}

@media (max-width: 640px) {
  .film-band {
    padding-block: 66px 72px;
  }

  .film-intro {
    margin-bottom: 34px;
  }

  .film-intro h2 {
    font-size: 2.1rem;
  }

  .film-links {
    width: max-content;
    max-width: 100%;
    display: grid;
    justify-items: start;
    gap: 6px;
    margin-top: 20px;
  }

  .film-links a {
    min-height: 38px;
    font-size: 0.96rem;
  }

  .film-player {
    border-radius: 12px;
  }
}

@media (max-width: 380px) {
  .film-intro h2 {
    font-size: 1.82rem;
  }

  .film-links a {
    font-size: 0.92rem;
  }

  .film-player {
    border-radius: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .film-links span {
    transition: none;
  }
}

@media (max-width: 1060px) {
  .scenario-showcase-list {
    height: 400px;
  }

  .scenario-showcase-card.is-active {
    flex-grow: 2.3;
  }

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

@media (max-width: 760px) {
  .scenario-showcase-band,
  .system-examples-band {
    padding-block: 76px 84px;
  }

  .showcase-heading {
    margin-bottom: 42px;
  }

  .showcase-heading h2 {
    font-size: 2.45rem;
  }

  .scenario-showcase-list {
    height: auto;
    display: grid;
    gap: 10px;
  }

  .scenario-showcase-card,
  .scenario-showcase-card.is-active {
    width: 100%;
    height: auto;
    min-height: 88px;
    flex: none;
    transition: min-height 380ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .scenario-showcase-card.is-active {
    min-height: 330px;
  }

  .scenario-showcase-body,
  .scenario-showcase-card.is-active .scenario-showcase-body {
    position: relative;
    min-height: 88px;
    padding: 20px;
  }

  .scenario-showcase-card.is-active .scenario-showcase-body {
    min-height: 330px;
  }

  .scenario-showcase-trigger,
  .scenario-showcase-card.is-active .scenario-showcase-trigger {
    justify-content: flex-start;
  }

  .scenario-showcase-trigger > span {
    font-size: 1rem;
  }

  .scenario-showcase-card.is-active .scenario-showcase-trigger > span {
    font-size: 1.4rem;
  }

  .scenario-showcase-detail p {
    font-size: 0.82rem;
  }

  .scenario-showcase-card.is-active .scenario-showcase-detail {
    max-height: 520px;
  }
}

@media (max-width: 640px) {
  .scenario-showcase-band,
  .system-examples-band {
    padding-block: 66px 72px;
  }

  .showcase-heading {
    margin-bottom: 34px;
  }

  .showcase-heading h2 {
    font-size: 2.1rem;
  }

  .showcase-heading > p:last-child {
    font-size: 0.94rem;
    line-height: 1.75;
  }

  .scenario-showcase-card.is-active,
  .scenario-showcase-card.is-active .scenario-showcase-body {
    min-height: 320px;
  }

  .system-example-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .system-example-card h3 {
    font-size: 1.1rem;
  }

  .system-examples-more {
    margin-top: 36px;
  }
}

@media (max-width: 380px) {
  .showcase-heading h2 {
    font-size: 1.82rem;
  }

  .showcase-heading > p:last-child {
    font-size: 0.9rem;
  }

  .scenario-showcase-card.is-active,
  .scenario-showcase-card.is-active .scenario-showcase-body {
    min-height: 300px;
  }

  .scenario-showcase-card.is-active .scenario-showcase-trigger > span {
    font-size: 1.25rem;
  }

  .scenario-showcase-tags span {
    font-size: 0.64rem;
  }
}

@media (max-width: 420px) {
  .brand-link {
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand-copy {
    display: none;
  }

  .footer-identity strong {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scenario-showcase-card,
  .scenario-showcase-card img,
  .scenario-showcase-index,
  .scenario-showcase-trigger svg,
  .scenario-showcase-detail,
  .system-example-card,
  .system-example-card img,
  .system-example-card > svg {
    transition: none;
  }
}
