:root {
  --bg: #f7fbff;
  --surface: #ffffff;
  --surface-strong: #edf6ff;
  --ink: #061d3d;
  --muted: #5b6b83;
  --line: #d9e6f4;
  --line-strong: #a8c5e6;
  --blue: #1762ff;
  --cyan: #20c8ee;
  --cyan-soft: #d9f8ff;
  --teal: #087987;
  --shadow: 0 24px 70px rgba(6, 29, 61, 0.12);
  --max: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(23, 98, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 98, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 78% 8%, rgba(32, 200, 238, 0.16), transparent 34%),
    var(--bg);
  background-size: 84px 84px, 84px 84px, auto, auto;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(32, 200, 238, 0.08) 42.1% 42.45%, transparent 42.55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 251, 255, 0.62));
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: left center;
  box-shadow: 0 0 20px rgba(32, 200, 238, 0.45);
}

.ambient-shell {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.data-stream-layer {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 72%, transparent 100%);
}

.data-stream-layer span {
  position: absolute;
  top: -22vh;
  left: var(--x);
  width: 1px;
  height: 22vh;
  background: linear-gradient(180deg, transparent, rgba(32, 200, 238, 0.72), transparent);
  animation: streamFlow var(--duration) linear infinite;
  animation-delay: var(--delay);
}

@keyframes streamFlow {
  from {
    transform: translate3d(0, -18vh, 0);
    opacity: 0;
  }

  12% {
    opacity: 1;
  }

  88% {
    opacity: 0.85;
  }

  to {
    transform: translate3d(28vw, 128vh, 0);
    opacity: 0;
  }
}

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

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

p {
  color: var(--muted);
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--surface);
  background: var(--ink);
  border-radius: 4px;
  transform: translateY(-160%);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(168, 197, 230, 0.5);
  background: rgba(247, 251, 255, 0.82);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 48px, var(--max));
  min-height: var(--header-height);
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--surface);
  font-weight: 800;
  background: linear-gradient(135deg, var(--ink), var(--teal));
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(32, 200, 238, 0.08);
}

.brand strong {
  display: block;
  font-size: 15px;
  letter-spacing: 0.22em;
}

.brand em {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 14px;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--ink);
  border-color: rgba(23, 98, 255, 0.2);
  background: rgba(255, 255, 255, 0.74);
  outline: none;
}

.site-nav .nav-cta {
  margin-left: 6px;
  color: var(--surface);
  background: var(--ink);
  border-color: var(--ink);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--surface);
  background: #123762;
}

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

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

.hero,
.section {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - var(--header-height));
  padding: 78px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
  align-items: center;
  gap: 54px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 48px;
  height: 1px;
  background: var(--blue);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.08;
  font-weight: 850;
}

.hero h1 span {
  display: block;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 34px;
  color: #25517e;
  font-size: 20px;
  line-height: 1.8;
}

.hero-status {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.hero-status span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 11px;
  color: #315676;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(168, 197, 230, 0.72);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(23, 98, 255, 0.06);
}

.hero-status strong {
  color: var(--blue);
  font-size: 12px;
  letter-spacing: 0.12em;
}

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

.button,
.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  font-weight: 700;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  color: inherit;
  font: inherit;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible,
.contact-link:hover,
.contact-link:focus-visible {
  transform: translateY(-1px);
  outline: none;
  box-shadow: 0 14px 34px rgba(23, 98, 255, 0.16);
}

.button.primary {
  color: var(--surface);
  background: linear-gradient(135deg, var(--ink), #165fd8);
  border-color: transparent;
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(168, 197, 230, 0.48);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(227, 244, 255, 0.62)),
    linear-gradient(180deg, rgba(6, 29, 61, 0.04), rgba(6, 29, 61, 0.12));
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero-visual::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 29, 61, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(6, 29, 61, 0.05) 1px, transparent 1px),
    repeating-linear-gradient(115deg, transparent 0 34px, rgba(23, 98, 255, 0.08) 35px, transparent 36px);
  background-size: 52px 52px, 52px 52px, auto;
  animation: gridDrift 18s linear infinite;
}

.hero-visual::after {
  inset: 0;
  background: linear-gradient(180deg, transparent 0 55%, rgba(255, 255, 255, 0.72));
  mix-blend-mode: screen;
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0, 0 0;
  }

  to {
    background-position: 52px 52px, 52px 52px, 120px 0;
  }
}

.compute-canvas {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
}

.compute-console {
  position: absolute;
  right: 26px;
  bottom: 26px;
  left: 26px;
  z-index: 2;
  padding: 18px;
  color: #dff7ff;
  background: rgba(5, 25, 51, 0.86);
  border: 1px solid rgba(32, 200, 238, 0.32);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(6, 29, 61, 0.18);
  backdrop-filter: blur(18px);
}

