:root {
  color-scheme: light;
  --bg: #f4f5f6;
  --surface: #ffffff;
  --surface-2: #eceeef;
  --surface-3: #e2e5e8;
  --text: #17191c;
  --muted: #68707a;
  --border: #d2d6db;
  --border-strong: #aeb5bd;
  --red: #c8102e;
  --red-dark: #8d0b22;
  --red-soft: rgba(200, 16, 46, 0.09);
  --green: #15966f;
  --green-bright: #21c997;
  --green-soft: rgba(21, 150, 111, 0.1);
  --blue: #2b9ed2;
  --purple: #8557ed;
  --amber: #d97706;
  --header: rgba(244, 245, 246, 0.9);
  --hero: #e9ebed;
  --hero-ink: #17191c;
  --window: #f9fafb;
  --window-deep: #eef0f2;
  --shadow: 0 24px 60px rgba(26, 31, 38, 0.14);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #111216;
  --surface: #1b1d22;
  --surface-2: #22242a;
  --surface-3: #2b2e35;
  --text: #f3f4f6;
  --muted: #a2a8b2;
  --border: #30333a;
  --border-strong: #4b4f58;
  --red-soft: rgba(200, 16, 46, 0.16);
  --green: #35d8a5;
  --green-bright: #4ff0bc;
  --green-soft: rgba(53, 216, 165, 0.11);
  --header: rgba(17, 18, 22, 0.9);
  --hero: #17191e;
  --hero-ink: #f3f4f6;
  --window: #1d1f24;
  --window-deep: #17191e;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  transition: background 180ms ease, color 180ms ease;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

svg {
  display: block;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  gap: 28px;
  padding: 0 clamp(18px, 4vw, 64px);
  border-bottom: 1px solid color-mix(in srgb, var(--border) 72%, transparent);
  background: var(--header);
  backdrop-filter: blur(18px);
}

.brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 31px;
  display: grid;
  gap: 4px;
}

.brand-mark i {
  display: block;
  height: 4px;
  border-radius: 1px;
  background: color-mix(in srgb, var(--text) 85%, transparent);
  transform: skewX(-26deg);
}

.brand-mark i:first-child {
  width: 23px;
  background: var(--red);
}

.brand-mark i:nth-child(2) {
  width: 30px;
}

.brand-mark i:nth-child(3) {
  width: 21px;
}

.brand-mark-small {
  width: 24px;
  gap: 3px;
}

.brand-mark-small i {
  height: 3px;
}

.brand-mark-small i:first-child {
  width: 18px;
}

.brand-mark-small i:nth-child(2) {
  width: 23px;
}

.brand-mark-small i:nth-child(3) {
  width: 16px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-size: 0.98rem;
  font-weight: 800;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.desktop-nav {
  height: 38px;
  display: flex;
  align-items: stretch;
  padding: 3px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: color-mix(in srgb, var(--surface-2) 90%, transparent);
}

.desktop-nav a {
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 4px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 650;
  transition: color 150ms ease, background 150ms ease;
}

.desktop-nav a:hover {
  background: var(--surface);
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
}

.icon-button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.icon-button:hover {
  border-color: var(--border-strong);
}

.icon-button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sun-icon,
html[data-theme="dark"] .moon-icon {
  display: none;
}

html[data-theme="dark"] .sun-icon {
  display: block;
}

.text-link {
  font-size: 0.78rem;
  font-weight: 650;
}

.text-link:hover {
  color: var(--red);
}

.button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 0.78rem;
  font-weight: 720;
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease;
}

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

.button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  background: var(--red);
  color: #fff;
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-secondary {
  border-color: var(--border-strong);
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  color: var(--text);
}

.button-secondary:hover {
  border-color: var(--text);
}

.button-large {
  min-height: 48px;
  padding: 0 20px;
  font-size: 0.84rem;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 970px;
  padding: 150px clamp(24px, 6vw, 100px) 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--hero);
  color: var(--hero-ink);
}

.hero-lines {
  position: absolute;
  z-index: 0;
  top: -110px;
  right: -180px;
  width: min(920px, 68vw);
  opacity: 0.23;
  pointer-events: none;
  transform: rotate(8deg);
}

html[data-theme="light"] .hero-lines {
  opacity: 0.15;
  filter: saturate(0.75);
}

.hero-grid,
.cta-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(color-mix(in srgb, var(--border) 32%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--border) 32%, transparent) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 76%);
  opacity: 0.4;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 24px;
  height: 2px;
  background: var(--red);
}

