@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Inter+Tight:wght@500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap");
:root {
  --bg: oklch(0.18 0.018 250);
  --bg-2: oklch(0.205 0.02 250);
  --surf: oklch(0.225 0.02 250);
  --surf-2: oklch(0.255 0.02 250);
  --line: oklch(0.30 0.02 250);
  --line-soft: oklch(0.26 0.018 250 / 0.7);
  --ink: oklch(0.97 0.005 250);
  --ink-2: oklch(0.78 0.01 250);
  --ink-3: oklch(0.58 0.01 250);
  --ink-4: oklch(0.42 0.01 250);
  --brand: oklch(0.74 0.14 245);
  --brand-2: oklch(0.62 0.16 250);
  --signal: oklch(0.87 0.17 95);
  --signal-dim:oklch(0.80 0.14 95);
  --signal-bg: oklch(0.87 0.17 95 / 0.12);
  --ok: oklch(0.78 0.14 155);
  --warn: oklch(0.78 0.16 60);
  --radius: 10px;
  --radius-lg: 14px;
  --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
  --sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --display: "Inter Tight", "Inter", sans-serif;
}

:root {
  --bg: oklch(0.18 0.018 250);
  --bg-2: oklch(0.205 0.02 250);
  --surf: oklch(0.225 0.02 250);
  --surf-2: oklch(0.255 0.02 250);
  --line: oklch(0.30 0.02 250);
  --line-soft: oklch(0.26 0.018 250 / 0.7);
  --ink: oklch(0.97 0.005 250);
  --ink-2: oklch(0.78 0.01 250);
  --ink-3: oklch(0.58 0.01 250);
  --ink-4: oklch(0.42 0.01 250);
  --brand: oklch(0.74 0.14 245);
  --brand-2: oklch(0.62 0.16 250);
  --signal: oklch(0.87 0.17 95); /* yellow — the attention color */
  --signal-dim:oklch(0.80 0.14 95);
  --signal-bg: oklch(0.87 0.17 95 / 0.12);
  --ok: oklch(0.78 0.14 155);
  --warn: oklch(0.78 0.16 60);
  --radius: 10px;
  --radius-lg: 14px;
  --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
  --sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --display: "Inter Tight", "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* faint grid behind everything */
.page-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(to right, var(--line-soft) 1px, transparent 1px), linear-gradient(to bottom, var(--line-soft) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 100% 80% at 50% 30%, #000 55%, transparent 95%);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

/* soft signal-colored glows behind content — atmospheric, not loud */
.page-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(620px 460px at 82% 12%, oklch(87% 0.17 95deg / 0.08), transparent 65%), radial-gradient(720px 520px at 8% 88%, oklch(72% 0.16 245deg / 0.06), transparent 70%), radial-gradient(500px 360px at 50% 55%, oklch(87% 0.17 95deg / 0.035), transparent 75%);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* ---------- nav ---------- */
nav.top {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: oklch(18% 0.018 250deg / 0.75);
  border-bottom: 1px solid var(--line-soft);
}

nav.top .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.015em;
  font-size: 19px;
  line-height: 1;
  color: var(--ink);
  text-decoration: none;
}

.brand .wm-entra {
  color: var(--ink);
  font-weight: 600;
}

.brand .wm-iq {
  color: var(--brand);
  font-weight: 700;
}

.brand .wm-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  margin-left: 3px;
  align-self: center;
  box-shadow: 0 0 0 3px var(--signal-bg);
  animation: wm-pulse 2.4s ease-in-out infinite;
}

@keyframes wm-pulse {
  0%, 100% {
    box-shadow: 0 0 0 3px var(--signal-bg);
  }
  50% {
    box-shadow: 0 0 0 6px oklch(87% 0.17 95deg / 0.04);
  }
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.15s ease, border-color 0.15s ease;
  font-family: var(--sans);
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--ink);
  color: oklch(18% 0.02 250deg);
}

.btn-primary:hover {
  background: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--ink-3);
}

.btn-signal {
  background: var(--signal);
  color: oklch(22% 0.05 85deg);
}

.btn-signal:hover {
  background: oklch(92% 0.18 95deg);
}

