/* ==========================================================================
   Spotlight Security — clone stylesheet
   ========================================================================== */

:root {
  --bg:            #0d1030;
  --bg-2:          #0b0e28;
  --card:          #12163a;
  --card-2:        #161b45;
  --line:          rgba(255, 255, 255, 0.08);
  --line-strong:   rgba(255, 255, 255, 0.16);
  --text:          #ffffff;
  --muted:         rgba(255, 255, 255, 0.64);
  --muted-2:       rgba(255, 255, 255, 0.42);
  --orange:        #ff7130;
  --red:           #db332d;
  --pink:          #cf4066;
  /* status palette — mirrors the product dashboard (ui-repo tokens) */
  --crit:          #ff5f57;
  --warn:          #febc2e;
  --ok:            #28c840;
  --crit-bg:       rgba(255, 95, 87, 0.10);
  --warn-bg:       rgba(254, 188, 46, 0.10);
  --ok-bg:         rgba(40, 200, 64, 0.08);
  --green:         #28c840; /* alias kept for existing usages */
  --yellow:        #febc2e; /* alias kept for existing usages */
  /* dashboard surfaces — translucent cards on the dark base */
  --dash-card:       rgba(255, 255, 255, 0.04);
  --dash-card-hover: rgba(255, 255, 255, 0.06);
  --dash-radius:     8px;
  --grad:          linear-gradient(90deg, #ff7130 0%, #cf4066 100%);
  --grad-135:      linear-gradient(135deg, #db332d 0%, #ff7130 45%, #cf4066 100%);
  --grad-text:     linear-gradient(135deg, #db332d 0%, #ff7130 40%, #cf4066 100%);
  --mono:          "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  --sans:          "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --maxw:          1200px;
  --radius:        14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

p { color: var(--muted); margin: 0 0 1rem; }

h1, h2, h3, h4 { margin: 0; font-weight: 900; line-height: 1.04; letter-spacing: -0.01em; }

strong { color: var(--text); font-weight: 800; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: 96px 0; position: relative; }
.section--tight { padding: 64px 0; }

/* ---- Utility ------------------------------------------------------------ */
.eyebrow {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 20px;
  display: inline-block;
}
.eyebrow--badge {
  border: 1px solid rgba(255, 113, 48, 0.4);
  background: rgba(255, 113, 48, 0.08);
  border-radius: 4px;
  padding: 9px 16px;
}
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.muted { color: var(--muted); }
.center { text-align: center; }
.lead { font-size: 19px; line-height: 1.6; max-width: 640px; }
.center .lead { margin-left: auto; margin-right: auto; }

h2.display { font-size: clamp(30px, 4.4vw, 52px); }
h1.hero-title, h2.hero-title { font-size: clamp(44px, 7vw, 72px); line-height: 1.02; }
h3.display { font-size: clamp(26px, 3.6vw, 40px); }

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 14px 26px;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-transform: uppercase;
}
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 8px 30px rgba(207, 64, 102, 0.28); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(207, 64, 102, 0.42); }
.btn--ghost { background: transparent; color: #fff; border-color: var(--line-strong); }
.btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.04); }
.btn--disabled { background: rgba(255,255,255,0.07); color: var(--muted); cursor: default; box-shadow: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.center .btn-row { justify-content: center; }

/* ---- Header ------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.site-header.scrolled {
  background: rgba(9, 11, 34, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding: 12px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__logo img { height: 34px; width: auto; }
.nav__links { display: flex; gap: 38px; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.82);
  transition: color 0.15s ease; position: relative;
}
.nav__links a:hover { color: #fff; }
.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__toggle { display: none; background: none; border: 0; color: #fff; cursor: pointer; padding: 6px; }
.nav__toggle svg { width: 26px; height: 26px; }

/* ---- Footer ------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--line); padding: 64px 0 40px; background: var(--bg-2); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.site-footer img.footer-logo { height: 34px; margin-bottom: 20px; }
.site-footer .col h5 {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted-2); margin: 0 0 16px; font-weight: 500;
}
.site-footer .col ul { list-style: none; margin: 0; padding: 0; }
.site-footer .col li { margin-bottom: 11px; }
.site-footer .col a { color: var(--muted); font-size: 15px; }
.site-footer .col a:hover { color: #fff; }
.site-footer .about-blurb { color: var(--muted); font-size: 15px; max-width: 320px; }
.footer-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: var(--muted-2); font-size: 13px; font-family: var(--mono);
}

/* ---- Hero (home) -------------------------------------------------------- */
.hero { padding: 168px 0 90px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.hero-title { margin-bottom: 26px; }
.hero .lead { color: var(--muted); font-size: 20px; max-width: 520px; }

/* radial glow behind hero */
.glow {
  position: absolute; pointer-events: none; border-radius: 50%;
  filter: blur(90px); opacity: 0.5; z-index: 0;
}
.glow--hero { width: 620px; height: 620px; right: -120px; top: 40px;
  background: radial-gradient(circle, rgba(207,64,102,0.34), transparent 68%); }
.hero-grid > * { position: relative; z-index: 1; }

/* ---- Terminal card ------------------------------------------------------ */
.terminal {
  background: #0a0c22;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  font-family: var(--mono);
}
.terminal__bar {
  display: flex; align-items: center; gap: 8px;
  padding: 13px 16px; border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}
.terminal__dots { display: flex; gap: 7px; }
.terminal__dots i { width: 12px; height: 12px; border-radius: 50%; display: block; }
.dot-r { background: var(--crit); } .dot-y { background: var(--warn); } .dot-g { background: var(--ok); }
.terminal__title { font-size: 13px; color: var(--muted); margin-left: 10px; }
.terminal__body { padding: 20px 22px; font-size: 14.5px; line-height: 1.75; }
.log-line { color: var(--muted); white-space: pre-wrap; }
.log-line.warn { color: var(--yellow); }
.log-line.crit { color: var(--crit); }
.log-line.ok { color: var(--muted); }
.term-sep { border: 0; border-top: 1px solid var(--line); margin: 16px 0; }
.badge-chip {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  color: var(--orange); border: 1px solid rgba(255,113,48,0.4);
  background: rgba(255,113,48,0.08); padding: 5px 12px; border-radius: 5px;
  font-family: var(--mono); text-transform: none;
}
.badge-chip.green { color: var(--green); border-color: rgba(52,211,153,0.4); background: rgba(52,211,153,0.08); }
.term-label { color: var(--muted-2); font-size: 12px; letter-spacing: 0.05em; }
.term-code { color: var(--green); font-size: 13.5px; }
.term-strong { color: #fff; }
.risk { color: var(--pink); }
.cursor { display:inline-block; width:8px; height:15px; background:var(--orange); margin-left:2px; vertical-align:-2px; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* ---- Stat grid ---------------------------------------------------------- */
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.stat-grid--2 { grid-template-columns: repeat(2, 1fr); }
.stat-grid--4 { grid-template-columns: repeat(4, 1fr); }
.stat-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; transition: border-color 0.2s ease, transform 0.2s ease;
}
.stat-card:hover { border-color: rgba(255,113,48,0.4); transform: translateY(-3px); }
.stat-card .num {
  font-size: 44px; font-weight: 900; line-height: 1; margin-bottom: 12px;
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; letter-spacing: -0.02em;
}
.stat-card .lab { font-weight: 700; font-size: 17px; margin-bottom: 8px; }
.stat-card .desc { color: var(--muted); font-size: 14.5px; margin: 0; line-height: 1.5; }

/* ---- Section head ------------------------------------------------------- */
.sec-head { max-width: 760px; margin-bottom: 8px; }
.sec-head.center { margin-left: auto; margin-right: auto; }
.sec-head h2, .sec-head h3 { margin-bottom: 20px; }

/* ---- Compare (why spotlight) -------------------------------------------- */
.compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: stretch; margin-top: 48px; }
.compare__vs {
  align-self: center; font-family: var(--mono); color: var(--muted-2);
  font-size: 15px; font-weight: 700;
}
.compare-card { border-radius: var(--radius); padding: 34px 32px; border: 1px solid var(--line); }
.compare-card.bad { background: var(--card); }
.compare-card.good { background: linear-gradient(160deg, rgba(255,113,48,0.09), rgba(207,64,102,0.06)); border-color: rgba(255,113,48,0.3); }
.compare-card h4 { font-size: 14px; font-family: var(--mono); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 18px; }
.compare-card .quote { font-size: 21px; font-weight: 800; line-height: 1.3; margin-bottom: 16px; }
.compare-card.good .quote { color: #fff; }
.compare-card p { font-size: 15px; }
.compare-card .status { margin-top: 22px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; }
.compare-card.bad .status { color: var(--muted-2); }
.compare-card.good .status { color: var(--green); }
.big-line { font-size: clamp(28px, 4vw, 46px); font-weight: 900; line-height: 1.08; margin-top: 70px; max-width: 900px; }

/* ---- Steps (4 stage) ---------------------------------------------------- */
.stage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 52px; }
.stage {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; background: var(--card);
  transition: border-color 0.2s, transform 0.2s;
}
.stage:hover { border-color: rgba(255,113,48,0.4); transform: translateY(-3px); }
.stage .n { font-family: var(--mono); font-size: 14px; color: var(--orange); margin-bottom: 18px; letter-spacing: 0.1em; }
.stage h3 { font-size: 22px; margin-bottom: 12px; }
.stage p { font-size: 14.5px; margin: 0; }

/* ---- Industry cards (home preview) ------------------------------------- */
.ind-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 48px; }
.ind-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; background: var(--card); }
.ind-card:hover { border-color: rgba(255,113,48,0.35); }
.ind-card .ico { font-size: 30px; margin-bottom: 16px; }
.ind-card h4 { font-size: 21px; margin-bottom: 12px; }
.ind-card p { font-size: 15px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tag {
  font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.04em;
  border: 1px solid var(--line-strong); border-radius: 20px; padding: 5px 12px;
}

/* ---- Testimonial -------------------------------------------------------- */
.testimonial { max-width: 900px; margin: 72px auto 0; text-align: center; }
.testimonial blockquote { font-size: clamp(22px, 3vw, 30px); font-weight: 800; line-height: 1.32; margin: 0 0 22px; }
.testimonial .who { font-family: var(--mono); font-size: 14px; color: #fff; }
.testimonial .role { font-family: var(--mono); font-size: 14px; color: var(--orange); }

/* ---- Pricing ------------------------------------------------------------ */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; align-items: stretch; }
.price-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; background: var(--card); display: flex; flex-direction: column; }
.price-card.featured { border-color: rgba(255,113,48,0.4); background: linear-gradient(170deg, rgba(255,113,48,0.08), rgba(207,64,102,0.04)); }
.price-card h4 { font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.1em; font-size: 14px; font-weight: 600; color: var(--orange); margin-bottom: 18px; }
.price-card .price { font-size: 44px; font-weight: 900; line-height: 1; }
.price-card .price span { font-size: 16px; font-weight: 600; color: var(--muted); }
.price-card .sub { color: var(--muted); font-size: 14px; margin: 12px 0 22px; }
.price-card ul { list-style: none; margin: 0 0 26px; padding: 0; flex: 1; }
.price-card li { display: flex; gap: 11px; align-items: flex-start; color: var(--muted); font-size: 14.5px; margin-bottom: 13px; line-height: 1.4; }
.price-card li svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 4px; fill: var(--orange); }
.price-card .btn { width: 100%; justify-content: center; }