.hero h1 {
  margin: 18px 0 0;
  color: var(--hero-ink);
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  line-height: 0.96;
  font-weight: 850;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 760px;
  margin: 28px auto 0;
  color: color-mix(in srgb, var(--hero-ink) 72%, var(--muted));
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  line-height: 1.75;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 650;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof i,
.live-pill i,
.rail-state i,
.core-caption i,
.window-content .good,
.window-content .blue,
.window-content .purple,
.visual-toolbar i {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  background: var(--green);
}

.product-stage {
  position: relative;
  z-index: 4;
  width: min(1240px, calc(100vw - 48px));
  margin: 62px auto 0;
  perspective: 1400px;
}

.product-window {
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 7px 7px 0 0;
  background: var(--window);
  box-shadow: var(--shadow);
  transform: rotateX(1.5deg);
  transform-origin: bottom;
}

.window-bar {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid var(--border);
  background: var(--window-deep);
}

.window-brand {
  display: flex;
  align-items: center;
  gap: 9px;
}

.window-brand > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.window-brand strong {
  font-size: 0.72rem;
}

.window-brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.58rem;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 9px;
  border: 1px solid color-mix(in srgb, var(--green) 35%, transparent);
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
}

.window-content {
  min-height: 390px;
  display: grid;
  grid-template-columns: 0.8fr 1.1fr 0.9fr;
  align-items: stretch;
}

.status-rail,
.telemetry-rail {
  padding: 34px;
  background: color-mix(in srgb, var(--window) 92%, transparent);
}

.status-rail {
  border-right: 1px solid var(--border);
}

.rail-label,
.telemetry-head span {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rail-state {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.rail-state i {
  width: 10px;
  height: 10px;
  box-shadow: 0 0 0 5px var(--green-soft);
}

.rail-state strong {
  font-size: 1.45rem;
}

.status-rail > p {
  max-width: 230px;
  margin: 10px 0 24px;
  color: var(--muted);
  font-size: 0.75rem;
}

.status-rail dl {
  margin: 0;
}

.status-rail dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid var(--border);
}

.status-rail dt {
  color: var(--muted);
  font-size: 0.68rem;
}

.status-rail dd {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 800;
}

.lynx-core {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-right: 1px solid var(--border);
  background:
    linear-gradient(color-mix(in srgb, var(--border) 34%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--border) 34%, transparent) 1px, transparent 1px),
    var(--window-deep);
  background-size: 38px 38px;
}

.lynx-core svg {
  position: relative;
  z-index: 3;
  width: 175px;
  height: 200px;
  overflow: visible;
  filter: drop-shadow(0 16px 14px rgba(25, 34, 31, 0.13));
  animation: shield-float 3.6s ease-in-out infinite;
}

.shield-outer {
  fill: #fbfcfc;
  stroke: #26333a;
  stroke-width: 5;
}

.shield-inner {
  fill: #eef1f2;
  stroke: #aeb7bc;
  stroke-width: 2.5;
}

.shield-facet {
  fill: #dfe4e6;
  opacity: 0.52;
}

.lynx-face {
  fill: rgba(255, 255, 255, 0.3);
  stroke: #222e35;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.face-inset {
  fill: none;
  stroke: #6c777d;
  stroke-width: 1.5;
  opacity: 0.75;
}

.lynx-eyes {
  fill: var(--green);
  stroke: none;
}

.lynx-nose {
  fill: #222e35;
  stroke: none;
}

.lynx-muzzle,
.lynx-whiskers {
  fill: none;
  stroke: #37444b;
  opacity: 0.88;
}

.lynx-details,
.lynx-details-soft {
  fill: none;
  stroke: #536168;
  stroke-width: 1.8;
  opacity: 0.82;
}

.lynx-details-soft {
  stroke: #8a9499;
  stroke-width: 1.3;
  opacity: 0.7;
}

.core-pulse {
  fill: none;
  stroke: var(--green);
  stroke-width: 1.2;
  opacity: 0.18;
  transform-origin: 120px 122px;
  animation: svg-pulse 2.8s ease-out infinite;
}

.core-pulse-second {
  animation-delay: -1.4s;
}

