:root {
  color-scheme: dark;
  --ink: #f6fbff;
  --muted: #a9b7c8;
  --muted-strong: #d4dfec;
  --panel: rgba(8, 18, 30, 0.74);
  --panel-solid: #0d1724;
  --line: rgba(255, 255, 255, 0.14);
  --cyan: #35d6ff;
  --blue: #3e7bff;
  --lime: #66e6a6;
  --amber: #ffb84a;
  --red: #ff6f7d;
  --paper: #f5f8fc;
  --paper-ink: #10213a;
  --paper-muted: #58677b;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 86px;
}

body {
  margin: 0;
  min-width: 320px;
  background: #08111d;
  color: var(--ink);
  font-family:
    Inter, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

body::selection {
  background: rgba(53, 214, 255, 0.34);
}

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

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  height: 76px;
  padding: 0 42px;
  background: rgba(5, 11, 19, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition: background 0.2s ease, height 0.2s ease;
}

.site-header.is-scrolled {
  height: 66px;
  background: rgba(5, 11, 19, 0.88);
}

.brand {
  width: 156px;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 28px 0 24px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.header-cta,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta {
  color: #0c1e34;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(27, 112, 255, 0.24);
}

.primary-action {
  color: #06111f;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  box-shadow: 0 18px 38px rgba(53, 214, 255, 0.28);
}

.secondary-action {
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
}

.secondary-action.light {
  color: var(--paper-ink);
  border-color: rgba(16, 33, 58, 0.18);
  background: #ffffff;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.hero {
  position: relative;
  height: calc(100vh - 70px);
  min-height: 640px;
  max-height: 680px;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 94px 42px 80px;
}

.hero-bg,
.hero-canvas,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.08);
}

.hero-canvas {
  z-index: 1;
  width: 100%;
  height: 100%;
}

.hero-shade {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(3, 9, 16, 0.94) 0%, rgba(4, 12, 22, 0.72) 42%, rgba(5, 14, 24, 0.26) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.54) 0%, rgba(6, 12, 20, 0.18) 45%, #08111d 100%);
}

.hero-inner {
  position: relative;
  z-index: 4;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 64px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  max-width: 790px;
  font-size: 54px;
  line-height: 1.05;
  font-weight: 950;
  text-wrap: balance;
}

.hero-lede {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.threat-panel {
  position: relative;
  min-height: 390px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(10, 24, 38, 0.78), rgba(9, 18, 30, 0.52)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 34px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
}

.threat-panel::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(53, 214, 255, 0.16);
  pointer-events: none;
}

.panel-top,
.signal-list div,
.hero-metrics {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-top {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.panel-top strong {
  color: var(--lime);
  font-size: 28px;
}

.panel-subline {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: rgba(212, 223, 236, 0.68);
  font-size: 12px;
  font-weight: 800;
}

.radar {
  position: relative;
  height: 188px;
  margin: 14px 0 14px;
  border: 1px solid rgba(53, 214, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(12, 29, 45, 0.86), rgba(7, 16, 27, 0.72)),
    repeating-linear-gradient(0deg, rgba(53, 214, 255, 0.08) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(90deg, rgba(53, 214, 255, 0.06) 0 1px, transparent 1px 32px);
  overflow: hidden;
  box-shadow:
    inset 0 0 38px rgba(53, 214, 255, 0.1),
    0 18px 48px rgba(0, 0, 0, 0.18);
}

.radar::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 44%, rgba(255, 184, 74, 0.16), transparent 18%),
    radial-gradient(circle at 48% 52%, rgba(53, 214, 255, 0.18), transparent 24%);
  pointer-events: none;
}

.radar::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30%;
  width: 26%;
  background: linear-gradient(90deg, transparent, rgba(53, 214, 255, 0.12), transparent);
  animation: scanLine 4.8s linear infinite;
  pointer-events: none;
}

.radar-map {
  position: absolute;
  inset: 8px 8px 34px;
  width: calc(100% - 16px);
  height: calc(100% - 42px);
}

.lane {
  fill: none;
  stroke: rgba(212, 223, 236, 0.12);
  stroke-width: 18;
  stroke-linecap: round;
}

.lane-b {
  stroke-width: 11;
  stroke: rgba(53, 214, 255, 0.07);
}

