:root {
  --ink: #08090b;
  --muted: #69707b;
  --soft: #f5f6f8;
  --paper: #ffffff;
  --line: #d9dde3;
  --line-soft: rgba(8, 9, 11, 0.1);
  --cyan: #54d8f4;
  --green: #72df89;
  --red: #ed6b61;
  --shadow: 0 28px 90px rgba(20, 28, 36, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 34px;
  min-height: 88px;
  padding: 0 clamp(26px, 7vw, 132px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.68) 68%, rgba(255, 255, 255, 0));
  backdrop-filter: blur(16px);
}

.brand {
  justify-self: start;
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 760;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  width: clamp(146px, 14vw, 210px);
}

.brand-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(26px, 3vw, 54px);
  font-size: 16px;
  font-weight: 520;
}

.site-nav a,
.brand,
.button,
.lang-option {
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.site-nav > a,
.nav-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  line-height: 1;
}

.site-nav > a:hover,
.nav-trigger:hover {
  color: #000;
  background: rgba(8, 9, 11, 0.06);
}

.site-nav > a.is-active,
.nav-trigger.is-active {
  color: #050608;
  background: transparent;
  font-weight: 760;
}

.site-nav > a::before,
.nav-trigger::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 3px;
  height: 2px;
  background: #050608;
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.site-nav > a.is-active::before,
.nav-trigger.is-active::before {
  opacity: 1;
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 88px;
}

.nav-trigger {
  gap: 8px;
}

.nav-trigger::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 1px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.72;
}

.solutions-menu {
  position: absolute;
  top: 72px;
  left: 50%;
  width: min(980px, calc(100vw - 48px));
  padding-top: 14px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.nav-dropdown:hover .solutions-menu,
.nav-dropdown:focus-within .solutions-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.solutions-menu-panel {
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(8, 9, 11, 0.1);
  border-radius: 22px;
  box-shadow: 0 28px 90px rgba(20, 28, 36, 0.14);
  backdrop-filter: blur(22px);
}

.solutions-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 6px 6px 16px;
  border-bottom: 1px solid rgba(8, 9, 11, 0.08);
}

.solutions-menu-head span {
  color: #111;
  font-size: 15px;
  font-weight: 760;
}

.solutions-menu-head p {
  margin: 0;
  color: #7a828c;
  font-size: 13px;
}

.solutions-menu-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding-top: 14px;
}

.solution-menu-item {
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 16px;
  background: rgba(247, 248, 250, 0.72);
  border: 1px solid rgba(8, 9, 11, 0.08);
  border-radius: 14px;
}

.site-nav .solution-menu-item:hover,
.site-nav .solution-menu-item.is-active {
  color: #fff;
  background: #050608;
  border-color: #050608;
  transform: translateY(-1px);
}

.solution-menu-item small {
  color: #828a94;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.solution-menu-item span {
  color: inherit;
  font-size: 16px;
  font-weight: 760;
  line-height: 1.2;
}

.solution-menu-item em {
  color: #727a84;
  font-size: 12px;
  font-style: normal;
  line-height: 1.35;
}

.solution-menu-item:hover small,
.solution-menu-item:hover em,
.solution-menu-item.is-active small,
.solution-menu-item.is-active em {
  color: rgba(255, 255, 255, 0.58);
}

.header-tools {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  min-height: 40px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(8, 9, 11, 0.14);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(20, 28, 36, 0.08);
  backdrop-filter: blur(14px);
}

.lang-option {
  display: inline-grid;
  place-items: center;
  min-width: 36px;
  height: 32px;
  padding: 0 10px;
  color: #505760;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0;
}

.lang-option:hover {
  color: #050608;
}

.lang-option.is-active {
  color: #fff;
  background: #050608;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 650;
  border: 1px solid transparent;
  white-space: nowrap;
}

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