.orbit {
  position: absolute;
  border: 1px solid color-mix(in srgb, var(--green) 24%, #8d9894 18%);
  border-radius: 50%;
  animation: breathe 3.2s ease-in-out infinite;
}

.orbit-one {
  width: 220px;
  height: 220px;
}

.orbit-two {
  width: 252px;
  height: 252px;
  border-style: dashed;
  opacity: 0.55;
  animation-delay: -1.6s;
}

.orbit-dot {
  position: absolute;
  z-index: 4;
  width: 7px;
  height: 7px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px var(--green-soft);
  animation: orbit 7s linear infinite;
}

.dot-two {
  animation-duration: 10s;
  animation-direction: reverse;
}

html[data-theme="dark"] .shield-outer {
  fill: #1d2026;
  stroke: #d9dce1;
}

html[data-theme="dark"] .shield-inner {
  fill: #252930;
  stroke: #858b94;
}

html[data-theme="dark"] .shield-facet {
  fill: #111318;
  opacity: 0.38;
}

html[data-theme="dark"] .lynx-face {
  fill: rgba(255, 255, 255, 0.015);
  stroke: #e6e8ec;
}

html[data-theme="dark"] .face-inset,
html[data-theme="dark"] .lynx-details,
html[data-theme="dark"] .lynx-details-soft {
  stroke: #9aa1aa;
}

html[data-theme="dark"] .lynx-nose {
  fill: var(--green);
}

html[data-theme="dark"] .lynx-muzzle,
html[data-theme="dark"] .lynx-whiskers {
  stroke: #c8ccd2;
}

html[data-theme="dark"] .orbit {
  border-color: color-mix(in srgb, var(--green) 28%, transparent);
}

html[data-theme="dark"] .orbit-dot {
  border-color: var(--window-deep);
}

.core-caption {
  position: absolute;
  z-index: 5;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: color-mix(in srgb, var(--window) 92%, transparent);
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 700;
}

.telemetry-rail {
  display: flex;
  flex-direction: column;
}

.telemetry-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.telemetry-head b {
  color: var(--muted);
  font-size: 0.62rem;
}

.traffic-value {
  display: flex;
  flex-direction: column;
  margin-top: 22px;
}

.traffic-value strong {
  font-size: 2rem;
  line-height: 1;
}

.traffic-value small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.64rem;
}

.traffic-chart {
  flex: 1;
  min-height: 110px;
  margin: 18px 0;
}

.traffic-chart svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.chart-grid {
  fill: none;
  stroke: var(--border);
  stroke-width: 1;
}

.chart-area {
  fill: var(--green-soft);
  stroke: none;
}

.chart-line {
  fill: none;
  stroke: var(--green);
  stroke-width: 2.4;
  vector-effect: non-scaling-stroke;
}

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

.decision-list span {
  display: grid;
  grid-template-columns: 7px 1fr auto;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.64rem;
}

.decision-list b {
  color: var(--text);
}

.window-content .blue {
  background: var(--blue);
}

.window-content .purple {
  background: var(--purple);
}

.hero-bottom {
  position: relative;
  z-index: 5;
  width: min(900px, calc(100vw - 48px));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 720;
  text-transform: uppercase;
}

.hero-bottom i {
  width: 60px;
  height: 1px;
  background: var(--border-strong);
}

.trust-strip {
  min-height: 128px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.trust-strip div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px clamp(24px, 4vw, 64px);
  border-right: 1px solid var(--border);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong {
  font-size: 0.86rem;
}

.trust-strip span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.72rem;
}

.platform-section,
.operations-section {
  padding: 120px clamp(24px, 6vw, 100px);
}

.section-heading {
  max-width: 1320px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(50px, 8vw, 140px);
  align-items: end;
  margin: 0 auto 68px;
}

.section-kicker {
  color: var(--red);
}

.section-heading h2,
.protection-copy h2,
.intelligence-copy h2,
.cta-copy h2 {
  max-width: 780px;
  margin: 14px 0 0;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 1.08;
  font-weight: 810;
}

.section-heading > p,
.protection-copy > p,
.intelligence-copy > p,
.cta-copy > p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.8;
}

.flow-board {
  max-width: 1320px;
  display: grid;
  grid-template-columns: 1fr 44px 1fr 44px 1fr 44px 1fr;
  align-items: center;
  margin: 0 auto;
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
}

.flow-step {
  min-height: 290px;
  padding: 34px 24px;
}

