:root {
  --ink: #0c1118;
  --ink-2: #252d38;
  --muted: #66717f;
  --line: #e3e7ed;
  --soft-line: rgba(255, 255, 255, 0.18);
  --paper: #f7f8fa;
  --surface: #ffffff;
  --deep: #060a10;
  --deep-2: #0d141d;
  --teal: #00a7b8;
  --teal-dark: #006f7b;
  --coral: #d94a6b;
  --amber: #c59a45;
  --green: #6fb36b;
  --shadow: 0 24px 70px rgba(9, 17, 29, 0.12);
  --radius: 8px;
  --shell: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(12, 17, 24, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(12, 17, 24, 0.026) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 58%);
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.page-shell {
  width: var(--shell);
  margin: 0 auto;
}

.site-header {
  position: absolute;
  top: 22px;
  left: 50%;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1240px, calc(100vw - 28px));
  min-height: 54px;
  padding: 0;
  color: rgba(255, 255, 255, 0.86);
  background: transparent;
  border: 0;
  border-radius: 0;
  transform: translateX(-50%);
  box-shadow: none;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.site-header.is-scrolled {
  background: transparent;
  border-color: transparent;
  color: rgba(255, 255, 255, 0.86);
}

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

.brand-logo {
  display: block;
  width: 136px;
  height: 33px;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 15px;
  line-height: 1.1;
}

.brand small {
  margin-top: 4px;
  color: currentColor;
  font-size: 10px;
  opacity: 0.58;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  width: fit-content;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0;
  color: currentColor;
  border-radius: 0;
  font-size: 13px;
  font-weight: 720;
  opacity: 0.72;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 2px;
  background: rgba(125, 231, 239, 0.86);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.desktop-nav a:hover {
  color: #fff;
  background: transparent;
  opacity: 1;
}

.site-header.is-scrolled .desktop-nav a:hover {
  background: transparent;
}

.header-cta,
.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 17px;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 760;
  white-space: nowrap;
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.header-cta {
  color: #fff;
  min-height: 44px;
  padding: 0 18px;
  background: rgba(6, 10, 16, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.button svg,
.header-cta svg {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button > span,
.header-cta > span {
  position: relative;
  z-index: 1;
}

.button.primary::after,
.header-cta::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -38%;
  z-index: 0;
  width: 34%;
  height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.44), transparent);
  transform: rotate(18deg) translateX(-180%);
  transition: transform 520ms ease;
}

.button.primary:hover::after,
.header-cta:hover::after {
  transform: rotate(18deg) translateX(560%);
}

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

.button.primary {
  color: #fff;
  background: #0b1119;
  box-shadow: 0 18px 34px rgba(9, 17, 29, 0.18);
}

.hero .button.primary {
  color: #06131b;
  background: #fff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.button.secondary {
  color: currentColor;
  background: transparent;
  border: 1px solid currentColor;
  opacity: 0.78;
}

.menu-button {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: rgba(6, 10, 16, 0.72);
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  left: 11px;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-button span:first-child {
  top: 15px;
}

.menu-button span:last-child {
  top: 25px;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 90px;
  left: 14px;
  right: 14px;
  z-index: 29;
  display: none;
  padding: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(16, 21, 31, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mobile-nav a {
  display: block;
  padding: 14px 12px;
  color: var(--ink);
  font-weight: 700;
  border-radius: 6px;
}

.mobile-nav a:hover {
  background: #eef6f7;
}

.hero {
  position: relative;
  min-height: 92svh;
  color: #fff;
  overflow: hidden;
  background: var(--deep);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -18% -8% 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 74% 42%, rgba(125, 231, 239, 0.18), transparent 22%),
    radial-gradient(circle at 20% 64%, rgba(217, 74, 107, 0.1), transparent 28%),
    linear-gradient(120deg, transparent 42%, rgba(125, 231, 239, 0.08) 50%, transparent 58%);
  mix-blend-mode: screen;
  opacity: 0.9;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 72% 44%, rgba(0, 167, 184, 0.2), transparent 32%),
    linear-gradient(90deg, rgba(4, 7, 11, 0.98) 0%, rgba(4, 7, 11, 0.88) 46%, rgba(4, 7, 11, 0.45) 100%),
    linear-gradient(180deg, rgba(4, 7, 11, 0.2), rgba(4, 7, 11, 0.98)),
    url("./assets/hero-bg.png") center / cover no-repeat;
  transform: scale(1.02);
  filter: saturate(0.72) contrast(1.08);
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.78;
  mix-blend-mode: screen;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.42), transparent 72%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(390px, 0.84fr);
  align-items: center;
  gap: 84px;
  min-height: 92svh;
  padding: 142px 0 86px;
}

.hero-copy h1 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(46px, 6vw, 82px);
  line-height: 1.02;
  font-weight: 760;
}

.hero-copy p {
  max-width: 640px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.48vw, 20px);
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-visual {
  justify-self: end;
  width: min(100%, 500px);
}

.precision-stage {
  position: relative;
  isolation: isolate;
  min-height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 2px;
  background:
    radial-gradient(circle at 42% 44%, rgba(125, 231, 239, 0.22), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 38px 90px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  transform: translateZ(0);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.precision-stage::before,
.precision-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.precision-stage::before {
  z-index: 6;
  background:
    linear-gradient(115deg, transparent 0%, transparent 36%, rgba(255, 255, 255, 0.2) 43%, transparent 51%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), transparent 32%, transparent 72%, rgba(125, 231, 239, 0.08));
  opacity: 0.58;
  transform: translateX(-84%);
}

.precision-stage::after {
  z-index: 0;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 26%, rgba(125, 231, 239, 0.09) 27%, transparent 31%),
    linear-gradient(90deg, rgba(125, 231, 239, 0.08), transparent 22%, transparent 78%, rgba(125, 231, 239, 0.08));
}

.hero-visual:hover .precision-stage {
  border-color: rgba(125, 231, 239, 0.32);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 42px 110px rgba(0, 0, 0, 0.3),
    0 0 70px rgba(0, 167, 184, 0.12);
  transform: translateY(-3px);
}

.precision-grid {
  position: absolute;
  inset: 28px;
  z-index: 1;
  opacity: 0.42;
  background:
    linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 50%, #000, transparent 72%);
}

.wafer-ring {
  position: absolute;
  z-index: 2;
  --ring-rotation: -18deg;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: rotate(var(--ring-rotation));
}

.ring-one {
  inset: 64px 42px;
  border-color: rgba(125, 231, 239, 0.36);
}

.ring-two {
  inset: 116px 92px;
  --ring-rotation: 24deg;
  border-color: rgba(255, 255, 255, 0.22);
  transform: rotate(var(--ring-rotation));
}

.ring-three {
  inset: 166px 142px;
  --ring-rotation: 66deg;
  border-color: rgba(217, 74, 107, 0.24);
  transform: rotate(var(--ring-rotation));
}

.scan-beam {
  position: absolute;
  top: -22%;
  left: 16%;
  z-index: 3;
  width: 68%;
  height: 142%;
  background:
    linear-gradient(180deg, transparent 0%, transparent 42%, rgba(125, 231, 239, 0.18) 47%, rgba(255, 255, 255, 0.78) 50%, rgba(125, 231, 239, 0.18) 53%, transparent 60%),
    linear-gradient(90deg, transparent, rgba(125, 231, 239, 0.1), transparent);
  filter: blur(0.2px);
  opacity: 0.55;
  transform: rotate(-18deg) translateY(-38%);
}

.signal-node {
  position: absolute;
  z-index: 5;
  width: 9px;
  height: 9px;
  background: #9cf8ff;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  box-shadow:
    0 0 16px rgba(125, 231, 239, 0.88),
    0 0 34px rgba(0, 167, 184, 0.34);
}

.signal-node::after {
  content: "";
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(125, 231, 239, 0.42);
  border-radius: inherit;
  opacity: 0.68;
}

.node-one {
  top: 27%;
  left: 26%;
}

.node-two {
  top: 57%;
  right: 22%;
}

.node-three {
  bottom: 24%;
  left: 38%;
  background: #ff8ea7;
  box-shadow:
    0 0 14px rgba(217, 74, 107, 0.72),
    0 0 30px rgba(217, 74, 107, 0.2);
}

.focal-plane {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  --chip-width: 212px;
  --chip-height: 132px;
  --chip-frame: 20px;
  display: grid;
  place-items: center;
  width: calc(var(--chip-width) + var(--chip-frame) * 2);
  height: calc(var(--chip-height) + var(--chip-frame) * 2);
  padding: var(--chip-frame);
  color: rgba(255, 255, 255, 0.92);
  transform: translate(-50%, -50%);
  filter:
    drop-shadow(0 24px 46px rgba(0, 0, 0, 0.34))
    drop-shadow(0 0 26px rgba(0, 167, 184, 0.18));
}

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

.focal-plane::before {
  inset: var(--chip-frame);
  z-index: 1;
  background:
    radial-gradient(circle at 50% 48%, rgba(125, 231, 239, 0.1), transparent 54%),
    linear-gradient(135deg, rgba(12, 24, 32, 0.86), rgba(4, 7, 11, 0.78));
  border: 1px solid rgba(125, 231, 239, 0.3);
  clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px), 0 8px);
}

