/* ============================================================
   Shiniops Infosec Pvt Ltd — shiniops.com
   Design language: editorial / Swiss — near-black canvas,
   one electric blue, hairlines, mono micro-labels.
   Fonts: Inter (display + body) · IBM Plex Mono (labels)
   ============================================================ */

:root {
  --bg: #0b0c10;
  --bg-raise: #0e1016;
  --panel: #10131b;
  --panel-hover: #141824;
  --line: rgba(235, 238, 248, 0.09);
  --line-strong: rgba(235, 238, 248, 0.18);

  --blue: #3565ff;
  --blue-bright: #6a92ff;
  --blue-soft: #a8bfff;

  --text: #ececf1;
  --text-2: #b4b9c9;
  --muted: #878da1;
  --faint: #5b6175;

  --font-display: "Inter", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, Menlo, monospace;

  --radius: 8px;
  --wrap: 1200px;
  --nav-h: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  counter-reset: sec;
}

/* film grain — keeps large dark surfaces from looking flat/digital */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 300; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.05;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: rgba(53, 101, 255, 0.45); color: #fff; }

/* ---- keyboard accessibility ---------------------------------- */

/* visible focus ring for keyboard users on a dark canvas */
:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 3px;
  border-radius: 3px;
}

/* skip link — off-screen until focused */
.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 400;
  transform: translateY(-200%);
  background: var(--blue); color: #fff;
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.04em;
  padding: 11px 18px; border-radius: var(--radius);
  transition: transform 0.18s ease;
}
.skip-link:focus { transform: translateY(0); }

main:focus { outline: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
}

/* accent words inside headings: color only — no decorative styling */
h1 em, h2 em, .grad-text, .shimmer {
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
  letter-spacing: inherit;
  color: var(--blue-bright);
  background: none; -webkit-background-clip: unset; background-clip: unset;
  animation: none;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 32px; }