/* ---- CTA band ----------------------------------------------------------- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(30px, 4.4vw, 52px); margin-bottom: 20px; }

/* ---- Platform: step layout --------------------------------------------- */
.steps-nav {
  position: sticky; top: 78px; z-index: 40; background: rgba(9,11,34,0.8);
  backdrop-filter: blur(10px); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 14px 0; margin-bottom: 20px;
}
.steps-nav ul { display: flex; gap: 8px; list-style: none; margin: 0; padding: 0; overflow-x: auto; }
.steps-nav a {
  display: flex; align-items: center; gap: 8px; white-space: nowrap; font-size: 13px;
  font-family: var(--mono); color: var(--muted); padding: 8px 14px; border-radius: 6px;
  border: 1px solid transparent;
}
.steps-nav a .sn { color: var(--orange); }
.steps-nav a:hover, .steps-nav a.active { color: #fff; border-color: var(--line-strong); background: rgba(255,255,255,0.03); }

.step { padding: 70px 0; border-bottom: 1px solid var(--line); }
.step-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.step .kicker { font-family: var(--mono); color: var(--orange); font-size: 13px; letter-spacing: 0.12em; margin-bottom: 10px; }
.step .subkick { font-family: var(--mono); color: var(--muted-2); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 22px; }
.step h2 { font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 20px; }
.step .meta { font-family: var(--mono); font-size: 13px; color: var(--muted-2); margin-top: 26px; line-height: 1.7; }
.step .big-num { position: absolute; font-size: 120px; font-weight: 900; color: rgba(255,255,255,0.04); line-height: 1; }

/* device grid (step 1) */
.device-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.device {
  border: 1px solid var(--line); border-radius: 10px; padding: 16px 10px; text-align: center;
  background: var(--card); font-family: var(--mono);
}
.device.known { border-color: rgba(52,211,153,0.35); }
.device.new { border-color: rgba(255,113,48,0.5); box-shadow: 0 0 0 1px rgba(255,113,48,0.15); }
.device.scan { opacity: 0.5; }
.device .ico { font-size: 22px; margin-bottom: 8px; }
.device .nm { font-size: 12px; color: var(--muted); }
.legend { display: flex; gap: 20px; margin-top: 20px; font-family: var(--mono); font-size: 12px; color: var(--muted); flex-wrap: wrap; }
.legend i { width: 9px; height: 9px; border-radius: 50%; display: inline-block; margin-right: 7px; }

/* card panel used across steps */
.panel { background: var(--dash-card); border: 1px solid var(--line); border-radius: var(--dash-radius); padding: 20px 22px; font-family: var(--mono); }
.panel--log { background: rgba(0, 0, 0, 0.22); }
.panel h5 { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); font-weight: 500; margin: 0 0 16px; }
.agent-row { display: flex; align-items: center; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 13.5px; }
.agent-row:last-child { border-bottom: 0; }
.agent-row .live { color: var(--green); font-size: 12px; }
.agent-row .deploy { color: var(--yellow); font-size: 12px; }
.scan-row { display: flex; justify-content: space-between; font-size: 13px; padding: 8px 0; color: var(--muted); }
.pill {
  display: inline-flex; align-items: center; gap: 5px; font-size: 11px; padding: 3px 10px;
  border-radius: 4px; font-family: var(--mono); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
}
.pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; box-shadow: 0 0 6px currentColor; flex-shrink: 0; }
.pill.clear { color: var(--ok);   background: var(--ok-bg); }
.pill.warn  { color: var(--warn); background: var(--warn-bg); }
.pill.crit  { color: var(--crit); background: var(--crit-bg); }
.panel .kv { display: flex; justify-content: space-between; padding: 10px 0; font-size: 13px; }
.panel .kv b { color: #fff; font-weight: 700; }

/* reporting card */
.report-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin: 18px 0; }
.report-stats .rs { text-align: center; background: var(--dash-card); border: 1px solid var(--line); border-radius: var(--dash-radius); padding: 16px 8px; }
.report-stats .rs b { display: block; font-size: 28px; font-weight: 800; color: var(--orange); font-family: var(--mono); line-height: 1; margin-bottom: 6px; }
.report-stats .rs span { font-size: 10.5px; color: var(--muted-2); font-family: var(--mono); letter-spacing: 0.06em; text-transform: uppercase; }
.posture-bar { height: 8px; border-radius: 6px; background: rgba(255,255,255,0.08); overflow: hidden; margin: 8px 0 18px; }
.posture-bar i { display: block; height: 100%; background: var(--grad); width: 0; transition: width 1.4s ease; }
.report-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.report-tabs span { font-size: 11px; border: 1px solid var(--line); border-radius: 6px; padding: 6px 10px; color: var(--muted); }