.flow-step svg,
.capability-icon svg {
  width: 25px;
  height: 25px;
  margin-top: 46px;
  fill: none;
  stroke: var(--red);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-index {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
}

.flow-step h3 {
  margin: 18px 0 8px;
  font-size: 1.05rem;
}

.flow-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.flow-connector {
  display: grid;
  place-items: center;
}

.flow-connector span {
  position: relative;
  width: 100%;
  height: 1px;
  background: var(--border-strong);
}

.flow-connector span::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--border-strong);
  border-right: 1px solid var(--border-strong);
  transform: rotate(45deg);
}

.protection-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 10vw, 160px);
  padding: 120px clamp(24px, 6vw, 100px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.protection-copy {
  align-self: start;
  position: sticky;
  top: 120px;
}

.protection-copy > p {
  max-width: 560px;
  margin-top: 26px;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 750;
}

.capability-list {
  border-top: 1px solid var(--border-strong);
}

.capability-list article {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}

.capability-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: var(--surface-2);
}

.capability-icon svg {
  margin: 0;
}

.capability-list h3 {
  margin: 0;
  font-size: 1rem;
}

.capability-list p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.capability-status {
  padding: 5px 8px;
  border: 1px solid color-mix(in srgb, var(--green) 30%, transparent);
  border-radius: 999px;
  color: var(--green);
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
}

.intelligence-section {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
  padding: 120px clamp(24px, 6vw, 100px);
}

.intelligence-visual {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.visual-toolbar {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}

.visual-toolbar > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.visual-toolbar > div {
  display: flex;
  gap: 4px;
}

.range-button {
  min-width: 42px;
  height: 30px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: transparent;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  cursor: pointer;
}

.range-button.active {
  border-color: var(--border);
  background: var(--surface);
  color: var(--text);
}

.health-score {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 4px 20px;
  padding: 24px 26px 4px 60px;
}

.health-score > span {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.health-score strong {
  grid-row: span 2;
  font-size: 2.5rem;
  line-height: 1;
}

.health-score small {
  color: var(--muted);
  font-size: 0.72rem;
}

.health-score p {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
}

.large-chart {
  min-height: 290px;
  display: grid;
  grid-template-columns: 46px 1fr;
  padding: 24px 24px 0 14px;
}

.axis-labels {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 8px 38px 0;
  color: var(--muted);
  font-size: 0.58rem;
  text-align: right;
}

.large-chart svg {
  width: 100%;
  height: 230px;
  overflow: visible;
}

.health-area {
  fill: var(--green-soft);
}

.health-line {
  fill: none;
  stroke: var(--green);
  stroke-width: 2.4;
  vector-effect: non-scaling-stroke;
}

.incident-line {
  fill: none;
  stroke: var(--red);
  stroke-width: 1.8;
  vector-effect: non-scaling-stroke;
}

.chart-legend {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 24px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.62rem;
}

.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.chart-legend i {
  width: 18px;
  height: 2px;
}

.chart-legend .health {
  background: var(--green);
}

.chart-legend .response {
  background: var(--red);
}

.chart-note {
  margin-left: auto;
}

.intelligence-copy > p {
  margin-top: 24px;
}

.feature-checks {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 650;
}

.feature-checks span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--green) 38%, transparent);
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.66rem;
}

.operations-section {
  border-top: 1px solid var(--border);
  background: var(--surface-2);
}

.operations-heading {
  margin-bottom: 52px;
}

.operations-grid {
  max-width: 1320px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  border-top: 1px solid var(--border-strong);
  border-left: 1px solid var(--border-strong);
}

.operation-feature {
  min-height: 270px;
  padding: 30px;
  border-right: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
  background: var(--surface);
}

.operation-feature-wide {
  grid-column: span 3;
  min-height: 220px;
  display: grid;
  grid-template-columns: 50px 1fr minmax(250px, 0.65fr);
  gap: 24px;
  align-items: center;
}

.feature-number {
  color: var(--red);
  font-size: 0.64rem;
  font-weight: 800;
}

.operation-feature h3 {
  margin: 24px 0 10px;
  font-size: 1.05rem;
}

.operation-feature-wide h3 {
  margin-top: 0;
}

.operation-feature p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.mini-dashboard {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 18px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: var(--surface-2);
}

.mini-dashboard > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
  font-size: 0.58rem;
  font-weight: 800;
}

.mini-dashboard > span i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.mini-dashboard > strong {
  grid-column: 1;
  font-size: 0.78rem;
}