/* ---------- scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: var(--blue); z-index: 200;
}

/* ---------- header / nav ---------- */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(11, 12, 16, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
header.scrolled { border-bottom-color: var(--line); }

.navbar {
  max-width: var(--wrap); margin: 0 auto; padding: 0 32px;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

.logo { display: flex; align-items: center; gap: 11px; min-width: 0; }
.logo-mark { width: 46px; height: 46px; flex: none; display: grid; place-items: center; }
.logo-mark img { width: auto; height: 100%; object-fit: contain; }
.logo-name {
  font-family: var(--font-display); font-weight: 600; font-size: 1.16rem;
  letter-spacing: -0.02em; line-height: 1.05; display: flex; flex-direction: column;
}
.logo-name small {
  font-family: var(--font-mono); font-weight: 500; font-size: 0.56rem;
  letter-spacing: 0.42em; text-transform: uppercase; color: var(--muted);
}

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-family: var(--font-mono); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.04em; color: var(--text-2);
  transition: color 0.2s; position: relative; padding: 6px 0;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; }
.nav-links a.active::before { content: "● "; color: var(--blue); font-size: 0.5rem; vertical-align: 2px; }
.nav-links a.nav-cta {
  color: #fff; background: var(--blue); padding: 10px 18px; border-radius: 4px;
  transition: background 0.2s;
}
.nav-links a.nav-cta:hover { background: #2a54e0; }
.nav-links a.nav-cta::before { display: none; }

.menu-btn {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; flex-direction: column; justify-content: center;
  align-items: center; gap: 5px; z-index: 120;
}
.menu-btn span {
  width: 22px; height: 1.5px; background: var(--text); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.menu-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-weight: 500; font-size: 0.82rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 15px 26px; border-radius: 4px; cursor: pointer; border: 0;
  transition: background 0.2s, border-color 0.2s, color 0.2s, gap 0.2s;
}
.btn svg { width: 15px; height: 15px; flex: none; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: #2a54e0; gap: 18px; }
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--text); gap: 18px; }

/* ---------- hero ---------- */
.hero {
  position: relative; padding: calc(var(--nav-h) + 96px) 0 96px;
  overflow: hidden; border-bottom: 1px solid var(--line);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(var(--line) 1px, transparent 1px) 0 0 / 100% 108px,
    linear-gradient(90deg, var(--line) 1px, transparent 1px) 0 0 / 108px 100%;
  -webkit-mask-image: radial-gradient(90% 70% at 70% 20%, #000 20%, transparent 90%);
  mask-image: radial-gradient(90% 70% at 70% 20%, #000 20%, transparent 90%);
  opacity: 0.5;
}
.hero .wrap {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 72px; align-items: end;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 34px;
}
.hero-badge .dot { width: 6px; height: 6px; background: var(--blue); border-radius: 0; }

.hero h1 {
  font-size: clamp(2.9rem, 6.4vw, 5rem);
  margin-bottom: 30px; max-width: 11em;
}
.hero-sub {
  font-size: 1.08rem; color: var(--text-2); max-width: 32em; margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }

.hero-points { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.hero-point {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted);
  padding: 13px 2px; border-bottom: 1px solid var(--line);
}
.hero-point svg { width: 15px; height: 15px; color: var(--blue-bright); flex: none; }

/* terminal — stripped to a plain ops log */
.hero-visual { position: relative; }
.hero-visual::before, .hero-visual::after { display: none; }

/* ---------- WebGL globe ---------------------------------------- */
.globe {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 560px;
  /* Reserve the box before WebGL initialises so the hero does not reflow. */
  min-height: 320px;
}
.globe-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}
/* Faint horizon ring: gives the dot cloud an edge to read against. */
.globe::after {
  content: "";
  position: absolute; left: 50%; top: 50%;
  width: 78%; aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  border: 1px solid var(--line);
  border-radius: 50%;
  pointer-events: none;
}
.globe-meta {
  position: absolute; left: 0; top: 4px;
  display: flex; flex-direction: column; gap: 3px;
  pointer-events: none;
}
.globe-label {
  font-family: var(--font-mono); font-size: 0.66rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted);
}
.globe-note {
  font-family: var(--font-mono); font-size: 0.6rem;
  letter-spacing: 0.06em; color: var(--faint);
}

/* Report card floats over the globe's lower edge, which is what gives the
   hero real depth rather than two panels sitting side by side. */
.hero-visual .report-card {
  position: relative;
  margin-top: -58px;
  margin-left: auto;
  width: min(100%, 356px);
  z-index: 2;
}

/* Backdrop variant: same renderer, sitting behind the copy on inner pages
   so the 3D carries through the site without repeating the hero composition. */
.globe.globe-bg {
  position: absolute;
  right: 2%; top: 50%;
  transform: translateY(-50%);
  /* Must fit inside the page hero's height or overflow:hidden crops the
     sphere into an unreadable band of dots. */
  width: min(410px, 42vw);
  height: min(410px, 42vw);
  max-height: none; min-height: 0;
  aspect-ratio: auto;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.globe.globe-bg::after { display: none; }
.page-hero .wrap { position: relative; z-index: 1; }

@media (max-width: 1020px) {
  .globe { max-height: 420px; }
  .hero-visual .report-card { margin-top: -96px; margin-left: 0; }
  .globe.globe-bg { opacity: 0.34; right: -18%; }
}
@media (max-width: 620px) {
  .globe { max-height: 320px; min-height: 260px; }
  .hero-visual .report-card { margin-top: -64px; width: 100%; }
  .globe-note { display: none; }
  .globe.globe-bg { opacity: 0.22; right: -34%; }
}
.terminal {
  background: var(--bg-raise);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden; font-family: var(--font-mono); font-size: 0.82rem;
}
.terminal-bar {
  display: flex; align-items: center;
  padding: 12px 20px; border-bottom: 1px solid var(--line);
}
.terminal-bar i { display: none; }
.terminal-bar b {
  font-weight: 500; font-size: 0.7rem; color: var(--faint);
  letter-spacing: 0.22em; text-transform: uppercase;
}
.terminal-bar::after {
  content: "LIVE"; margin-left: auto; font-size: 0.62rem; letter-spacing: 0.22em;
  color: var(--blue-bright); border: 1px solid var(--line-strong);
  padding: 2px 8px; border-radius: 3px;
}
.terminal-body { padding: 22px 20px 24px; display: grid; gap: 11px; }
.terminal-body .ln { color: var(--text-2); }
.terminal-body .cmd { color: #fff; }
.terminal-body .cmd::before { content: "$ "; color: var(--blue-bright); }
.terminal-body .ok::before { content: "▪ "; color: var(--blue-bright); }
.terminal-body .crit { color: #ff9d7a; }
.terminal-body .out { color: var(--muted); }
.terminal-body .cursor-line { color: var(--blue-soft); }
.terminal-body .cursor-line::after {
  content: "_"; margin-left: 1px; color: var(--blue-bright);
  animation: blink 1.1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* orbs retired */
.orb { display: none; }

/* assessment snapshot card */
.report-card {
  background: var(--bg-raise);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.rc-head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 24px; border-bottom: 1px solid var(--line);
}
.rc-head > span:first-child {
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  letter-spacing: -0.01em; color: var(--text);
}
.rc-badge {
  font-family: var(--font-mono); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
  border: 1px solid var(--line-strong); border-radius: 3px; padding: 4px 10px;
}
.rc-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}
.rc-stats > div { padding: 22px 24px; border-left: 1px solid var(--line); }
.rc-stats > div:first-child { border-left: 0; }
.rc-stats b {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: 1.7rem; letter-spacing: -0.03em; color: var(--text); margin-bottom: 2px;
}
.rc-stats small {
  font-family: var(--font-mono); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint);
}
.rc-sev { padding: 22px 24px; display: grid; gap: 14px; border-bottom: 1px solid var(--line); }
.rc-row { display: grid; grid-template-columns: 64px 1fr 24px; align-items: center; gap: 14px; }
.rc-row > span {
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}
.rc-row > em {
  font-style: normal; font-family: var(--font-display); font-weight: 600;
  font-size: 0.85rem; color: var(--text); text-align: right;
}
.rc-bar { height: 6px; background: rgba(235, 238, 248, 0.06); border-radius: 3px; overflow: hidden; }
.rc-bar i {
  display: block; height: 100%; border-radius: 3px;
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.1s var(--ease-out) 0.45s;
}
.report-card.in .rc-bar i { transform: scaleX(1); }
.sev-crit { background: #e5484d; }
.sev-high { background: #d98e3c; }
.sev-med { background: var(--blue); }
.rc-foot {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 24px;
  font-size: 0.85rem; color: var(--text-2);
}
.rc-foot svg { width: 16px; height: 16px; color: var(--blue-bright); flex: none; }

/* ---------- section shells ---------- */
section { padding: 110px 0; position: relative; }
section.tight { padding: 88px 0; }
.section-alt { background: var(--bg-raise); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.glow-divider::before { display: none; }

.section-head { max-width: 760px; margin-bottom: 64px; }
.section-head.center { margin-left: 0; margin-right: 0; text-align: left; } /* asymmetric on purpose */
.eyebrow {
  display: block;
  font-family: var(--font-mono); font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 22px;
}
.eyebrow::before {
  counter-increment: sec;
  content: "0" counter(sec) " — ";
  color: var(--blue-bright);
}
.eyebrow::after { display: none; }
.section-head h2 { font-size: clamp(2rem, 3.8vw, 3rem); margin-bottom: 20px; }
.section-head p { color: var(--muted); font-size: 1.02rem; max-width: 40em; }

/* ---------- pillar panels ---------- */
.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.pillar {
  position: relative; background: transparent;
  border: 0; border-left: 1px solid var(--line); border-radius: 0;
  padding: 44px 36px 38px; display: flex; flex-direction: column;
  transition: background 0.3s;
}
.pillar:first-child { border-left: 0; }
.pillar:hover { transform: none; background: var(--panel-hover); box-shadow: none; }
.pillar.featured { background: var(--panel); border-top: 2px solid var(--blue); margin-top: -1px; }
.pillar.featured:hover { background: var(--panel-hover); box-shadow: none; }
.pillar-flag {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--font-mono); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--blue-bright); background: none;
  border: 1px solid var(--line-strong); border-radius: 3px; padding: 4px 10px;
}
.pillar-icon {
  width: 44px; height: 44px; border-radius: 6px; display: grid; place-items: center;
  background: none; border: 1px solid var(--line-strong);
  color: var(--blue-bright); margin-bottom: 26px;
}
.pillar-icon svg { width: 21px; height: 21px; }
.pillar h3 { font-size: 1.35rem; margin-bottom: 12px; }
.pillar > p { color: var(--muted); font-size: 0.93rem; margin-bottom: 26px; }
.pillar ul { display: grid; gap: 0; margin-bottom: 30px; border-top: 1px solid var(--line); }
.pillar li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.88rem; color: var(--text-2);
  padding: 10px 0; border-bottom: 1px solid var(--line);
}
.pillar li::before {
  content: "▪"; color: var(--blue-bright); font-size: 0.7rem; margin-top: 2px;
  width: auto; height: auto; border-radius: 0; background: none; flex: none;
}
.pillar-link {
  margin-top: auto; display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-weight: 500; font-size: 0.78rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text); transition: gap 0.2s, color 0.2s;
}
.pillar-link:hover { gap: 16px; color: var(--blue-bright); }
.pillar-link svg { width: 15px; height: 15px; }

/* ---------- capability grid ---------- */
.cap-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
.cap {
  background: var(--bg-raise); border: 0; border-radius: 0;
  padding: 36px 32px; transition: background 0.25s;
}
.cap:hover { transform: none; background: var(--panel-hover); }
.cap-icon {
  width: 40px; height: 40px; border-radius: 6px; display: grid; place-items: center;
  background: none; border: 1px solid var(--line-strong);
  color: var(--blue-bright); margin-bottom: 22px;
}
.cap-icon svg { width: 19px; height: 19px; }
.cap h3 { font-size: 1.08rem; margin-bottom: 10px; }
.cap p { color: var(--muted); font-size: 0.88rem; }

/* ---------- stats band ---------- */
.stats-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg); }
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  text-align: left; padding: 0;
}
.stat { padding: 52px 36px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; }
.stat b {
  display: block; font-family: var(--font-display); font-size: 3rem; font-weight: 600;
  letter-spacing: -0.04em; color: var(--text);
  background: none; -webkit-background-clip: unset; background-clip: unset;
  margin-bottom: 8px;
}
.stat span {
  font-family: var(--font-mono); font-size: 0.72rem; color: var(--muted);
  font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
}

