﻿:root {
  --ink: #0b1220;
  --text: #354154;
  --muted: #667085;
  --line: #d7e0ec;
  --panel: #ffffff;
  --paper: #f4f7fb;
  --navy: #071428;
  --blue: #1557ff;
  --blue-2: #0b48d1;
  --cyan: #00a6ff;
  --orange: #ff7900;
  --steel: #24364f;
  --shadow: 0 18px 48px rgba(13, 31, 61, .10);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(rgba(215, 224, 236, .28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 224, 236, .28) 1px, transparent 1px),
    var(--paper);
  background-size: 56px 56px;
  letter-spacing: 0;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 72px;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  width: min(1240px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img { height: 30px; width: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 14px;
  font-weight: 800;
}

.nav a {
  padding: 25px 12px 23px;
  color: #172033;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.nav a:hover,
.nav a.active,
.nav-parent.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.nav-group { position: relative; }

.nav-parent::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .18s ease;
}

.submenu {
  position: absolute;
  top: 64px;
  left: 50%;
  width: 258px;
  padding: 10px;
  background:
    linear-gradient(90deg, rgba(21,87,255,.08), rgba(255,121,0,.06)),
    #fff;
  border: 1px solid rgba(125, 183, 255, .34);
  box-shadow: 0 22px 54px rgba(7, 20, 40, .14);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.submenu::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--orange));
}

.nav-group:hover .submenu,
.nav-group:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-group:hover .nav-parent::after,
.nav-group:focus-within .nav-parent::after {
  transform: translateY(1px) rotate(225deg);
}

.nav .submenu a {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr 18px;
  align-items: center;
  min-height: 46px;
  padding: 0 12px 0 10px;
  border: 1px solid transparent;
  color: #172033;
  background: rgba(255, 255, 255, .72);
  font-size: 14px;
  transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}

.nav .submenu a + a {
  margin-top: 6px;
}

.nav .submenu a::before {
  color: #7a8aa3;
  font-size: 11px;
  font-weight: 900;
}

.nav .submenu a:nth-child(1)::before { content: "01"; }
.nav .submenu a:nth-child(2)::before { content: "02"; }
.nav .submenu a:nth-child(3)::before { content: "03"; }
.nav .submenu a:nth-child(4)::before { content: "04"; }

.nav .submenu a::after {
  content: ">";
  justify-self: end;
  color: #8a9ab2;
  font-size: 13px;
  transition: transform .18s ease, color .18s ease;
}

.nav .submenu a:hover {
  color: var(--blue);
  border-color: rgba(21, 87, 255, .24);
  background:
    linear-gradient(90deg, rgba(21,87,255,.1), rgba(0,166,255,.04) 58%, rgba(255,121,0,.08)),
    #fff;
  transform: translateX(3px);
}

.nav .submenu a:hover::before,
.nav .submenu a:hover::after {
  color: var(--blue);
}

.nav .submenu a:hover::after {
  transform: translateX(2px);
}

.btn,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  white-space: nowrap;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(21, 87, 255, .45);
}

.btn.primary,
.nav-cta.primary {
  color: #fff;
  border-color: var(--blue);
  background: linear-gradient(90deg, var(--blue), #0f4ee6 70%, var(--orange));
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.scenario-page .hero {
  min-height: auto;
  padding: 78px 0 54px;
}

.scenario-hero-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(125, 183, 255, .42);
  background: #fff;
  box-shadow: var(--shadow);
}

.scenario-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21,87,255,.18), transparent 22%, transparent 78%, rgba(255,121,0,.16)),
    linear-gradient(180deg, transparent, rgba(7,20,40,.12));
  pointer-events: none;
}

.scenario-hero-visual img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
}

.scenario-hero-visual figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  color: #fff;
  background: rgba(7, 20, 40, .76);
  border-left: 3px solid var(--orange);
  font-weight: 800;
  line-height: 1.6;
  backdrop-filter: blur(12px);
}

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

.scenario-card {
  display: grid;
  grid-template-columns: 230px 1fr;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid rgba(125, 183, 255, .42);
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(244,249,255,.92)),
    #fff;
  box-shadow: 0 18px 46px rgba(13, 31, 61, .08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.scenario-card:hover {
  transform: translateY(-3px);
  border-color: rgba(21, 87, 255, .44);
  box-shadow: 0 24px 62px rgba(13, 31, 61, .13);
}

.scenario-card img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.scenario-card > div {
  padding: 24px 24px 22px;
}

.scenario-card span {
  display: inline-flex;
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 3px solid var(--orange);
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.scenario-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

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

.scenario-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.scenario-card li {
  padding: 6px 10px;
  color: #17325d;
  background: rgba(21, 87, 255, .08);
  border: 1px solid rgba(125, 183, 255, .28);
  font-size: 13px;
  font-weight: 800;
}

.scenario-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(rgba(125,183,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125,183,255,.08) 1px, transparent 1px),
    #071428;
  background-size: 42px 42px;
  border: 1px solid rgba(125, 183, 255, .3);
}

.scenario-bottom h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3.4vw, 42px);
}

.scenario-bottom p {
  margin: 0;
  color: #c9d7eb;
  font-size: 17px;
  line-height: 1.8;
}

.entry-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  color: #dbeafe;
  background:
    linear-gradient(rgba(125, 183, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 183, 255, .08) 1px, transparent 1px),
    #061122;
  background-size: 42px 42px;
  transition: opacity .55s ease, visibility .55s ease;
}

.entry-loader.is-done {
  opacity: 0;
  visibility: hidden;
}

.entry-panel {
  width: min(720px, calc(100% - 36px));
  border: 1px solid rgba(125, 183, 255, .36);
  background: rgba(7, 20, 40, .86);
  box-shadow: 0 24px 90px rgba(0, 0, 0, .34);
}

.entry-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(125, 183, 255, .22);
}

.entry-head img { height: 34px; width: auto; }
.entry-head span { color: #7db7ff; font-size: 12px; font-weight: 900; }

.entry-body { padding: 24px 20px 20px; }
.entry-body strong { display: block; color: #fff; font-size: 20px; }

.entry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 18px 0 22px;
}

.entry-grid span {
  min-height: 36px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(125, 183, 255, .2);
  color: #aac2e6;
  font-size: 12px;
}

.entry-grid span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  background: var(--orange);
}

.entry-track {
  height: 8px;
  overflow: hidden;
  background: rgba(125, 183, 255, .14);
}

.entry-progress {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--orange));
  transition: width .25s ease;
}

.entry-foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  color: #7db7ff;
  font-size: 12px;
  font-weight: 900;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 54px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .98) 0%, rgba(246, 250, 255, .94) 54%, rgba(232, 242, 255, .92) 100%),
    linear-gradient(rgba(21, 87, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 87, 255, .055) 1px, transparent 1px),
    #fff;
  background-size: auto, 44px 44px, 44px 44px, auto;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(132deg, transparent 0 48%, rgba(21, 87, 255, .10) 48% 48.18%, transparent 48.18%),
    linear-gradient(148deg, transparent 0 66%, rgba(255, 121, 0, .10) 66% 66.18%, transparent 66.18%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: -18%;
  top: 24%;
  width: 42%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(21, 87, 255, .55), rgba(255, 121, 0, .45), transparent);
  animation: heroSignal 5.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroSignal {
  0%, 24% { transform: translateX(0); opacity: 0; }
  42% { opacity: 1; }
  76%, 100% { transform: translateX(310%); opacity: 0; }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 32px;
  padding: 0 12px;
  border-left: 3px solid var(--orange);
  background: #fff;
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 900;
}

h1 {
  margin: 22px 0 18px;
  font-size: clamp(40px, 3.55vw, 54px);
  line-height: 1.12;
}

.home-hero h1 {
  font-size: clamp(36px, 3.05vw, 46px);
  line-height: 1.16;
  white-space: nowrap;
}

.gradient-text {
  display: block;
  color: var(--blue);
}

.home-hero .gradient-text {
  display: inline;
}

.lead {
  max-width: 720px;
  margin: 0;
  color: var(--text);
  font-size: 19px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.proof-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .72);
}

.proof-bar div {
  padding: 15px 16px;
  border-right: 1px solid var(--line);
}

.proof-bar div:last-child { border-right: 0; }
.proof-bar strong { display: block; color: var(--blue); font-size: 24px; }
.proof-bar span { display: block; margin-top: 4px; color: var(--muted); font-size: 13px; }

.ops-console {
  position: relative;
  min-height: 462px;
  border: 1px solid #b8c7dc;
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.ops-console::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(21, 87, 255, .18);
  pointer-events: none;
}

.ops-console::after {
  content: "";
  position: absolute;
  left: -40%;
  right: -40%;
  top: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 166, 255, .72), rgba(255, 121, 0, .52), transparent);
  animation: consoleRail 4.6s linear infinite;
  pointer-events: none;
}

@keyframes consoleRail {
  from { transform: translateX(-20%); }
  to { transform: translateX(32%); }
}

.ops-topline {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  color: #b8d7ff;
  font-size: 12px;
  font-weight: 800;
  border-bottom: 1px solid rgba(184, 215, 255, .22);
  background: rgba(255, 255, 255, .04);
}

.ops-dots {
  display: flex;
  gap: 8px;
}

.ops-dots i {
  width: 8px;
  height: 8px;
  background: var(--cyan);
}

.ops-dots i:nth-child(2) { background: var(--orange); }
.ops-dots i:nth-child(3) { background: #7bd88f; }

.ops-main {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  height: 420px;
}

.ops-screen {
  position: relative;
  border-right: 1px solid rgba(184, 215, 255, .18);
  overflow: hidden;
}

.ops-aside {
  display: grid;
  grid-template-rows: 1fr 1fr;
}

.plant-map {
  position: relative;
  height: 100%;
  min-height: 420px;
  background:
    radial-gradient(circle at 22% 22%, rgba(0, 166, 255, .18), transparent 26%),
    radial-gradient(circle at 78% 70%, rgba(255, 121, 0, .12), transparent 28%),
    linear-gradient(rgba(125, 183, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 183, 255, .08) 1px, transparent 1px),
    #071326;
  background-size: auto, auto, 38px 38px, 38px 38px, auto;
  overflow: hidden;
}

.plant-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 34%, rgba(0, 166, 255, .16) 34% 34.3%, transparent 34.3%),
    linear-gradient(146deg, transparent 0 56%, rgba(255, 121, 0, .18) 56% 56.3%, transparent 56.3%);
  opacity: .75;
}

.plant-map::after {
  content: "";
  position: absolute;
  left: -20%;
  right: -20%;
  top: 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(0, 166, 255, .16), transparent);
  animation: scanDown 4.8s linear infinite;
}

@keyframes scanDown {
  from { transform: translateY(-140px); }
  to { transform: translateY(520px); }
}

.plant-kpis {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  right: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.plant-kpis span {
  min-height: 66px;
  padding: 12px;
  border: 1px solid rgba(125, 183, 255, .24);
  background: rgba(6, 17, 34, .76);
  color: #aac2e6;
  font-size: 12px;
}

.plant-kpis b {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 22px;
}

.line-track {
  position: absolute;
  z-index: 1;
  left: 66px;
  right: 58px;
  height: 2px;
  background: linear-gradient(90deg, rgba(125, 183, 255, .18), rgba(0, 166, 255, .9), rgba(255, 121, 0, .76));
}

.line-a { top: 202px; }
.line-b { top: 294px; left: 104px; right: 104px; }

.line-track i {
  position: absolute;
  top: -3px;
  width: 8px;
  height: 8px;
  border: 1px solid #7db7ff;
  background: #071326;
}

.line-track i:nth-child(1) { left: 0; }
.line-track i:nth-child(2) { left: 25%; }
.line-track i:nth-child(3) { left: 50%; }
.line-track i:nth-child(4) { left: 75%; }
.line-track i:nth-child(5) { right: 0; }

.line-track em {
  position: absolute;
  top: -5px;
  width: 12px;
  height: 12px;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(255, 121, 0, .65);
  animation: packetMove 3.2s ease-in-out infinite;
}

.line-b em { animation-delay: 1s; }

@keyframes packetMove {
  0% { left: 0; opacity: .25; }
  12%, 88% { opacity: 1; }
  100% { left: calc(100% - 12px); opacity: .25; }
}

.station {
  position: absolute;
  z-index: 2;
  width: 78px;
  min-height: 64px;
  padding: 10px;
  border: 1px solid rgba(125, 183, 255, .32);
  background: rgba(6, 17, 34, .82);
  color: #aac2e6;
}

.station strong {
  display: block;
  color: #fff;
  font-size: 16px;
  line-height: 1.15;
}

.station span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
}