/* ---------- hero ---------- */
section.hero {
  padding: 80px 0 40px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-2);
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 10px var(--signal);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}
h1.hero-title {
  font-family: var(--display);
  font-size: clamp(44px, 5.2vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 24px 0 20px;
  color: var(--ink);
  text-wrap: balance;
}

h1.hero-title .entra {
  color: var(--brand);
  position: relative;
  font-style: italic;
  font-weight: 600;
}

h1.hero-title .hl {
  background: var(--signal-bg);
  padding: 0 8px;
  border-radius: 4px;
  box-shadow: inset 0 -2px 0 var(--signal);
}

.hero-sub {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 520px;
  margin: 0 0 32px;
  text-wrap: pretty;
}

.hero-ctas {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
}

/* operator meta bar */
.meta-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
  overflow: hidden;
}

.meta-cell {
  padding: 18px 20px;
  border-right: 1px solid var(--line-soft);
}

.meta-cell:last-child {
  border-right: none;
}

.meta-cell .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 8px;
}

.meta-cell .v {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.meta-cell .sub {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 2px;
}

.meta-cell .v .sig {
  color: var(--signal);
}

/* ---------- console (right side of hero) ---------- */
.console {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: radial-gradient(800px 400px at 100% 0%, oklch(28% 0.04 245deg / 0.5), transparent 60%), var(--bg-2);
  overflow: hidden;
  box-shadow: 0 30px 80px -40px #000;
}

.console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  background: oklch(20% 0.02 250deg);
}

.console-head .tabs {
  display: flex;
  gap: 6px;
}

.console-head .tab {
  padding: 4px 10px;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
}

.console-head .tab.active {
  color: var(--ink);
  background: var(--surf);
  border-color: var(--line);
}

.console-head .status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--signal);
}

.console-head .status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 8px var(--signal);
}

.console-body {
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.kpi {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 12px;
  background: oklch(21% 0.02 250deg);
  position: relative;
  overflow: hidden;
}

.kpi .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 6px;
}

.kpi .num {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.kpi .delta {
  font-family: var(--mono);
  font-size: 11px;
  margin-top: 4px;
  color: var(--ink-3);
}

.kpi.alert {
  border-color: oklch(87% 0.17 95deg / 0.4);
}

.kpi.alert .num {
  color: var(--signal);
}

.kpi.alert::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 3px oklch(87% 0.17 95deg / 0.2);
  animation: pulse 2s ease-in-out infinite;
}

.split {
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  gap: 10px;
}

.panel {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: oklch(21% 0.02 250deg);
  padding: 12px;
}

.panel .hd {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.tenant {
  display: flex;
  flex-direction: column;
  padding: 9px 10px;
  border-radius: 6px;
  font-size: 12.5px;
  border: 1px solid transparent;
  margin-bottom: 6px;
  cursor: pointer;
}

.tenant:hover {
  background: oklch(23% 0.02 250deg);
}

.tenant.sel {
  background: oklch(24% 0.03 250deg);
  border-color: var(--line);
}

.tenant .nm {
  font-weight: 600;
}

.tenant .mt {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--ink-3);
  margin-top: 2px;
}

.tenant .mt .sig {
  color: var(--signal);
}

.chart {
  height: 150px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding: 6px 2px 0;
}

.bar {
  flex: 1;
  background: linear-gradient(to top, var(--brand-2), var(--brand));
  border-radius: 3px 3px 0 0;
  min-height: 6px;
  position: relative;
}

.bar.sig {
  background: linear-gradient(to top, oklch(65% 0.15 90deg), var(--signal));
}

.chart-x {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--ink-4);
  margin-top: 6px;
  padding: 0 2px;
}

.alerts .row {
  display: flex;
  gap: 10px;
  padding: 9px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 12px;
}

.alerts .row:first-of-type {
  border-top: none;
}

.alerts .row .tag {
  font-family: var(--mono);
  font-size: 9.5px;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--signal-bg);
  color: var(--signal);
  letter-spacing: 0.05em;
  height: fit-content;
  white-space: nowrap;
}

.alerts .row .body {
  color: var(--ink-2);
  line-height: 1.4;
}

.alerts .row .body strong {
  color: var(--ink);
  font-weight: 600;
}

.alerts .row .body .mono {
  font-family: var(--mono);
  color: var(--ink-3);
  font-size: 11px;
}

/* ---------- section shell ---------- */
section.s {
  padding: 96px 0;
  position: relative;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 40px;
}

.section-head.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-head h2 {
  font-family: var(--display);
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 12px 0 0;
  max-width: 720px;
  text-wrap: balance;
}

.section-head p {
  color: var(--ink-2);
  font-size: 16px;
  max-width: 460px;
  margin: 0;
}

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line), transparent);
  margin: 0;
}