/* ---------- process ---------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; counter-reset: step; }
.step {
  position: relative; background: none; border: 0; border-top: 1px solid var(--line-strong);
  border-radius: 0; padding: 28px 0 0;
  transition: border-color 0.25s;
}
.step:hover { transform: none; border-top-color: var(--blue); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--font-display); font-weight: 500; font-size: 2.6rem;
  letter-spacing: -0.04em; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px var(--faint);
  display: block; margin-bottom: 18px;
  border: 0; border-radius: 0; padding: 0; background: none;
}
.step:hover::before { -webkit-text-stroke-color: var(--blue-bright); }
.step h3 { font-size: 1.12rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.88rem; }

/* ---------- industries ---------- */
.industries { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-start; }
.industry {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--line-strong); border-radius: 4px;
  padding: 11px 20px;
  font-family: var(--font-mono); font-size: 0.76rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-2);
  background: none; transition: border-color 0.2s, color 0.2s;
}
.industry:hover { border-color: var(--blue-bright); color: #fff; background: none; }
.industry svg { width: 14px; height: 14px; color: var(--blue-bright); }

/* ---------- CTA band ---------- */
.cta-band { padding: 0 0 110px; }
.cta-inner {
  position: relative; overflow: hidden; text-align: left;
  background: var(--blue);
  border: 0; border-radius: var(--radius);
  padding: 76px 64px; box-shadow: none;
  display: grid; grid-template-columns: 1.5fr auto; align-items: center; gap: 40px;
}
.cta-inner::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.14) 1px, transparent 1px) 0 0 / 100% 96px,
    linear-gradient(90deg, rgba(255,255,255,0.14) 1px, transparent 1px) 0 0 / 96px 100%;
  -webkit-mask-image: radial-gradient(80% 100% at 100% 0%, #000, transparent 75%);
  mask-image: radial-gradient(80% 100% at 100% 0%, #000, transparent 75%);
}
.cta-inner > * { position: relative; }
.cta-inner .orb { display: none; }
.cta-inner h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin-bottom: 14px; color: #fff; }
.cta-inner h2 em, .cta-inner .grad-text { color: #cfe0ff; }
.cta-inner p { color: rgba(255, 255, 255, 0.82); max-width: 34em; margin: 0; font-size: 1.02rem; }
.cta-inner .btn-primary { background: #fff; color: #12244f; }
.cta-inner .btn-primary:hover { background: #e8edff; }

/* ---------- page hero (inner pages) ---------- */
.page-hero {
  position: relative; padding: calc(var(--nav-h) + 92px) 0 72px;
  overflow: hidden; border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(var(--line) 1px, transparent 1px) 0 0 / 100% 108px,
    linear-gradient(90deg, var(--line) 1px, transparent 1px) 0 0 / 108px 100%;
  -webkit-mask-image: radial-gradient(70% 90% at 85% 10%, #000 10%, transparent 85%);
  mask-image: radial-gradient(70% 90% at 85% 10%, #000 10%, transparent 85%);
  opacity: 0.5;
  background-color: transparent;
}
.page-hero .wrap { position: relative; max-width: var(--wrap); }
.page-hero h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); margin-bottom: 22px; max-width: 14em; }
.page-hero p { color: var(--text-2); font-size: 1.08rem; max-width: 40em; }
.crumbs {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--faint); margin-bottom: 30px; font-weight: 500;
}
.crumbs a { color: var(--muted); transition: color 0.2s; }
.crumbs a:hover { color: var(--blue-bright); }
.crumbs span { margin: 0 10px; color: var(--faint); }

/* ---------- service detail blocks ---------- */
.svc-block {
  display: grid; grid-template-columns: 0.9fr 1.4fr; gap: 64px;
  padding: 76px 0; border-top: 1px solid var(--line);
}
.svc-block:first-of-type { border-top: 0; padding-top: 0; }
.svc-block h2 { font-size: 1.9rem; margin-bottom: 16px; }
.svc-block .svc-desc { color: var(--muted); font-size: 0.96rem; }
.svc-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px; align-content: start;
  background: var(--line); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  /* Without this the grid item stretches to the heading column's height and the
     leftover space shows the container's own hairline background as an empty band. */
  align-self: start;
}
.svc-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--bg); border: 0; border-radius: 0;
  padding: 20px 22px; transition: background 0.2s;
}
.svc-item:hover { background: var(--panel-hover); }
/* An odd number of items leaves the last one alone in its row next to an empty
   cell. Span it instead so the block always ends on a full edge. */