.route {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route-main {
  stroke: url("#routeHot");
  stroke-width: 2.6;
  stroke-dasharray: 7 8;
  filter: url("#softGlow");
  animation: dataFlow 5.2s linear infinite;
}

.route-cold {
  stroke: rgba(102, 230, 166, 0.48);
  stroke-width: 1.7;
  stroke-dasharray: 4 9;
  animation: dataFlow 7s linear infinite reverse;
}

.vehicle-body path:first-child {
  fill: rgba(7, 17, 29, 0.82);
  stroke: rgba(212, 223, 236, 0.42);
  stroke-width: 1.7;
}

.vehicle-body path:not(:first-child) {
  fill: none;
  stroke: rgba(53, 214, 255, 0.22);
  stroke-width: 1.1;
}

.node circle {
  fill: #08111d;
  stroke: rgba(53, 214, 255, 0.78);
  stroke-width: 2;
  filter: url("#softGlow");
}

.node text {
  fill: rgba(212, 223, 236, 0.82);
  font-size: 12px;
  font-weight: 800;
}

.node-risk circle {
  fill: rgba(255, 184, 74, 0.28);
  stroke: var(--amber);
}

.node-safe circle {
  stroke: var(--lime);
}

.node-cloud circle {
  stroke: var(--cyan);
}

.event-flag path {
  fill: rgba(255, 184, 74, 0.22);
  stroke: var(--amber);
}

.event-flag text {
  fill: var(--amber);
  font-size: 14px;
  font-weight: 950;
}

.radar-readout {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.radar-readout strong {
  color: var(--amber);
}

@keyframes dataFlow {
  to {
    stroke-dashoffset: -90;
  }
}

@keyframes scanLine {
  to {
    transform: translateX(520%);
  }
}

.signal-list {
  display: grid;
  gap: 8px;
}

.signal-list div {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.signal-list span {
  color: var(--muted);
  font-size: 13px;
}

.signal-list strong {
  font-size: 18px;
}

.hero-metrics {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 16px;
  width: min(1180px, calc(100% - 84px));
  transform: translateX(-50%);
  gap: 14px;
}

.hero-metrics span {
  flex: 1;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(8, 18, 30, 0.58);
  backdrop-filter: blur(12px);
  font-weight: 800;
  text-align: center;
}

.section {
  padding: 104px 42px;
}

.section-head {
  width: min(1120px, 100%);
  margin: 0 auto 46px;
}

.section-head h2,
.support-copy h2,
.contact h2 {
  margin: 0;
  color: var(--paper-ink);
  font-size: 42px;
  line-height: 1.18;
}

.section-head p,
.support-copy p,
.contact p {
  margin: 16px 0 0;
  max-width: 720px;
  color: var(--paper-muted);
  font-size: 17px;
  line-height: 1.75;
}

.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.industry,
.lifecycle,
.standards {
  background: var(--paper);
  color: var(--paper-ink);
}

.industry {
  padding-top: 54px;
}

.industry-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.insight {
  min-height: 190px;
  padding: 28px;
  border: 1px solid rgba(13, 32, 56, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(17, 38, 66, 0.08);
}

.insight h3,
.timeline-step h3,
.support-list h3,
.standard-grid h3,
.contact-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.3;
}

.insight p,
.timeline-step p,
.support-list p,
.standard-grid p,
.contact-card p {
  margin: 12px 0 0;
  color: var(--paper-muted);
  line-height: 1.7;
}

.mark {
  display: block;
  width: 34px;
  height: 5px;
  margin-bottom: 22px;
  border-radius: 999px;
}

.mark-blue {
  background: var(--blue);
}

.mark-green {
  background: var(--lime);
}

.mark-amber {
  background: var(--amber);
}

.industry-media {
  grid-column: 2;
  grid-row: 1 / span 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(150px, 1fr);
  gap: 18px;
  align-content: stretch;
}

.industry-media img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(17, 38, 66, 0.18);
}

.industry-media img:first-child {
  grid-row: span 2;
}

.dark-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #07111d 0%, #101a2a 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 74px);
}

.dark-band .section-head h2,
.dark-band .section-head p {
  color: var(--ink);
}

.dark-band .section-head p {
  color: var(--muted);
}

.platform-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.platform-proof span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(246, 251, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 900;
}

.platform-showcase {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 20px;
  align-items: stretch;
}

.product-console,
.platform-copy,
.product-line {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(10, 24, 38, 0.78);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.product-console {
  overflow: hidden;
}

.console-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 54px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.console-bar span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 950;
}

.console-bar strong {
  color: rgba(246, 251, 255, 0.82);
  font-size: 13px;
}

.console-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(150px, 0.5fr);
  gap: 12px;
  padding: 14px;
}