.station.active {
  border-color: rgba(0, 166, 255, .72);
  box-shadow: inset 0 0 0 1px rgba(0, 166, 255, .18), 0 0 24px rgba(0, 166, 255, .16);
  animation: stationBreath 2.4s ease-in-out infinite;
}

@keyframes stationBreath {
  50% { box-shadow: inset 0 0 0 1px rgba(0, 166, 255, .28), 0 0 34px rgba(0, 166, 255, .26); }
}

.station-plan { left: 12%; top: 165px; }
.station-mes { left: 45%; top: 165px; }
.station-qms { right: 6%; top: 165px; }
.station-iot { left: 26%; top: 260px; }
.station-wms { right: 4%; top: 260px; }
.station-bi { left: 46%; top: 260px; }

.flow-packet {
  position: absolute;
  z-index: 2;
  width: 14px;
  height: 14px;
  border: 2px solid var(--cyan);
  background: rgba(0, 166, 255, .24);
  animation: pulseNode 1.5s ease-in-out infinite;
}

.flow-packet.one { left: 54%; top: 198px; }
.flow-packet.two { right: 14%; top: 290px; animation-delay: .6s; }

@keyframes pulseNode {
  50% { transform: scale(1.45); opacity: .55; }
}

.scan-column {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.scan-column span {
  padding: 7px 9px;
  border: 1px solid rgba(125, 183, 255, .22);
  background: rgba(6, 17, 34, .72);
  color: #7db7ff;
  font-size: 12px;
  font-weight: 900;
}

.ops-card {
  padding: 18px 20px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(244, 249, 255, .92));
}

.ops-card:last-child { border-bottom: 0; }
.ops-card small { color: var(--blue); font-weight: 900; }
.ops-card h3 { margin: 8px 0; font-size: 21px; line-height: 1.25; color: var(--ink); }
.ops-card p { margin: 0; color: var(--text); font-size: 15px; line-height: 1.62; }

.signal-list {
  display: grid;
  gap: 9px;
  margin-top: 16px;
}

.signal-list span {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  color: var(--steel);
  font-size: 13px;
}

.signal-list b { color: var(--orange); }

.demo-page .hero {
  min-height: auto;
  padding: 96px 0 70px;
}

.demo-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(0, 166, 255, .16), transparent 28%),
    linear-gradient(135deg, rgba(21, 87, 255, .08), transparent 36%),
    var(--paper);
}

.demo-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .56fr);
  gap: 46px;
  align-items: center;
}

.demo-hero h1 {
  max-width: 820px;
  font-size: clamp(38px, 3.6vw, 58px);
  line-height: 1.12;
}

.demo-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.72);
}

.demo-proof span {
  padding: 16px;
  border-right: 1px solid var(--line);
  color: var(--muted);
}

.demo-proof span:last-child { border-right: 0; }
.demo-proof b { display: block; color: var(--blue); font-size: 24px; }

.demo-form {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 14px;
  padding: 24px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(244,249,255,.88)),
    #fff;
  border: 1px solid rgba(21, 87, 255, .22);
  box-shadow: var(--shadow);
}

.demo-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--orange));
}

.form-head {
  display: grid;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.form-head span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.form-head strong {
  font-size: 22px;
  line-height: 1.25;
}

.demo-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.demo-form label span {
  font-size: 13px;
  color: var(--steel);
}

.demo-form input,
.demo-form select {
  width: 100%;
  height: 46px;
  padding: 0 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 0;
  font: inherit;
}

.demo-form input:focus,
.demo-form select:focus {
  outline: 2px solid rgba(21, 87, 255, .18);
  border-color: rgba(21, 87, 255, .58);
}

.demo-submit {
  justify-content: center;
  width: 100%;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}

.demo-submit:disabled {
  opacity: .68;
  cursor: not-allowed;
}

.demo-status {
  min-height: 22px;
  margin: 0;
  color: var(--blue);
  font-weight: 800;
}

.demo-scenario-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.demo-scenario-list article {
  position: relative;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(21,87,255,.06), transparent 44%),
    #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(10, 28, 64, .08);
}

.demo-scenario-list article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 3px;
  background: linear-gradient(var(--blue), var(--orange));
}

.demo-scenario-list b {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.demo-scenario-list p {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
}

.section {
  padding: 72px 0;
  background: #fff;
}

section[id] {
  scroll-margin-top: 92px;
}

.section.alt {
  background: var(--paper);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
}

.section-title {
  margin: 0;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.18;
}

.section-desc {
  max-width: 1120px;
  margin: 12px 0 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
}

.section-desc.single-line {
  max-width: none;
  white-space: nowrap;
}


.capability-rail {
  display: grid;
  grid-template-columns: 320px 1fr;
  border: 1px solid var(--line);
  background: #fff;
}

.rail-label {
  padding: 28px;
  background: var(--navy);
  color: #fff;
}

.rail-label span {
  display: block;
  color: #7db7ff;
  font-weight: 900;
  font-size: 13px;
}

.rail-label h3 { margin: 12px 0 0; font-size: 28px; }

.rail-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.rail-item {
  min-height: 185px;
  padding: 24px;
  border-left: 1px solid var(--line);
}

.rail-item b {
  display: block;
  color: var(--orange);
  font-size: 13px;
}

.rail-item h4 {
  margin: 12px 0 10px;
  font-size: 21px;
}

.rail-item p {
  margin: 0;
  color: var(--text);
  line-height: 1.72;
}

.industry-board {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 22px;
}

.industry-feature {
  position: relative;
  min-height: 486px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111827;
}

.industry-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 20, 40, .08), rgba(7, 20, 40, .72));
}

.feature-caption {
  position: absolute;
  z-index: 1;
  left: 28px;
  right: 28px;
  bottom: 26px;
  color: #fff;
}

.feature-caption span { color: #8ec7ff; font-weight: 900; }
.feature-caption h3 { margin: 10px 0; font-size: 30px; }
.feature-caption p { margin: 0; max-width: 620px; color: #d6e4f7; line-height: 1.75; }

.industry-list {
  display: grid;
  gap: 12px;
}

.industry-row {
  position: relative;
  display: grid;
  grid-template-columns: 156px 1fr;
  gap: 20px;
  align-items: stretch;
  min-height: 128px;
  padding: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .92);
  overflow: hidden;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.industry-row::after {
  content: "";
  position: absolute;
  left: -34%;
  top: 0;
  width: 28%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(21, 87, 255, .09), rgba(255, 121, 0, .08), transparent);
  transform: skewX(-16deg);
  transition: transform .55s ease;
  pointer-events: none;
}

.industry-row::before {
  content: "";
  position: absolute;
  left: 156px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--blue), var(--cyan), var(--orange));
  opacity: .75;
}

.industry-row:hover {
  transform: translateX(4px);
  border-color: rgba(21, 87, 255, .38);
  box-shadow: 0 16px 36px rgba(13, 31, 61, .08);
}

.industry-row:hover::after {
  transform: translateX(520%) skewX(-16deg);
}

.industry-row img {
  width: 156px;
  height: 100%;
  min-height: 128px;
  object-fit: cover;
}

.industry-row div {
  padding: 20px 20px 18px 4px;
  min-width: 0;
}

.industry-row h3 {
  margin: 0 0 8px;
  font-size: 21px;
}

.industry-row p {
  margin: 0;
  color: var(--text);
  line-height: 1.65;
}

.case-strip {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 24px;
}

.case-photo {
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}

.case-photo img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.case-photo div {
  padding: 22px;
}

.case-photo h3 { margin: 0 0 10px; font-size: 25px; }
.case-photo p { margin: 0; color: var(--text); line-height: 1.75; }

.case-table {
  border: 1px solid var(--line);
  background: #fff;
}

.case-row {
  display: grid;
  grid-template-columns: 150px 1fr 150px;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.case-row:last-child { border-bottom: 0; }
.case-row strong { color: var(--ink); }
.case-row span { color: var(--text); line-height: 1.65; }
.case-row b { color: var(--blue); text-align: right; }

.case-board {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
}

.home-case-showcase {
  position: relative;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 18px;
}

.home-case-showcase::before {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  top: -10px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(21, 87, 255, .55), rgba(0, 166, 255, .65), rgba(255, 121, 0, .48), transparent);
  animation: sectionSignal 5.4s ease-in-out infinite;
}

@keyframes sectionSignal {
  0%, 22% { transform: translateX(-24%); opacity: 0; }
  42% { opacity: 1; }
  100% { transform: translateX(24%); opacity: 0; }
}

.home-case-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.home-case-card {
  position: relative;
  min-height: 206px;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.home-case-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--blue), var(--cyan), var(--orange));
  opacity: .55;
}

.home-case-card:hover {
  transform: translateY(-3px);
  border-color: rgba(21, 87, 255, .34);
  box-shadow: 0 16px 34px rgba(13, 31, 61, .08);
}

.home-case-card:hover img {
  transform: scale(1.035);
}

.home-case-card img {
  width: 100%;
  height: 112px;
  object-fit: cover;
  transition: transform .55s ease;
}

.home-case-card div {
  padding: 16px 18px 18px;
}

.home-case-card small {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.home-case-card h3 {
  margin: 8px 0;
  font-size: 22px;
}

.home-case-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.62;
}

.case-spotlight {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0a1428;
}

.case-spotlight img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.case-spotlight:hover img { transform: scale(1.035); }

.case-spotlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 20, 40, .08), rgba(7, 20, 40, .78));
}

.case-spotlight .case-copy {
  position: absolute;
  z-index: 1;
  left: 28px;
  right: 28px;
  bottom: 26px;
  color: #fff;
}

.case-copy small,
.case-tile small,
.story-card small {
  display: block;
  color: #7db7ff;
  font-weight: 900;
}

.case-copy h3 {
  margin: 10px 0;
  font-size: 32px;
}

.case-copy p,
.case-tile p,
.story-card p {
  margin: 0;
  line-height: 1.72;
}

.case-copy p { color: #d6e4f7; }

.case-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 22px;
}

.case-tile,
.story-card {
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}

.case-tile {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 224px;
}

.case-tile img {
  width: 150px;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.case-tile:hover img { transform: scale(1.04); }

.case-tile div,
.story-card div {
  padding: 22px;
}

.case-tile h3,
.story-card h3 {
  margin: 10px 0;
  font-size: 24px;
}

.case-tile p,
.story-card p { color: var(--text); }

.story-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.case-editorial {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  gap: 16px;
}

.case-editorial.compact .story-card img {
  height: 210px;
}

.story-card {
  grid-column: span 4;
}

.story-card.wide {
  grid-column: span 8;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
}

.story-card.tall {
  grid-column: span 4;
  grid-row: span 2;
}

.story-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform .55s ease;
}

.story-card:hover img { transform: scale(1.035); }

.story-card.wide img,
.story-card.tall img {
  height: 100%;
  min-height: 300px;
}

.story-card b {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue);
}

.case-map {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.case-map-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
}

.case-map-head span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.case-map-head b {
  color: var(--steel);
  font-size: 14px;
}

.case-map-body {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-template-rows: 210px 210px;
  gap: 1px;
  background: var(--line);
}

.case-map-photo {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.case-map-photo.wide {
  grid-row: span 2;
}

.case-map-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .75s ease;
}

.case-map-photo:hover img {
  transform: scale(1.04);
}

.case-map-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(7, 20, 40, .68));
}

.case-map-photo span {
  position: absolute;
  z-index: 1;
  left: 18px;
  bottom: 16px;
  color: #fff;
  font-weight: 900;
}

.cases-page .case-map {
  background:
    linear-gradient(rgba(125, 183, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 183, 255, .08) 1px, transparent 1px),
    #071428;
  background-size: 34px 34px;
}

.cases-page .case-map-head {
  color: #dfeeff;
  border-bottom-color: rgba(184, 215, 255, .18);
}

.cases-page .case-map-head b {
  color: #b9cbe5;
}