.svc-item:last-child:nth-child(odd) { grid-column: 1 / -1; }
.svc-item svg { width: 17px; height: 17px; color: var(--blue-bright); flex: none; margin-top: 3px; }
.svc-item b { display: block; font-family: var(--font-display); font-size: 0.97rem; font-weight: 500; letter-spacing: -0.01em; }
.svc-item span { font-size: 0.83rem; color: var(--muted); }

/* ---------- about ---------- */
.about-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 72px; align-items: start; }
.about-copy p { color: var(--text-2); margin-bottom: 18px; }
.about-copy p strong { color: #fff; font-weight: 600; }
.value-cards { display: grid; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.value-card {
  background: var(--bg-raise); border: 0; border-top: 1px solid var(--line); border-radius: 0;
  padding: 26px 28px; transition: background 0.25s;
}
.value-card:first-child { border-top: 0; }
.value-card:hover { border-color: var(--line); transform: none; background: var(--panel-hover); }
.value-card h3 { font-size: 1.02rem; margin-bottom: 8px; display: flex; align-items: center; gap: 11px; }
.value-card h3 svg { width: 17px; height: 17px; color: var(--blue-bright); }
.value-card p { color: var(--muted); font-size: 0.88rem; }

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.mv { background: var(--bg-raise); border: 0; border-radius: 0; padding: 48px 44px; position: relative; overflow: hidden; }
.mv::before {
  content: ""; position: absolute; top: 0; left: 44px; width: 44px; height: 2px;
  background: var(--blue); border-radius: 0;
}
.mv h3 { font-size: 1.35rem; margin-bottom: 14px; }
.mv p { color: var(--muted); font-size: 0.96rem; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.contact-cards { display: grid; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.contact-card {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--bg-raise); border: 0; border-top: 1px solid var(--line); border-radius: 0;
  padding: 24px 26px;
}
.contact-card:first-child { border-top: 0; }
.contact-card .cc-icon {
  width: 40px; height: 40px; flex: none; border-radius: 6px; display: grid; place-items: center;
  background: none; border: 1px solid var(--line-strong); color: var(--blue-bright);
}
.contact-card .cc-icon svg { width: 18px; height: 18px; }
.contact-card b { display: block; font-family: var(--font-display); font-size: 0.98rem; font-weight: 500; margin-bottom: 4px; }
.contact-card p, .contact-card a { color: var(--muted); font-size: 0.88rem; }
.contact-card a:hover { color: var(--blue-bright); }

.contact-form {
  background: var(--bg-raise); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 44px 42px;
}
.contact-form h2 { font-size: 1.5rem; margin-bottom: 8px; }
.contact-form > p { color: var(--muted); font-size: 0.9rem; margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block; font-family: var(--font-mono); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 9px;
}
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 0.95rem; color: var(--text);
  background: var(--bg); border: 1px solid var(--line-strong); border-radius: 4px;
  padding: 13px 15px; outline: none; transition: border-color 0.2s;
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 21px) 50%, calc(100% - 16px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: none; }
.form-note { font-size: 0.78rem; color: var(--faint); margin-top: 16px; }
.form-status { margin-top: 16px; font-family: var(--font-mono); font-size: 0.8rem; font-weight: 500; color: var(--blue-bright); min-height: 1.4em; }
.form-status.is-error { color: #ff8a8a; }
.form-status.is-ok { color: var(--blue-bright); }

/* inline validation */
.field-error {
  display: block; margin-top: 7px;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.02em;
  color: #ff8a8a;
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #ff8a8a; }

/* ---------- prose (privacy / terms) ---------- */
.prose { max-width: 780px; }
.prose h2 { font-size: 1.4rem; margin: 46px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--text-2); font-size: 0.96rem; margin-bottom: 14px; }
.prose ul { list-style: disc; padding-left: 24px; }
.prose ul li { margin-bottom: 8px; }
.prose .meta {
  font-family: var(--font-mono); color: var(--faint); font-size: 0.76rem;
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 38px;
}

/* ---------- 404 ---------- */
.notfound { min-height: 72vh; display: grid; place-items: center; text-align: center; padding: calc(var(--nav-h) + 60px) 0 80px; }
.notfound b {
  display: block; font-family: var(--font-display); font-weight: 500;
  font-size: clamp(6rem, 20vw, 12rem); line-height: 1; letter-spacing: -0.05em;
  color: transparent; -webkit-text-stroke: 1.5px var(--line-strong);
  background: none; -webkit-background-clip: unset; background-clip: unset;
  margin-bottom: 14px;
}
.notfound h1 { font-size: 1.7rem; margin-bottom: 14px; }
.notfound p { color: var(--muted); margin-bottom: 34px; }

/* ---------- threat stats (cited industry figures) ---------- */
.threat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; margin-bottom: 22px;
}
.threat {
  background: var(--bg-raise); padding: 46px 40px 40px;
  transition: background 0.25s;
}
.threat:hover { background: var(--panel-hover); }
.threat b {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.4rem, 4vw, 3.4rem); letter-spacing: -0.04em; line-height: 1;
  color: var(--text); margin-bottom: 14px;
}
.threat p { color: var(--text-2); font-size: 0.95rem; margin-bottom: 18px; }
.threat small {
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint);
}