.focal-plane::after {
  top: calc(var(--chip-frame) + 14px);
  left: calc(var(--chip-frame) + 16px);
  z-index: 5;
  width: 7px;
  height: 7px;
  background: rgba(125, 231, 239, 0.86);
  border-radius: 50%;
  box-shadow:
    0 0 12px rgba(125, 231, 239, 0.8),
    0 0 24px rgba(0, 167, 184, 0.3);
}

.chip-core {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: var(--chip-width);
  height: var(--chip-height);
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(125, 231, 239, 0.1), transparent 16%, transparent 84%, rgba(125, 231, 239, 0.08)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 20px),
    linear-gradient(135deg, rgba(14, 30, 38, 0.96), rgba(5, 9, 14, 0.94));
  border: 1px solid rgba(125, 231, 239, 0.34);
  clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px), 0 8px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 0 34px rgba(125, 231, 239, 0.08),
    0 0 42px rgba(0, 167, 184, 0.18);
  backdrop-filter: blur(16px);
}

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

.chip-core::before {
  inset: 13px;
  border: 1px solid rgba(125, 231, 239, 0.14);
  clip-path: polygon(7px 0, calc(100% - 7px) 0, 100% 7px, 100% calc(100% - 7px), calc(100% - 7px) 100%, 7px 100%, 0 calc(100% - 7px), 0 7px);
}