.cases-page .case-map-body {
  padding: 14px;
  background: transparent;
  grid-template-rows: 190px 190px;
  gap: 12px;
}

.cases-page .case-map-photo {
  border: 1px solid rgba(125, 183, 255, .24);
}

.cases-page .case-map-photo img {
  opacity: .9;
}

.cases-page .case-editorial {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: row;
  gap: 14px;
}

.cases-page .case-editorial.reveal {
  opacity: 1;
  transform: none;
}

.cases-page .story-card,
.cases-page .story-card.wide,
.cases-page .story-card.tall {
  grid-column: auto;
  grid-row: auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 178px 1fr;
  min-height: 346px;
  box-shadow: 0 15px 36px rgba(13, 31, 61, .07);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.cases-page .story-card.wide {
  grid-column: auto;
  grid-template-columns: 1fr;
  grid-template-rows: 178px 1fr;
}

.cases-page .story-card:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 87, 255, .34);
  box-shadow: 0 22px 54px rgba(13, 31, 61, .13);
}

.cases-page .story-card img,
.cases-page .story-card.wide img,
.cases-page .story-card.tall img,
.cases-page .case-editorial.compact .story-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.cases-page .story-card div {
  display: flex;
  flex-direction: column;
  align-content: start;
  padding: 18px 18px 20px;
}

.cases-page .story-card small {
  color: var(--blue);
  font-size: 12px;
}

.cases-page .story-card h3 {
  margin: 8px 0;
  font-size: 22px;
  line-height: 1.22;
}

.cases-page .story-card p {
  font-size: 14px;
  line-height: 1.62;
}

.cases-page .story-card b {
  align-self: flex-start;
  width: max-content;
  margin-top: auto;
  padding: 7px 10px;
  border-left: 3px solid var(--orange);
  background: #f5f8ff;
  color: var(--blue);
  font-size: 12px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}

.industry-tabs-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.industry-tabs-line a {
  padding: 9px 13px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--steel);
  font-weight: 900;
}

.industry-tabs-line a:hover {
  color: var(--blue);
  border-color: rgba(21, 87, 255, .4);
}

.logo-section {
  background: #fff;
}

.logo-tabs {
  display: grid;
  grid-template-columns: 2fr 1.08fr .56fr .56fr;
  align-items: stretch;
  gap: 14px;
}

.logo-category {
  position: relative;
  padding: 18px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(246, 250, 255, .95)),
    #fff;
  min-width: 0;
  overflow: hidden;
}

.logo-category::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 2px solid rgba(21, 87, 255, .56);
  pointer-events: none;
}

.logo-category::after {
  content: "";
  position: absolute;
  left: -30%;
  top: 0;
  width: 28%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(21, 87, 255, .07), transparent);
  animation: logoSweep 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes logoSweep {
  0%, 35% { transform: translateX(0); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateX(470%); opacity: 0; }
}

.logo-category h3 { margin: 0 0 14px; font-size: 18px; }

.logo-grid {
  display: grid;
  gap: 10px;
}

.logo-category:nth-child(1) .logo-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.logo-category:nth-child(2) .logo-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.logo-category:nth-child(3) .logo-grid,
.logo-category:nth-child(4) .logo-grid {
  grid-template-columns: 1fr;
}

.logo-tile {
  position: relative;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(215, 224, 236, .9);
  background: #fff;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.logo-tile::after {
  content: "";
  position: absolute;
  left: -38%;
  top: 0;
  width: 28%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(21, 87, 255, .12), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  transition: transform .45s ease, opacity .2s ease;
}

.logo-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(21, 87, 255, .34);
  box-shadow: 0 12px 24px rgba(13, 31, 61, .08);
}

.logo-tile:hover::after {
  transform: translateX(520%) skewX(-18deg);
  opacity: 1;
}

.logo-tile img {
  max-width: min(190px, 94%);
  max-height: 64px;
  object-fit: contain;
}

.news-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  background: #fff;
}

.news-card {
  min-height: 220px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.news-card:last-child { border-right: 0; }
.news-card time { color: var(--orange); font-weight: 900; font-size: 13px; }
.news-card h3 { margin: 16px 0 10px; font-size: 24px; line-height: 1.35; }
.news-card p { margin: 0; color: var(--text); line-height: 1.7; }

.news-magazine {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: minmax(210px, auto);
  gap: 16px;
}

.news-feature {
  grid-column: span 2;
  grid-row: span 2;
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(7, 20, 40, .94), rgba(10, 44, 110, .92)),
    #071428;
  color: #fff;
  overflow: hidden;
}

.news-feature::after {
  content: "";
  position: absolute;
  left: -30%;
  right: -30%;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 166, 255, .8), rgba(255, 121, 0, .65), transparent);
  animation: newsScan 4.8s linear infinite;
}

@keyframes newsScan {
  from { transform: translateX(-25%); }
  to { transform: translateX(25%); }
}

.news-feature time,
.news-note time {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.news-feature h3 {
  margin: 18px 0 14px;
  font-size: 34px;
  line-height: 1.25;
}

.news-feature p {
  margin: 0;
  color: #c8d7ee;
  font-size: 17px;
  line-height: 1.8;
}

.news-feature .news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.news-meta span {
  padding: 7px 10px;
  border: 1px solid rgba(125, 183, 255, .26);
  color: #b8d7ff;
  font-size: 12px;
  font-weight: 900;
}

.news-note {
  padding: 22px;
  border: 1px solid var(--line);
  background: #fff;
}

.news-note h3 {
  margin: 14px 0 10px;
  font-size: 23px;
  line-height: 1.35;
}

.news-note p {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
}

.news-center {
  position: relative;
}

.news-console-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.news-lead-card {
  position: relative;
  min-height: 360px;
  padding: 34px;
  display: grid;
  align-content: end;
  border: 1px solid rgba(125, 183, 255, .3);
  background:
    linear-gradient(rgba(125, 183, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 183, 255, .08) 1px, transparent 1px),
    radial-gradient(circle at 72% 20%, rgba(21, 87, 255, .32), transparent 28%),
    #071428;
  background-size: 36px 36px, 36px 36px, auto, auto;
  color: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.news-lead-card::after {
  content: "";
  position: absolute;
  left: -28%;
  right: -28%;
  bottom: 86px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 166, 255, .8), rgba(255, 121, 0, .62), transparent);
  animation: newsScan 5.2s linear infinite;
}

.news-lead-image {
  position: absolute;
  z-index: 1;
  top: 28px;
  right: 28px;
  width: 205px;
  height: 136px;
  object-fit: cover;
  border: 1px solid rgba(184, 215, 255, .34);
  box-shadow: 0 20px 54px rgba(0, 0, 0, .24);
  filter: saturate(1.06) contrast(1.04);
}

.news-lead-card > :not(.news-lead-image) {
  position: relative;
  z-index: 2;
}

.news-channel {
  width: max-content;
  margin-bottom: 16px;
  padding: 8px 11px;
  border-left: 3px solid var(--orange);
  background: rgba(255, 255, 255, .08);
  color: #b8d7ff;
  font-size: 13px;
  font-weight: 900;
}

.news-lead-card time {
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
}

.news-lead-card h3 {
  max-width: 640px;
  margin: 16px 0 14px;
  font-size: clamp(22px, 1.8vw, 26px);
  line-height: 1.24;
}

.news-lead-card p {
  max-width: 690px;
  margin: 0;
  color: #c8d7ee;
  font-size: 16px;
  line-height: 1.78;
}

.news-radar {
  display: grid;
  align-content: start;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.news-radar b {
  padding: 18px 20px;
  color: #fff;
  background: linear-gradient(90deg, var(--blue), #315cff 72%, var(--orange));
  font-size: 18px;
}

.news-radar button {
  display: grid;
  gap: 5px;
  min-height: 76px;
  padding: 16px 20px;
  border-top: 1px solid var(--line);
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease;
}

.news-radar button:hover,
.news-radar button.active {
  transform: translateX(3px);
  background: #f4f8ff;
}

.news-radar button.active {
  box-shadow: inset 3px 0 0 var(--blue);
}

.news-radar span {
  color: var(--ink);
  font-weight: 900;
}

.news-radar em {
  color: var(--text);
  font-size: 13px;
  font-style: normal;
}

.news-timeline {
  grid-column: 1 / -1;
  display: grid;
  border: 1px solid var(--line);
  background: #fff;
}

.news-timeline article {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  transition: background .18s ease;
}

.news-timeline article[hidden] {
  display: none;
}

.news-timeline article:last-child {
  border-bottom: 0;
}

.news-timeline article:hover {
  background:
    linear-gradient(90deg, rgba(21, 87, 255, .06), transparent 38%),
    #fff;
}

.news-timeline time {
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
}

.news-timeline b {
  color: var(--blue);
  font-size: 13px;
}

.news-timeline h3 {
  margin: 8px 0 6px;
  font-size: 19px;
  line-height: 1.32;
}

.news-timeline p {
  margin: 0;
  color: var(--text);
  line-height: 1.62;
}

.news-board {
  position: relative;
  display: grid;
  gap: 18px;
}

.news-filterbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px;
  width: max-content;
  max-width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 16px 36px rgba(13, 31, 61, .08);
}

.news-filterbar button {
  min-width: 92px;
  padding: 10px 16px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--steel);
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.news-filterbar button:hover,
.news-filterbar button.active {
  color: #fff;
  border-color: rgba(21, 87, 255, .34);
  background: linear-gradient(90deg, var(--blue), #2f64ff 74%, var(--orange));
  transform: translateY(-1px);
}

.news-story-grid,
.home-news-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.news-story {
  position: relative;
  min-height: 258px;
  display: grid;
  grid-template-rows: 104px 1fr;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 16px 38px rgba(13, 31, 61, .07);
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.news-story:hover {
  transform: translateY(-5px);
  border-color: rgba(21, 87, 255, .36);
  box-shadow: 0 24px 54px rgba(13, 31, 61, .13);
}

.news-story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.98) contrast(1.02);
  transition: transform .55s ease;
}

.news-story:hover img {
  transform: scale(1.035);
}

.news-story div {
  position: relative;
  padding: 13px 14px 14px;
}

.news-story div::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--orange));
}

.news-story time {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
}

.news-story b {
  display: inline-flex;
  margin-left: 8px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
}

.news-story h3 {
  margin: 7px 0 7px;
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.38;
}

.news-story p {
  margin: 0;
  color: var(--text);
  font-size: 12.5px;
  line-height: 1.55;
}

.news-story .news-meta {
  display: none;
}

.news-story[hidden] {
  display: none;
}

.news-story.featured {
  grid-column: span 2;
  grid-row: span 2;
  grid-template-rows: 1fr auto;
  min-height: 516px;
  color: #fff;
  background: #071428;
}

.news-story.featured img {
  position: absolute;
  inset: 0;
  height: 100%;
  opacity: .52;
}

.news-story.featured::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 20, 40, .18), rgba(7, 20, 40, .9)),
    linear-gradient(90deg, rgba(7, 20, 40, .86), transparent 68%);
}

.news-story.featured div {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 720px;
  padding: 34px;
}

.news-story.featured h3 {
  color: #fff;
  font-size: clamp(27px, 2.3vw, 38px);
}

.news-story.featured p {
  color: #d5e2f4;
  font-size: 16px;
}

.news-story.featured .news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.home-news-board .news-story {
  min-height: 252px;
}

.home-news-board .news-story.featured {
  min-height: 500px;
}

.news-center .news-story-grid {
  grid-template-columns: minmax(420px, .98fr) minmax(0, 1.02fr);
  grid-auto-rows: 142px;
  align-items: stretch;
}

.news-center .news-board {
  display: block;
}

.news-center .news-filterbar {
  margin-bottom: 22px;
}

.news-center .news-story {
  min-height: 142px;
  grid-template-columns: 168px 1fr;
  grid-template-rows: none;
  background:
    linear-gradient(135deg, rgba(21, 87, 255, .035), transparent 42%),
    #fff;
}

.news-center .news-story:first-child {
  grid-row: span 3;
  min-height: 450px;
  grid-template-columns: 1fr;
  grid-template-rows: 238px 1fr;
  border-color: rgba(21, 87, 255, .26);
  box-shadow: 0 22px 58px rgba(13, 31, 61, .11);
}

.news-center .news-story:not(:first-child) img {
  min-height: 100%;
}