/* ---------- features: numbered list, NOT icons ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-2);
  overflow: hidden;
}

.feature {
  padding: 28px 28px 32px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  transition: background 0.2s ease;
}

.feature:hover {
  background: oklch(22% 0.02 250deg);
}

.feature:nth-child(3n) {
  border-right: none;
}

.feature:nth-last-child(-n+3) {
  border-bottom: none;
}

.feature .idx {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-4);
  margin-bottom: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.feature .idx .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--line);
}

.feature.hot .idx .dot {
  background: var(--signal);
  box-shadow: 0 0 8px var(--signal);
}

.feature h3 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
}

.feature p {
  color: var(--ink-3);
  font-size: 14.5px;
  margin: 0;
  max-width: 34ch;
}

.feature .chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 4px 8px;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
}

.feature.hot .chip {
  color: var(--signal);
  border-color: oklch(87% 0.17 95deg / 0.35);
  background: var(--signal-bg);
}

/* ---------- MSP split ---------- */
.msp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.msp .left h2 {
  font-family: var(--display);
  font-size: clamp(30px, 2.8vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 10px 0 20px;
  text-wrap: balance;
}

.msp .left p {
  color: var(--ink-2);
  font-size: 16px;
  max-width: 480px;
  margin: 0 0 28px;
}

.ticklist {
  display: grid;
  gap: 2px;
}

.ticklist .item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 15px;
}

.ticklist .item:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.ticklist .idx {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-4);
  letter-spacing: 0.08em;
}

.ticklist .label {
  color: var(--ink);
  font-weight: 500;
}

.ticklist .meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
}

.ticklist .meta.sig {
  color: var(--signal);
}

/* Tenant console panel for MSP section */
.multi {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-2);
  overflow: hidden;
}

.multi-head {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.multi-head .count {
  color: var(--ink);
  background: var(--surf);
  border: 1px solid var(--line-soft);
  padding: 3px 8px;
  border-radius: 6px;
}

.tenant-row {
  display: grid;
  grid-template-columns: 30px 1.4fr 1fr 1fr 1fr;
  gap: 16px;
  padding: 16px 18px;
  border-top: 1px solid var(--line-soft);
  align-items: center;
  font-size: 13.5px;
}

.tenant-row:first-of-type {
  border-top: none;
}

.tenant-row .num {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--ink-4);
}

.tenant-row .nm {
  font-weight: 600;
}

.tenant-row .nm .sub {
  display: block;
  font-weight: 400;
  font-size: 11.5px;
  color: var(--ink-3);
  font-family: var(--mono);
  margin-top: 2px;
}

.tenant-row .cell {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-2);
}

.tenant-row .cell .lbl {
  font-size: 10px;
  color: var(--ink-4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 3px;
}

.tenant-row .cell.sig {
  color: var(--signal);
}

.bar-line {
  height: 4px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 4px;
}

.bar-line > div {
  height: 100%;
  background: var(--brand);
  border-radius: 2px;
}

.bar-line.sig > div {
  background: var(--signal);
}

/* ---------- AI section ---------- */
.ai {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.panel-block {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-2);
  padding: 28px;
}

.panel-block h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
}

.panel-block p {
  color: var(--ink-2);
  margin: 0 0 20px;
}

.insight {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(180deg, oklch(22% 0.03 250deg) 0%, oklch(20% 0.02 250deg) 100%);
  position: relative;
}

.insight + .insight {
  margin-top: 14px;
}

.insight .lbl {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--signal);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.insight .lbl::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 8px var(--signal);
}

.insight p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
}

.insight p em {
  font-style: normal;
  background: var(--signal-bg);
  padding: 0 3px;
  border-radius: 3px;
  box-shadow: inset 0 -1.5px 0 var(--signal);
}

.insight .actions {
  margin-top: 14px;
  display: flex;
  gap: 8px;
}

.mini-btn {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

.mini-btn:hover {
  color: var(--ink);
  border-color: var(--ink-3);
}

.mini-btn.primary {
  color: var(--signal);
  border-color: oklch(87% 0.17 95deg / 0.4);
}

.cap-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 2px;
}

.cap-list li {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
  align-items: center;
  font-size: 14px;
}

.cap-list li:first-child {
  border-top: none;
}

.cap-list .k {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--ink-4);
  letter-spacing: 0.08em;
}

.cap-list .meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
}

/* ---------- how it works ---------- */
.flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-2);
  overflow: hidden;
  position: relative;
}

.step {
  padding: 32px 32px 36px;
  border-right: 1px solid var(--line-soft);
  position: relative;
}