.chip-core::after {
  top: 0;
  left: 18px;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125, 231, 239, 0.9), transparent);
  box-shadow: calc(var(--chip-width) - 84px) calc(var(--chip-height) - 2px) 0 rgba(125, 231, 239, 0.42);
}

.chip-pins {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  opacity: 0.9;
}

.chip-pins-top,
.chip-pins-bottom {
  left: calc(var(--chip-frame) + 13px);
  right: calc(var(--chip-frame) + 13px);
  height: 15px;
  background: repeating-linear-gradient(90deg, transparent 0 7px, rgba(125, 231, 239, 0.58) 7px 13px, transparent 13px 20px);
}

.chip-pins-top {
  top: 7px;
}

.chip-pins-bottom {
  bottom: 7px;
}

.chip-pins-left,
.chip-pins-right {
  top: calc(var(--chip-frame) + 13px);
  bottom: calc(var(--chip-frame) + 13px);
  width: 15px;
  background: repeating-linear-gradient(180deg, transparent 0 7px, rgba(125, 231, 239, 0.58) 7px 13px, transparent 13px 20px);
}

.chip-pins-left {
  left: 7px;
}

.chip-pins-right {
  right: 7px;
}

.chip-core span,
.chip-core strong {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
}

.chip-core span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 760;
}

.chip-core strong {
  margin-top: 8px;
  font-size: 21px;
  line-height: 1.2;
  text-shadow: 0 0 22px rgba(125, 231, 239, 0.28);
}

.fine-line {
  position: absolute;
  z-index: 3;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125, 231, 239, 0.76), transparent);
  transform-origin: left center;
}

.line-one {
  top: 33%;
  left: 12%;
  width: 76%;
  transform: rotate(13deg);
}

.line-two {
  top: 52%;
  left: 10%;
  width: 82%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: rotate(-11deg);
}

.line-three {
  top: 68%;
  left: 15%;
  width: 68%;
  background: linear-gradient(90deg, transparent, rgba(217, 74, 107, 0.46), transparent);
  transform: rotate(21deg);
}

.hero-readout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-readout div {
  position: relative;
  min-height: 104px;
  padding: 20px 16px;
  background: rgba(6, 10, 16, 0.72);
  overflow: hidden;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.hero-readout div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 46%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125, 231, 239, 0.88), transparent);
  transform: translateX(-110%);
  transition: transform 520ms ease;
}

.hero-visual:hover .hero-readout div {
  background: rgba(8, 17, 27, 0.84);
}

.hero-visual:hover .hero-readout div::before {
  transform: translateX(250%);
}

.hero-visual:hover .hero-readout div:nth-child(2)::before {
  transition-delay: 90ms;
}

.hero-visual:hover .hero-readout div:nth-child(3)::before {
  transition-delay: 180ms;
}

.hero-readout strong,
.hero-readout span {
  display: block;
}

.hero-readout strong {
  color: rgba(255, 255, 255, 0.92);
  font-size: 22px;
  line-height: 1.1;
}

.hero-readout span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

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

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: transparent;
}

.proof-grid div {
  min-height: 142px;
  padding: 34px 30px;
  background: #fff;
  border-left: 1px solid var(--line);
}

.proof-grid div:first-child {
  border-left: 0;
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1;
  font-weight: 760;
}

.proof-grid span {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 116px 0;
}

.section-copy h2,
.section-heading h2,
.contact-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.12;
  font-weight: 760;
}

.section-copy p,
.section-heading p,
.contact-card p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.align-left {
  margin: 0 0 42px;
  text-align: left;
}

.intro-section {
  background: #fff;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 78px;
  align-items: start;
}

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

.capability-list article,
.platform-card,
.delivery-columns article {
  background: #fff;
  border: 1px solid rgba(12, 17, 24, 0.1);
  border-radius: 2px;
  box-shadow: none;
}

.capability-list article {
  min-height: 206px;
  padding: 30px;
  border-top: 0;
  border-left: 0;
}

.capability-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 24px;
  color: var(--teal-dark);
  background: transparent;
  border: 1px solid rgba(0, 167, 184, 0.32);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 850;
}

.capability-list h3,
.delivery-columns h3 {
  margin: 22px 0 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 760;
}

.capability-list p,
.delivery-columns p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.solution-section {
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 167, 184, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(6, 10, 16, 1), rgba(13, 20, 29, 0.96)),
    var(--deep);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.solution-section .section-copy h2,
.solution-section .section-copy p {
  color: #fff;
}

.solution-section .section-copy p {
  color: rgba(255, 255, 255, 0.72);
}

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

.mode-table {
  display: grid;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.03);
}

.mode-table [role="row"] {
  display: grid;
  grid-template-columns: 0.8fr 0.9fr 1.35fr;
}

.mode-table [role="row"] + [role="row"] {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.mode-table span {
  min-height: 62px;
  padding: 18px 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.mode-table span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.mode-table [role="columnheader"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  font-weight: 800;
}

.public-capability-panel {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.public-capability-panel article {
  min-height: 156px;
  padding: 28px 30px;
  color: #fff;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  box-shadow: none;
}

.public-capability-panel span,
.public-power-cards span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 24px;
  color: rgba(125, 231, 239, 0.95);
  background: transparent;
  border: 1px solid rgba(125, 231, 239, 0.38);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 850;
}

.public-capability-panel strong,
.public-power-cards strong {
  display: block;
  margin-top: 16px;
  font-size: 24px;
  line-height: 1.18;
}

.public-capability-panel p,
.public-power-cards p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.72;
}

.public-capability-panel p {
  color: rgba(255, 255, 255, 0.68);
}

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

.home-product-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.home-product-map {
  overflow: hidden;
  background: #fbfcfd;
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(9, 17, 29, 0.07);
}

.product-map-scroll {
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 167, 184, 0.4) transparent;
}