.news-center .news-story:not(:first-child) div {
  padding: 15px 16px;
}

.news-center .news-story:not(:first-child) h3 {
  margin-top: 6px;
  font-size: 17px;
  line-height: 1.34;
}

.news-center .news-story:not(:first-child) p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news-center .news-story:first-child h3 {
  font-size: 22px;
  line-height: 1.28;
}

.news-center .news-story:first-child p {
  font-size: 14px;
}

.news-pager {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0;
  margin-top: 14px;
}

.news-center .news-pager {
  justify-content: center;
  width: fit-content;
  margin: 32px auto 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.news-pager button {
  position: relative;
  min-width: 94px;
  height: 40px;
  border: 1px solid rgba(21, 87, 255, .22);
  background:
    linear-gradient(135deg, rgba(21, 87, 255, .06), transparent 48%),
    #fff;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

.news-pager button:first-child {
  border-radius: 999px 0 0 999px;
}

.news-pager button:last-child {
  border-radius: 0 999px 999px 0;
}

.news-pager button:first-child::before {
  content: "<";
  margin-right: 8px;
}

.news-pager button:last-child::after {
  content: ">";
  margin-left: 8px;
}

.news-pager button:hover:not(:disabled) {
  color: #fff;
  border-color: rgba(21, 87, 255, .4);
  background: linear-gradient(90deg, var(--blue), #245cff 74%, var(--orange));
  transform: translateY(-1px);
}

.news-pager button:disabled {
  cursor: not-allowed;
  color: #8a9ab2;
  background: #f5f8fc;
  opacity: .75;
}

.news-pager span {
  min-width: 70px;
  height: 40px;
  display: grid;
  place-items: center;
  border-top: 1px solid rgba(21, 87, 255, .22);
  border-bottom: 1px solid rgba(21, 87, 255, .22);
  background: #071428;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.ontology-strip {
  display: grid;
  grid-template-columns: 360px 1fr;
  border: 1px solid var(--line);
  background: #fff;
}

.ontology-diagram {
  position: relative;
  min-height: 450px;
  background:
    linear-gradient(rgba(125, 183, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 183, 255, .08) 1px, transparent 1px),
    #071428;
  background-size: 36px 36px;
  overflow: hidden;
}

.ontology-diagram::before {
  content: "";
  position: absolute;
  inset: 58px;
  border: 1px solid rgba(125, 183, 255, .32);
  transform: rotate(45deg);
}

.ontology-node {
  position: absolute;
  width: 108px;
  min-height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(125, 183, 255, .34);
  background: rgba(6, 17, 34, .84);
  color: #dbeafe;
  font-weight: 900;
}

.ontology-node.core {
  left: 50%;
  top: 50%;
  width: 126px;
  min-height: 86px;
  color: #fff;
  border-color: rgba(0, 166, 255, .7);
  box-shadow: 0 0 28px rgba(0, 166, 255, .18);
  transform: translate(-50%, -50%);
  animation: ontologyPulse 2.8s ease-in-out infinite;
}

@keyframes ontologyPulse {
  50% { box-shadow: 0 0 42px rgba(0, 166, 255, .28); }
}

.ontology-node.object { left: 34px; top: 74px; }
.ontology-node.relation { right: 34px; top: 74px; }
.ontology-node.rule { right: 34px; bottom: 74px; }
.ontology-node.action { left: 34px; bottom: 74px; }

.ontology-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ontology-detail article {
  padding: 26px;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ontology-detail article:nth-last-child(-n + 2) { border-bottom: 0; }
.ontology-detail h3 { margin: 0 0 10px; font-size: 23px; }
.ontology-detail p { margin: 0; color: var(--text); line-height: 1.75; }

.stats,
.about-grid,
.honor-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stats { grid-template-columns: repeat(4, 1fr); }

.stat,
.info-card,
.value-card,
.honor-card {
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
}

.stat strong {
  display: block;
  color: var(--blue);
  font-size: 30px;
}

.stat span,
.info-card p,
.value-card p,
.honor-card p {
  display: block;
  margin-top: 10px;
  color: var(--text);
  line-height: 1.72;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 24px;
}

.product-copy {
  padding: 28px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  background: #fff;
}

.product-copy h3,
.info-card h3,
.value-card h3,
.honor-card h3 {
  margin: 0 0 12px;
}

.feature-rows {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.feature-row {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  background: #f8fbff;
}

.feature-row b { color: var(--orange); }
.feature-row p { margin: 6px 0 0; color: var(--text); line-height: 1.65; }

.visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.visual-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111827;
}

.visual-card.large {
  grid-row: span 2;
  min-height: 432px;
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(7, 20, 40, .72));
}

.visual-card span {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 16px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.product-page .hero {
  padding: 54px 0 42px;
}

.product-page .section {
  padding: 46px 0;
}

.product-page .section-head {
  margin-bottom: 18px;
}

.product-page .section-title {
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.2;
}

.product-page .section-desc {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.65;
}

.product-page .lead {
  max-width: 650px;
  font-size: 17px;
  line-height: 1.72;
}

.product-entry .section-head {
  align-items: end;
}

.product-entry .hero-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(122px, 1fr));
  gap: 10px;
  width: min(620px, 100%);
}

.product-entry .hero-actions .btn {
  position: relative;
  justify-content: flex-start;
  min-height: 58px;
  padding: 0 42px 0 16px;
  border-color: rgba(21, 87, 255, .22);
  background:
    linear-gradient(135deg, rgba(21, 87, 255, .08), transparent 46%),
    #fff;
  box-shadow: 0 14px 34px rgba(13, 31, 61, .08);
  overflow: hidden;
}

.product-entry .hero-actions .btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--blue), var(--cyan), var(--orange));
  transition: width .2s ease;
}

.product-entry .hero-actions .btn::after {
  content: "→";
  position: absolute;
  right: 14px;
  top: 50%;
  color: var(--blue);
  font-size: 17px;
  transform: translateY(-50%);
  transition: transform .18s ease, color .18s ease;
}

.product-entry .hero-actions .btn:hover {
  color: #fff;
  border-color: var(--blue);
  background: linear-gradient(90deg, var(--blue), #245cff 74%, var(--orange));
  box-shadow: 0 20px 48px rgba(21, 87, 255, .18);
}

.product-entry .hero-actions .btn:hover::before {
  width: 100%;
  opacity: .12;
}

.product-entry .hero-actions .btn:hover::after {
  color: #fff;
  transform: translate(4px, -50%);
}

.product-hero .hero-actions .edop-launch {
  position: relative;
  justify-content: flex-start;
  padding: 0 50px 0 20px;
  border-color: rgba(7, 20, 40, .92);
  background:
    linear-gradient(90deg, rgba(21, 87, 255, .24), transparent 58%),
    #071428;
  color: #fff;
  box-shadow: 0 18px 34px rgba(7, 20, 40, .18);
  overflow: hidden;
}

.product-hero .hero-actions .edop-launch::before {
  content: "";
  position: absolute;
  left: 0;
  inset-block: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--blue), var(--cyan), var(--orange));
}

.product-hero .hero-actions .edop-launch::after {
  content: ">";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 15px;
  transform: translateY(-50%);
  transition: transform .18s ease, color .18s ease;
}

.product-hero .hero-actions .edop-launch:hover {
  color: #fff;
  border-color: var(--blue);
  background: linear-gradient(90deg, var(--blue), #245cff 74%, var(--orange));
}

.product-hero .hero-actions .edop-launch:hover::after {
  color: #fff;
  transform: translate(4px, -50%);
}

.product-hero h1 {
  font-size: clamp(34px, 2.75vw, 44px);
}

.product-hero .hero-actions {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 10px 12px;
  align-items: start;
}

.product-action-row {
  display: contents;
}

.product-hero .hero-actions .btn,
.product-hero .hero-actions .btn.primary,
.product-hero .hero-actions .edop-launch {
  position: relative;
  justify-content: flex-start;
  min-height: 44px;
  padding: 0 36px 0 15px;
  border: 1px solid rgba(125, 183, 255, .34);
  border-left: 3px solid var(--blue);
  background:
    linear-gradient(135deg, rgba(21, 87, 255, .055), transparent 48%),
    #fff;
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(13, 31, 61, .065);
  overflow: hidden;
}

.product-action-row .btn {
  min-width: 172px;
}

.product-hero .hero-actions .btn::before,
.product-hero .hero-actions .btn.primary::before,
.product-hero .hero-actions .edop-launch::before {
  content: "";
  position: absolute;
  left: -3px;
  bottom: 0;
  width: 3px;
  height: 42%;
  background: var(--orange);
}

.product-hero .hero-actions .btn::after,
.product-hero .hero-actions .btn.primary::after,
.product-hero .hero-actions .edop-launch::after {
  content: ">";
  position: absolute;
  right: 13px;
  top: 50%;
  width: auto;
  height: auto;
  display: block;
  border: 0;
  background: transparent;
  color: var(--blue);
  font-size: 15px;
  transform: translateY(-50%);
  transition: transform .18s ease, color .18s ease;
}

.product-hero .hero-actions .btn,
.product-hero .hero-actions .btn.primary,
.product-hero .hero-actions .edop-launch {
  font-size: 14px;
}

.product-hero .hero-actions .btn:hover,
.product-hero .hero-actions .btn.primary:hover,
.product-hero .hero-actions .edop-launch:hover {
  color: #fff;
  border-color: rgba(21, 87, 255, .34);
  background: linear-gradient(90deg, var(--blue), #245cff 72%, var(--orange));
  box-shadow: 0 18px 42px rgba(21, 87, 255, .16);
  transform: translateY(-2px);
}

.product-hero .hero-actions .btn:hover::after,
.product-hero .hero-actions .btn.primary:hover::after,
.product-hero .hero-actions .edop-launch:hover::after {
  color: #fff;
  transform: translate(4px, -50%);
}

.product-console {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: 300px auto;
  align-self: stretch;
  border: 1px solid rgba(125, 183, 255, .36);
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-console .hero-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.product-console .hud-card {
  position: relative;
  z-index: 2;
  padding: 16px 20px 18px;
  background: rgba(255, 255, 255, .9);
  border-top: 1px solid rgba(125, 183, 255, .28);
}

.product-console .hud-card strong {
  display: block;
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.product-console .hud-card p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
}

.product-console::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 1;
  border: 1px solid rgba(21, 87, 255, .22);
  pointer-events: none;
}

.console-readout {
  position: absolute;
  z-index: 3;
  right: 22px;
  top: 22px;
  min-width: 150px;
  padding: 14px 16px;
  border: 1px solid rgba(184, 215, 255, .28);
  background: rgba(7, 20, 40, .78);
  color: #e6f1ff;
  backdrop-filter: blur(10px);
  animation: readoutFloat 4.6s ease-in-out infinite;
}

.console-readout span,
.console-readout em {
  display: block;
  color: #9fc5ff;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.console-readout strong {
  display: block;
  margin: 4px 0;
  color: #fff;
  font-size: 36px;
  line-height: 1;
}

@keyframes readoutFloat {
  50% { transform: translateY(8px); }
}

.product-lanes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.product-lanes article {
  position: relative;
  min-height: 178px;
  padding: 20px 20px;
  border-right: 1px solid var(--line);
  overflow: hidden;
}

.product-lanes article:last-child { border-right: 0; }

.product-lanes article::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: translateX(-78%);
  opacity: .9;
  transition: transform .36s ease;
}

.product-lanes article:hover::before { transform: translateX(0); }

.product-lanes span {
  display: inline-block;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.product-lanes h3 {
  margin: 10px 0 8px;
  font-size: 20px;
}

.product-lanes p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.65;
}

.manual-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.manual-strip article {
  padding: 14px 16px;
  border-right: 1px solid var(--line);
}

.manual-strip article:last-child { border-right: 0; }

.manual-strip b {
  display: block;
  color: var(--orange);
  font-size: 13px;
}

.manual-strip span {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
}

.edop-capability-panel {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 14px;
}

.capability-console {
  min-height: 300px;
  padding: 0 22px 22px;
  border: 1px solid #20314c;
  background:
    linear-gradient(rgba(125, 183, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 183, 255, .08) 1px, transparent 1px),
    #071428;
  background-size: 34px 34px;
  color: #eaf3ff;
  box-shadow: var(--shadow);
}

.capability-console .board-header {
  margin: 0 -22px 22px;
}

.capability-console strong {
  display: block;
  font-size: 26px;
  line-height: 1.2;
}

.capability-console p {
  margin: 14px 0 0;
  color: #cfe0f5;
  line-height: 1.72;
}

.capability-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: #fff;
}