.step:last-child {
  border-right: none;
}

.step .idx {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-4);
  margin-bottom: 60px;
}

.step h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.step p {
  color: var(--ink-3);
  font-size: 14.5px;
  max-width: 32ch;
  margin: 0 0 18px;
}

.step .art {
  height: 100px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: oklch(21% 0.02 250deg);
  position: relative;
  overflow: hidden;
  padding: 10px;
}

.step .art .line {
  height: 8px;
  background: var(--line);
  border-radius: 4px;
  margin-bottom: 6px;
}

.step .art .line.b {
  background: var(--brand);
  width: 70%;
}

.step .art .line.s {
  background: var(--signal);
  width: 40%;
}

/* arrows */
.step::after {
  content: "→";
  position: absolute;
  right: -10px;
  top: 50px;
  font-family: var(--mono);
  font-size: 18px;
  color: var(--ink-4);
  background: var(--bg-2);
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  z-index: 2;
}

.step:last-child::after {
  display: none;
}

/* ---------- cta ---------- */
.final {
  margin: 40px 0 80px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: radial-gradient(1000px 300px at 80% 0%, oklch(35% 0.12 250deg / 0.25), transparent 60%), radial-gradient(600px 240px at 10% 100%, oklch(75% 0.15 90deg / 0.1), transparent 60%), var(--bg-2);
  padding: 64px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.final h2 {
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 12px 0 14px;
  text-wrap: balance;
}

.final p {
  color: var(--ink-2);
  margin: 0 0 24px;
  font-size: 16px;
  max-width: 520px;
}

.final .ctas {
  display: flex;
  gap: 10px;
}

.final-stats {
  display: grid;
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.final-stats .row {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 16px 20px;
  background: var(--bg-2);
  align-items: center;
}

.final-stats .k {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.final-stats .v {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.final-stats .v .sig {
  color: var(--signal);
}

/* ---------- footer ---------- */
footer {
  border-top: 1px solid var(--line-soft);
  padding: 40px 0 60px;
  position: relative;
  z-index: 1;
}

.foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--ink-3);
  font-family: var(--mono);
}

.foot a {
  color: var(--ink-3);
  text-decoration: none;
  margin-left: 20px;
}

.foot a:hover {
  color: var(--ink);
}

/* ---------- ticker under nav (from V-03) ---------- */
.ticker {
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-2);
  overflow: hidden;
  position: sticky;
  top: 51px;
  z-index: 49;
  backdrop-filter: blur(14px);
}

.ticker-inner {
  display: flex;
  gap: 48px;
  padding: 9px 0;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--ink-3);
  white-space: nowrap;
  animation: tick-slide 70s linear infinite;
  width: max-content;
}

.ticker-inner .item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ticker-inner .item strong {
  color: var(--ink);
  font-weight: 500;
}

.ticker-inner .item.hot strong {
  color: var(--signal);
}

.ticker-inner .item .t {
  color: var(--ink-4);
}

.ticker-inner .item .d {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink-4);
}

.ticker-inner .item.hot .d {
  background: var(--signal);
  box-shadow: 0 0 6px var(--signal);
}

@keyframes tick-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* ---------- hero: raw vs found split (from V-03) ---------- */
.stream-split {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  border-top: 1px solid var(--line-soft);
}

.stream-col {
  padding: 14px;
}

.stream-col.raw {
  border-right: 1px solid var(--line-soft);
  background: oklch(19.5% 0.018 250deg);
}

.stream-col .plbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}

.stream-col .plbl .sig-c {
  color: var(--signal);
}

.ev {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-4);
  padding: 2px 4px;
  line-height: 1.45;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ev.found {
  color: var(--signal);
  background: var(--signal-bg);
  border-left: 2px solid var(--signal);
  padding-left: 6px;
}

.mini-finding {
  border: 1px solid var(--line-soft);
  border-left: 2px solid var(--signal);
  border-radius: 4px;
  padding: 8px 10px;
  background: oklch(20% 0.018 250deg);
  margin-bottom: 6px;
}

.mini-finding .h {
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--signal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 3px;
  display: flex;
  justify-content: space-between;
}

.mini-finding .h .tm {
  color: var(--ink-4);
}

.mini-finding p {
  margin: 0;
  font-size: 12px;
  color: var(--ink);
  line-height: 1.4;
}

.mini-finding p em {
  font-style: normal;
  background: var(--signal-bg);
  padding: 0 3px;
  box-shadow: inset 0 -1.5px 0 var(--signal);
}