/* standards / methodology trust bar */
.standards {
  display: flex; flex-wrap: wrap;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.standards span {
  flex: 1 1 auto; text-align: center; padding: 17px 22px;
  border-left: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
  white-space: nowrap; transition: color 0.2s;
}
.standards span:first-child { border-left: 0; }
.standards span:hover { color: var(--blue-bright); }

/* FAQ accordion (native details/summary) */
.faq { max-width: 860px; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: baseline; justify-content: space-between; gap: 24px;
  font-family: var(--font-display); font-weight: 500; font-size: 1.08rem;
  letter-spacing: -0.01em; color: var(--text);
  padding: 24px 2px; cursor: pointer; list-style: none;
  transition: color 0.2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: var(--font-mono); font-size: 1.1rem;
  color: var(--blue-bright); flex: none; transition: transform 0.3s var(--ease-out);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--blue-bright); }
.faq details p { color: var(--muted); font-size: 0.95rem; max-width: 48em; padding: 0 2px 26px; }

/* ---------- ticker ---------- */
.ticker-band {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg); overflow: hidden; padding: 15px 0; position: relative;
}
.ticker-band::before, .ticker-band::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 140px; z-index: 2; pointer-events: none;
}
.ticker-band::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.ticker-band::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.ticker { display: flex; width: max-content; animation: ticker 60s linear infinite; }
.ticker-band:hover .ticker { animation-play-state: paused; }
.ticker span {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 0 34px; white-space: nowrap;
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--faint);
}
.ticker span i { width: 5px; height: 5px; border-radius: 0; background: var(--blue); box-shadow: none; flex: none; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- spotlight (kept, whisper-quiet) ---------- */
.spot { position: relative; overflow: hidden; }
.spot::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  opacity: 0; transition: opacity 0.35s;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), rgba(106, 146, 255, 0.07), transparent 65%);
}
.spot:hover::after { opacity: 1; }