.capability-stack article {
  min-height: 142px;
  padding: 18px 18px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(21, 87, 255, .045), transparent 42%),
    #fff;
}

.capability-stack article:nth-child(3n) { border-right: 0; }
.capability-stack article:nth-last-child(-n + 3) { border-bottom: 0; }

.capability-stack b {
  color: var(--orange);
  font-size: 12px;
}

.capability-stack h3 {
  margin: 8px 0 7px;
  font-size: 19px;
}

.capability-stack p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.58;
}

.edop-workbench {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 24px;
  align-items: stretch;
}

.workbench-copy {
  padding: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(21, 87, 255, .07), transparent 42%),
    #fff;
}

.workbench-copy h3 {
  margin: 0 0 14px;
  font-size: 24px;
}

.workbench-copy p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.72;
}

.workbench-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.workbench-tags span {
  padding: 9px 12px;
  border: 1px solid rgba(21, 87, 255, .18);
  background: #f7faff;
  color: #16325f;
  font-size: 13px;
  font-weight: 900;
}

.workbench-board {
  min-height: 340px;
  border: 1px solid #20314c;
  background:
    linear-gradient(rgba(125, 183, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 183, 255, .08) 1px, transparent 1px),
    #071428;
  background-size: 38px 38px;
  color: #eaf3ff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.board-header {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(184, 215, 255, .16);
}

.board-header span {
  width: 9px;
  height: 9px;
  background: var(--orange);
}

.board-header span:nth-child(2) { background: var(--cyan); }
.board-header span:nth-child(3) { background: #45d483; }
.board-header b { margin-left: auto; font-size: 12px; letter-spacing: .08em; color: #a9cfff; }

.board-body {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  min-height: 288px;
}

.board-main {
  position: relative;
  padding: 28px;
  border-right: 1px solid rgba(184, 215, 255, .16);
  overflow: hidden;
}

.board-main::before {
  content: "";
  position: absolute;
  left: -20%;
  right: -20%;
  top: 58%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 166, 255, .8), transparent);
  animation: boardScan 3.8s ease-in-out infinite;
}

@keyframes boardScan {
  50% { transform: translateY(-110px); opacity: .45; }
}

.board-main span {
  color: #7db7ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.board-main strong {
  display: block;
  margin: 14px 0 12px;
  font-size: clamp(25px, 2.4vw, 34px);
  line-height: 1.1;
}

.board-main p {
  max-width: 410px;
  margin: 0;
  color: #cfe0f5;
  line-height: 1.8;
}

.board-side {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
}

.board-side div {
  padding: 20px;
  border-bottom: 1px solid rgba(184, 215, 255, .16);
}

.board-side div:last-child { border-bottom: 0; }

.board-side b {
  display: block;
  color: #fff;
  font-size: 24px;
}

.board-side span {
  display: block;
  margin-top: 8px;
  color: #b7cce7;
  line-height: 1.6;
}

.ontology-compact {
  display: grid;
  grid-template-columns: 360px 1fr;
  min-height: 292px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.ontology-engine {
  position: relative;
  min-height: 292px;
  background: #071428;
  overflow: hidden;
}

.engine-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(125, 183, 255, .10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 183, 255, .10) 1px, transparent 1px);
  background-size: 34px 34px;
}

.engine-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  min-width: 84px;
  min-height: 48px;
  padding: 8px 12px;
  border: 1px solid rgba(125, 183, 255, .36);
  background: rgba(6, 17, 34, .86);
  color: #dfeeff;
  font-weight: 900;
}

.engine-node.core {
  left: 50%;
  top: 50%;
  min-width: 118px;
  min-height: 78px;
  color: #fff;
  border-color: rgba(0, 166, 255, .78);
  box-shadow: 0 0 30px rgba(0, 166, 255, .22);
  transform: translate(-50%, -50%);
  animation: ontologyPulse 2.8s ease-in-out infinite;
}

.engine-node.object { left: 28px; top: 54px; }
.engine-node.relation { right: 28px; top: 54px; }
.engine-node.rule { right: 28px; bottom: 54px; }
.engine-node.action { left: 28px; bottom: 54px; }

.engine-line {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: 190px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 166, 255, .08), rgba(0, 166, 255, .72), rgba(255, 121, 0, .18));
  transform-origin: left center;
}

.line-a { transform: rotate(-138deg); }
.line-b { transform: rotate(-42deg); }
.line-c { transform: rotate(42deg); }
.line-d { transform: rotate(138deg); }

.engine-line::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -3px;
  width: 7px;
  height: 7px;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 166, 255, .85);
  animation: ontologyDot 2.4s linear infinite;
}

@keyframes ontologyDot {
  from { transform: translateX(-160px); opacity: 0; }
  18%, 82% { opacity: 1; }
  to { transform: translateX(0); opacity: 0; }
}

.ontology-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ontology-list article {
  padding: 18px 22px;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ontology-list article:nth-last-child(-n + 2) { border-bottom: 0; }

.ontology-list b {
  display: block;
  margin-bottom: 8px;
  font-size: 19px;
}

.ontology-list p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.62;
}

.tuanzi-section {
  overflow: hidden;
}

.tuanzi-panel {
  position: relative;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 318px;
  padding: 0;
  border: 1px solid rgba(125, 183, 255, .32);
  background:
    linear-gradient(rgba(125, 183, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 183, 255, .07) 1px, transparent 1px),
    linear-gradient(135deg, #fff, #f8fbff 56%, #fff7ef);
  background-size: 34px 34px, 34px 34px, auto;
  box-shadow: var(--shadow);
}

.tuanzi-panel::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: -12%;
  right: -12%;
  bottom: 22px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 166, 255, .36), rgba(255, 121, 0, .42), transparent);
  animation: tuanziSignal 4.2s ease-in-out infinite;
}

@keyframes tuanziSignal {
  50% { transform: translateY(-18px); opacity: .4; }
}

.tuanzi-visual {
  position: relative;
  z-index: 1;
  min-height: 318px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(184, 215, 255, .62);
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 121, 0, .18), transparent 36%),
    linear-gradient(rgba(255, 121, 0, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 87, 255, .06) 1px, transparent 1px),
    #fffaf4;
  background-size: auto, 34px 34px, 34px 34px, auto;
}

.tuanzi-visual img {
  position: relative;
  z-index: 2;
  width: min(190px, 58%);
  border: 1px solid rgba(255, 121, 0, .22);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 20px 48px rgba(255, 121, 0, .16);
  animation: tuanziFloat 4.8s ease-in-out infinite;
}

@keyframes tuanziFloat {
  50% { transform: translateY(-12px) rotate(-1deg); }
}

.agent-dock {
  align-content: center;
  gap: 14px;
}

.agent-flow {
  z-index: 3;
  width: min(100%, 316px);
  display: grid;
  grid-template-columns: 1fr 22px 1fr 22px 1fr;
  align-items: center;
  margin-bottom: 4px;
}

.agent-flow span {
  min-height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 121, 0, .24);
  background: rgba(255, 255, 255, .9);
  color: #14213a;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.agent-flow i {
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
}

.agent-console {
  z-index: 3;
  width: min(100%, 316px);
  display: grid;
  gap: 4px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 121, 0, .22);
  background: rgba(255, 255, 255, .88);
  color: #14213a;
}

.agent-console b {
  color: var(--orange);
  white-space: nowrap;
}

.agent-console span {
  color: var(--text);
  font-size: 12px;
  line-height: 1.45;
}

.tuanzi-copy,
.tuanzi-list {
  position: relative;
  z-index: 1;
}

.tuanzi-copy h3 {
  margin: 14px 0 12px;
  font-size: clamp(23px, 1.9vw, 30px);
  line-height: 1.22;
}

.tuanzi-copy p {
  max-width: 660px;
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.72;
}

.agent-relation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.agent-relation article {
  padding: 13px 14px;
  border-left: 3px solid var(--blue);
  background: rgba(255, 255, 255, .82);
}

.agent-relation b {
  display: block;
  color: var(--ink);
  font-size: 15px;
}

.agent-relation span {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.55;
}

.tuanzi-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 22px;
}

.tuanzi-points span {
  padding: 12px 14px;
  border-left: 3px solid var(--orange);
  background: rgba(255, 255, 255, .76);
  color: #1b2b44;
  font-weight: 900;
}

.tuanzi-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tuanzi-list article {
  padding: 22px 24px;
  border-left: 1px solid rgba(184, 215, 255, .62);
  border-bottom: 1px solid rgba(184, 215, 255, .62);
  background:
    linear-gradient(135deg, rgba(255, 121, 0, .055), transparent 46%),
    rgba(255, 255, 255, .74);
}

.tuanzi-list article:nth-child(2n) {
  border-right: 0;
}

.tuanzi-list article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.tuanzi-list b {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
}

.tuanzi-list p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.62;
}

.about-command {
  position: relative;
  min-height: 500px;
  border: 1px solid #b8c7dc;
  background:
    linear-gradient(rgba(125, 183, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 183, 255, .08) 1px, transparent 1px),
    #071428;
  background-size: 38px 38px;
  color: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-command::after {
  content: "";
  position: absolute;
  left: -30%;
  right: -30%;
  top: 54%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 166, 255, .85), rgba(255, 121, 0, .62), transparent);
  animation: consoleRail 4.2s linear infinite;
}

.about-command-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(125, 183, 255, .24);
}

.about-command-top span,
.about-command-top b {
  color: #7db7ff;
  font-size: 12px;
  font-weight: 900;
}

.about-command-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 22px 22px 14px;
}

.about-command-grid div {
  min-height: 88px;
  padding: 15px 16px;
  border: 1px solid rgba(125, 183, 255, .28);
  background: rgba(6, 17, 34, .74);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.about-command-grid div:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 166, 255, .62);
  background: rgba(11, 33, 62, .86);
}

.about-command-grid strong {
  display: block;
  font-size: 21px;
  line-height: 1.15;
}

.about-command-grid span {
  display: block;
  margin-top: 8px;
  color: #aac2e6;
  font-size: 13px;
  font-weight: 800;
}

.about-command-status {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 28px 1fr 28px 1fr 28px 1fr;
  align-items: center;
  margin: 0 22px 64px;
  padding: 12px 14px;
  border: 1px solid rgba(125, 183, 255, .26);
  background: rgba(3, 13, 27, .88);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .18);
}

.about-command-status span {
  color: #dbeafe;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.about-command-status i {
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
  transform-origin: left;
  animation: signalPulse 2.8s ease-in-out infinite;
}

.about-profile-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 330px;
}

.profile-snapshot {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 210px;
  gap: 14px;
  align-items: start;
  padding: 22px 22px 58px;
}

.snapshot-core {
  padding: 24px 22px;
  border: 1px solid rgba(125, 183, 255, .3);
  background:
    radial-gradient(circle at 12% 16%, rgba(0, 166, 255, .16), transparent 34%),
    rgba(6, 17, 34, .78);
}

.snapshot-core span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.snapshot-core strong {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-size: 21px;
  line-height: 1.22;
  white-space: nowrap;
}

.snapshot-core p {
  margin: 14px 0 0;
  color: #bed0e8;
  font-size: 14px;
  line-height: 1.65;
}

.snapshot-metrics {
  display: grid;
  gap: 10px;
}

.snapshot-metrics b {
  display: grid;
  align-content: center;
  min-height: 66px;
  padding: 14px 16px;
  border-left: 3px solid var(--orange);
  background: rgba(255, 255, 255, .07);
  color: #fff;
  font-size: 23px;
}

.snapshot-metrics span {
  display: block;
  margin-top: 4px;
  color: #9dc7ff;
  font-size: 12px;
  font-weight: 900;
}

.profile-labels {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 22px 64px;
}

.profile-labels span {
  padding: 9px 11px;
  border: 1px solid rgba(125, 183, 255, .24);
  background: rgba(255, 255, 255, .06);
  color: #dbeafe;
  font-size: 12px;
  font-weight: 900;
}

.profile-road {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0 22px 64px;
  border: 1px solid rgba(125, 183, 255, .24);
  background: rgba(3, 13, 27, .78);
}