/* ---- Industries page tabs ---------------------------------------------- */
.tabs { display: flex; flex-wrap: wrap; gap: 10px; margin: 40px 0 48px; }
.tab-btn {
  font-family: var(--sans); font-weight: 600; font-size: 15px; padding: 12px 20px;
  border-radius: 8px; border: 1px solid var(--line-strong); background: var(--card);
  color: var(--muted); cursor: pointer; transition: all 0.18s ease;
}
.tab-btn:hover { color: #fff; }
.tab-btn.active { background: var(--grad); color: #fff; border-color: transparent; }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fade 0.4s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.ind-hero { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: start; }
.ind-hero h2 { font-size: clamp(28px, 3.8vw, 44px); margin-bottom: 22px; }

/* challenges / help */
.challenge-grid, .help-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.help-grid { grid-template-columns: repeat(2, 1fr); }
.challenge, .help-item { border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; background: var(--card); }
.challenge .ico { font-size: 28px; margin-bottom: 16px; }
.challenge h3, .help-item h3 { font-size: 20px; margin-bottom: 12px; }
.challenge p, .help-item p { font-size: 15px; margin: 0; }
.help-item .k { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--orange); margin-bottom: 14px; }

.compat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.compat h3 { font-size: 18px; margin-bottom: 18px; }
.compat .chips { display: flex; flex-wrap: wrap; gap: 8px; }
.compat .chips span { font-family: var(--mono); font-size: 12px; color: var(--muted); border: 1px solid var(--line-strong); border-radius: 6px; padding: 6px 12px; }

/* ---- About page --------------------------------------------------------- */
.about-hero { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.threat-panel { background: var(--dash-card); border: 1px solid var(--line); border-radius: var(--dash-radius); padding: 28px; font-family: var(--mono); }
.threat-panel .big { font-size: 46px; font-weight: 900; font-family: var(--sans); background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.threat-panel .cap { font-size: 12px; color: var(--muted-2); letter-spacing: 0.05em; margin-bottom: 20px; }
.threat-kv { display: flex; justify-content: space-between; padding: 13px 0; border-top: 1px solid var(--line); font-size: 13px; }
.threat-kv b { color: #fff; }
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--red); display: inline-block; margin-right: 8px; box-shadow: 0 0 0 rgba(219,51,45,0.6); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(219,51,45,0.5);} 70%{box-shadow:0 0 0 10px rgba(219,51,45,0);} 100%{box-shadow:0 0 0 0 rgba(219,51,45,0);} }

.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.principle { border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; background: var(--card); }
.principle .n { font-family: var(--mono); font-size: 32px; font-weight: 900; color: rgba(255,113,48,0.6); margin-bottom: 16px; }
.principle h3 { font-size: 21px; margin-bottom: 12px; }
.principle p { font-size: 15px; margin: 0; }

.cred-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.cred { border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; background: var(--card); }
.cred .ico { font-size: 26px; margin-bottom: 14px; }
.cred h3 { font-size: 17px; margin-bottom: 10px; line-height: 1.3; }
.cred p { font-size: 14px; margin: 0; }

/* ---- Partners / recognition marquee ------------------------------------- */
.partners { padding: 54px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.partners__eyebrow {
  font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted-2); text-align: center; margin: 0;
}
.marquee {
  position: relative; overflow: hidden; margin-top: 30px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee__track { display: flex; align-items: center; gap: 60px; width: max-content; animation: marquee 40s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.partner {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  white-space: nowrap; opacity: 0.72; transition: opacity 0.2s ease;
}
.partner:hover { opacity: 1; }
.partner__logo {
  height: 27px; width: auto; max-width: 168px; object-fit: contain; display: block;
  /* normalize all brand marks to a cohesive white on the dark theme */
  filter: brightness(0) invert(1);
}
.partner__tag {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--muted-2);
}
@media (prefers-reduced-motion: reduce) {
  .marquee { -webkit-mask-image: none; mask-image: none; }
  .marquee__track { animation: none; width: auto; flex-wrap: wrap; justify-content: center; row-gap: 28px; }
  .partner.is-dupe { display: none; }
}
@media (max-width: 620px) {
  .marquee__track { gap: 40px; }
  .partner__name b { font-size: 17px; }
}

/* ==========================================================================
   Dashboard mockup kit — mirrors the product UI (ui-repo) design language:
   translucent cards, 8px radius, JetBrains Mono values, severity badges with
   glowing status dots, gradient action button, app top-bar chrome.
   ========================================================================== */
.dash {
  background: var(--dash-card);
  border: 1px solid var(--line);
  border-radius: var(--dash-radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  font-family: var(--sans);
}
.dash__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 18px; border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}
.dash__brand { display: flex; align-items: center; gap: 11px; min-width: 0; }
.dash__logo { width: 22px; height: 22px; border-radius: 5px; background: var(--grad-135); flex: none; }
.dash__title { font-weight: 800; font-size: 14.5px; line-height: 1.1; color: var(--text); }
.dash__title span { display: block; font-weight: 500; font-size: 11px; color: var(--muted-2); margin-top: 2px; }
.dash__meta { display: flex; align-items: center; gap: 14px; flex: none; }
.dash__clock { font-family: var(--mono); font-size: 12px; color: rgba(255,255,255,0.35); white-space: nowrap; }
.dash__chip {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; color: var(--ok);
  background: var(--ok-bg); border-radius: 4px; padding: 4px 9px; display: inline-flex; align-items: center; gap: 6px;
}
.dash__body { padding: 16px; display: flex; flex-direction: column; gap: 14px; }

/* stat cards */
.dash-statgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.dash-stat {
  background: var(--dash-card); border: 1px solid var(--line); border-radius: var(--dash-radius);
  padding: 14px 15px; display: flex; flex-direction: column; gap: 7px;
}
.dash-stat .lab { font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted-2); }
.dash-stat .val { font-family: var(--mono); font-size: 25px; font-weight: 800; line-height: 1; color: var(--text); }
.dash-stat .val.accent { color: var(--orange); }
.dash-stat .val.crit { color: var(--crit); }
.dash-stat .val.warn { color: var(--warn); }
.dash-stat .sub { font-size: 10.5px; color: rgba(255,255,255,0.35); }

/* generic dashboard card */
.dash-card { background: var(--dash-card); border: 1px solid var(--line); border-radius: var(--dash-radius); padding: 16px; }
.dash-card__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; gap: 10px; }
.dash-card__head h5 { font-size: 13px; font-weight: 700; color: var(--text); margin: 0; font-family: var(--sans); }
.dash-card__head .link { font-family: var(--mono); font-size: 11px; color: var(--orange); }