/* ---------- fleet grid for MSP section (from V-03) ---------- */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.tile {
  background: var(--bg-2);
  padding: 16px 18px 18px;
  position: relative;
  min-height: 120px;
  transition: background 0.12s;
}

.tile:hover {
  background: var(--surf);
}

.tile.hot {
  background: linear-gradient(180deg, oklch(87% 0.17 95deg / 0.07), oklch(87% 0.17 95deg / 0.02));
}

.tile .hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.tile .n {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-4);
  letter-spacing: 0.08em;
}

.tile .status {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink-4);
}

.tile.ok .status {
  background: var(--ok);
}

.tile.hot .status {
  background: var(--signal);
  box-shadow: 0 0 6px var(--signal);
  animation: pulse 2s ease-in-out infinite;
}

.tile .nm {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}

.tile .sub {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-4);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.tile .metrics {
  display: flex;
  gap: 14px;
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--ink-3);
}

.tile .metrics strong {
  color: var(--ink);
  font-weight: 500;
}

.tile.hot .metrics strong {
  color: var(--signal);
}

/* ---------- AI streaming log (from V-03) ---------- */
.ai-stream-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-2);
  overflow: hidden;
  margin-top: 20px;
}

.ai-stream-wrap .hd {
  padding: 12px 18px;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
}

.ai-stream-wrap .hd .live {
  color: var(--signal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ai-stream-wrap .hd .live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 6px var(--signal);
}

.ai-stream-wrap .body {
  padding: 6px 18px 16px;
  max-height: 260px;
  overflow: hidden;
  position: relative;
}

.ai-stream-wrap .body::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60px;
  background: linear-gradient(to top, var(--bg-2), transparent);
  pointer-events: none;
}

.log {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--ink-4);
  padding: 5px 0;
  border-top: 1px solid var(--line-soft);
  line-height: 1.4;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px;
}

.log:first-child {
  border-top: none;
}

.log.hot {
  color: var(--signal);
}

.log .tn {
  color: var(--ink);
}

.log.hot .tn {
  color: var(--signal);
}

/* ---------- nav scroll-spy ---------- */
nav.top .nav-links a {
  position: relative;
  transition: color 0.15s;
}

nav.top .nav-links a.active {
  color: var(--signal);
}

nav.top .nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  height: 2px;
  background: var(--signal);
  box-shadow: 0 0 6px var(--signal);
}

/* ---------- founder note ---------- */
.founder {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: radial-gradient(800px 280px at 15% 0%, oklch(87% 0.17 95deg / 0.06), transparent 65%), var(--bg-2);
  padding: 48px 56px 44px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
  overflow: hidden;
}

.founder .avatar {
  width: 140px;
  height: 140px;
  border-radius: 8px;
  background: linear-gradient(135deg, oklch(35% 0.12 250deg) 0%, oklch(25% 0.05 250deg) 60%, oklch(30% 0.08 90deg) 100%);
  border: 1px solid var(--line);
  position: relative;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 44px;
  font-weight: 600;
  color: var(--signal);
  letter-spacing: -0.03em;
}

.founder .avatar::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 3px var(--bg-2), 0 0 10px var(--signal);
}

.founder .note-meta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--ink-4);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.founder blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: pretty;
  max-width: 62ch;
}

.founder blockquote em {
  font-style: normal;
  background: var(--signal-bg);
  padding: 0 3px;
  box-shadow: inset 0 -2px 0 var(--signal);
}

.founder .sig-line {
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-3);
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.founder .sig-line strong {
  color: var(--ink);
  font-weight: 500;
}

.founder .sig-line .sep {
  color: var(--ink-4);
}

/* ---------- report mock ---------- */
.report-wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.report-copy h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 10px 0 14px;
}

.report-copy p {
  color: var(--ink-2);
  font-size: 15px;
  max-width: 44ch;
  margin: 0 0 16px;
}

.report-copy ul.rlist {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--line-soft);
  padding-top: 18px;
}

.report-copy ul.rlist li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-2);
}

.report-copy ul.rlist .k {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--ink-4);
  letter-spacing: 0.08em;
  padding-top: 2px;
}

.report-mock {
  position: relative;
  perspective: 1400px;
}