.profile-road article {
  min-height: 100px;
  padding: 16px 14px;
  border-right: 1px solid rgba(125, 183, 255, .2);
}

.profile-road article:last-child {
  border-right: 0;
}

.profile-road b {
  display: block;
  color: #7db7ff;
  font-size: 21px;
}

.profile-road span {
  display: block;
  margin-top: 8px;
  color: #c3d5ee;
  font-size: 13px;
  line-height: 1.45;
}

.about-milestones {
  padding-top: 54px;
}

.milestone-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.milestone-rail article {
  position: relative;
  min-height: 170px;
  padding: 20px;
  border-right: 1px solid var(--line);
}

.milestone-rail article:last-child { border-right: 0; }

.milestone-rail article::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--orange));
}

.milestone-rail b {
  display: block;
  color: var(--blue);
  font-size: 15px;
}

.milestone-rail h3 {
  margin: 10px 0 8px;
  font-size: 20px;
}

.milestone-rail p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.62;
}

.service-flow {
  display: grid;
  grid-template-columns: 430px 1fr;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.service-flow aside {
  padding: 24px;
  background:
    linear-gradient(rgba(125, 183, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 183, 255, .08) 1px, transparent 1px),
    var(--navy);
  background-size: 34px 34px;
  color: #fff;
}

.service-flow aside span {
  color: #7db7ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.service-flow aside strong {
  display: block;
  margin-top: 18px;
  font-size: 23px;
  line-height: 1.24;
  white-space: nowrap;
}

.service-flow aside p {
  margin: 14px 0 0;
  color: #c9d8ee;
  line-height: 1.72;
}

.service-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.service-steps article {
  position: relative;
  min-height: 260px;
  padding: 24px 20px;
  border-left: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(247, 250, 255, .96));
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-steps article::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--orange));
  transform: scaleX(.42);
  transform-origin: left;
  transition: transform .24s ease;
}

.service-steps article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(13, 31, 61, .1);
}

.service-steps article:hover::before {
  transform: scaleX(1);
}

.service-steps b {
  color: var(--orange);
  font-size: 13px;
}

.service-steps h3 {
  margin: 12px 0 10px;
  font-size: 22px;
}

.service-steps p {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
}

.company-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.company-tags span {
  padding: 9px 12px;
  border: 1px solid rgba(21, 87, 255, .18);
  background: #fff;
  color: #18345f;
  font-size: 13px;
  font-weight: 900;
}

.delivery-system {
  display: grid;
  grid-template-columns: 340px 1fr;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.delivery-system aside {
  position: relative;
  padding: 28px 26px;
  color: #fff;
  background:
    linear-gradient(rgba(125, 183, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 183, 255, .08) 1px, transparent 1px),
    #071428;
  background-size: 34px 34px;
}

.delivery-system aside::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--orange));
}

.delivery-system aside span {
  color: #7db7ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
}

.delivery-system aside strong {
  display: block;
  margin-top: 18px;
  font-size: 25px;
  line-height: 1.15;
  white-space: nowrap;
}

.delivery-system aside p {
  margin: 18px 0 0;
  color: #c9d8ee;
  line-height: 1.72;
}

.delivery-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.delivery-flow article {
  position: relative;
  min-height: 238px;
  padding: 26px 22px;
  border-left: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 0, rgba(21, 87, 255, .08), transparent 32%),
    #fff;
  overflow: hidden;
  transition: transform .2s ease, background .2s ease;
}

.delivery-flow article::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--orange));
}

.delivery-flow article:hover {
  transform: translateY(-4px);
  background:
    radial-gradient(circle at 18% 0, rgba(21, 87, 255, .14), transparent 34%),
    #fff;
}

.delivery-flow b {
  display: block;
  color: var(--blue);
  font-size: 31px;
  line-height: 1;
}

.delivery-flow h3 {
  margin: 16px 0 10px;
  font-size: 20px;
}

.delivery-flow p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.68;
}

.about-signal {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.about-signal i {
  height: 6px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--orange));
  transform-origin: left;
  animation: signalPulse 2.6s ease-in-out infinite;
}

.about-signal i:nth-child(2) { animation-delay: .2s; }
.about-signal i:nth-child(3) { animation-delay: .4s; }
.about-signal i:nth-child(4) { animation-delay: .6s; }

@keyframes signalPulse {
  0%, 100% { transform: scaleX(.24); opacity: .45; }
  50% { transform: scaleX(1); opacity: 1; }
}

.company-ledger {
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  gap: 30px;
  align-items: stretch;
}

.company-brief {
  position: relative;
  padding: 36px 38px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  background:
    linear-gradient(135deg, rgba(21, 87, 255, .055), transparent 34%),
    #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.company-brief::after {
  content: "";
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--orange));
}

.ledger-kicker {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.company-titlebar {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.company-titlebar span {
  color: var(--orange);
  font-size: 16px;
  font-weight: 900;
}

.company-titlebar b {
  color: var(--blue);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.company-brief h2 {
  max-width: 620px;
  margin: 0 0 18px;
  font-size: clamp(32px, 2.65vw, 42px);
  line-height: 1.18;
}

.company-brief p {
  color: var(--text);
  line-height: 1.78;
}

.company-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}

.company-points span {
  padding: 11px 12px;
  border: 1px solid var(--line);
  color: var(--steel);
  font-weight: 900;
  background: #f8fbff;
}

.company-photo-stack {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.company-photo {
  position: relative;
  min-height: 210px;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--navy);
  overflow: hidden;
}

.company-photo.large {
  grid-row: span 2;
}

.company-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.company-photo:hover img { transform: scale(1.035); }

.company-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(7, 20, 40, .72));
}

.company-photo figcaption {
  position: absolute;
  z-index: 1;
  left: 18px;
  bottom: 16px;
  color: #fff;
  font-weight: 900;
}

.company-evidence {
  display: grid;
  grid-template-rows: minmax(190px, 1fr) auto auto;
  gap: 12px;
}

.evidence-window {
  position: relative;
  min-height: 260px;
  display: grid;
  grid-template-columns: 1.1fr .8fr .8fr;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(125, 183, 255, .28);
  background:
    linear-gradient(rgba(125, 183, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 183, 255, .08) 1px, transparent 1px),
    #071428;
  background-size: 34px 34px;
  overflow: hidden;
}

.evidence-window::after,
.honor-wall-v2::after {
  content: "";
  position: absolute;
  left: -25%;
  right: -25%;
  top: 48%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 166, 255, .72), rgba(255, 121, 0, .52), transparent);
  animation: evidenceScan 4.8s ease-in-out infinite;
}

@keyframes evidenceScan {
  50% { transform: translateY(54px); opacity: .45; }
}

.evidence-window figure {
  position: relative;
  z-index: 1;
  min-height: 170px;
  margin: 0;
  border: 1px solid rgba(184, 215, 255, .22);
  background: #0b1a31;
  overflow: hidden;
}

.evidence-window figure:first-child { grid-row: span 2; }

.evidence-window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.04);
  transition: transform .65s ease;
}

.evidence-window figure:hover img { transform: scale(1.04); }

.evidence-window figcaption {
  position: absolute;
  z-index: 1;
  left: 14px;
  bottom: 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .36);
}

.evidence-window figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7, 20, 40, .72));
}

.evidence-console {
  display: grid;
  grid-template-columns: 1fr 28px 1fr 28px 1fr 28px 1fr;
  align-items: center;
  min-height: 56px;
  padding: 0 14px;
  border: 1px solid rgba(125, 183, 255, .28);
  background: #071428;
  color: #dbeafe;
  box-shadow: 0 14px 34px rgba(13, 31, 61, .12);
}

.evidence-console span {
  text-align: center;
  font-size: 14px;
  font-weight: 900;
}

.evidence-console i {
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
  transform-origin: left;
  animation: signalPulse 2.8s ease-in-out infinite;
}

.evidence-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .82);
}

.evidence-metrics b {
  padding: 14px 16px;
  border-right: 1px solid var(--line);
  color: var(--blue);
  font-size: 24px;
}

.evidence-metrics b:last-child { border-right: 0; }

.evidence-metrics span {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
}

.company-system {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 430px;
  border: 1px solid rgba(125, 183, 255, .28);
  background:
    linear-gradient(rgba(125, 183, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 183, 255, .08) 1px, transparent 1px),
    #071428;
  background-size: 36px 36px;
  color: #dbeafe;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.company-system::before {
  content: "";
  position: absolute;
  inset: auto -18% 112px -18%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 166, 255, .82), rgba(255, 121, 0, .55), transparent);
  animation: consoleRail 4.6s linear infinite;
}

.system-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(125, 183, 255, .22);
}

.system-top span,
.system-top b {
  color: #7db7ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.system-body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 12px;
  padding: 24px;
}

.system-core {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  min-height: 112px;
  border: 1px solid rgba(0, 166, 255, .38);
  background:
    radial-gradient(circle at center, rgba(21, 87, 255, .24), transparent 62%),
    rgba(255, 255, 255, .04);
}

.system-core strong {
  color: #fff;
  font-size: 30px;
  line-height: 1.2;
}

.system-core span {
  margin-top: 5px;
  color: #9dc7ff;
  font-size: 13px;
  font-weight: 900;
}

.system-lane {
  min-height: 92px;
  padding: 15px 16px;
  border-left: 3px solid var(--orange);
  background: rgba(255, 255, 255, .06);
}

.system-lane b {
  display: block;
  color: #fff;
  font-size: 18px;
}

.system-lane span {
  display: block;
  margin-top: 8px;
  color: #c3d5ee;
  font-size: 13px;
  line-height: 1.45;
}

.system-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(125, 183, 255, .22);
  background: rgba(255, 255, 255, .05);
}

.system-metrics b {
  padding: 15px 18px;
  border-right: 1px solid rgba(125, 183, 255, .22);
  color: #fff;
  font-size: 26px;
}

.system-metrics b:last-child { border-right: 0; }

.system-metrics span {
  display: block;
  margin-top: 4px;
  color: #9dc7ff;
  font-size: 12px;
  font-weight: 900;
}

.service-map {
  display: grid;
  grid-template-columns: 180px 1.2fr 1fr 1fr;
  border: 1px solid var(--line);
  background: #fff;
}

.service-axis {
  display: grid;
  padding: 22px;
  background: var(--navy);
  color: #dbeafe;
}

.service-axis span {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(125, 183, 255, .2);
  font-weight: 900;
}

.service-axis span:last-child { border-bottom: 0; }

.service-pillar {
  min-height: 320px;
  padding: 30px;
  border-left: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(247, 250, 255, .95));
}

.service-pillar.main {
  border-top: 3px solid var(--blue);
}

.service-pillar b {
  color: var(--orange);
  font-size: 13px;
}

.service-pillar h3 {
  margin: 14px 0 12px;
  font-size: 26px;
}

.service-pillar p {
  margin: 0;
  color: var(--text);
  line-height: 1.75;
}

.honor-showcase {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
}

.honor-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.honor-board article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
}

.honor-board.dense {
  grid-template-columns: repeat(2, 1fr);
}

.honor-board.dense article {
  min-height: 128px;
  padding: 16px 18px;
}

.honor-board span {
  display: inline-flex;
  color: var(--orange);
  font-weight: 900;
}

.honor-board h3 {
  margin: 14px 0 10px;
  font-size: 23px;
}

.honor-board.dense h3 {
  margin: 8px 0 6px;
  font-size: 18px;
}

.honor-board p {
  margin: 0;
  color: var(--text);
  line-height: 1.72;
}

.honor-board.dense p {
  font-size: 13px;
  line-height: 1.55;
}

.honor-photos {
  display: grid;
  gap: 14px;
}

.honor-photos figure {
  position: relative;
  min-height: 220px;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--navy);
  overflow: hidden;
}

.honor-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.honor-photos figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7, 20, 40, .7));
}

.honor-photos figcaption {
  position: absolute;
  z-index: 1;
  left: 18px;
  bottom: 16px;
  color: #fff;
  font-weight: 900;
}

.certificate-wall {
  display: grid;
  gap: 18px;
}

.cert-feature {
  display: grid;
  grid-template-columns: 1.15fr .95fr .95fr;
  gap: 16px;
}