.mini-dashboard > div {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.mini-dashboard b {
  font-size: 2rem;
  line-height: 1;
}

.mini-dashboard small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.58rem;
}

.cta-section {
  position: relative;
  min-height: 390px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  padding: 80px clamp(24px, 8vw, 140px);
  overflow: hidden;
  background: #14161a;
  color: #f7f8fa;
}

.cta-lines {
  opacity: 0.22;
  mask-image: none;
}

.cta-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(24px, 8vw, 140px);
  width: 70px;
  height: 4px;
  background: var(--red);
}

.cta-copy,
.cta-actions {
  position: relative;
  z-index: 2;
}

.cta-copy h2 {
  max-width: 850px;
  color: #f7f8fa;
}

.cta-copy > p {
  max-width: 680px;
  margin-top: 22px;
  color: #aeb4bd;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 190px;
}

.cta-section .button-secondary {
  border-color: #4b5059;
  background: #202329;
  color: #f7f8fa;
}

.site-footer {
  padding: 70px clamp(24px, 6vw, 100px) 26px;
  background: #0d0e11;
  color: #f4f5f7;
}

.footer-brand p {
  max-width: 320px;
  margin: 18px 0 0;
  color: #858c96;
  font-size: 0.75rem;
}

.site-footer .brand-copy small {
  color: #858c96;
}

.site-footer .brand-mark i {
  background: #d9dde2;
}

.site-footer .brand-mark i:first-child {
  background: var(--red);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: 34px;
  max-width: 760px;
  margin: 60px 0 50px auto;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 5px;
  font-size: 0.72rem;
}

.footer-links a {
  width: fit-content;
  color: #858c96;
  font-size: 0.7rem;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid #282b31;
  color: #727983;
  font-size: 0.64rem;
}

.legal-main {
  padding: 118px clamp(18px, 5vw, 84px) 0;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 7vw, 86px);
  border: 1px solid var(--border);
  border-radius: 4px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--green-soft) 85%, transparent), transparent 42%),
    var(--surface);
  box-shadow: var(--shadow);
}

.legal-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background-image:
    linear-gradient(30deg, transparent 48%, color-mix(in srgb, var(--green) 28%, transparent) 49%, color-mix(in srgb, var(--green) 28%, transparent) 51%, transparent 52%),
    linear-gradient(150deg, transparent 48%, color-mix(in srgb, var(--green) 20%, transparent) 49%, color-mix(in srgb, var(--green) 20%, transparent) 51%, transparent 52%);
  background-size: 92px 52px;
}

.legal-hero > * {
  position: relative;
  z-index: 1;
}

.legal-hero h1 {
  max-width: 900px;
  margin: 16px 0 0;
  font-size: clamp(2.25rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.legal-hero p {
  max-width: 820px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.doc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.doc-meta span,
.legal-note {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface-2) 70%, transparent);
  color: var(--muted);
  font-size: 0.76rem;
}

.doc-meta span {
  padding: 8px 12px;
}

.doc-meta a,
.legal-section a {
  color: var(--green);
  font-weight: 700;
}

.legal-index {
  position: sticky;
  z-index: 20;
  top: 86px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 36px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  backdrop-filter: blur(16px);
}

.legal-index a {
  padding: 8px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.legal-index a:hover {
  border-color: color-mix(in srgb, var(--green) 55%, var(--border));
  color: var(--text);
}

.legal-section {
  scroll-margin-top: 130px;
  margin: 0 0 26px;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--surface);
  box-shadow: 0 14px 40px color-mix(in srgb, #000 10%, transparent);
}

.legal-section h2 {
  margin: 10px 0 0;
  font-size: clamp(1.75rem, 3.2vw, 3rem);
  line-height: 1;
}

.legal-section > p {
  max-width: 930px;
  margin: 18px 0 0;
  color: var(--muted);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

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

.legal-card {
  min-height: 160px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface-2) 54%, transparent), transparent),
    var(--surface);
}

.legal-card h3 {
  margin: 0;
  font-size: 0.98rem;
}

.legal-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.policy-table {
  width: 100%;
  margin-top: 24px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--surface);
}

.policy-table th,
.policy-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.policy-table th {
  background: var(--surface-2);
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.policy-table td {
  color: var(--muted);
  font-size: 0.88rem;
}

.policy-table td:first-child {
  color: var(--text);
  font-weight: 800;
}

.policy-table tr:last-child td {
  border-bottom: 0;
}

.legal-note {
  width: fit-content;
  max-width: 940px;
  margin: 22px 0 0;
  padding: 12px 15px;
  border-radius: 4px;
}

.process-list {
  display: grid;
  gap: 10px;
  max-width: 950px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--surface-2);
  color: var(--muted);
}