.button:disabled,
.button[disabled] {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

.button-dark {
  color: #fff;
  background: #050608;
  border-color: #050608;
}

.button-outline {
  color: #111;
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(8, 9, 11, 0.24);
}

.button-outline:hover {
  border-color: rgba(8, 9, 11, 0.48);
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  padding: 10px;
  color: #111;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(8, 9, 11, 0.14);
  border-radius: 12px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: max(100svh, 900px);
  padding: 112px clamp(24px, 6.5vw, 110px) 0;
  overflow: hidden;
  background: #f8fafb;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.2) 36%, rgba(255, 255, 255, 0) 58%),
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 34%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(920px, 72vw);
  margin: 0 auto;
  padding-top: clamp(38px, 8vh, 86px);
  text-align: center;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(56px, 7.2vw, 116px);
  line-height: 0.96;
  font-weight: 820;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 700px;
  margin: 24px auto 0;
  color: #41464f;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.2;
}

.hero-copy .hero-support {
  max-width: 720px;
  margin: 14px auto 0;
  color: #59616b;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 40px;
}

.feature-strip {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  width: min(1500px, calc(100% - 180px));
  padding: 32px 68px 40px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-bottom: 0;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -22px 80px rgba(20, 28, 36, 0.12);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.feature-strip article {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: center;
  min-height: 126px;
  padding: 22px 26px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(8, 9, 11, 0.1);
  border-radius: 14px;
}

.feature-strip h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.feature-strip p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.35;
}

.feature-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  background: #f7f7f8;
  border-radius: 14px;
  box-shadow: inset 0 1px 0 #fff;
}

.target-icon::before,
.target-icon::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.target-icon::before {
  width: 38px;
  height: 38px;
  border: 2px solid #111;
}

.target-icon::after {
  width: 8px;
  height: 8px;
  background: #111;
  box-shadow:
    0 -24px 0 -2px #111,
    0 24px 0 -2px #111,
    -24px 0 0 -2px #111,
    24px 0 0 -2px #111;
}

.shield-icon::before {
  content: "";
  width: 34px;
  height: 42px;
  background: #111;
  clip-path: polygon(50% 0, 100% 18%, 88% 75%, 50% 100%, 12% 75%, 0 18%);
}

.shield-icon::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 9px;
  margin-top: -2px;
  border-bottom: 3px solid #fff;
  border-left: 3px solid #fff;
  transform: rotate(-45deg);
}

.chart-icon::before {
  content: "";
  width: 40px;
  height: 42px;
  background: linear-gradient(90deg, transparent 0 12%, #111 12% 28%, transparent 28% 40%, #111 40% 56%, transparent 56% 68%, #111 68% 84%, transparent 84%);
}

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

.intro-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.section-kicker {
  margin: 0 0 16px;
  color: #54606a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.intro-section h2,
.section-heading h2,
.proof-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(38px, 4.8vw, 68px);
  line-height: 1.08;
  letter-spacing: 0;
}

.intro-section > p,
.section-heading p,
.proof-copy p,
.contact-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.75;
}

.section-heading {
  max-width: 830px;
  margin-bottom: 44px;
}

.scenario-section {
  padding-top: 42px;
}

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

.scenario-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 282px;
  padding: 28px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  box-shadow: 0 18px 54px rgba(20, 28, 36, 0.06);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.scenario-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  border-radius: 0 0 999px 999px;
}

.scenario-card small {
  color: #808992;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scenario-card h3 {
  margin: 30px 0 12px;
  font-size: 25px;
  line-height: 1.18;
  letter-spacing: 0;
}

.scenario-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.scenario-card:hover {
  transform: translateY(-2px);
  border-color: rgba(8, 9, 11, 0.18);
  box-shadow: 0 24px 70px rgba(20, 28, 36, 0.1);
}

.product-section,
.technology-section {
  width: 100%;
  padding-right: max(24px, calc((100% - 1180px) / 2));
  padding-left: max(24px, calc((100% - 1180px) / 2));
  background: var(--soft);
}

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

.product-card,
.solution-grid article,
.tech-timeline li,
.contact-form,
.contact-copy {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  box-shadow: 0 18px 54px rgba(20, 28, 36, 0.06);
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 30px;
  overflow: hidden;
}