.console-panel {
  min-height: 112px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(53, 214, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(5, 14, 24, 0.58);
}

.console-main {
  grid-row: span 3;
  min-height: 360px;
}

.console-panel > span,
.console-title span,
.line-copy > span,
.platform-copy > span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
}

.console-panel > strong {
  display: block;
  margin-top: 14px;
  color: #fff;
  font-size: 34px;
  line-height: 1;
}

.console-panel em {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.console-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.console-title strong {
  color: var(--lime);
  font-size: 13px;
}

.asset-map {
  position: relative;
  height: 292px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(53, 214, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(rgba(53, 214, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 214, 255, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 50% 42%, rgba(53, 214, 255, 0.17), transparent 34%),
    rgba(4, 13, 22, 0.6);
  background-size: 38px 38px, 38px 38px, auto, auto;
}

.asset-map-top,
.asset-map-bottom {
  position: absolute;
  z-index: 4;
  left: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.asset-map-top {
  top: 12px;
}

.asset-map-top span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
}

.asset-map-top strong {
  color: rgba(246, 251, 255, 0.76);
  font-size: 12px;
}

.asset-canvas {
  position: absolute;
  inset: 46px 14px 48px;
  overflow: hidden;
  border-radius: 8px;
}

.asset-canvas::before {
  content: "";
  position: absolute;
  inset: 16px 9%;
  border: 1px solid rgba(53, 214, 255, 0.13);
  border-radius: 50%;
  transform: skewX(-14deg);
}

.heat {
  position: absolute;
  z-index: 0;
  width: 118px;
  height: 118px;
  border-radius: 999px;
  filter: blur(6px);
  opacity: 0.72;
}

.heat-high {
  right: 8%;
  top: 18%;
  background: radial-gradient(circle, rgba(255, 111, 125, 0.36), transparent 66%);
}

.heat-mid {
  left: 44%;
  top: 28%;
  background: radial-gradient(circle, rgba(255, 184, 74, 0.28), transparent 67%);
}

.heat-low {
  left: 10%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(102, 230, 166, 0.22), transparent 68%);
}

.asset-node {
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  min-width: 92px;
  min-height: 36px;
  align-items: center;
  padding: 0 8px 0 12px;
  border: 1px solid rgba(53, 214, 255, 0.42);
  border-radius: 999px;
  color: rgba(246, 251, 255, 0.92);
  background: rgba(5, 14, 24, 0.86);
  box-shadow: 0 0 22px rgba(53, 214, 255, 0.16);
  font-size: 12px;
  font-weight: 900;
}

.asset-node em,
.asset-node b {
  font-style: normal;
}

.asset-node em {
  white-space: nowrap;
}

.asset-node b {
  display: inline-flex;
  min-width: 28px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #07111d;
  background: var(--lime);
  font-size: 11px;
  font-weight: 950;
}

.node-core {
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  border-color: rgba(102, 230, 166, 0.72);
}

.node-cloud,
.node-tbox,
.node-adas,
.node-ota {
  transform: translate(-50%, -50%);
}

.node-cloud {
  left: 79%;
  top: 19%;
  border-color: rgba(255, 111, 125, 0.72);
}

.node-cloud b {
  background: var(--red);
}

.node-tbox {
  left: 17%;
  top: 38%;
  border-color: rgba(255, 184, 74, 0.68);
}

.node-tbox b {
  background: var(--amber);
}

.node-adas {
  left: 76%;
  top: 72%;
}

.node-ota {
  left: 28%;
  top: 79%;
  border-color: rgba(53, 214, 255, 0.62);
}

.node-ota b {
  color: #fff;
  background: var(--blue);
}

.asset-link {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 42%;
  width: 42%;
  height: 2px;
  background: linear-gradient(90deg, rgba(53, 214, 255, 0.08), rgba(53, 214, 255, 0.7));
  transform-origin: left center;
}

.asset-link::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 16px currentColor;
}

.link-a {
  color: var(--red);
  transform: rotate(-31deg);
}

.link-b {
  color: var(--amber);
  transform: rotate(162deg);
}

.link-c {
  color: var(--lime);
  transform: rotate(38deg);
}

.link-d {
  color: var(--cyan);
  transform: rotate(132deg);
}

.asset-map-bottom {
  bottom: 12px;
  justify-content: flex-start;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.asset-map-bottom span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(246, 251, 255, 0.68);
  font-size: 11px;
  font-weight: 800;
}

.asset-map-bottom i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.status-high {
  background: var(--red);
}

.status-mid {
  background: var(--amber);
}

.status-low {
  background: var(--lime);
}

.console-table {
  display: grid;
  gap: 8px;
  padding: 0 14px 14px;
}

.console-table div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 110px;
  gap: 12px;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.console-table span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
}