.process-list strong {
  color: var(--text);
}

@keyframes shield-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes breathe {
  0%, 100% { transform: scale(0.98); opacity: 0.35; }
  50% { transform: scale(1.03); opacity: 0.75; }
}

@keyframes orbit {
  from { transform: rotate(0deg) translateX(119px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(119px) rotate(-360deg); }
}

@keyframes svg-pulse {
  0% { transform: scale(0.82); opacity: 0; }
  35% { opacity: 0.2; }
  100% { transform: scale(1.18); opacity: 0; }
}

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

  .desktop-nav {
    display: none;
  }

  .window-content {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .telemetry-rail {
    grid-column: span 2;
    min-height: 220px;
    border-top: 1px solid var(--border);
  }

  .traffic-chart {
    min-height: 120px;
  }

  .protection-section,
  .intelligence-section {
    grid-template-columns: 1fr;
  }

  .protection-copy {
    position: static;
  }

  .intelligence-copy {
    max-width: 720px;
  }

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

@media (max-width: 820px) {
  .site-header {
    min-height: 64px;
  }

  .header-actions .button-primary,
  .login-link {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    display: grid;
    gap: 2px;
    padding: 14px 18px 22px;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
    transform: translateY(-130%);
    transition: transform 180ms ease;
  }

  .mobile-nav.open {
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 13px 10px;
    border-bottom: 1px solid var(--border);
    font-size: 0.82rem;
    font-weight: 650;
  }

  .hero {
    min-height: auto;
    padding: 120px 18px 42px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 16vw, 5.2rem);
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .product-stage {
    width: 100%;
    margin-top: 46px;
  }

  .window-content {
    grid-template-columns: 1fr;
  }

  .status-rail {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .lynx-core {
    border-right: 0;
  }

  .telemetry-rail {
    grid-column: auto;
  }

  .hero-bottom {
    display: none;
  }

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

  .trust-strip div:nth-child(2) {
    border-right: 0;
  }

  .trust-strip div:nth-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }

  .platform-section,
  .protection-section,
  .intelligence-section,
  .operations-section {
    padding: 84px 20px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 48px;
  }

  .flow-board {
    grid-template-columns: 1fr;
  }

  .flow-step {
    min-height: 230px;
    border-bottom: 1px solid var(--border);
  }

  .flow-step:last-child {
    border-bottom: 0;
  }

  .flow-connector {
    display: none;
  }

  .capability-list article {
    grid-template-columns: 46px 1fr;
  }

  .capability-status {
    grid-column: 2;
    width: fit-content;
  }

  .intelligence-visual {
    order: 2;
  }

  .chart-note {
    display: none !important;
  }

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

  .operation-feature-wide {
    grid-column: auto;
    grid-template-columns: 40px 1fr;
  }

  .mini-dashboard {
    grid-column: span 2;
  }

  .cta-section {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 72px 24px;
  }

  .cta-actions {
    flex-direction: row;
  }

  .footer-links {
    margin-left: 0;
  }

  .legal-main {
    padding-top: 92px;
  }

  .legal-hero,
  .legal-section {
    padding: 28px;
  }

  .legal-index {
    position: static;
  }

  .legal-grid,
  .legal-grid-three {
    grid-template-columns: 1fr;
  }

  .policy-table {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 560px) {
  .hero-proof {
    display: grid;
    justify-content: start;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .window-bar {
    padding: 0 14px;
  }

  .status-rail,
  .telemetry-rail {
    padding: 24px;
  }

  .lynx-core {
    min-height: 340px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .capability-list article {
    align-items: start;
  }

  .health-score {
    padding-left: 26px;
  }

  .large-chart {
    min-height: 240px;
    grid-template-columns: 34px 1fr;
  }

  .large-chart svg {
    height: 190px;
  }

  .chart-legend {
    flex-wrap: wrap;
    padding: 16px 18px;
  }

  .cta-actions {
    flex-direction: column;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .legal-main {
    padding-left: 12px;
    padding-right: 12px;
  }

  .legal-hero,
  .legal-section {
    padding: 22px;
  }

  .legal-index a {
    width: calc(50% - 4px);
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