.large-card {
  color: #fff;
  background: linear-gradient(145deg, #161a20, #030406);
}

.product-card span,
.solution-grid span,
.tech-timeline span {
  color: #7d8790;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.large-card span {
  color: rgba(255, 255, 255, 0.62);
}

.product-card h3,
.solution-grid h3,
.tech-timeline h3 {
  margin: 14px 0 10px;
  font-size: 25px;
  line-height: 1.18;
  letter-spacing: 0;
}

.product-card p,
.solution-grid p,
.tech-timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.large-card p {
  color: rgba(255, 255, 255, 0.68);
}

.product-visual {
  position: relative;
  margin: 24px -12px -12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #eef2f5;
  border: 1px solid rgba(8, 9, 11, 0.08);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.large-card .product-visual {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 22px 60px rgba(0, 0, 0, 0.28);
}

.product-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
  transition: transform 0.32s ease;
}

.product-card:hover .product-visual img {
  transform: scale(1.01);
}

.system-section {
  width: 100%;
  padding: 112px max(24px, calc((100% - 1180px) / 2));
  color: #fff;
  background:
    radial-gradient(circle at 82% 14%, rgba(84, 216, 244, 0.18), transparent 32%),
    radial-gradient(circle at 14% 82%, rgba(114, 223, 137, 0.12), transparent 28%),
    #050608;
}

.system-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.system-section .section-heading h2 {
  color: #fff;
}

.system-section .section-heading p {
  color: rgba(255, 255, 255, 0.62);
}

.system-section .section-kicker {
  color: rgba(255, 255, 255, 0.58);
}

.system-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 24px;
  align-items: stretch;
}

.system-stack {
  min-height: 436px;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
}

.system-stack > span,
.system-grid article > span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.system-grid article > span {
  color: #7d8790;
}

.system-stack h3 {
  margin: 18px 0 28px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
  letter-spacing: 0;
}

.system-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.system-tags span {
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 720;
}

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

.system-grid article {
  min-height: 208px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
}

.system-grid article h3 {
  margin: 28px 0 10px;
  color: #08090b;
  font-size: 23px;
  line-height: 1.18;
  letter-spacing: 0;
}

.system-grid article p {
  margin: 0;
  color: #68717b;
  font-size: 16px;
  line-height: 1.62;
}

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

.solution-grid article {
  min-height: 310px;
  padding: 28px;
}

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

.tech-timeline li {
  min-height: 260px;
  padding: 30px;
}

.proof-section {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 48px;
  align-items: center;
}

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

.proof-metrics article {
  min-height: 176px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  box-shadow: 0 18px 54px rgba(20, 28, 36, 0.06);
}

.proof-metrics article:nth-child(1) {
  color: #fff;
  background:
    radial-gradient(circle at 82% 10%, rgba(84, 216, 244, 0.22), transparent 34%),
    #050608;
}

.proof-metrics strong {
  display: block;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  letter-spacing: 0;
}

.proof-metrics span {
  display: block;
  margin-top: 24px;
  color: #68717b;
  font-size: 16px;
  line-height: 1.5;
}

.proof-metrics article:nth-child(1) span {
  color: rgba(255, 255, 255, 0.68);
}

.evidence-section {
  width: 100%;
  padding: 112px max(24px, calc((100% - 1180px) / 2));
  background:
    radial-gradient(circle at 84% 10%, rgba(84, 216, 244, 0.14), transparent 28%),
    linear-gradient(180deg, #f7f8fa, #fff 64%);
}

.evidence-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.evidence-layout {
  display: grid;
  grid-template-columns: 1.26fr 0.74fr;
  gap: 22px;
  align-items: stretch;
}

.evidence-visual {
  overflow: hidden;
  margin: 0;
  background: #fff;
  border: 1px solid rgba(8, 9, 11, 0.08);
  border-radius: 28px;
  box-shadow: 0 24px 74px rgba(20, 28, 36, 0.08);
}

.evidence-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.evidence-visual figcaption {
  display: grid;
  gap: 8px;
  padding: 22px 24px 24px;
  border-top: 1px solid rgba(8, 9, 11, 0.08);
}

.evidence-visual strong {
  color: #08090b;
  font-size: 20px;
  line-height: 1.24;
}

.evidence-visual span {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.evidence-notes {
  display: grid;
  gap: 16px;
}

.evidence-notes article {
  min-height: 190px;
  padding: 26px;
  background: #fff;
  border: 1px solid rgba(8, 9, 11, 0.08);
  border-radius: 22px;
  box-shadow: 0 18px 54px rgba(20, 28, 36, 0.06);
}

.evidence-notes span,
.download-card > span,
.about-grid span {
  color: #7d8790;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.evidence-notes h3,
.download-card h3,
.about-grid h3 {
  margin: 28px 0 10px;
  font-size: 23px;
  line-height: 1.18;
  letter-spacing: 0;
}

.evidence-notes p,
.download-card p,
.about-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.evidence-wide {
  margin-top: 22px;
}

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

.download-card {
  position: relative;
  display: grid;
  min-height: 220px;
  padding: 28px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(8, 9, 11, 0.08);
  border-radius: 22px;
  box-shadow: 0 18px 54px rgba(20, 28, 36, 0.06);
}

.download-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(84, 216, 244, 0.22), transparent 64%);
  pointer-events: none;
}

.download-card b {
  align-self: end;
  margin-top: 28px;
  color: #08090b;
  font-size: 15px;
  font-weight: 820;
}

.about-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 54px;
  align-items: start;
}