/* ---------- footer ---------- */
footer { background: var(--bg); border-top: 1px solid var(--line); padding: 80px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 60px;
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p { color: var(--muted); font-size: 0.88rem; max-width: 26em; margin-bottom: 20px; }
.footer-tag {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--blue-bright);
}
.footer-col h4 {
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--faint); margin-bottom: 22px;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col a, .footer-col li { color: var(--muted); font-size: 0.88rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--blue-bright); }
.footer-col .tbd { color: var(--faint); font-style: italic; }
.footer-bottom {
  border-top: 1px solid var(--line); padding: 26px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.04em; color: var(--faint);
}
.footer-bottom nav { display: flex; gap: 24px; }
.footer-bottom a { color: var(--faint); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--blue-bright); }

/* ============================================================
   Motion system — expo easing, masked type, staggered panels
   ============================================================ */
:root { --ease-out: cubic-bezier(0.16, 1, 0.3, 1); }

/* scroll entrance: soft rise + blur-to-sharp */
.js .reveal {
  opacity: 0; transform: translateY(28px); filter: blur(7px);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out),
    filter 0.9s var(--ease-out);
}
.js .reveal.in { opacity: 1; transform: none; filter: none; }
.js .reveal.d1 { transition-delay: 0.07s; }
.js .reveal.d2 { transition-delay: 0.14s; }
.js .reveal.d3 { transition-delay: 0.21s; }