.console-table strong {
  color: rgba(246, 251, 255, 0.9);
  font-size: 13px;
}

.console-table em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  text-align: right;
}

.platform-copy {
  padding: 26px;
}

.platform-copy h3 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.28;
}

.platform-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.platform-outputs {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.platform-outputs div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.platform-outputs strong,
.platform-outputs span {
  display: block;
}

.platform-outputs strong {
  color: var(--lime);
  font-size: 13px;
}

.platform-outputs span {
  margin-top: 6px;
  color: rgba(246, 251, 255, 0.78);
  font-size: 13px;
  line-height: 1.55;
}

.product-lines {
  width: min(1120px, 100%);
  margin: 20px auto 0;
  display: grid;
  gap: 10px;
}

.product-line {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) minmax(220px, 0.72fr) minmax(210px, 0.62fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
}

.line-index {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(53, 214, 255, 0.42);
  border-radius: 8px;
  color: var(--cyan);
  background: rgba(53, 214, 255, 0.08);
  font-weight: 950;
}

.product-line h3 {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: 21px;
}

.product-line p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.product-line ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  color: rgba(246, 251, 255, 0.82);
  font-size: 13px;
  list-style: none;
}

.product-line li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--lime);
  vertical-align: 1px;
}

.product-line > strong {
  justify-self: end;
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(102, 230, 166, 0.18);
  border-radius: 8px;
  color: rgba(246, 251, 255, 0.92);
  background: rgba(102, 230, 166, 0.08);
  font-size: 13px;
  line-height: 1.55;
}

.standard-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.timeline-step:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.timeline-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: stretch;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  border: 1px solid rgba(16, 33, 58, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(16, 33, 58, 0.12);
}

.timeline-step {
  min-height: 272px;
  padding: 26px;
  border: 0;
  background: #fff;
  color: var(--paper-ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.timeline-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  border-radius: 50%;
  color: #07111d;
  background: var(--cyan);
  font-weight: 950;
  transition: transform 0.2s ease, background 0.2s ease;
}

.timeline-step:hover,
.timeline-step.is-active {
  background: #f8fcff;
  box-shadow: inset 0 0 0 2px rgba(53, 214, 255, 0.36);
}

.timeline-step:hover span,
.timeline-step.is-active span {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--cyan), var(--lime));
}

.timeline-detail {
  min-height: 272px;
  padding: 28px;
  border: 1px solid rgba(16, 33, 58, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #10213a 0%, #07111d 100%);
  box-shadow: 0 24px 70px rgba(17, 38, 66, 0.14);
  color: var(--ink);
}

.timeline-detail > strong {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 8px;
  color: #06111f;
  background: var(--cyan);
  font-size: 12px;
}

.timeline-detail h3 {
  margin: 22px 0 0;
  font-size: 26px;
}

.timeline-detail p {
  margin: 12px 0 0;
  color: var(--muted-strong);
  line-height: 1.72;
}

.timeline-detail div {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-detail div span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}

.support {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 58px;
  align-items: center;
  background: #ffffff;
  color: var(--paper-ink);
}

.support-visual,
.support-copy {
  width: min(100%, 560px);
}

.support-visual {
  justify-self: end;
}

.support-visual img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(17, 38, 66, 0.18);
}