.compute-console::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(32, 200, 238, 0.08), transparent);
  transform: translateY(-100%);
  animation: consoleScan 5s ease-in-out infinite;
}

@keyframes consoleScan {
  0%,
  28% {
    transform: translateY(-100%);
  }

  70%,
  100% {
    transform: translateY(100%);
  }
}

.console-head,
.trust-pipeline {
  display: flex;
  align-items: center;
}

.console-head {
  justify-content: space-between;
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.console-head i {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(32, 200, 238, 0.9);
  animation: pulseDot 1.6s ease-in-out infinite;
}

@keyframes pulseDot {
  50% {
    opacity: 0.35;
    transform: scale(0.7);
  }
}

.console-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.console-metric {
  padding: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(168, 197, 230, 0.18);
  border-radius: 6px;
}

.console-metric small {
  display: block;
  color: #8db7d9;
  font-size: 11px;
}

.console-metric strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 18px;
}

.trust-pipeline {
  gap: 8px;
  margin-bottom: 12px;
  color: #bbd8ec;
  font-size: 12px;
}

.trust-pipeline i {
  position: relative;
  flex: 1;
  height: 1px;
  overflow: hidden;
  background: rgba(168, 197, 230, 0.22);
}

.trust-pipeline i::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  animation: pipelineFlow 2.6s linear infinite;
}

@keyframes pipelineFlow {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}

.compute-console pre {
  margin: 0;
  color: #bfefff;
  font: 12px/1.8 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  white-space: pre-wrap;
}

.grid-lines path,
.trust-rings circle,
.data-paths path {
  fill: none;
  stroke: rgba(21, 75, 132, 0.18);
  stroke-width: 1;
}

.spiral path {
  stroke: url("#lineGradient");
  stroke-width: 5;
  stroke-linecap: round;
}

.spiral circle,
.nodes circle {
  fill: var(--cyan);
}

.trust-rings circle {
  stroke: rgba(32, 200, 238, 0.45);
}

.data-paths path {
  stroke: rgba(23, 98, 255, 0.36);
  stroke-width: 2;
}

.visual-card {
  position: absolute;
  z-index: 2;
  width: min(48%, 210px);
  padding: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(168, 197, 230, 0.7);
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(6, 29, 61, 0.1);
}

.visual-card span {
  display: block;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visual-card strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
}

.card-attestation {
  top: 26px;
  right: 26px;
}

.card-tee {
  left: 24px;
  bottom: 26px;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}

.pillars article,
.capability-grid article,
.solution-card,
.scenario-list article,
.trust-chain li,
.contact-panel {
  position: relative;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(6, 29, 61, 0.06);
}

.pillars article {
  min-height: 154px;
  padding: 24px 24px 20px;
  border-left: 4px solid var(--blue);
}

.pillars span,
.capability-index,
.trust-chain span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.pillars h2 {
  margin: 9px 0 8px;
  font-size: 24px;
  line-height: 1.25;
}

.pillars p {
  margin-bottom: 0;
}

.section {
  padding: 96px 0;
}

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

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  max-width: none;
  gap: 54px;
  align-items: end;
}

.section-heading h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.14;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.value-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 36px;
  align-items: stretch;
}

.value-copy {
  padding: 34px;
  background:
    linear-gradient(90deg, rgba(32, 200, 238, 0.12), transparent),
    rgba(255, 255, 255, 0.62);
  border-left: 4px solid var(--cyan);
}

.value-copy p {
  margin-bottom: 18px;
  font-size: 18px;
}

.value-copy p:last-child {
  margin-bottom: 0;
}

.value-metrics {
  display: grid;
  gap: 14px;
}

.value-metrics div {
  display: grid;
  align-content: center;
  min-height: 102px;
  padding: 20px 24px;
  background: #071f40;
  border: 1px solid rgba(32, 200, 238, 0.28);
  border-radius: 6px;
}

.value-metrics strong {
  color: var(--cyan);
  font-size: 28px;
  line-height: 1;
}

.value-metrics span {
  margin-top: 8px;
  color: #d8e8f8;
}

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

.capability-grid article {
  min-height: 226px;
  padding: 22px;
  overflow: hidden;
  transform-style: preserve-3d;
}

.capability-grid article::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(32, 200, 238, 0.2), transparent 32%),
    linear-gradient(135deg, rgba(23, 98, 255, 0.08), transparent 42%);
  opacity: 0;
  mix-blend-mode: multiply;
  transition: opacity 180ms ease;
}

.capability-grid article:hover,
.capability-grid article:focus-within {
  border-color: rgba(32, 200, 238, 0.52);
  transform: translateY(-4px);
}

.capability-grid article:hover::after,
.capability-grid article:focus-within::after {
  opacity: 1;
}

.capability-grid h3 {
  margin: 36px 0 12px;
  font-size: 22px;
}