.product-map-board {
  display: block;
  min-width: 760px;
}

.product-map-stage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 28px 22px;
  background:
    repeating-linear-gradient(90deg, transparent 0, transparent calc(33.333% - 1px), rgba(12, 17, 24, 0.075) calc(33.333% - 1px), rgba(12, 17, 24, 0.075) 33.333%),
    linear-gradient(135deg, rgba(0, 167, 184, 0.025), transparent 54%),
    #fff;
}

.product-map-node {
  position: relative;
  align-self: center;
  min-height: 108px;
  margin: 12px 16px;
  padding: 18px 20px 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 32px rgba(9, 17, 29, 0.09);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.product-map-node::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--node-accent);
}

.product-map-node:hover {
  border-color: color-mix(in srgb, var(--node-accent) 42%, var(--line));
  box-shadow: 0 20px 42px rgba(9, 17, 29, 0.13);
  transform: translateY(-3px);
}

.product-map-node:focus-visible {
  outline: 2px solid var(--node-accent);
  outline-offset: 3px;
}

.product-map-node span,
.product-map-node strong,
.product-map-node small {
  display: block;
}

.product-map-node span {
  color: var(--node-accent);
  font-size: 24px;
  font-weight: 880;
  line-height: 1.05;
}

.product-map-node strong {
  margin-top: 10px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}

.product-map-node small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
}

.product-map-c105 {
  --node-accent: #0c1118;
  grid-column: 1;
}

.product-map-c102 {
  --node-accent: #d94a6b;
  grid-column: 2;
}

.product-map-c205 {
  --node-accent: #008c9b;
  grid-column: 3;
}

.product-map-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 16px 24px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.product-map-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.product-map-footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.product-map-footer svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

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

.platform-card {
  min-height: 314px;
  padding: 34px;
  border-top: 0;
  border-left: 0;
}

.platform-card.feature-card {
  background:
    linear-gradient(135deg, rgba(125, 231, 239, 0.12), transparent 48%),
    #f9fcfd;
  border-color: rgba(0, 167, 184, 0.16);
}

.platform-card-top span {
  display: block;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.feature-card .platform-card-top span {
  color: var(--teal-dark);
}

.platform-card-top strong {
  display: block;
  margin-top: 10px;
  font-size: 24px;
  line-height: 1.18;
}

.platform-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.platform-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 15px;
}

.feature-card li {
  color: var(--muted);
}

.platform-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
}

.power-section {
  background: var(--paper);
}

.power-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 72px;
  align-items: center;
}

.public-power-layout {
  align-items: start;
}

.public-power-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.public-power-cards article {
  min-height: 250px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 0;
  border-left: 0;
  border-radius: 0;
  box-shadow: none;
}

.public-power-cards strong {
  color: var(--ink);
}

.public-power-cards span {
  color: var(--teal-dark);
  border-color: rgba(0, 167, 184, 0.3);
}

.public-power-cards p {
  color: var(--muted);
}

.delivery-section {
  color: #fff;
  background:
    radial-gradient(circle at 18% 16%, rgba(217, 74, 107, 0.12), transparent 30%),
    #0b1119;
}

.delivery-section .section-heading h2,
.delivery-section .section-heading p {
  color: #fff;
}

.delivery-section .section-heading p {
  color: rgba(255, 255, 255, 0.66);
}

.delivery-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 72px;
  align-items: start;
}

.delivery-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.delivery-columns article {
  min-height: 268px;
  padding: 30px;
  color: #fff;
  background: transparent;
  border-top: 0;
  border-left: 0;
  border-color: rgba(255, 255, 255, 0.13);
}

.delivery-columns article:nth-child(2) {
  background: transparent;
}

.delivery-columns article:nth-child(3) {
  background: transparent;
}

.delivery-columns p {
  color: rgba(255, 255, 255, 0.66);
}

.contact-section {
  padding: 108px 0;
  background: #fff;
}

.contact-card {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 58px;
  align-items: start;
  padding: 52px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px;
  box-shadow: 0 26px 70px rgba(9, 17, 29, 0.08);
}

.assessment-copy {
  position: sticky;
  top: 112px;
}

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

.assessment-points li {
  position: relative;
  padding-left: 19px;
  color: var(--ink-2);
  font-size: 15px;
  font-weight: 750;
}

.assessment-points li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
}

.contact-email {
  display: inline-flex;
  margin-top: 22px;
  color: var(--teal-dark);
  font-size: 18px;
  font-weight: 800;
  border-bottom: 1px solid rgba(0, 167, 184, 0.36);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

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

.contact-form .full,
.contact-form button,
.assessment-output {
  grid-column: 1 / -1;
}

.contact-form span {
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(16, 21, 31, 0.14);
  border-radius: 2px;
  outline: none;
}

.contact-form textarea {
  min-height: 118px;
  padding-top: 12px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 167, 184, 0.12);
}