.about-copy h2 {
  margin: 0;
  font-size: clamp(36px, 4.4vw, 62px);
  line-height: 1.08;
  letter-spacing: 0;
}

.about-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.75;
}

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

.about-grid article {
  min-height: 230px;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(8, 9, 11, 0.08);
  border-radius: 22px;
  box-shadow: 0 18px 54px rgba(20, 28, 36, 0.06);
}

.sample-flow-section {
  width: 100%;
  padding: 112px max(24px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(180deg, #f6f8fa, #fff 72%),
    var(--soft);
}

.sample-flow-inner {
  max-width: 1180px;
  margin: 0 auto;
}

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

.sample-flow-list li {
  min-height: 258px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  box-shadow: 0 18px 54px rgba(20, 28, 36, 0.06);
}

.sample-flow-list span {
  color: #7d8790;
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.1em;
}

.sample-flow-list h3 {
  margin: 36px 0 10px;
  font-size: 23px;
  line-height: 1.18;
  letter-spacing: 0;
}

.sample-flow-list p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.contact-copy,
.contact-form {
  padding: 38px;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 32px;
}

.contact-links a,
.contact-links span {
  font-size: 22px;
  font-weight: 750;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #4e5359;
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: #111;
  background: #f7f8f9;
  border: 1px solid #e2e4e7;
  border-radius: 10px;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(84, 216, 244, 0.8);
  box-shadow: 0 0 0 4px rgba(84, 216, 244, 0.16);
}

.full-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: #168a43;
  font-size: 14px;
}

.form-note[data-state="error"] {
  color: #b42318;
}

.form-modal[hidden] {
  display: none;
}

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

.form-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 9, 11, 0.42);
  backdrop-filter: blur(10px);
}

.form-modal-panel {
  position: relative;
  width: min(480px, 100%);
  padding: 34px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  box-shadow: 0 30px 90px rgba(4, 14, 24, 0.24);
}

.form-modal-panel h2 {
  margin: 10px 0 12px;
  color: #050608;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: 0;
}

.form-modal-panel p:not(.section-kicker) {
  margin: 0 0 24px;
  color: #4e5359;
  line-height: 1.7;
}

.form-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  color: #111;
  background: #fff;
  border: 1px solid rgba(8, 9, 11, 0.1);
  border-radius: 50%;
  cursor: pointer;
  font-weight: 700;
}

body.modal-open {
  overflow: hidden;
}

.faq-section {
  padding-top: 106px;
}

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

.faq-list details {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(8, 9, 11, 0.08);
  border-radius: 18px;
  box-shadow: 0 16px 48px rgba(20, 28, 36, 0.05);
}

.faq-list summary {
  position: relative;
  min-height: 72px;
  padding: 24px 64px 24px 26px;
  color: #08090b;
  cursor: pointer;
  font-size: 20px;
  font-weight: 780;
  list-style: none;
}

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

.faq-list summary::after {
  content: "";
  position: absolute;
  top: 30px;
  right: 28px;
  width: 12px;
  height: 12px;
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(225deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 26px 26px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 30px clamp(24px, 6.5vw, 110px);
  color: rgba(255, 255, 255, 0.68);
  background: #050608;
}

.site-footer a {
  color: #fff;
}

.site-footer > span:first-child {
  justify-self: start;
}

.site-footer > a:last-child {
  justify-self: end;
}

.site-footer .footer-icp {
  justify-self: center;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  text-align: center;
}

.solutions-page {
  min-height: 100svh;
  padding: 128px 0 112px;
  background: #f5f6f8;
}

.solution-page-detail {
  position: relative;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.solution-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.52fr);
  gap: 28px;
  align-items: stretch;
  min-height: 520px;
  padding: clamp(30px, 5vw, 64px);
  background:
    radial-gradient(circle at 82% 12%, rgba(84, 216, 244, 0.2), transparent 32%),
    linear-gradient(180deg, #fff, #f7f8fa);
  border: 1px solid rgba(8, 9, 11, 0.08);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.solution-hero-copy {
  display: grid;
  align-content: center;
}

.solution-hero-copy h1 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(48px, 6.2vw, 88px);
  line-height: 1.02;
  letter-spacing: 0;
}

.solution-hero-copy p[data-solution-field="summary"] {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.72;
}

.solution-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.solution-profile {
  align-self: stretch;
  display: grid;
  align-content: space-between;
  gap: 32px;
  padding: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(84, 216, 244, 0.18), transparent 38%),
    #050608;
  border-radius: 24px;
}