.privacy-line {
  padding: 16px 18px;
  border-left: 4px solid var(--lime);
  background: #eef8f3;
}

.support-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.support-list article {
  padding: 22px 24px;
  border: 1px solid rgba(13, 32, 56, 0.08);
  border-radius: 8px;
  background: #f8fbff;
}

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

.standard-grid article {
  min-height: 244px;
  padding: 28px;
  border: 1px solid rgba(13, 32, 56, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(17, 38, 66, 0.08);
}

.standard-grid strong {
  color: var(--blue);
  font-size: 14px;
}

.standard-grid h3 {
  margin-top: 18px;
}

.contact {
  position: relative;
  padding: 112px 42px;
  overflow: hidden;
  background: #08111d;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 17, 29, 0.96), rgba(8, 17, 29, 0.62)),
    url("./assets/banderrs.e4a68811.webp") center / cover;
  opacity: 0.9;
}

.contact-inner {
  position: relative;
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 54px;
  align-items: center;
}

.about-copy h2 {
  max-width: 760px;
}

.contact h2,
.contact p {
  color: var(--ink);
}

.contact p {
  color: var(--muted-strong);
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.about-points span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: rgba(246, 251, 255, 0.86);
  background: rgba(255, 255, 255, 0.07);
  font-weight: 800;
}

.contact-card {
  position: relative;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.06));
  backdrop-filter: blur(14px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

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

.contact-card > span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.contact-card a {
  display: block;
  margin-top: 16px;
  color: var(--cyan);
  font-size: 19px;
  font-weight: 900;
}

.contact-card p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 92px;
  padding: 24px 42px;
  color: rgba(255, 255, 255, 0.68);
  background: #050b13;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.site-footer img {
  width: 132px;
  height: auto;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 1060px) {
  .site-header {
    padding: 0 24px;
    gap: 16px;
  }

  .site-nav {
    gap: 20px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .threat-panel {
    max-width: 420px;
  }

  .platform-showcase {
    grid-template-columns: 1fr;
  }

  .platform-copy {
    min-height: auto;
  }

  .product-line {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .product-line ul,
  .product-line > strong {
    grid-column: 2;
  }

  .product-line > strong {
    justify-self: stretch;
  }

  .timeline-shell {
    grid-template-columns: 1fr;
  }

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

  .support-visual,
  .support-copy {
    justify-self: center;
    width: min(100%, 900px);
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand {
    width: 142px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 66px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 11, 19, 0.96);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 12px;
  }

  .site-nav a::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero {
    height: auto;
    max-height: none;
    min-height: auto;
    padding: 104px 22px 30px;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .threat-panel {
    display: none;
  }

  .hero-metrics {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin: 26px auto 0;
    transform: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-metrics span {
    min-height: 50px;
    font-size: 13px;
  }

  .section,
  .contact {
    padding: 74px 22px;
  }

  .industry {
    padding-top: 24px;
  }

  .section-head h2,
  .support-copy h2,
  .contact h2 {
    font-size: 32px;
  }

  .split {
    display: block;
  }

  .platform-proof,
  .secondary-action.light {
    margin-top: 18px;
  }

  .platform-proof {
    justify-content: flex-start;
  }

  .industry-grid,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .industry-media {
    grid-column: auto;
    grid-row: auto;
  }

  .standard-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .console-layout,
  .console-table div,
  .product-line {
    grid-template-columns: 1fr;
  }

  .console-main {
    min-height: 320px;
  }

  .product-line ul,
  .product-line > strong {
    grid-column: auto;
  }

  .product-line > strong {
    justify-self: stretch;
  }

  .console-table em {
    text-align: left;
  }

  .line-index {
    width: auto;
    justify-content: flex-start;
    padding: 0 12px;
  }

  .product-line,
  .standard-grid article,
  .insight {
    min-height: auto;
  }

  .site-footer {
    justify-content: flex-start;
    padding: 24px 22px;
  }
}

@media (max-width: 520px) {
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .industry-media {
    grid-template-columns: 1fr;
  }

  .industry-media img {
    min-height: 150px;
  }
}