.cert-feature figure {
  position: relative;
  min-height: 300px;
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(21, 87, 255, .04), transparent 48%),
    #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cert-feature img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: contain;
  padding: 18px;
  background: #fff;
}

.cert-feature figcaption {
  padding: 16px 18px;
  border-top: 1px solid var(--line);
  background: #f8fbff;
}

.cert-feature b,
.cert-shelf span,
.cert-ledger b {
  display: block;
  color: var(--ink);
  font-weight: 900;
}

.cert-feature span {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-size: 14px;
}

.cert-shelf {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.cert-shelf article {
  min-height: 235px;
  display: grid;
  grid-template-rows: 1fr auto;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.cert-shelf article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.cert-shelf img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  padding: 12px;
  background: #fff;
}

.cert-shelf span {
  min-height: 48px;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  background: #f8fbff;
  font-size: 13px;
  line-height: 1.35;
}

.cert-ledger {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: #fff;
}

.cert-ledger div {
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}

.cert-ledger div:last-child { border-right: 0; }

.cert-ledger span {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.65;
}

.honor-wall-v2 {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 14px;
  border: 1px solid rgba(125, 183, 255, .24);
  background:
    linear-gradient(rgba(125, 183, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 183, 255, .05) 1px, transparent 1px),
    #f8fbff;
  background-size: 36px 36px;
  overflow: hidden;
}

.core-certs {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.core-certs article {
  min-height: 214px;
  display: grid;
  grid-template-rows: 1fr auto;
  border: 1px solid rgba(184, 215, 255, .72);
  background: #fff;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.core-certs article:hover,
.award-tiles figure:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 87, 255, .45);
  box-shadow: 0 18px 42px rgba(13, 31, 61, .13);
}

.core-certs img {
  width: 100%;
  height: 166px;
  object-fit: contain;
  padding: 10px;
  background: #fff;
}

.core-certs span {
  min-height: 44px;
  display: grid;
  place-items: center;
  padding: 8px 10px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
  background: linear-gradient(180deg, #fff, #f1f6ff);
}

.award-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) 250px;
  gap: 10px;
  align-items: stretch;
}

.honor-name-list {
  display: grid;
  grid-template-rows: auto repeat(8, minmax(0, 1fr));
  align-content: stretch;
  border: 1px solid rgba(184, 215, 255, .7);
  background: #fff;
}

.honor-name-list b {
  display: block;
  padding: 10px 14px;
  color: #fff;
  background: linear-gradient(90deg, var(--blue), #3c66ff);
  font-size: 15px;
}

.honor-name-list span {
  display: flex;
  align-items: center;
  padding: 9px 12px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 11.5px;
  font-weight: 900;
  line-height: 1.36;
}

.award-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-self: start;
}

.award-tiles.full {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.award-tiles figure {
  min-height: auto;
  margin: 0;
  display: grid;
  grid-template-rows: 126px auto;
  border: 1px solid rgba(184, 215, 255, .72);
  background: #fff;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.award-tiles img {
  width: 100%;
  height: 126px;
  object-fit: contain;
  padding: 8px;
  background: linear-gradient(180deg, #fff, #f2f6fb);
}

.award-tiles figcaption {
  min-height: 46px;
  display: grid;
  align-items: center;
  padding: 7px 8px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 11.5px;
  font-weight: 900;
  line-height: 1.24;
  text-align: center;
  background: #fff;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: #fff;
}

.timeline article {
  position: relative;
  min-height: 190px;
  padding: 26px 24px;
  border-right: 1px solid var(--line);
}

.timeline article:last-child { border-right: 0; }

.timeline article::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--orange));
}

.timeline b {
  display: block;
  font-size: 24px;
}

.timeline p {
  margin: 16px 0 0;
  color: var(--text);
  line-height: 1.72;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  color: var(--text);
}

.qr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.qr-card {
  padding: 14px;
  border: 1px solid var(--line);
  text-align: center;
  background: #fff;
}

.qr-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.qr-card span {
  display: block;
  margin-top: 8px;
  font-weight: 900;
}

.site-footer {
  position: relative;
  padding: 38px 0;
  background:
    linear-gradient(rgba(125, 183, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 183, 255, .055) 1px, transparent 1px),
    var(--navy);
  background-size: 38px 38px;
  color: #d9e6ff;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: -20%;
  right: -20%;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 166, 255, .75), rgba(255, 121, 0, .62), transparent);
  animation: footerSignal 6s linear infinite;
}

@keyframes footerSignal {
  from { transform: translateX(-18%); }
  to { transform: translateX(18%); }
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1.1fr 280px;
  align-items: center;
  gap: 30px;
}

.footer-brand {
  padding-left: 18px;
  border-left: 3px solid var(--orange);
}

.footer-brand strong {
  display: block;
  color: #fff;
  font-size: 20px;
}