.solution-choice,
.requirement-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

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

.solution-choice legend,
.requirement-choice legend {
  grid-column: 1 / -1;
  margin: 0 0 2px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 800;
}

.solution-choice > label:not(.other-field),
.requirement-choice > label:not(.other-field) {
  position: relative;
  display: grid;
  min-height: 52px;
  cursor: pointer;
}

.solution-choice > label:not(.other-field) > input,
.requirement-choice > label:not(.other-field) > input {
  position: absolute;
  inset: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.solution-choice > label:not(.other-field) > span,
.requirement-choice > label:not(.other-field) > span {
  display: grid;
  place-items: center;
  min-height: 52px;
  padding: 0 16px;
  color: var(--ink-2);
  background: #fff;
  border: 1px solid rgba(16, 21, 31, 0.18);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 750;
  text-align: center;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease,
    background 160ms ease;
}

.solution-choice > label:not(.other-field) > input:checked + span {
  color: #075bd8;
  background: #fbfdff;
  border-color: #3388ff;
  box-shadow: inset 0 0 0 1px rgba(51, 136, 255, 0.22);
}

.requirement-choice > label:not(.other-field) > input:checked + span {
  color: #00616b;
  background: #f3feff;
  border-color: rgba(0, 167, 184, 0.72);
  box-shadow: inset 0 0 0 1px rgba(0, 167, 184, 0.18);
}

.solution-choice > label:not(.other-field):hover > span,
.requirement-choice > label:not(.other-field):hover > span {
  border-color: rgba(51, 136, 255, 0.58);
}

.other-field {
  display: grid;
  grid-column: 1 / -1;
  gap: 8px;
  margin-top: 2px;
}

.other-field[hidden] {
  display: none;
}

.other-field span {
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 800;
}

.solution-help {
  display: grid;
  grid-column: 1 / -1;
  gap: 6px;
  margin-top: 4px;
  padding: 14px 16px;
  background: #f8fafc;
  border: 1px solid rgba(16, 21, 31, 0.08);
  border-radius: 6px;
}

.solution-help p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.solution-help strong {
  color: var(--ink-2);
}

.contact-form .button {
  width: fit-content;
  min-width: 180px;
}

.contact-form .button.primary {
  color: #06262c;
  background: linear-gradient(135deg, #65dce5 0%, #18b6c3 100%);
  box-shadow: 0 16px 34px rgba(0, 167, 184, 0.18);
}

.contact-form .button.primary:hover {
  background: linear-gradient(135deg, #78e8ef 0%, #00a7b8 100%);
  box-shadow: 0 18px 40px rgba(0, 167, 184, 0.24);
}

.assessment-output {
  margin-top: 6px;
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(16, 21, 31, 0.12);
  border-radius: 2px;
  box-shadow: none;
}

.assessment-output-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(16, 21, 31, 0.09);
}

.assessment-output-head span {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 850;
}

.assessment-output-head strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
  text-align: right;
}

.assessment-output > p,
.assessment-summary p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.assessment-result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.assessment-result-grid article {
  min-height: 132px;
  padding: 16px;
  background: #f7fafc;
  border: 1px solid rgba(16, 21, 31, 0.08);
  border-radius: 6px;
}

.assessment-result-grid span,
.assessment-result-grid strong,
.assessment-result-grid p {
  display: block;
}

.assessment-result-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.assessment-result-grid strong {
  margin-top: 8px;
  color: var(--teal-dark);
  font-size: 20px;
  line-height: 1.2;
}

.assessment-result-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.assessment-summary {
  margin-top: 14px;
}

.assessment-summary strong {
  color: var(--ink-2);
}

.assessment-output.is-idle {
  background: rgba(255, 255, 255, 0.72);
  border-style: dashed;
  box-shadow: none;
}

.assessment-output.is-ready {
  border-color: rgba(0, 167, 184, 0.24);
}

.mail-recipient {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(16, 21, 31, 0.09);
}

.mail-recipient span,
.generated-mail span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.mail-recipient a {
  color: var(--teal-dark);
  font-weight: 850;
}

.generated-mail {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.generated-mail input,
.generated-mail textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #f8fafc;
  border: 1px solid rgba(16, 21, 31, 0.12);
  border-radius: 2px;
  outline: none;
}

.generated-mail textarea {
  min-height: 240px;
  line-height: 1.75;
  resize: vertical;
}

.copy-payload {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.mail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.mail-actions .button.primary {
  color: #06262c;
  background: linear-gradient(135deg, #65dce5 0%, #18b6c3 100%);
  box-shadow: 0 16px 34px rgba(0, 167, 184, 0.18);
}

.mail-actions .button.secondary {
  color: var(--ink);
  border-color: rgba(16, 21, 31, 0.22);
}

.copy-status {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  padding: 32px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #090d14;
}

.site-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: center;
}

.site-footer nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 720;
}

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

.site-filing {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

.site-filing a {
  color: inherit;
  text-decoration: none;
}

.site-filing a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.desktop-nav a[aria-current="page"] {
  color: #fff;
  background: transparent;
  box-shadow: none;
  opacity: 1;
}

.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.mobile-nav a[aria-current="page"] {
  color: var(--teal-dark);
  background: rgba(0, 167, 184, 0.08);
  opacity: 1;
}

.page-main {
  background: var(--paper);
}

.page-hero {
  position: relative;
  padding: 154px 0 78px;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 26%, rgba(0, 167, 184, 0.22), transparent 30%),
    radial-gradient(circle at 12% 24%, rgba(217, 74, 107, 0.1), transparent 26%),
    linear-gradient(135deg, #060a10 0%, #0d141d 100%);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent 80%);
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: block;
}

.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 5.2vw, 74px);
  line-height: 1.04;
  font-weight: 780;
}