.solution-profile span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.solution-profile strong {
  display: block;
  margin-top: 10px;
  font-size: 28px;
  line-height: 1.16;
}

.solution-sidebar {
  position: static;
  width: auto;
  max-height: none;
  margin-top: 28px;
  overflow: visible;
}

.solution-content-main {
  min-width: 0;
  margin-top: 22px;
}

.solution-content-main > .solution-media:first-child {
  margin-top: 0;
}

.solution-explorer {
  margin-top: 0;
  padding: 10px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(8, 9, 11, 0.08);
  border-radius: 18px;
  box-shadow: 0 20px 62px rgba(20, 28, 36, 0.08);
  backdrop-filter: blur(20px);
}

.solution-explorer-head {
  display: grid;
  gap: 10px;
  padding: 4px 4px 18px;
  border-bottom: 1px solid rgba(8, 9, 11, 0.08);
}

.solution-explorer-head h2 {
  margin: 0;
  color: #08090b;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.16;
  letter-spacing: 0;
}

.solution-explorer-head > p {
  max-width: none;
  margin: 0;
  color: #69727d;
  font-size: 14px;
  line-height: 1.55;
  text-align: left;
}

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

.solution-explorer-item {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  color: #08090b;
  background: rgba(247, 248, 250, 0.76);
  border: 1px solid rgba(8, 9, 11, 0.08);
  border-radius: 12px;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.solution-explorer-item:hover,
.solution-explorer-item.is-active {
  color: #fff;
  background: #050608;
  border-color: #050608;
  box-shadow: 0 16px 42px rgba(5, 6, 8, 0.16);
  transform: translateY(-1px);
}

.solution-explorer-item small {
  color: #828a94;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.solution-explorer-item span {
  color: inherit;
  font-size: 14px;
  font-weight: 780;
  line-height: 1.18;
}

@media (min-width: 1380px) {
  .solution-page-detail {
    width: min(1120px, calc(100vw - 360px));
    margin: 0 auto;
  }

  .solution-sidebar {
    position: fixed;
    top: 126px;
    left: clamp(16px, 2vw, 32px);
    z-index: 30;
    width: clamp(128px, 10vw, 160px);
    max-height: calc(100svh - 150px);
    margin-top: 0;
    overflow-y: auto;
  }

  .solution-content-main {
    margin-top: 28px;
  }

  .solution-explorer-grid {
    grid-template-columns: 1fr;
  }
}

.solution-explorer-item em {
  color: #727a84;
  font-size: 12px;
  font-style: normal;
  line-height: 1.35;
}

.solution-explorer-item:hover small,
.solution-explorer-item:hover em,
.solution-explorer-item.is-active small,
.solution-explorer-item.is-active em {
  color: rgba(255, 255, 255, 0.58);
}

.solution-metrics {
  display: grid;
  gap: 10px;
  margin: 0;
}

.solution-metrics div {
  display: grid;
  gap: 5px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}

.solution-metrics dt,
.solution-metrics dd {
  margin: 0;
}

.solution-metrics dt {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.solution-metrics dd {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.solution-media {
  overflow: hidden;
  margin: 28px 0 0;
  background: #fff;
  border: 1px solid rgba(8, 9, 11, 0.08);
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(20, 28, 36, 0.08);
}

.solution-media[hidden] {
  display: none;
}

.solution-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7.5;
  object-fit: cover;
}

.solution-media figcaption {
  margin: 0;
  padding: 18px 24px;
  color: #69707b;
  background: #fff;
  border-top: 1px solid rgba(8, 9, 11, 0.08);
  font-size: 14px;
  line-height: 1.6;
}

.solution-gallery {
  padding-top: 62px;
}

.solution-gallery[hidden] {
  display: none;
}

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

.solution-gallery-grid.is-single {
  grid-template-columns: 1fr;
}

.solution-gallery-card {
  overflow: hidden;
  margin: 0;
  background: #fff;
  border: 1px solid rgba(8, 9, 11, 0.08);
  border-radius: 24px;
  box-shadow: 0 20px 62px rgba(20, 28, 36, 0.07);
}

.solution-gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.solution-gallery-grid.is-single .solution-gallery-card img {
  aspect-ratio: 16 / 7.5;
}

.solution-gallery-card figcaption {
  margin: 0;
  min-height: 88px;
  padding: 18px 22px;
  color: #606873;
  font-size: 15px;
  line-height: 1.6;
}

.solution-narrative {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
  padding: 96px 0 56px;
}

.solution-narrative h2 {
  margin: 0;
  max-width: 640px;
  font-size: clamp(36px, 4.8vw, 66px);
  line-height: 1.08;
  letter-spacing: 0;
}

.solution-narrative > p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.78;
}

.solution-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(8, 9, 11, 0.08);
  border-radius: 26px;
  box-shadow: 0 22px 68px rgba(20, 28, 36, 0.07);
}