/* masked word-by-word headline reveal (JS wraps words in .w > span) */
.js .split .w {
  display: inline-block; overflow: hidden; vertical-align: bottom;
  /* Inter's descenders reach ~0.21em; 0.08em was clipping the tail of
     'y' and 'g', which made "today" read as "todav". */
  padding-bottom: 0.32em; margin-bottom: -0.32em;
}
.js .split .w > span {
  display: inline-block; transform: translateY(118%);
  transition: transform 1.1s var(--ease-out);
  transition-delay: inherit;
}
.js .split.in .w > span { transform: none; }

/* terminal ops-log lines type on sequentially */
.js .terminal-body .ln {
  opacity: 0; transform: translateX(-10px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}
.js .terminal.in .terminal-body .ln { opacity: 1; transform: none; }
.js .terminal-bar::after { opacity: 0; transition: opacity 0.6s ease 1.6s; }
.js .terminal.in .terminal-bar::after { opacity: 1; }

/* underline sweep on plain nav links */
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--blue-bright); transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }

/* parallax layers (JS drives --py) */
.js .parallax { transform: translateY(calc(var(--py, 0) * 1px)); will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  /* Must clear filter too: .reveal applies blur(7px), and resetting only
     opacity and transform left reduced-motion users looking at blurred text. */
  .js .reveal { opacity: 1; transform: none; filter: none; }
  .js .split .w > span { transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 56px; align-items: start; }
  .terminal { max-width: 640px; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-left: 0; border-top: 1px solid var(--line); }
  .pillar:first-child { border-top: 0; }
  .pillar.featured { border-top: 2px solid var(--blue); margin-top: 0; }
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
  .stat { border-top: 1px solid var(--line); }
  .stat:nth-child(-n+2) { border-top: 0; }
  .svc-block { grid-template-columns: 1fr; gap: 34px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { grid-template-columns: 1fr; padding: 56px 44px; }
}

@media (max-width: 880px) {
  .menu-btn { display: flex; }
  .nav-links {
    position: fixed; inset: 0; z-index: 110;
    flex-direction: column; justify-content: center; gap: 28px;
    background: rgba(11, 12, 16, 0.97);
    -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; }
  .nav-links a { font-size: 1.05rem; }
}

@media (max-width: 640px) {
  body { font-size: 15.5px; }
  section { padding: 80px 0; }
  .wrap { padding: 0 22px; }
  .navbar { padding: 0 22px; }
  .hero { padding: calc(var(--nav-h) + 56px) 0 72px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .cap-grid, .process, .mv-grid, .svc-list, .form-row, .threat-grid { grid-template-columns: 1fr; }
  .standards { flex-direction: column; }
  .standards span { border-left: 0; border-top: 1px solid var(--line); }
  .standards span:first-child { border-top: 0; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 36px 24px; }
  .cta-inner { padding: 48px 26px; }
  .cta-band { padding-bottom: 80px; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form { padding: 32px 24px; }
}