.page-hero p {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.85;
}

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

.portal-card {
  min-height: 210px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(0, 167, 184, 0.035), transparent 46%),
    #fff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.portal-card:hover {
  border-color: rgba(0, 167, 184, 0.34);
  box-shadow: 0 18px 48px rgba(9, 17, 29, 0.08);
  transform: translateY(-2px);
}

.portal-card:first-child {
  background:
    linear-gradient(135deg, rgba(125, 231, 239, 0.14), transparent 48%),
    #f9fcfd;
  box-shadow: inset 3px 0 0 rgba(0, 167, 184, 0.42);
}

.portal-card span,
.product-line-card span,
.support-grid article span,
.job-grid article span {
  display: block;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-line-card.feature-card span {
  color: var(--teal-dark);
}

.portal-card strong {
  display: block;
  margin-top: 14px;
  font-size: 26px;
  line-height: 1.16;
}

.portal-card p,
.product-line-card p,
.support-grid p,
.job-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.product-line-card.feature-card p,
.product-line-card.feature-card li {
  color: var(--muted);
}

.product-line-grid,
.solution-showcase-grid,
.support-grid,
.job-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

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

.solution-showcase-grid {
  gap: 28px;
  border: 0;
}

.product-line-card,
.solution-showcase-grid article,
.support-grid article,
.job-grid article {
  min-height: 300px;
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(0, 167, 184, 0.032), transparent 46%),
    #fff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.solution-showcase-grid .solution-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 0;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(9, 17, 29, 0.055);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.solution-showcase-grid .solution-card:hover {
  border-color: rgba(0, 167, 184, 0.22);
  box-shadow: 0 24px 64px rgba(9, 17, 29, 0.08);
  transform: translateY(-2px);
}

.solution-card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  background: #f8fbfc;
  border-bottom: 1px solid var(--line);
}

.solution-card-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(6, 10, 16, 0.1));
}

.solution-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 260ms ease;
}

.solution-card-media-camera {
  background: #eef5fb;
}

.solution-card-media-camera img {
  object-fit: cover;
  object-position: center top;
  width: 100%;
  height: 100%;
}

.solution-card:hover .solution-card-media img {
  transform: scale(1.025);
}

.solution-card:hover .solution-card-media-camera img {
  transform: scale(1.025);
}

.solution-card-body {
  padding: 32px 34px 36px;
}

.solution-card-body h3 {
  margin-top: 0;
}

.solution-card-body p {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.82;
}

.product-line-card.feature-card {
  background:
    linear-gradient(135deg, rgba(125, 231, 239, 0.14), transparent 48%),
    #f9fcfd;
  box-shadow: inset 3px 0 0 rgba(0, 167, 184, 0.42);
}

.product-line-card h3,
.solution-showcase-grid h3,
.support-grid h3,
.job-grid h3 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.2;
}

.product-line-card.feature-card h3 {
  color: var(--ink);
}

.product-line-card a,
.resource-table a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 850;
  border-bottom: 1px solid rgba(0, 167, 184, 0.34);
}

.product-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 0;
  margin-bottom: 26px;
  overflow: hidden;
  color: inherit;
  background:
    linear-gradient(135deg, rgba(125, 231, 239, 0.14), transparent 48%),
    #f8fbfc;
  border: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

a.product-card-image {
  margin-top: 0;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
  font-size: inherit;
  font-weight: inherit;
}

.product-card-image:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.product-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease;
}

.product-line-card:hover .product-card-image img {
  transform: scale(1.025);
}

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

.solution-showcase-grid li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.solution-showcase-grid li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
}

.product-matrix-section {
  background: #fff;
}

.product-overview-section {
  background: #fff;
}

.product-detail-section {
  background: #f7f8fa;
}

.product-detail-stack {
  display: grid;
  gap: 34px;
}

.product-detail-card {
  scroll-margin-top: 28px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 1.02fr);
  gap: 36px;
  align-items: center;
  padding: 34px;
  border-bottom: 1px solid var(--line);
}

.product-detail-copy span {
  display: block;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 880;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-detail-copy h3 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.14;
}

.product-detail-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.86;
}

.product-detail-media {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(125, 231, 239, 0.12), transparent 52%),
    #f8fbfc;
  border: 1px solid var(--line);
}

.product-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.parameter-table {
  display: grid;
  margin: 34px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.parameter-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.32fr) minmax(0, 1fr);
}

.parameter-row span {
  min-height: 58px;
  padding: 17px 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.parameter-row [role="rowheader"] {
  display: flex;
  align-items: center;
  color: var(--ink);
  background: #f8fbfc;
  font-weight: 850;
}

.product-detail-note {
  margin: -10px 34px 34px;
  color: #87909b;
  font-size: 13px;
}

.product-compare {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.product-compare-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.58fr) repeat(3, minmax(0, 1fr));
}

.product-compare-row + .product-compare-row {
  border-top: 1px solid var(--line);
}