.solution-block {
  min-height: 300px;
  padding: 32px;
  border-right: 1px solid rgba(8, 9, 11, 0.08);
}

.solution-block:last-child {
  border-right: 0;
}

.solution-block h3 {
  margin: 0 0 22px;
  color: #111;
  font-size: 19px;
}

.solution-block ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.solution-block li {
  position: relative;
  padding-left: 18px;
  color: #606873;
  font-size: 16px;
  line-height: 1.55;
}

.solution-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  background: #111;
  border-radius: 50%;
}

.solution-block-strong {
  background: #f7f8fa;
}

.solution-assessment {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 28px;
  align-items: stretch;
  padding-top: 32px;
}

.solution-assessment-copy,
.solution-assessment-grid article {
  background: #fff;
  border: 1px solid rgba(8, 9, 11, 0.08);
  box-shadow: 0 20px 62px rgba(20, 28, 36, 0.06);
}

.solution-assessment-copy {
  display: grid;
  align-content: start;
  min-height: 430px;
  padding: 36px;
  border-radius: 26px;
}

.solution-assessment-copy h2 {
  margin: 0;
  font-size: clamp(34px, 3.8vw, 56px);
  line-height: 1.08;
  letter-spacing: 0;
}

.solution-assessment-copy p:not(.section-kicker) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.solution-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.solution-downloads a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  color: #08090b;
  background: #f7f8fa;
  border: 1px solid rgba(8, 9, 11, 0.1);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 820;
}

.solution-assessment-grid {
  display: grid;
  gap: 16px;
}

.solution-assessment-grid article {
  min-height: 132px;
  padding: 26px;
  border-radius: 22px;
}

.solution-assessment-grid span {
  color: #7d8790;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.1em;
}

.solution-assessment-grid h3 {
  margin: 16px 0 14px;
  color: #111;
  font-size: 20px;
  line-height: 1.2;
}

.solution-assessment-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.solution-assessment-grid li {
  position: relative;
  padding-left: 17px;
  color: #606873;
  font-size: 15px;
  line-height: 1.58;
}

.solution-assessment-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  border-radius: 50%;
}

.solution-process {
  padding-top: 82px;
}

.compact-heading {
  max-width: 680px;
  margin-bottom: 28px;
}

.solution-process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.solution-process-list li {
  position: relative;
  min-height: 190px;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(8, 9, 11, 0.08);
  border-radius: 20px;
  box-shadow: 0 16px 50px rgba(20, 28, 36, 0.05);
  color: #606873;
  font-size: 16px;
  line-height: 1.58;
  counter-increment: process;
}

.solution-process-list li::before {
  content: counter(process, decimal-leading-zero);
  display: block;
  margin-bottom: 32px;
  color: #111;
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.1em;
}

@media (max-width: 1360px) {
  .site-header {
    gap: 22px;
    padding: 0 clamp(24px, 4vw, 72px);
  }

  .site-nav {
    gap: clamp(22px, 2.4vw, 34px);
  }

  .header-actions {
    display: none;
  }
}