.report-page {
  background: oklch(97% 0.005 95deg);
  color: oklch(25% 0.02 250deg);
  border-radius: 4px;
  padding: 36px 40px 42px;
  box-shadow: 0 1px 0 oklch(0% 0 0deg / 0.3), 0 30px 60px -20px oklch(0% 0 0deg / 0.6), 0 60px 120px -40px oklch(87% 0.17 95deg / 0.2);
  font-family: var(--sans);
  transform: rotate(-1.5deg);
  transform-origin: 50% 50%;
  position: relative;
  z-index: 2;
}

.report-page .r-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 2px solid oklch(25% 0.02 250deg);
  margin-bottom: 22px;
}

.report-page .r-head .brand-lockup {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: oklch(25% 0.02 250deg);
  display: flex;
  align-items: center;
  gap: 8px;
}

.report-page .r-head .brand-lockup::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.report-page .r-head .r-meta {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  color: oklch(45% 0.02 250deg);
  text-transform: uppercase;
  text-align: right;
  line-height: 1.6;
}

.report-page .r-title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
  color: oklch(22% 0.02 250deg);
}

.report-page .r-sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: oklch(50% 0.02 250deg);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.report-page .r-summary {
  background: oklch(87% 0.17 95deg / 0.22);
  border-left: 3px solid oklch(75% 0.17 80deg);
  padding: 12px 14px;
  font-size: 11.5px;
  line-height: 1.5;
  margin-bottom: 18px;
  color: oklch(30% 0.05 80deg);
}

.report-page .r-summary strong {
  color: oklch(20% 0.05 80deg);
}

.report-page .r-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid oklch(85% 0.01 250deg);
  border-radius: 4px;
  margin-bottom: 18px;
}

.report-page .r-stat {
  padding: 10px 12px;
  border-right: 1px solid oklch(88% 0.01 250deg);
}

.report-page .r-stat:last-child {
  border-right: none;
}

.report-page .r-stat .rk {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.08em;
  color: oklch(50% 0.02 250deg);
  text-transform: uppercase;
}

.report-page .r-stat .rv {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: oklch(20% 0.02 250deg);
  margin-top: 2px;
}

.report-page .r-stat .rv.sig {
  color: oklch(45% 0.15 80deg);
}

.report-page .r-finding {
  padding: 10px 0;
  border-top: 1px solid oklch(90% 0.01 250deg);
  font-size: 11.5px;
  line-height: 1.5;
  display: grid;
  grid-template-columns: 44px 1fr 60px;
  gap: 10px;
  align-items: baseline;
}

.report-page .r-finding:first-of-type {
  border-top: none;
}

.report-page .r-finding .fi {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  color: oklch(50% 0.02 250deg);
  text-transform: uppercase;
}

.report-page .r-finding .fi.hot {
  color: oklch(45% 0.15 80deg);
  font-weight: 600;
}

.report-page .r-finding .fb strong {
  color: oklch(20% 0.02 250deg);
  font-weight: 600;
}

.report-page .r-finding .fm {
  font-family: var(--mono);
  font-size: 9px;
  color: oklch(55% 0.02 250deg);
  text-align: right;
}

.report-page .r-foot {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid oklch(88% 0.01 250deg);
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 9px;
  color: oklch(55% 0.02 250deg);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.report-page-behind {
  position: absolute;
  inset: 0;
  background: oklch(95% 0.005 250deg);
  border-radius: 4px;
  transform: rotate(3deg) translate(10px, 10px);
  box-shadow: 0 20px 40px -20px oklch(0% 0 0deg / 0.5);
  z-index: 1;
  opacity: 0.9;
}

.report-page-behind-2 {
  position: absolute;
  inset: 0;
  background: oklch(92% 0.008 250deg);
  border-radius: 4px;
  transform: rotate(6deg) translate(22px, 18px);
  z-index: 0;
  opacity: 0.7;
}

.report-caption {
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--ink-4);
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

/* ---------- big footer ---------- */
.big-foot {
  border-top: 1px solid var(--line-soft);
  padding: 60px 0 36px;
  position: relative;
  z-index: 1;
}

.big-foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.big-foot .col-brand .brand {
  margin-bottom: 16px;
}

.big-foot .col-brand p {
  color: var(--ink-3);
  font-size: 13.5px;
  max-width: 30ch;
  margin: 0 0 20px;
  line-height: 1.55;
}

.big-foot .col-brand .status-line {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.05em;
  display: flex;
  gap: 8px;
  align-items: center;
}

.big-foot .col-brand .status-line::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 6px var(--ok);
}

.big-foot h4 {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--ink-4);
  text-transform: uppercase;
  margin: 0 0 18px;
  font-weight: 500;
}