.product-compare-row > span {
  min-height: 78px;
  padding: 20px 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.product-compare-row > span + span {
  border-left: 1px solid var(--line);
}

.product-compare-row [role="rowheader"] {
  color: var(--ink);
  background: #f8fbfc;
  font-weight: 850;
}

.product-compare-head > span {
  min-height: 96px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(0, 167, 184, 0.055), transparent 52%),
    #fbfdfe;
}

.product-compare-head > span:first-child {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 880;
}

.product-compare-head strong,
.product-compare-head small {
  display: block;
}

.product-compare-head strong {
  color: var(--teal-dark);
  font-size: 18px;
  line-height: 1.2;
}

.product-compare-head small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.resource-table {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
}

.resource-table [role="row"] {
  display: grid;
  grid-template-columns: 0.82fr 1.35fr 1fr 0.72fr;
}

.resource-table [role="row"] + [role="row"] {
  border-top: 1px solid var(--line);
}

.resource-table span {
  min-height: 58px;
  padding: 18px;
  color: var(--muted);
  font-size: 14px;
}

.resource-table span + span {
  border-left: 1px solid var(--line);
}

.resource-table [role="columnheader"] {
  color: var(--ink);
  background: #f7fafc;
  font-weight: 850;
}

.scenario-rail,
.process-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.scenario-rail article,
.process-list article {
  min-height: 144px;
  padding: 26px;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.scenario-rail span,
.process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 24px;
  color: rgba(125, 231, 239, 0.95);
  border: 1px solid rgba(125, 231, 239, 0.38);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 850;
}

.scenario-rail strong,
.process-list strong {
  display: block;
  margin-top: 14px;
  font-size: 22px;
  line-height: 1.2;
}

.scenario-rail p,
.process-list p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.72;
}

.process-list.light {
  border-color: var(--line);
}

.process-list.light article {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.process-list.light span {
  color: var(--teal-dark);
  border-color: rgba(0, 167, 184, 0.3);
}

.process-list.light p {
  color: var(--muted);
}

.process-grid,
.support-preview,
.cta-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 72px;
  align-items: center;
}

.support-preview-section {
  color: #fff;
  background: #0b1119;
}

.support-preview h2,
.cta-band h2 {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.12;
}

.support-preview p,
.cta-band p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.8;
}

.support-preview .button {
  justify-self: end;
}

.cta-band {
  color: #fff;
  background:
    radial-gradient(circle at 78% 34%, rgba(0, 167, 184, 0.18), transparent 28%),
    #0b1119;
}

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

.cta-band .button {
  color: #06131b;
  background: #fff;
}

@media (prefers-reduced-motion: no-preference) {
  .hero::before {
    animation: ambientShift 12s ease-in-out infinite;
  }

  .precision-stage::before {
    animation: glassSweep 7s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  }

  .wafer-ring {
    animation: ringDrift 8s ease-in-out infinite;
  }

  .scan-beam {
    animation: scanBeam 5.6s ease-in-out infinite;
  }

  .fine-line {
    animation: signalSweep 4.8s ease-in-out infinite;
  }

  .signal-node::after {
    animation: nodePulse 2.8s ease-out infinite;
  }

  .ring-two,
  .line-two,
  .node-two::after {
    animation-delay: 600ms;
  }

  .ring-three,
  .line-three,
  .node-three::after {
    animation-delay: 1100ms;
  }

  .chip-core {
    animation: focalBreath 4.8s ease-in-out infinite;
  }

  @keyframes ambientShift {
    0%,
    100% {
      opacity: 0.78;
      transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
      opacity: 1;
      transform: translate3d(-2%, 1%, 0) scale(1.04);
    }
  }

  @keyframes glassSweep {
    0%,
    26% {
      transform: translateX(-88%);
    }
    58%,
    100% {
      transform: translateX(92%);
    }
  }

  @keyframes ringDrift {
    0%,
    100% {
      opacity: 0.78;
      transform: rotate(var(--ring-rotation)) scale(1);
    }
    50% {
      opacity: 1;
      transform: rotate(calc(var(--ring-rotation) + 5deg)) scale(1.02);
    }
  }

  @keyframes scanBeam {
    0%,
    100% {
      opacity: 0;
      transform: rotate(-18deg) translateY(-42%);
    }
    14%,
    62% {
      opacity: 0.62;
    }
    76% {
      opacity: 0;
      transform: rotate(-18deg) translateY(42%);
    }
  }

  @keyframes signalSweep {
    0%,
    100% {
      opacity: 0.38;
    }
    50% {
      opacity: 1;
    }
  }

  @keyframes nodePulse {
    0% {
      opacity: 0.74;
      transform: scale(0.7);
    }
    72%,
    100% {
      opacity: 0;
      transform: scale(1.8);
    }
  }

  @keyframes focalBreath {
    0%,
    100% {
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04),
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        inset 0 0 34px rgba(125, 231, 239, 0.08),
        0 0 42px rgba(0, 167, 184, 0.18);
    }
    50% {
      box-shadow:
        0 0 0 1px rgba(125, 231, 239, 0.1),
        inset 0 0 0 1px rgba(125, 231, 239, 0.08),
        inset 0 0 42px rgba(125, 231, 239, 0.14),
        0 0 64px rgba(0, 167, 184, 0.25);
    }
  }
}