@media (max-width: 1200px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .site-nav.is-open {
    position: absolute;
    top: 76px;
    right: 24px;
    display: grid;
    width: min(320px, calc(100vw - 48px));
    gap: 16px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(8, 9, 11, 0.12);
    border-radius: 16px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

  .site-nav.is-open .nav-dropdown {
    display: grid;
    min-height: auto;
  }

  .site-nav.is-open .solutions-menu {
    position: static;
    width: 100%;
    padding-top: 10px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav.is-open .solutions-menu-panel {
    padding: 12px;
    border-radius: 14px;
    box-shadow: none;
  }

  .site-nav.is-open .solutions-menu-head {
    display: grid;
    gap: 4px;
  }

  .site-nav.is-open .solutions-menu-grid {
    grid-template-columns: 1fr;
  }

  .site-nav.is-open .solution-menu-item {
    min-height: auto;
  }

  .menu-toggle {
    display: block;
  }

  .header-tools {
    gap: 10px;
  }

  .feature-strip,
  .scenario-grid,
  .product-grid,
  .system-grid,
  .proof-metrics,
  .sample-flow-list,
  .solution-grid,
  .tech-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-strip {
    width: min(960px, calc(100% - 48px));
    gap: 18px;
    padding: 24px;
  }

  .feature-strip article:last-child {
    grid-column: 1 / -1;
  }

  .intro-section,
  .evidence-layout,
  .about-section,
  .system-layout,
  .proof-section,
  .contact-section,
  .solution-hero-panel,
  .solution-assessment,
  .solution-narrative {
    grid-template-columns: 1fr;
  }

  .solution-sidebar {
    position: static;
    width: auto;
    max-height: none;
    overflow: visible;
    margin-top: 28px;
  }

  .solution-detail-grid,
  .solution-gallery-grid,
  .solution-explorer-grid,
  .solution-process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-block:nth-child(2) {
    border-right: 0;
  }

  .solution-block:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(8, 9, 11, 0.08);
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 72px;
    padding: 0 18px;
    gap: 10px;
  }

  .brand {
    font-size: 18px;
  }

  .language-switch {
    min-height: 38px;
    padding: 3px;
  }

  .lang-option {
    min-width: 30px;
    height: 30px;
    padding: 0 7px;
    font-size: 12px;
  }

  .header-tools {
    gap: 8px;
  }

  .hero {
    min-height: 860px;
    padding: 92px 18px 0;
  }

  .hero-media {
    object-position: 36% center;
  }

  .hero-wash {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.93) 0%, rgba(255, 255, 255, 0.54) 48%, rgba(255, 255, 255, 0) 72%),
      radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0) 44%);
  }

  .hero-copy {
    width: 100%;
    padding-top: 26px;
  }

  .hero-copy h1 {
    font-size: clamp(44px, 14vw, 60px);
  }

  .hero-copy p {
    font-size: 20px;
  }

  .hero-copy .hero-support {
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
    margin-top: 28px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .feature-strip {
    left: 18px;
    right: 18px;
    bottom: 0;
    grid-template-columns: 1fr;
    width: auto;
    padding: 18px;
    border-radius: 22px 22px 0 0;
    transform: none;
  }

  .feature-strip article,
  .feature-strip article:last-child {
    grid-column: auto;
    grid-template-columns: 58px 1fr;
    min-height: 92px;
    padding: 14px;
  }

  .feature-icon {
    width: 52px;
    height: 52px;
  }

  .feature-strip h2 {
    font-size: 17px;
  }

  .feature-strip p {
    font-size: 13px;
  }

  .section,
  .evidence-section,
  .product-section,
  .technology-section,
  .system-section,
  .sample-flow-section {
    width: 100%;
    padding: 72px 18px;
  }

  .intro-section h2,
  .section-heading h2,
  .about-copy h2,
  .proof-copy h2,
  .contact-copy h2 {
    font-size: 36px;
  }

  .intro-section > p,
  .section-heading p,
  .about-copy p,
  .proof-copy p,
  .contact-copy p {
    font-size: 17px;
  }

  .scenario-grid,
  .download-grid,
  .about-grid,
  .product-grid,
  .system-grid,
  .proof-metrics,
  .sample-flow-list,
  .solution-grid,
  .tech-timeline {
    grid-template-columns: 1fr;
  }

  .scenario-card,
  .evidence-notes article,
  .download-card,
  .about-grid article,
  .system-grid article,
  .sample-flow-list li {
    min-height: auto;
    padding: 24px;
  }

  .evidence-visual {
    border-radius: 22px;
  }

  .evidence-visual figcaption {
    padding: 18px;
  }

  .evidence-notes h3,
  .download-card h3,
  .about-grid h3 {
    margin-top: 22px;
  }

  .faq-list summary {
    min-height: 64px;
    padding: 20px 54px 20px 22px;
    font-size: 18px;
  }

  .faq-list summary::after {
    top: 26px;
    right: 24px;
  }

  .faq-list details p {
    padding: 0 22px 22px;
    font-size: 16px;
  }

  .system-stack {
    min-height: auto;
    padding: 26px;
  }

  .proof-metrics article {
    min-height: 150px;
    padding: 24px;
  }

  .large-card {
    grid-row: auto;
  }

  .contact-copy,
  .contact-form {
    padding: 26px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 26px 18px;
    text-align: center;
  }

  .site-footer > span:first-child,
  .site-footer > a:last-child,
  .site-footer .footer-icp {
    justify-self: center;
  }

  .solutions-page {
    padding: 88px 0 72px;
  }

  .solution-page-detail {
    width: calc(100% - 36px);
  }

  .solution-hero-panel {
    gap: 22px;
    min-height: auto;
    padding: 26px;
    border-radius: 26px;
  }

  .solution-hero-copy h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .solution-hero-copy p[data-solution-field="summary"] {
    font-size: 17px;
  }

  .solution-actions {
    display: grid;
    gap: 12px;
  }

  .solution-actions .button {
    width: 100%;
  }

  .solution-explorer {
    margin-top: 0;
    padding: 16px;
    border-radius: 24px;
  }

  .solution-explorer-head {
    display: grid;
    gap: 10px;
    padding-bottom: 14px;
  }

  .solution-explorer-head > p {
    max-width: none;
    text-align: left;
  }

  .solution-explorer-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
    scroll-snap-type: x proximity;
  }

  .solution-explorer-item {
    flex: 0 0 150px;
    min-height: 48px;
    scroll-snap-align: start;
  }

  .solution-assessment {
    gap: 18px;
    padding-top: 24px;
  }

  .solution-assessment-copy,
  .solution-assessment-grid article {
    padding: 24px;
    border-radius: 22px;
  }

  .solution-assessment-copy {
    min-height: auto;
  }

  .solution-assessment-copy h2 {
    font-size: 32px;
  }

  .solution-assessment-copy p:not(.section-kicker) {
    font-size: 16px;
  }

  .solution-downloads {
    display: grid;
  }

  .solution-downloads a {
    justify-content: center;
  }

  .solution-profile {
    padding: 22px;
  }

  .solution-profile strong {
    font-size: 22px;
  }

  .solution-media {
    margin-top: 18px;
    border-radius: 24px;
  }

  .solution-media img {
    aspect-ratio: 1 / 0.72;
  }

  .solution-media figcaption {
    padding: 14px 18px;
    font-size: 13px;
  }

  .solution-gallery {
    padding-top: 44px;
  }

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

  .solution-gallery-card {
    border-radius: 22px;
  }

  .solution-gallery-card figcaption {
    min-height: auto;
    padding: 16px 18px;
    font-size: 13px;
  }

  .solution-narrative {
    gap: 22px;
    padding: 64px 0 38px;
  }

  .solution-narrative h2 {
    font-size: 34px;
  }

  .solution-narrative > p {
    font-size: 17px;
  }

  .solution-detail-grid,
  .solution-process-list {
    grid-template-columns: 1fr;
  }

  .solution-block,
  .solution-block:nth-child(2),
  .solution-block:nth-child(-n + 2) {
    min-height: auto;
    padding: 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(8, 9, 11, 0.08);
  }

  .solution-block:last-child {
    border-bottom: 0;
  }

  .form-modal {
    padding: 18px;
  }

  .form-modal-panel {
    padding: 28px 22px;
    border-radius: 20px;
  }

  .form-modal-panel h2 {
    font-size: 24px;
  }

  .solution-process {
    padding-top: 58px;
  }

  .solution-process-list li {
    min-height: auto;
    padding: 24px;
  }
}