.big-foot ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 11px;
}

.big-foot ul a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 13.5px;
  transition: color 0.15s;
}

.big-foot ul a:hover {
  color: var(--signal);
}

.big-foot ul .new {
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--signal);
  padding: 2px 5px;
  border: 1px solid oklch(87% 0.17 95deg / 0.3);
  border-radius: 3px;
  margin-left: 6px;
  letter-spacing: 0.08em;
  vertical-align: middle;
}

.big-foot .base {
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--ink-4);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
  gap: 16px;
}

.big-foot .base .legal {
  display: flex;
  gap: 20px;
}

.big-foot .base .legal a {
  color: var(--ink-4);
  text-decoration: none;
}

.big-foot .base .legal a:hover {
  color: var(--ink-2);
}

/* ---------- integrations strip ---------- */
.integrations {
  padding: 48px 0 8px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.integrations .eyebrow {
  justify-content: center;
  margin-bottom: 24px;
}

.int-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: oklch(20% 0.018 250deg / 0.6);
  border-radius: 4px;
}

.int-pill {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  padding: 18px 28px;
  border-right: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.int-pill:last-child {
  border-right: none;
}

.int-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink-3);
}

.int-pill.live::before {
  background: var(--ok);
  box-shadow: 0 0 5px var(--ok);
}

.int-pill.soon {
  color: var(--ink-3);
  font-style: italic;
}

.int-pill.soon::before {
  background: var(--ink-4);
}

/* ---------- security section ---------- */
.security {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-2);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.security::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 100% 100%, oklch(72% 0.16 245deg / 0.08), transparent 70%);
  pointer-events: none;
}

.sec-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-soft);
  position: relative;
}

.sec-list li {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: center;
}

.sec-list .ix {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--ink-4);
  letter-spacing: 0.08em;
}

.sec-list .label {
  font-size: 14.5px;
  color: var(--ink);
}

.sec-list .label .sub {
  display: block;
  color: var(--ink-3);
  font-size: 13px;
  margin-top: 2px;
}

.sec-list .status-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ok);
  padding: 4px 9px;
  border: 1px solid oklch(78% 0.14 155deg / 0.35);
  border-radius: 4px;
  background: oklch(78% 0.14 155deg / 0.08);
}

.sec-list .status-tag.prog {
  color: var(--signal-dim);
  border-color: oklch(87% 0.17 95deg / 0.35);
  background: var(--signal-bg);
}

.sec-visual {
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 20px;
  background: oklch(20.5% 0.02 250deg);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-3);
  position: relative;
  overflow: hidden;
}

.sec-visual .title {
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
}

.sec-visual .scope {
  padding: 8px 10px;
  border: 1px solid var(--line-soft);
  border-radius: 5px;
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  background: oklch(19% 0.018 250deg);
}

.sec-visual .scope .k {
  color: var(--ink);
}

.sec-visual .scope .v {
  color: var(--ok);
}

.sec-visual .foot-note {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed var(--line-soft);
  color: var(--ink-4);
  font-size: 11px;
}

/* ---------- pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 12px;
}

.plan {
  background: var(--bg-2);
  padding: 32px 28px 32px;
  position: relative;
}

.plan.featured {
  background: linear-gradient(180deg, oklch(87% 0.17 95deg / 0.05), var(--bg-2));
}

.plan .ptag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--ink-4);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.plan.featured .ptag .sig-c {
  color: var(--signal);
}

.plan h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}

.plan .desc {
  color: var(--ink-3);
  font-size: 13.5px;
  margin: 0 0 20px;
  min-height: 42px;
}

.plan .price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
}

.plan .price .big {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.plan .price .soon-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--signal);
  padding: 3px 8px;
  border: 1px solid oklch(87% 0.17 95deg / 0.35);
  border-radius: 4px;
  background: var(--signal-bg);
  text-transform: uppercase;
}

.plan .price .per {
  color: var(--ink-4);
  font-family: var(--mono);
  font-size: 12px;
}

.plan ul.feats {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 8px;
}

.plan ul.feats li {
  font-size: 13.5px;
  color: var(--ink-2);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.plan ul.feats li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ink-4);
  font-family: var(--mono);
  font-size: 12px;
}

.plan.featured ul.feats li::before {
  color: var(--signal);
}

.plan .plan-cta {
  width: 100%;
  display: block;
  text-align: center;
}

/* ---------- faq ---------- */
.faq {
  max-width: 860px;
  margin: 0 auto;
}