/* severity badge (product Badge component) */
.badge {
  display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px; border-radius: 4px;
  font-family: var(--mono); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
}
.badge--crit   { color: var(--crit); background: var(--crit-bg); }
.badge--warn   { color: var(--warn); background: var(--warn-bg); }
.badge--ok     { color: var(--ok);   background: var(--ok-bg); }
.badge--accent { color: var(--orange); background: rgba(255, 113, 48, 0.12); }

/* glowing status dot (product StatusDot) */
.sdot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 8px currentColor; flex-shrink: 0; }
.badge .sdot { width: 6px; height: 6px; }
.sdot--crit { color: var(--crit); } .sdot--warn { color: var(--warn); } .sdot--ok { color: var(--ok); }

/* threat / device feed rows */
.dash-feed { display: flex; flex-direction: column; }
.feed-row { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-top: 1px solid var(--line); }
.feed-row:first-child { border-top: 0; }
.feed-row .dev { font-family: var(--mono); font-size: 13px; color: var(--text); white-space: nowrap; }
.feed-row .desc { font-size: 12.5px; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.feed-row .grow { margin-left: auto; }

/* gradient action button (product ActionBtn / CTA) */
.dash-action {
  display: inline-flex; align-items: center; gap: 6px; background: var(--grad-135); color: #fff;
  font-family: var(--sans); font-weight: 700; font-size: 12px; letter-spacing: 0.07em; text-transform: uppercase;
  border: none; border-radius: 4px; padding: 8px 16px; cursor: pointer; box-shadow: 0 2px 12px rgba(219,51,45,0.3);
}

/* left-accent alert banner (product error/threat banner) */
.dash-alert {
  background: var(--crit-bg); border: 1px solid rgba(255,95,87,0.33); border-left: 4px solid var(--crit);
  border-radius: 6px; padding: 13px 16px;
}
.dash-alert .t { font-size: 13px; font-weight: 700; color: var(--crit); }
.dash-alert .d { font-size: 12.5px; color: var(--muted); margin-top: 4px; }

@media (max-width: 620px) {
  .dash-statgrid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Reveal animation --------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---- Responsive --------------------------------------------------------- */
@media (max-width: 980px) {
  .hero-grid, .step-grid, .ind-hero, .about-hero { grid-template-columns: 1fr; }
  .stat-grid, .stat-grid--4, .stage-grid, .price-grid, .challenge-grid,
  .principle-grid, .cred-grid, .compat-grid, .report-stats { grid-template-columns: 1fr 1fr; }
  .ind-grid, .help-grid { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .compare__vs { justify-self: center; }
  .device-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 140px 0 70px; }
  .nav__links, .nav__cta .btn { display: none; }
  .nav__toggle { display: block; }
  .nav.open .nav__links {
    display: flex; position: absolute; top: 66px; left: 0; right: 0; flex-direction: column;
    background: rgba(9,11,34,0.98); padding: 20px 24px; gap: 18px; border-bottom: 1px solid var(--line);
  }
}
@media (max-width: 620px) {
  body { font-size: 17px; }
  .section { padding: 64px 0; }
  .stat-grid, .stat-grid--4, .stage-grid, .price-grid, .challenge-grid,
  .principle-grid, .cred-grid, .compat-grid { grid-template-columns: 1fr; }
  .device-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .report-stats { grid-template-columns: repeat(3,1fr); }
}