.capability-grid p {
  margin-bottom: 0;
  font-size: 15px;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.solution-card {
  padding: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(237, 246, 255, 0.82)),
    var(--surface);
}

.primary-solution {
  color: var(--surface);
  background:
    linear-gradient(135deg, rgba(6, 29, 61, 0.96), rgba(10, 74, 126, 0.92)),
    #071f40;
}

.solution-topline {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.primary-solution .solution-topline,
.primary-solution p,
.primary-solution li {
  color: #d8e8f8;
}

.primary-solution .solution-topline {
  color: var(--cyan);
}

.solution-card h3 {
  margin: 10px 0 16px;
  font-size: 28px;
}

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

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

.solution-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.solution-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--cyan);
}

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

.scenario-list article {
  display: grid;
  grid-template-columns: 150px minmax(180px, 270px) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 112px;
  padding: 22px 26px;
}

.scenario-list span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scenario-list h3 {
  margin-bottom: 0;
  font-size: 24px;
}

.scenario-list p {
  margin-bottom: 0;
}

.trust-section {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(135deg, rgba(6, 29, 61, 0.98), rgba(7, 63, 91, 0.94)),
    #071f40;
}

.trust-section .section-heading h2,
.trust-section .section-heading p,
.trust-section .eyebrow {
  color: var(--surface);
}

.trust-section .eyebrow span {
  background: var(--cyan);
}

.trust-chain {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-chain li {
  min-height: 188px;
  padding: 22px 18px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(32, 200, 238, 0.25);
  box-shadow: none;
}

.trust-chain strong {
  display: block;
  margin: 22px 0 10px;
  color: var(--surface);
  font-size: 20px;
  line-height: 1.25;
}

.trust-chain p {
  margin-bottom: 0;
  color: #bfd4eb;
  font-size: 14px;
}

.contact {
  padding-bottom: 80px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 34px;
  align-items: center;
  padding: 44px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(217, 248, 255, 0.52)),
    var(--surface);
}

.contact-panel p {
  max-width: 720px;
  margin: 20px 0 0;
  font-size: 18px;
}

.contact-email {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(23, 98, 255, 0.34);
}

.contact-email:hover,
.contact-email:focus-visible {
  color: var(--ink);
  outline: none;
  border-bottom-color: var(--ink);
}

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

.contact-link {
  width: 150px;
  background: var(--surface);
  cursor: default;
}

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

.section-observe {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 760ms ease, transform 760ms ease;
}

.section-observe.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1040px) {
  .hero-grid,
  .value-layout,
  .section-heading.split,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

  .hero-visual svg {
    min-height: 480px;
  }

  .compute-canvas {
    min-height: 480px;
  }

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

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

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

@media (max-width: 760px) {
  :root {
    --header-height: 66px;
  }

  .header-inner,
  .hero,
  .section,
  .site-footer {
    width: min(100% - 32px, var(--max));
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(var(--header-height) - 1px);
    right: 16px;
    left: 16px;
    display: grid;
    gap: 4px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 6px;
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

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

  .site-nav a,
  .site-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .brand strong {
    font-size: 13px;
    letter-spacing: 0.16em;
  }

  .brand em {
    font-size: 12px;
  }

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

  .hero-grid {
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(36px, 12vw, 54px);
  }

  .hero-lede,
  .value-copy p,
  .contact-panel p {
    font-size: 16px;
  }

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

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

  .hero-visual svg {
    min-height: 360px;
  }

  .compute-canvas {
    min-height: 440px;
  }

  .compute-console {
    right: 16px;
    bottom: 16px;
    left: 16px;
    padding: 14px;
  }

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

  .trust-pipeline {
    flex-wrap: wrap;
  }

  .trust-pipeline i {
    min-width: 42px;
  }

  .visual-card {
    width: 176px;
  }

  .visual-card strong {
    font-size: 16px;
  }

  .pillars,
  .capability-grid,
  .solution-grid,
  .trust-chain {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 0;
  }

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

  .section-heading h2,
  .contact h2 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .value-copy,
  .solution-card,
  .contact-panel {
    padding: 26px;
  }

  .capability-grid article {
    min-height: 188px;
  }

  .scenario-list article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px;
  }

  .scenario-list h3 {
    font-size: 22px;
  }

  .trust-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .trust-chain li {
    min-height: auto;
  }

  .contact-link {
    width: 100%;
  }

  .site-footer {
    display: grid;
    gap: 8px;
  }
}

@media (max-width: 420px) {
  .eyebrow {
    align-items: flex-start;
    gap: 10px;
    font-size: 11px;
  }

  .eyebrow span {
    width: 34px;
    margin-top: 9px;
  }

  .card-attestation {
    top: 16px;
    right: 16px;
  }

  .card-tee {
    bottom: 16px;
    left: 16px;
  }
}