.faq details {
  border-top: 1px solid var(--line-soft);
  padding: 0;
}

.faq details:last-of-type {
  border-bottom: 1px solid var(--line-soft);
}

.faq summary {
  padding: 22px 4px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-family: var(--mono);
  color: var(--ink-3);
  font-size: 18px;
  transition: transform 0.15s;
}

.faq details[open] summary::after {
  content: "−";
  color: var(--signal);
}

.faq .answer {
  padding: 0 4px 24px;
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 68ch;
}

.faq .answer .q-idx {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--ink-4);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  display: block;
}

/* responsive */
@media (max-width: 960px) {
  .hero-grid, .msp, .ai, .flow, .feature-grid, .cards-row, .split, .final, .fleet-grid, .stream-split {
    grid-template-columns: 1fr !important;
  }
  .feature {
    border-right: none !important;
  }
  .step::after {
    display: none;
  }
  nav .nav-links {
    display: none;
  }
  .container {
    padding: 0 24px;
  }
  .ticker {
    display: none;
  }
  .security, .pricing-grid {
    grid-template-columns: 1fr !important;
  }
  .int-pill {
    padding: 14px 18px;
    font-size: 11px;
    border-right: none;
    border-bottom: 1px solid var(--line-soft);
  }
  .founder {
    grid-template-columns: 1fr !important;
    padding: 32px 24px;
  }
  .founder .avatar {
    width: 80px;
    height: 80px;
    font-size: 28px;
  }
  .report-wrap {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }
  .big-foot-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px;
  }
  .big-foot .col-brand {
    grid-column: 1/-1;
  }
}

/* ===================== saxalar-site additions ===================== */
.brand .wm-sax { color: var(--ink); font-weight: 700; letter-spacing: -0.02em; }

/* detection coverage grid */
.det-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.det {
  background: var(--bg-2);
  padding: 20px 20px 22px;
  display: flex; flex-direction: column; gap: 6px;
  transition: background .2s ease;
}
.det:hover { background: oklch(0.22 0.02 250); }
.det .k {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em;
  color: var(--ink-4); text-transform: uppercase; margin-bottom: 6px;
  display: flex; align-items: center; justify-content: space-between;
}
.det .k::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--line); }
.det.hot .k::after { background: var(--signal); box-shadow: 0 0 8px var(--signal); }
.det strong { font-family: var(--display); font-size: 15.5px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
.det span:last-child { font-size: 13px; color: var(--ink-3); line-height: 1.45; }
.det-foot {
  margin-top: 14px; text-align: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: var(--ink-4);
}

/* coming-soon tag (roadmap cards, flip to .tag-live when shipped) */
.tag-soon, .tag-live {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 7px; border-radius: 4px; border: 1px solid var(--line); color: var(--ink-3);
  background: oklch(0.22 0.02 250);
}
.tag-live { color: var(--ok); border-color: oklch(0.78 0.14 155 / 0.35); background: oklch(0.78 0.14 155 / 0.08); }
.feature-grid.roadmap .feature h3 { color: var(--ink-2); }
.feature-grid.roadmap .feature:hover h3 { color: var(--ink); }

/* mobile nav */
.nav-toggle { display: none; }
@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 4px;
    width: 38px; height: 34px; padding: 0 9px; margin-left: 4px;
    background: transparent; border: 1px solid var(--line); border-radius: 8px; cursor: pointer;
  }
  .nav-toggle span { display: block; height: 1.5px; background: var(--ink-2); border-radius: 2px; }
  nav.top .nav-links { display: none; }
  nav.top .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; left: 0; right: 0; top: 100%;
    background: oklch(0.18 0.018 250 / 0.97); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line-soft); padding: 8px 24px 12px;
  }
  nav.top .nav-links.open a { padding: 12px 0; border-top: 1px solid var(--line-soft); font-size: 15px; }
  nav.top .nav-links.open a::after { display: none; }
  nav.top .row { position: relative; }
  .nav-cta .btn-ghost { display: none; }
  .det-grid { grid-template-columns: 1fr 1fr; }
  .final-stats { margin-top: 24px; }
}
@media (max-width: 560px) {
  .det-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-wrap: wrap; }
}
@media (max-width: 960px) {
  .report-mock { overflow: hidden; }
  .report-page-behind, .report-page-behind-2 { display: none; }
  .console-head .tabs { flex-wrap: wrap; }
  .console-head .status { white-space: nowrap; font-size: 10px; }
}
@media (max-width: 480px) {
  .console-head .status { display: none; }
}