@media (max-width: 980px) {
  :root {
    --shell: min(100vw - 30px, 760px);
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .mobile-nav.is-open {
    display: block;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid,
  .intro-grid,
  .solution-layout,
  .power-layout,
  .delivery-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .assessment-copy {
    position: static;
  }

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

  .hero-grid {
    gap: 34px;
    padding-top: 128px;
  }

  .hero-visual {
    justify-self: stretch;
    width: 100%;
  }

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

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

  .platform-grid .feature-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: calc(100vw - 24px);
  }

  .site-header {
    top: 10px;
    width: calc(100vw - 20px);
    min-height: 58px;
    padding: 8px 9px 8px 12px;
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    width: 112px;
    height: 27px;
  }

  .brand strong {
    font-size: 14px;
  }

  .hero-grid {
    padding: 104px 0 48px;
  }

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

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

  .hero-particles {
    opacity: 0.48;
  }

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

  .button {
    min-height: 48px;
  }

  .precision-stage {
    min-height: 360px;
  }

  .scan-beam {
    left: 6%;
    width: 88%;
  }

  .signal-node {
    width: 7px;
    height: 7px;
  }

  .focal-plane {
    --chip-width: 178px;
    --chip-height: 116px;
    --chip-frame: 18px;
  }

  .chip-core {
    padding: 18px;
  }

  .chip-core strong {
    font-size: 18px;
  }

  .precision-grid {
    inset: 20px;
    background-size: 34px 34px;
  }

  .ring-one {
    inset: 58px 26px;
  }

  .ring-two {
    inset: 104px 62px;
  }

  .ring-three {
    inset: 148px 102px;
  }

  .hero-readout,
  .proof-grid,
  .capability-list,
  .platform-grid,
  .public-power-cards,
  .delivery-columns,
  .solution-choice,
  .requirement-choice,
  .contact-form,
  .assessment-result-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid div,
  .public-capability-panel article,
  .delivery-columns article {
    border-left: 0;
  }

  .capability-list,
  .platform-grid,
  .public-power-cards,
  .delivery-columns {
    border-left: 0;
  }

  .section {
    padding: 74px 0;
  }

  .section-copy h2,
  .section-heading h2,
  .contact-card h2 {
    font-size: 34px;
  }

  .mode-table {
    overflow: hidden;
  }

  .mode-table [role="row"] {
    min-width: 0;
    grid-template-columns: 1fr;
  }

  .mode-table span {
    min-height: 0;
    padding: 12px 14px;
  }

  .mode-table span + span {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .contact-card {
    padding: 24px;
  }

  .assessment-output {
    padding: 18px;
  }

  .assessment-output-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .assessment-output-head strong {
    text-align: left;
  }

  .contact-form .button {
    width: 100%;
  }
}

@media (max-width: 980px) {
  .page-hero {
    padding: 128px 0 64px;
  }

  .page-hero-grid,
  .portal-grid,
  .product-line-grid,
  .solution-showcase-grid,
  .support-grid,
  .job-grid,
  .product-detail-hero,
  .process-grid,
  .support-preview,
  .cta-band-inner {
    grid-template-columns: 1fr;
  }

  .support-preview .button,
  .cta-band .button {
    justify-self: start;
  }

  .resource-table [role="row"] {
    grid-template-columns: 1fr 1.2fr;
  }

  .resource-table span:nth-child(3) {
    border-left: 0;
  }

  .resource-table span:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .product-compare {
    overflow-x: auto;
  }

  .product-compare-row {
    min-width: 920px;
  }

  .product-detail-hero {
    gap: 24px;
  }
}

@media (max-width: 680px) {
  .page-hero {
    padding: 104px 0 52px;
  }

  .page-hero h1 {
    font-size: clamp(38px, 13vw, 58px);
  }

  .page-hero p {
    font-size: 16px;
  }

  .home-product-heading {
    margin-bottom: 30px;
  }

  .product-map-scroll {
    overflow: visible;
  }

  .product-map-board {
    display: block;
    min-width: 0;
  }

  .product-map-stage {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 12px;
    padding: 12px;
    background: #f5f8fa;
  }

  .product-map-node {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    margin: 0;
    padding: 18px 18px 17px;
  }

  .product-map-c105 {
    order: 1;
  }

  .product-map-c102 {
    order: 2;
  }

  .product-map-c205 {
    order: 3;
  }

  .product-map-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 18px;
  }

  .portal-card,
  .product-line-card,
  .solution-showcase-grid article,
  .support-grid article,
  .job-grid article,
  .scenario-rail article,
  .process-list article {
    padding: 22px;
  }

  .product-line-card,
  .solution-showcase-grid article,
  .support-grid article,
  .job-grid article {
    min-height: 0;
  }

  .solution-showcase-grid {
    gap: 18px;
  }

  .solution-showcase-grid .solution-card {
    padding: 0;
  }

  .solution-card-body {
    padding: 24px 22px 28px;
  }

  .product-detail-hero {
    padding: 22px;
  }

  .parameter-table {
    margin: 22px;
  }

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

  .parameter-row span + span {
    border-top: 0;
  }

  .product-detail-note {
    margin: -4px 22px 24px;
  }

  .resource-table [role="row"] {
    grid-template-columns: 1fr;
  }

  .resource-table span {
    min-height: 0;
    padding: 12px 14px;
  }

  .resource-table span + span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}