.footer-grid p {
  margin: 10px 0 0;
  color: #9fb3d3;
  font-size: 14px;
  line-height: 1.7;
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.footer-tags span {
  padding: 7px 9px;
  border: 1px solid rgba(184, 215, 255, .18);
  background: rgba(255, 255, 255, .045);
  color: #b8d7ff;
  font-size: 12px;
  font-weight: 900;
}

.footer-contact {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid rgba(184, 215, 255, .18);
  background: rgba(255, 255, 255, .045);
  color: #b8c8e6;
  font-size: 14px;
  line-height: 1.6;
}

.footer-qrs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.footer-qrs div {
  padding: 12px;
  border: 1px solid rgba(184, 215, 255, .18);
  background: rgba(255, 255, 255, .055);
  text-align: center;
  transition: transform .2s ease, border-color .2s ease;
}

.footer-qrs div:hover {
  transform: translateY(-3px);
  border-color: rgba(125, 183, 255, .38);
}

.footer-qrs img {
  width: 86px;
  height: 86px;
  margin: 0 auto;
  object-fit: contain;
  background: #fff;
}

.footer-qrs span {
  display: block;
  margin-top: 8px;
  color: #b8d7ff;
  font-size: 12px;
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .nav {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav.open { display: flex; }
  .nav a { padding: 13px 14px; border: 0; }
  .nav-group { display: block; }
  .submenu {
    position: static;
    width: auto;
    padding: 8px;
    margin: 0 8px 8px;
    background: #f5f8fc;
    border: 1px solid rgba(125, 183, 255, .22);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .submenu::before { display: none; }
  .nav-group:hover .submenu,
  .nav-group:focus-within .submenu {
    transform: none;
  }

  .nav .submenu a {
    grid-template-columns: 30px 1fr 16px;
    min-height: 42px;
    padding: 0 12px;
    background: #fff;
  }

  .menu-btn { display: block; }
  .nav-cta { display: none; }
}

@media (max-width: 920px) {
  .wrap,
  .nav-wrap { width: min(100% - 32px, 1240px); }
  .hero { padding: 56px 0 42px; }
  .hero-grid,
  .demo-hero-grid,
  .ops-main,
  .capability-rail,
  .industry-board,
  .case-strip,
  .home-case-showcase,
  .case-map-body,
  .company-ledger,
  .company-system,
  .delivery-system,
  .service-map,
  .service-flow,
  .honor-showcase,
  .product-showcase,
  .product-lanes,
  .manual-strip,
  .edop-capability-panel,
  .edop-workbench,
  .ontology-compact,
  .tuanzi-panel,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .ops-console { min-height: auto; }
  .ops-main { height: auto; }
  .ops-screen { height: 300px; border-right: 0; border-bottom: 1px solid rgba(184, 215, 255, .18); }
  .demo-proof,
  .demo-scenario-list { grid-template-columns: 1fr; }
  .rail-items { grid-template-columns: 1fr 1fr; }
  .industry-feature { min-height: 360px; }
  .logo-tabs,
  .news-layout,
  .news-magazine,
  .news-console-layout,
  .news-story-grid,
  .home-news-board,
  .ontology-strip,
  .stats,
  .about-grid,
  .honor-grid,
  .news-grid { grid-template-columns: 1fr; }
  .logo-category,
  .news-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .logo-category:last-child,
  .news-card:last-child { border-bottom: 0; }
  .news-timeline article {
    grid-template-columns: 120px 1fr;
  }
  .case-row { grid-template-columns: 1fr; }
  .case-row b { text-align: left; }
  .visual-grid { grid-template-columns: 1fr; }
  .visual-card.large { grid-row: auto; min-height: 260px; }
  .case-board,
  .case-tile,
  .home-case-cards,
  .story-card.wide,
  .case-editorial,
  .company-photo-stack,
  .company-evidence,
  .evidence-window,
  .award-stage,
  .honor-board,
  .milestone-rail,
  .cert-feature,
  .cert-shelf,
  .cert-ledger,
  .timeline,
  .ontology-detail { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .service-axis { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .service-axis span { min-height: 42px; border-bottom: 0; border-right: 1px solid rgba(125, 183, 255, .2); }
  .service-axis span:last-child { border-right: 0; }
  .service-flow aside strong { white-space: normal; }
  .evidence-window figure:first-child { grid-row: auto; }
  .evidence-console {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
  }
  .evidence-console i {
    width: 1px;
    height: 16px;
    justify-self: center;
  }
  .core-certs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .award-tiles,
  .award-tiles.full { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .honor-name-list { min-height: auto; }
  .case-stack { grid-template-rows: auto; }
  .case-spotlight { min-height: 360px; }
  .case-tile img { width: 100%; height: 190px; }
  .service-steps,
  .capability-stack { grid-template-columns: repeat(2, 1fr); }
  .service-flow aside,
  .capability-console { min-height: auto; }
  .service-steps article {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .service-steps article:nth-child(2n) { border-left: 1px solid var(--line); }
  .product-lanes article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .product-lanes article:last-child { border-bottom: 0; }
  .manual-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .manual-strip article:last-child { border-bottom: 0; }
  .capability-stack article:nth-child(3n) { border-right: 1px solid var(--line); }
  .capability-stack article:nth-child(2n) { border-right: 0; }
  .capability-stack article:nth-last-child(-n + 3) { border-bottom: 1px solid var(--line); }
  .capability-stack article:nth-last-child(-n + 2) { border-bottom: 0; }
  .board-body,
  .ontology-list,
  .tuanzi-list,
  .tuanzi-points,
  .agent-relation { grid-template-columns: 1fr; }
  .board-main { border-right: 0; border-bottom: 1px solid rgba(184, 215, 255, .16); }
  .ontology-engine { min-height: 300px; }
  .ontology-list article {
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }
  .ontology-list article:nth-last-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .ontology-list article:last-child { border-bottom: 0; }
  .tuanzi-panel {
    min-height: auto;
    padding: 0;
  }
  .tuanzi-visual {
    min-height: 300px;
    border-right: 0;
    border-bottom: 1px solid rgba(184, 215, 255, .62);
  }
  .tuanzi-list article {
    border-left: 0;
    border-bottom: 1px solid rgba(184, 215, 255, .62);
  }
  .tuanzi-list article:nth-last-child(-n + 2) { border-bottom: 1px solid rgba(184, 215, 255, .62); }
  .tuanzi-list article:last-child { border-bottom: 0; }
  .tuanzi-panel::after { top: auto; bottom: 22px; }
  .cert-ledger div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .cert-ledger div:last-child { border-bottom: 0; }
  .story-card,
  .story-card.wide,
  .story-card.tall,
  .news-feature {
    grid-column: auto;
    grid-row: auto;
  }
  .news-lead-card {
    min-height: 320px;
    padding: 26px 26px 250px;
  }
  .news-lead-image {
    top: auto;
    left: 26px;
    right: 26px;
    bottom: 26px;
    width: auto;
    height: 190px;
  }
  .news-radar button {
    min-height: auto;
  }
  .news-story.featured {
    grid-column: auto;
    grid-row: auto;
    min-height: 420px;
  }
  .news-center .news-story-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .news-center .news-story,
  .news-center .news-story:first-child {
    grid-row: auto;
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: 170px 1fr;
  }
  .cases-page .case-editorial {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cases-page .story-card.wide {
    grid-column: span 2;
  }
  .cases-page .story-card,
  .cases-page .story-card.wide,
  .cases-page .story-card.tall {
    grid-template-columns: 1fr;
    grid-template-rows: 190px 1fr;
  }
  .product-entry .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }
  .profile-snapshot,
  .profile-road {
    grid-template-columns: 1fr;
  }
  .profile-road article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(125, 183, 255, .2);
  }
  .profile-road article:last-child {
    border-bottom: 0;
  }
  .delivery-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .delivery-flow article:nth-child(2n + 1) { border-left: 0; }
  .company-photo.large,
  .case-map-photo.wide { grid-row: auto; }
  .story-card.wide img,
  .story-card.tall img { min-height: 220px; }
  .ontology-detail article {
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }
  .ontology-detail article:last-child { border-bottom: 0; }
  .footer-grid { display: block; }
  .footer-contact,
  .footer-qrs { margin-top: 20px; }
  .scenario-grid {
    grid-template-columns: 1fr;
  }
  .scenario-card {
    grid-template-columns: 210px 1fr;
  }
}

@media (max-width: 560px) {
  .wrap,
  .nav-wrap { width: min(100% - 28px, 1240px); }
  .brand img { height: 28px; }
  h1 { font-size: clamp(34px, 10vw, 46px); }
  .home-hero h1 {
    white-space: normal;
  }
  .home-hero .gradient-text {
    display: block;
  }
  .scenario-card,
  .scenario-bottom {
    grid-template-columns: 1fr;
  }
  .scenario-card img {
    min-height: 190px;
    aspect-ratio: 16 / 9;
  }
  .section-desc.single-line {
    white-space: normal;
  }
  .lead { font-size: 17px; line-height: 1.75; }
  .news-timeline article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
  }
  .news-lead-card h3 {
    font-size: clamp(22px, 6.2vw, 28px);
  }
  .proof-bar,
  .rail-items { grid-template-columns: 1fr; }
  .proof-bar div { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-bar div:last-child { border-bottom: 0; }
  .industry-row { grid-template-columns: 1fr; }
  .industry-row::before { left: 0; width: 3px; }
  .industry-row div { padding: 18px; }
  .industry-row img { width: 100%; height: 160px; }
  .product-entry .hero-actions,
  .product-hero .hero-actions,
  .cases-page .case-editorial {
    grid-template-columns: 1fr;
  }
  .product-action-row {
    display: contents;
  }
  .product-action-row .btn {
    width: 100%;
    min-width: 0;
  }
  .cases-page .story-card.wide {
    grid-column: auto;
  }
  .about-command-grid,
  .about-command-status,
  .profile-snapshot,
  .profile-road,
  .company-points,
  .system-body,
  .service-steps,
  .delivery-flow,
  .capability-stack,
  .core-certs,
  .award-tiles,
  .honor-board.dense,
  .manual-strip { grid-template-columns: 1fr; }
  .award-tiles.full { grid-template-columns: 1fr; }
  .news-filterbar {
    width: 100%;
  }
  .news-filterbar button {
    flex: 1 1 46%;
    min-width: 0;
  }
  .news-story {
    min-height: auto;
    grid-template-rows: 160px auto;
  }
  .news-story.featured {
    min-height: 390px;
  }
  .news-story.featured h3 {
    font-size: clamp(24px, 7vw, 30px);
  }
  .about-command-status {
    gap: 8px;
    margin-bottom: 70px;
  }
  .about-command-status i {
    width: 1px;
    height: 14px;
    justify-self: center;
  }
  .service-axis { grid-template-columns: 1fr; }
  .service-axis span { border-right: 0; border-bottom: 1px solid rgba(125, 183, 255, .2); }
  .section { padding: 56px 0; }
  .product-hero h1 { font-size: clamp(29px, 7.2vw, 36px); }
  .product-console::before,
  .console-readout { display: none; }
  .product-console {
    grid-template-rows: 180px auto;
  }
  .product-console .hero-img {
    height: 180px;
  }
  .product-console .hud-card {
    padding: 12px 14px;
  }
  .product-console .hud-card strong {
    font-size: 15px;
  }
  .workbench-copy,
  .tuanzi-panel { padding: 24px; }
  .manual-strip article,
  .capability-stack article {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important;
  }
  .manual-strip article:last-child,
  .capability-stack article:last-child { border-bottom: 0 !important; }
  .service-steps article,
  .service-steps article:nth-child(2n) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .service-flow aside { padding: 20px; }
  .service-flow aside strong { font-size: 22px; }
  .system-core strong { font-size: 24px; }
  .system-metrics { grid-template-columns: 1fr; }
  .system-metrics b {
    border-right: 0;
    border-bottom: 1px solid rgba(125, 183, 255, .22);
  }
  .system-metrics b:last-child { border-bottom: 0; }
  .honor-board.dense article { min-height: auto; }
  .workbench-board { min-height: auto; }
  .board-body { min-height: auto; }
  .board-main,
  .board-side div { padding: 20px; }
  .ontology-compact { min-height: auto; }
  .engine-node { min-width: 72px; min-height: 44px; font-size: 14px; }
  .engine-node.object { left: 18px; top: 48px; }
  .engine-node.relation { right: 18px; top: 48px; }
  .engine-node.rule { right: 18px; bottom: 48px; }
  .engine-node.action { left: 18px; bottom: 48px; }
  .engine-line { width: 145px; }
  .tuanzi-orbit { width: 260px; height: 260px; }
  .tuanzi-chip { display: none; }
  .tuanzi-copy p { font-size: 16px; }
  .agent-flow {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .agent-flow i {
    width: 1px;
    height: 18px;
    justify-self: center;
  }
  .agent-console {
    display: grid;
  }
  .cert-feature figure { min-height: auto; }
  .cert-feature img { max-height: 280px; }
  .cert-shelf article { min-height: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Global density pass: keep the industrial style, remove loose vertical rhythm. */
.hero {
  min-height: 560px;
  padding-top: 58px;
  padding-bottom: 42px;
}

.home-hero {
  min-height: 590px;
}

.product-page .hero,
.demo-page .hero,
.cases-page .hero,
.about-hero,
.solution-hero {
  min-height: 520px;
}

.section {
  padding: 64px 0;
}

.section.compact,
.section.alt.compact {
  padding: 52px 0;
}

.section-head {
  margin-bottom: 30px;
  gap: 20px;
}

.section-title,
.section-head h2,
.section h2 {
  letter-spacing: 0;
  line-height: 1.12;
}

.section-desc {
  margin-top: 10px;
  max-width: 880px;
  line-height: 1.66;
}

.lead {
  margin: 20px 0 26px;
  line-height: 1.72;
}

.hero-actions {
  gap: 10px;
}

.btn {
  min-height: 40px;
  padding-inline: 16px;
}

.proof-bar,
.metric-grid,
.client-wall,
.case-editorial,
.news-story-grid,
.service-steps,
.feature-rows,
.capability-stack,
.manual-strip,
.solution-switch {
  gap: 12px;
}

.feature-card,
.news-card,
.news-story,
.story-card,
.case-row,
.industry-row,
.solution-card,
.service-steps article,
.capability-stack article,
.manual-strip article {
  box-shadow: 0 12px 30px rgba(13, 31, 61, .055);
}

.feature-card,
.solution-card,
.service-steps article,
.capability-stack article,
.manual-strip article {
  padding: 22px;
}

.news-board,
.home-news-board,
.case-map,
.honor-board,
.product-showcase,
.ontology-detail,
.tuanzi-panel,
.workbench-copy {
  margin-top: 18px;
}

.news-story div,
.story-card div,
.home-case-card div {
  padding: 18px;
}

.news-story h3,
.news-card h3,
.story-card h3,
.case-row h3,
.home-case-card h3 {
  line-height: 1.24;
}

.news-story p,
.news-card p,
.story-card p,
.case-row p,
.home-case-card p {
  line-height: 1.58;
}

.footer {
  padding-top: 48px;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 18px;
}

@media (max-width: 980px) {
  .hero,
  .product-page .hero,
  .demo-page .hero,
  .cases-page .hero,
  .about-hero,
  .solution-hero {
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 40px;
  }

  .section {
    padding: 52px 0;
  }
}

/* Compact polish pass for sub pages and dense content blocks. */
.section {
  padding-top: 56px;
  padding-bottom: 56px;
}

.section.alt {
  padding-top: 56px;
  padding-bottom: 56px;
}

.section-head {
  margin-bottom: 24px;
}

.product-page .section-head,
.cases-page .section-head,
.news-center .section-head,
.about-page .section-head {
  margin-bottom: 22px;
}

.product-page .hero,
.cases-page .hero,
.about-hero,
.solution-hero,
.demo-page .hero {
  min-height: 480px;
  padding-top: 46px;
  padding-bottom: 34px;
}

.home-case-showcase {
  gap: 14px;
}

.case-spotlight {
  min-height: 410px;
}

.home-case-cards {
  gap: 10px;
}

.home-case-card {
  min-height: 178px;
}

.home-case-card img {
  height: 96px;
}

.home-case-card div {
  padding: 13px 15px 15px;
}

.home-case-card h3 {
  margin: 5px 0 6px;
  font-size: 19px;
}

.home-case-card p {
  font-size: 13px;
  line-height: 1.48;
}

.case-copy {
  padding: 26px;
}

.case-copy h3 {
  font-size: 32px;
}

.logo-tabs {
  gap: 10px;
}

.logo-category {
  padding: 13px;
}

.logo-category h3 {
  margin-bottom: 10px;
  font-size: 17px;
}

.logo-grid {
  gap: 7px;
}

.logo-tile {
  height: 72px;
  padding: 4px;
}

.logo-tile img {
  max-width: 98%;
  max-height: 62px;
}

.logo-category:nth-child(3) .logo-tile,
.logo-category:nth-child(4) .logo-tile {
  height: 78px;
}

.industry-card,
.solution-card,
.feature-card,
.story-card,
.news-story,
.case-row,
.service-steps article,
.manual-strip article,
.capability-stack article,
.honor-board article {
  min-height: auto;
}

/* Navigation and hero refinement: shared final pass. */
.hero h1,
.product-hero h1,
.solution-hero h1,
.page-title h1 {
  font-size: clamp(34px, 3.55vw, 50px) !important;
  line-height: 1.14 !important;
  overflow-wrap: normal !important;
}

.hero h1 .gradient-text,
.product-hero h1 .gradient-text,
.solution-hero h1 .gradient-text,
.scenario-hero h1 .gradient-text {
  display: block !important;
}

.home-hero h1 {
  font-size: clamp(34px, 3vw, 44px) !important;
  white-space: normal !important;
}

.home-hero .gradient-text {
  display: block !important;
}

.submenu {
  width: 430px !important;
  padding: 12px !important;
}

.nav .submenu a {
  display: grid !important;
  grid-template-columns: 34px minmax(0, 1fr) 18px !important;
  align-items: center !important;
  min-height: 62px !important;
  padding: 10px 12px 10px 10px !important;
  gap: 4px 10px !important;
}

.nav .submenu a strong {
  grid-column: 2;
  display: block;
  color: #101827;
  font-size: 15px;
  line-height: 1.2;
}

.nav .submenu a span {
  grid-column: 2;
  display: block;
  color: #5d6b80;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.nav .submenu a::before {
  grid-row: 1 / span 2;
}

.nav .submenu a::after {
  grid-column: 3;
  grid-row: 1 / span 2;
}

.logo-tile {
  padding: 2px !important;
}

.logo-tile img {
  max-width: 100% !important;
  max-height: 68px !important;
}

@media (max-width: 920px) {
  .submenu,
  .site-header .submenu {
    width: auto !important;
  }

  .nav .submenu a,
  .site-header .nav .submenu a {
    grid-template-columns: 30px minmax(0, 1fr) 16px !important;
    min-height: 52px !important;
  }
}

.industry-row div,
.feature-card,
.solution-card,
.service-steps article,
.manual-strip article,
.capability-stack article {
  padding: 18px;
}

.news-story-grid {
  gap: 12px;
}

.news-center .news-board {
  padding-top: 16px;
}

.footer {
  padding-top: 40px;
}

@media (max-width: 1180px) {
  .logo-tabs {
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
  }
}

@media (max-width: 980px) {
  .section,
  .section.alt {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .case-spotlight {
    min-height: 330px;
  }

  .logo-tabs {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .section,
  .section.alt {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .home-case-card img {
    height: 150px;
  }

  .logo-tabs {
    grid-template-columns: 1fr;
  }

  .logo-tile,
  .logo-category:nth-child(3) .logo-tile,
  .logo-category:nth-child(4) .logo-tile {
    height: 68px;
  }
}
