/* Self-hosted fonts (latin subset). See vendor/fonts/. Google Fonts CDN no longer hit at runtime. */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 600 900;
  font-display: swap;
  src: url('/vendor/fonts/nunito-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/vendor/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/vendor/fonts/jetbrains-mono-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

* { box-sizing: border-box; }

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

body {
  font-family: var(--el-font-body);
  color: var(--el-fg-1);
  background: var(--el-bg-1);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

#root { min-height: 100vh; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: 1360px; margin: 0 auto; padding: 0 32px; }

a { cursor: pointer; }
button { font-family: inherit; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.annc {
  background: var(--el-ink-1000);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 10px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.annc .pill {
  background: var(--el-cyan-500);
  color: var(--el-navy-900);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
}
.annc .arrow {
  color: var(--el-cyan-400);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 120ms;
}
.annc:hover .arrow { border-bottom-color: var(--el-cyan-400); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--el-border-1);
  height: 72px;
  display: flex;
  align-items: center;
  transition: box-shadow 200ms;
}
.nav.scrolled { box-shadow: 0 6px 20px rgba(5,8,28,0.05); }
.nav-inner { display: flex; align-items: center; width: 100%; gap: 40px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 30px; display: block; }
.nav-links { display: flex; gap: 4px; margin-left: 8px; }
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--el-fg-2);
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 120ms;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  background: transparent;
}
.nav-link:hover { color: var(--el-navy-800); background: var(--el-bg-2); }
.nav-link.active { color: var(--el-navy-800); background: var(--el-navy-100); }
.nav-link svg { width: 14px; height: 14px; opacity: 0.6; }
.nav-link.disabled,
.nav-drawer-link.disabled { color: var(--el-fg-3, #9aa3b2); cursor: not-allowed; opacity: 0.7; }
.nav-link.disabled:hover,
.nav-drawer-link.disabled:hover { background: transparent; color: var(--el-fg-3, #9aa3b2); }
.nav-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--el-cyan-700, #0e7c93);
  background: var(--el-cyan-100, #e6f6fa);
  border: 1px solid var(--el-cyan-300, #a6e0ec);
  padding: 2px 6px;
  border-radius: 999px;
  margin-left: 6px;
  line-height: 1;
}
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }

/* dropdown */
.nav-mega {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  background: #fff;
  border: 1px solid var(--el-border-1);
  border-radius: 18px;
  box-shadow: var(--el-shadow-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
  width: 760px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: all 180ms var(--el-ease-out);
}
.nav-mega::before {
  content: "";
  position: absolute;
  top: -10px; left: 0; right: 0;
  height: 10px;
}
.nav-mega.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-mega-feature {
  background: linear-gradient(160deg, var(--el-navy-800), var(--el-navy-900));
  border-radius: 12px;
  padding: 22px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.nav-mega-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.08) 1px, transparent 0);
  background-size: 18px 18px;
  pointer-events: none;
}
.nav-mega-feature .eyebrow { color: var(--el-cyan-400); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.nav-mega-feature h4 { font-family: var(--el-font-display); font-weight: 800; font-size: 18px; margin: 8px 0 6px; color: #fff; line-height: 1.2; position: relative; z-index: 1; }
.nav-mega-feature p { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.5; position: relative; z-index: 1; margin: 0; }
.nav-mega-feature .arr { position: relative; z-index: 1; margin-top: 14px; font-size: 13px; color: var(--el-cyan-300); font-weight: 600; }
.nav-mega-col h6 { font-family: var(--el-font-body); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--el-fg-3); margin: 0 0 14px; }
.nav-mega-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.nav-mega-col a {
  display: flex; flex-direction: column; gap: 2px;
  padding: 10px 12px; border-radius: 8px;
  color: var(--el-fg-1); border: none;
  cursor: pointer;
  transition: background 120ms;
}
.nav-mega-col a:hover { background: var(--el-bg-2); }
.nav-mega-col a strong { font-size: 14px; font-weight: 600; color: var(--el-fg-1); }
.nav-mega-col a span { font-size: 12px; color: var(--el-fg-3); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 140ms var(--el-ease-standard);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn.primary { background: var(--el-navy-800); color: #fff; box-shadow: var(--el-shadow-brand); }
.btn.primary:hover { background: var(--el-navy-900); box-shadow: 0 14px 36px rgba(1,22,137,0.32); }
.btn.cyan { background: var(--el-cyan-500); color: var(--el-navy-900); box-shadow: 0 8px 20px rgba(64,188,216,0.32); }
.btn.cyan:hover { background: var(--el-cyan-400); }
.btn.secondary { background: #fff; color: var(--el-navy-800); border-color: var(--el-ink-200); }
.btn.secondary:hover { border-color: var(--el-navy-800); background: var(--el-navy-050); }
.btn.ghost { background: transparent; color: var(--el-fg-1); border-color: transparent; }
.btn.ghost:hover { background: var(--el-bg-2); }
.btn.ghost-dark { background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(255,255,255,0.18); }
.btn.ghost-dark:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); }
.btn.lg { padding: 15px 28px; font-size: 16px; }
.btn.sm { padding: 8px 14px; font-size: 13px; }
.btn svg { width: 16px; height: 16px; }

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--el-cyan-700);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow.on-dark { color: var(--el-cyan-400); }
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--el-cyan-500);
  box-shadow: 0 0 0 4px rgba(64,188,216,0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(64,188,216,0.18); }
  50% { box-shadow: 0 0 0 8px rgba(64,188,216,0.05); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 90% 70% at 75% 25%, rgba(42,168,200,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 80% 80% at 20% 80%, rgba(30,62,194,0.25) 0%, transparent 60%),
    linear-gradient(180deg, #0a1230 0%, #0d1640 50%, #0a1230 100%);
  color: #fff;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 0%, transparent 80%);
}
.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(64,188,216,0.16) 0%, transparent 65%);
  top: -150px; right: -100px;
  filter: blur(40px);
}
.hero-glow-2 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,87,214,0.18) 0%, transparent 65%);
  bottom: -200px; left: -100px;
  filter: blur(50px);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badges {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 6px 6px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  margin-bottom: 28px;
}
.hero-badges .badge-pill {
  background: var(--el-cyan-500);
  color: var(--el-navy-900);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}
.hero h1 {
  font-family: var(--el-font-display);
  font-size: clamp(40px, 7vw, 78px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  color: #fff;
  text-wrap: balance;
}
.hero h1 em { font-style: normal; color: var(--el-cyan-400); position: relative; }
.hero h1 .underline-cyan {
  position: relative;
  display: inline-block;
}
.hero h1 .underline-cyan::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 6px;
  height: 8px;
  background: var(--el-cyan-500);
  opacity: 0.35;
  z-index: -1;
  border-radius: 2px;
}
.hero p.lead {
  font-size: 19px;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  max-width: 560px;
  margin: 0 0 36px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-cta .meta {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-trust {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-trust-label { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 18px; }
.hero-trust-row { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.7); font-size: 13px; }
.hero-trust-item svg { width: 18px; height: 18px; color: var(--el-cyan-400); flex-shrink: 0; }

/* Hero terminal — the centerpiece visual */
.hero-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  perspective: 1200px;
}
.hero-stage > * { transform-style: preserve-3d; }
.term {
  background: linear-gradient(180deg, rgba(8,14,52,0.92), rgba(5,9,35,0.95));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  font-family: var(--el-font-mono);
  font-size: 12.5px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04) inset;
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.term-head {
  display: flex; align-items: center; gap: 7px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}
.term-head .dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.term-head .dot.r { background: #ff5f57; }
.term-head .dot.y { background: #febc2e; }
.term-head .dot.g { background: #28c840; }
.term-head .title {
  margin-left: 12px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}
.term-head .badge {
  margin-left: auto;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(214, 59, 85, 0.18);
  color: #ff8a9c;
  border: 1px solid rgba(214,59,85,0.3);
}
.term-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}
.term-line { display: flex; align-items: baseline; gap: 12px; }
.term-key { color: rgba(255,255,255,0.45); width: 110px; flex-shrink: 0; }
.term-val { color: var(--el-cyan-300); }
.term-str { color: var(--el-cyan-400); }
.term-num { color: #ffc870; }
.term-crit { color: #ff8a9c; font-weight: 700; }
.term-ok { color: #69e2a4; }
.term-comment { color: rgba(255,255,255,0.35); font-style: italic; }

.term-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 8px 0; }

.term-poc {
  background: rgba(214,59,85,0.08);
  border: 1px solid rgba(214,59,85,0.2);
  border-radius: 8px;
  padding: 10px 12px;
  margin-top: 8px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 10px;
}
.term-poc .play {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--el-cyan-500);
  color: var(--el-navy-900);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.term-poc .play svg { width: 10px; height: 10px; }

/* Findings card stack — floating on the side */
.float-card {
  position: absolute;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--el-fg-1);
  z-index: 3;
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.float-card.fc-1 { top: -22px; left: -34px; animation-delay: 0s; }
.float-card.fc-2 { bottom: -22px; right: -28px; animation-delay: 1.5s; }
.float-card .icon-wrap {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.float-card .icon-wrap.danger { background: var(--el-danger-100); color: var(--el-danger-600); }
.float-card .icon-wrap.success { background: var(--el-success-100); color: var(--el-success-600); }
.float-card .icon-wrap svg { width: 18px; height: 18px; }
.float-card strong { font-weight: 700; display: block; line-height: 1.2; font-size: 13px; }
.float-card span { font-size: 11.5px; color: var(--el-fg-3); }

/* ============================================================
   LOGO STRIP
   ============================================================ */
.logos {
  background: #fff;
  border-top: 1px solid var(--el-border-1);
  border-bottom: 1px solid var(--el-border-1);
  padding: 32px 0;
}
.logos-inner { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.logos-label { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--el-fg-3); white-space: nowrap; }
.logos-row { display: flex; gap: 56px; align-items: center; flex: 1; flex-wrap: wrap; justify-content: space-around; }
.logos-row .logo-mark {
  font-family: var(--el-font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--el-ink-500);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
  transition: opacity 200ms;
}
.logos-row .logo-mark:hover { opacity: 1; }
.logos-row .logo-mark .glyph {
  width: 24px; height: 24px;
  background: var(--el-ink-300);
  border-radius: 6px;
  display: inline-block;
}

/* ============================================================
   SECTION (general)
   ============================================================ */
.section { padding: 110px 0; }
.section.alt { background: var(--el-bg-2); }
.section.dark {
  background: var(--el-ink-1000);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section.dark::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}
.section-head {
  max-width: 780px;
  margin: 0 0 64px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-family: var(--el-font-display);
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 14px 0 18px;
  text-wrap: balance;
}
.section-head h2 em { font-style: normal; color: var(--el-cyan-700); }
.section.dark .section-head h2 { color: #fff; }
.section.dark .section-head h2 em { color: var(--el-cyan-400); }
.section-head p {
  font-size: 18px;
  color: var(--el-fg-2);
  line-height: 1.6;
  max-width: 640px;
}
.section.dark .section-head p { color: rgba(255,255,255,0.7); }

/* ============================================================
   STATS
   ============================================================ */
.stats {
  background: linear-gradient(180deg, var(--el-navy-800) 0%, var(--el-navy-900) 100%);
  padding: 72px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.stats::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.6;
}
.stats-inner.partner-band {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}
.partner-band-text h3 {
  font-family: var(--el-font-display);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 14px 0 14px;
  text-wrap: balance;
}
.partner-band-text p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  max-width: 56ch;
  margin: 0;
}
.partner-band-badges {
  display: flex;
  gap: 24px;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
.partner-band-badges img {
  height: 132px;
  width: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
@media (max-width: 900px) {
  .stats-inner.partner-band {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: left;
  }
  .partner-band-badges {
    justify-content: flex-start;
  }
  .partner-band-badges img {
    height: 108px;
  }
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}
.stat { padding: 0 8px; border-left: 1px solid rgba(255,255,255,0.12); padding-left: 24px; }
.stat:first-child { border-left: none; padding-left: 0; }
.stat-num {
  font-family: var(--el-font-display);
  font-weight: 900;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 8px;
}
.stat-num em { color: var(--el-cyan-400); font-style: normal; }
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

/* ============================================================
   DIFFERENTIATION CARDS
   ============================================================ */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.diff {
  background: #fff;
  border: 1px solid var(--el-border-1);
  border-radius: 16px;
  padding: 32px 30px 36px;
  position: relative;
  transition: all 240ms var(--el-ease-out);
}
.diff:hover {
  box-shadow: var(--el-shadow-md);
  border-color: var(--el-navy-200);
  transform: translateY(-2px);
}
.diff-num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--el-font-mono);
  font-size: 11px;
  color: var(--el-ink-300);
  font-weight: 600;
  letter-spacing: 0.08em;
}
.diff-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--el-navy-100), var(--el-cyan-100));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  position: relative;
}
.diff-icon::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 13px;
  border: 1px solid rgba(1,22,137,0.1);
}
.diff-icon svg { width: 24px; height: 24px; color: var(--el-navy-800); stroke-width: 1.6; }
.diff h3 {
  font-family: var(--el-font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--el-navy-900);
  margin: 0 0 10px;
}
.diff p {
  font-size: 15px;
  color: var(--el-fg-2);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   SERVICES
   ============================================================ */

/* Practice segmented control — sits between section head and the layout */
.practice-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 0 0 40px;
  padding: 8px;
  background: var(--el-bg-2);
  border: 1px solid var(--el-border-1);
  border-radius: 18px;
}
.practice-pill {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: center;
  padding: 18px 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: background 160ms, border-color 160ms, box-shadow 160ms, transform 160ms;
}
.practice-pill > svg {
  grid-row: 1 / 3;
  grid-column: 1;
  width: 28px; height: 28px;
  color: var(--el-ink-500);
  stroke-width: 1.75;
  transition: color 160ms;
}
.practice-pill .practice-label {
  grid-row: 1; grid-column: 2;
  font-family: var(--el-font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--el-fg-1);
  line-height: 1.1;
}
.practice-pill .practice-tagline {
  grid-row: 2; grid-column: 2;
  font-size: 13px;
  color: var(--el-fg-3);
  line-height: 1.35;
  margin-top: 4px;
}
.practice-pill:hover {
  background: rgba(255,255,255,0.6);
}
.practice-pill.active {
  background: #fff;
  border-color: var(--el-border-1);
  box-shadow: var(--el-shadow-sm);
}
.practice-pill.active > svg {
  color: var(--el-cyan-700);
}
.practice-pill.active::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translate(-50%, -50%);
  width: 6px; height: 26px;
  border-radius: 999px;
  background: var(--el-cyan-500);
}

/* OT VR specialized callout — keep the standard tab look; only the
   detail panel banner + tag signal "specialized". The previous warm
   amber tint on the tab itself read as 'selected' when it wasn't. */
.svc-tab.callout {
  /* intentionally inherits .svc-tab default styles */
}
.svc-tab.callout::after {
  display: none;
}
.svc-tab { position: relative; }

.svc-callout-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: -1px -1px 0;
  padding: 14px 22px;
  background: linear-gradient(90deg, rgba(217, 119, 6, 0.08), rgba(217, 119, 6, 0.02));
  border-bottom: 1px solid rgba(217, 119, 6, 0.25);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  font-size: 13.5px;
  line-height: 1.5;
  color: #92400e;
}
.svc-callout-banner svg {
  width: 18px; height: 18px;
  color: #b45309;
  flex-shrink: 0;
  margin-top: 1px;
}
.svc-callout-banner strong { color: #78350f; }

@media (max-width: 760px) {
  .practice-switch { grid-template-columns: 1fr; }
  .practice-pill .practice-tagline { font-size: 12.5px; }
}

.svc-layout {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 32px;
  align-items: start;
}
.svc-tabs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: sticky;
  top: 100px;
}
.svc-tab {
  background: transparent;
  border: 1px solid transparent;
  text-align: left;
  padding: 22px 22px;
  border-radius: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 160ms;
}
.svc-tab:hover { background: var(--el-bg-2); }
.svc-tab.active {
  background: #fff;
  border-color: var(--el-border-1);
  box-shadow: var(--el-shadow-sm);
}
.svc-tab .tab-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--el-navy-100);
  color: var(--el-navy-800);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 160ms;
}
.svc-tab .tab-icon svg { width: 22px; height: 22px; stroke-width: 1.75; }
.svc-tab.active .tab-icon { background: var(--el-navy-800); color: #fff; }
.svc-tab .tab-text { flex: 1; min-width: 0; }
.svc-tab .tab-text strong {
  display: block;
  font-family: var(--el-font-display);
  font-weight: 700;
  font-size: 17.5px;
  color: var(--el-fg-1);
  line-height: 1.25;
}
.svc-tab .tab-text span {
  display: block;
  font-size: 13px;
  color: var(--el-fg-3);
  margin-top: 4px;
}
.svc-tab .tab-arrow { color: var(--el-ink-300); flex-shrink: 0; transition: all 160ms; }
.svc-tab.active .tab-arrow { color: var(--el-cyan-500); transform: translateX(2px); }
.svc-tab .tab-arrow svg { width: 18px; height: 18px; }

.svc-detail {
  background: #fff;
  border: 1px solid var(--el-border-1);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--el-shadow-sm);
}
/* Mobile-only inline accordion panel; the desktop layout uses .svc-detail-side
   in the right column. The mobile media query flips which one is visible. */
.svc-detail-inline { display: none; }
.svc-detail-head {
  padding: 36px 40px 28px;
  border-bottom: 1px solid var(--el-border-1);
  background: linear-gradient(180deg, #fff 0%, var(--el-navy-050) 100%);
}
.svc-detail-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--el-navy-800);
  color: #fff;
  margin-bottom: 14px;
}
.svc-detail h3 {
  font-family: var(--el-font-display);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--el-fg-1);
  line-height: 1.1;
}
.svc-detail-lead {
  font-size: 17px;
  color: var(--el-fg-2);
  line-height: 1.55;
  margin: 0;
  max-width: 600px;
}
.svc-detail-body {
  padding: 32px 40px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.svc-detail-list h6 {
  font-family: var(--el-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--el-fg-3);
  margin: 0 0 14px;
}
.svc-detail-note {
  font-size: 13px;
  font-style: italic;
  color: var(--el-fg-2);
  margin: -6px 0 12px;
  line-height: 1.45;
}
.svc-detail-list ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 10px;
}
.svc-detail-list li {
  font-size: 14.5px;
  color: var(--el-fg-1);
  display: flex; gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
}
.svc-detail-list li svg {
  width: 16px; height: 16px;
  color: var(--el-cyan-600);
  flex-shrink: 0;
  margin-top: 2px;
  stroke-width: 2;
}
.svc-detail-foot {
  border-top: 1px solid var(--el-border-1);
  padding: 20px 40px;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--el-bg-2);
}
.svc-detail-foot .meta { font-size: 13px; color: var(--el-fg-3); display: flex; align-items: center; gap: 16px; }
.svc-detail-foot .meta strong { color: var(--el-fg-1); font-weight: 600; }
.svc-detail-foot .meta .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--el-ink-300); }

/* ============================================================
   PROCESS / TIMELINE
   ============================================================ */
.process-wrap { position: relative; }
.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-row::before {
  content: "";
  position: absolute;
  top: 28px; left: 8%; right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--el-navy-200), var(--el-cyan-300), var(--el-navy-200));
}
.process-step { position: relative; padding-top: 0; }
.process-step .step-num {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--el-navy-800);
  color: var(--el-navy-800);
  font-family: var(--el-font-display);
  font-weight: 900;
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  z-index: 2;
}
.process-step:nth-child(1) .step-num { background: var(--el-navy-800); color: #fff; }
.process-step h4 {
  font-family: var(--el-font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: var(--el-fg-1);
}
.process-step p {
  font-size: 14.5px;
  color: var(--el-fg-2);
  line-height: 1.55;
  margin: 0 0 12px;
}
.process-step .step-tag {
  display: inline-block;
  font-family: var(--el-font-mono);
  font-size: 11px;
  color: var(--el-cyan-700);
  background: var(--el-cyan-100);
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 600;
}

/* ============================================================
   BEYOND THE SCANNER
   ============================================================ */
.bts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.bts-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--el-navy-100);
  border-radius: 16px;
  padding: 36px 32px 28px;
  transition: border-color 160ms, box-shadow 160ms, transform 160ms;
}
.bts-card:hover {
  border-color: var(--el-cyan-300);
  box-shadow: 0 12px 36px rgba(13, 38, 102, 0.06);
  transform: translateY(-2px);
}
.bts-num {
  font-family: var(--el-font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--el-cyan-600);
  margin-bottom: 14px;
}
.bts-title {
  font-family: var(--el-font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--el-fg-1);
  margin: 0 0 12px;
  line-height: 1.2;
}
.bts-body {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--el-fg-2);
  margin: 0 0 22px;
}
.bts-body code {
  font-family: var(--el-font-mono);
  font-size: 0.92em;
  background: var(--el-navy-050);
  padding: 1px 6px;
  border-radius: 4px;
  color: var(--el-navy-800);
}
.bts-body strong {
  color: var(--el-fg-1);
  font-weight: 700;
}
.bts-body .inline-link {
  color: var(--el-cyan-700);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--el-cyan-300);
  transition: border-color 120ms, color 120ms;
}
.bts-body .inline-link:hover {
  color: var(--el-cyan-800);
  border-color: var(--el-cyan-600);
}
.bts-artifact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  background: var(--el-navy-050);
  border-left: 2px solid var(--el-cyan-400);
  border-radius: 0 8px 8px 0;
}
.bts-artifact-label {
  font-family: var(--el-font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--el-cyan-700);
}
.bts-artifact-text {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--el-fg-2);
}

.bts-upsell {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 24px 32px;
  background: linear-gradient(135deg, var(--el-navy-900) 0%, var(--el-navy-800) 100%);
  border-radius: 16px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.bts-upsell::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(64,188,216,0.18), transparent 65%);
  pointer-events: none;
}
.bts-upsell-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 1;
}
.bts-upsell-text strong {
  font-family: var(--el-font-display);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}
.bts-upsell-text span {
  font-size: 14.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}
.bts-upsell-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--el-cyan-300);
  text-decoration: none;
  padding: 10px 18px;
  border: 1px solid rgba(64,188,216,0.4);
  border-radius: 999px;
  background: rgba(64,188,216,0.08);
  transition: background 140ms, color 140ms, border-color 140ms;
  position: relative;
  z-index: 1;
  white-space: nowrap;
  cursor: pointer;
}
.bts-upsell-cta:hover {
  background: rgba(64,188,216,0.18);
  color: #fff;
  border-color: var(--el-cyan-300);
}
.bts-upsell-cta.secondary {
  color: rgba(255,255,255,0.75);
  background: transparent;
  border-color: rgba(255,255,255,0.18);
}
.bts-upsell-cta.secondary:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.35);
}
.bts-upsell-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.bts-upsell-cta svg { width: 14px; height: 14px; }

@media (max-width: 900px) {
  .bts-grid { grid-template-columns: 1fr; gap: 16px; }
  .bts-upsell { flex-direction: column; align-items: flex-start; padding: 24px; }
}

/* ============================================================
   FINDINGS PREVIEW SECTION
   ============================================================ */
.findings {
  position: relative;
}
.findings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.findings-text h2 {
  font-family: var(--el-font-display);
  font-size: clamp(28px, 4.6vw, 48px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 14px 0 20px;
  color: #fff;
}
.findings-text h2 em { font-style: normal; color: var(--el-cyan-400); }
.findings-text p {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin: 0 0 28px;
}
.findings-list {
  list-style: none; padding: 0; margin: 32px 0 0;
  display: flex; flex-direction: column; gap: 14px;
}
.findings-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15.5px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.findings-list li svg {
  width: 18px; height: 18px;
  color: var(--el-cyan-400);
  flex-shrink: 0; margin-top: 3px;
  stroke-width: 2;
}
.report-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  position: relative;
}
.report-tabs {
  display: flex;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.report-tab {
  flex: 1;
  padding: 14px 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  font-weight: 500;
  transition: all 140ms;
  position: relative;
}
.report-tab:hover { color: rgba(255,255,255,0.85); }
.report-tab.active { color: #fff; background: rgba(255,255,255,0.04); }
.report-tab.active::after {
  content: "";
  position: absolute;
  left: 18px; right: 18px; bottom: -1px;
  height: 2px; background: var(--el-cyan-500);
}
.report-tab .count {
  background: rgba(255,255,255,0.08);
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  font-family: var(--el-font-mono);
}
.report-tab.active .count.crit { background: var(--el-danger-500); color: #fff; }

.report-tab.locked { cursor: not-allowed; color: rgba(255,255,255,0.35); }
.report-tab.locked:hover { color: rgba(255,255,255,0.5); background: transparent; }
.report-tab .lock-icon {
  width: 12px; height: 12px;
  opacity: 0.7;
  margin-right: 2px;
}
.report-tab .lock-icon svg { width: 12px; height: 12px; }

.tab-tooltip {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  width: max-content;
  max-width: 260px;
  padding: 10px 12px;
  background: #0b1230;
  color: rgba(255,255,255,0.92);
  border: 1px solid rgba(64,188,216,0.35);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 140ms ease, transform 140ms ease;
  z-index: 20;
  white-space: normal;
}
.tab-tooltip a {
  color: var(--el-cyan-400);
  text-decoration: underline;
  pointer-events: auto;
}
.tab-tooltip::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 9px; height: 9px;
  background: #0b1230;
  border-left: 1px solid rgba(64,188,216,0.35);
  border-top: 1px solid rgba(64,188,216,0.35);
}
.report-tab.locked:hover .tab-tooltip,
.report-tab.locked:focus-visible .tab-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.report-body { padding: 12px 0; }
.finding-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  padding: 14px 24px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  cursor: pointer;
  transition: background 120ms;
}
.finding-row:hover { background: rgba(255,255,255,0.03); }
.finding-row:last-child { border-bottom: none; }
.severity-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.severity-dot.crit { background: #ff5b6e; box-shadow: 0 0 10px rgba(255,91,110,0.5); }
.severity-dot.high { background: #ffae5b; }
.severity-dot.med { background: #ffd86b; }
.severity-dot.low { background: var(--el-cyan-400); }
.finding-content { min-width: 0; }
.finding-title {
  font-family: var(--el-font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 3px;
}
.finding-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.95);
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.finding-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--el-font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  flex-shrink: 0;
}
.finding-meta .replay {
  width: 26px; height: 26px;
  border-radius: 7px;
  background: rgba(64,188,216,0.15);
  color: var(--el-cyan-400);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(64,188,216,0.25);
}
.finding-meta .replay svg { width: 12px; height: 12px; }
.report-foot {
  padding: 14px 24px;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: space-between;
}
.report-foot .left { font-size: 13px; color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 10px; }
.report-foot .left strong { color: #fff; font-weight: 600; }
.report-foot .right { font-size: 12px; color: var(--el-cyan-400); font-weight: 600; }

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial-block {
  background: #fff;
  border: 1px solid var(--el-border-1);
  border-radius: 24px;
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--el-shadow-md);
}
.testimonial-block::before {
  content: """;
  position: absolute;
  top: 14px; left: 30px;
  font-family: var(--el-font-display);
  font-size: 220px;
  line-height: 1;
  color: var(--el-cyan-100);
  z-index: 0;
}
.testimonial-block > * { position: relative; z-index: 1; }
.testimonial-quote {
  font-family: var(--el-font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -0.01em;
  color: var(--el-fg-1);
  margin: 0 0 28px;
  text-wrap: pretty;
}
.testimonial-quote em { font-style: normal; background: linear-gradient(180deg, transparent 60%, var(--el-cyan-100) 60%); padding: 0 2px; }
.testimonial-attrib { display: flex; align-items: center; gap: 14px; }
.testimonial-attrib .avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--el-navy-700), var(--el-cyan-600));
  color: #fff;
  font-family: var(--el-font-display);
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.testimonial-attrib strong { display: block; font-weight: 700; font-size: 14px; color: var(--el-fg-1); }
.testimonial-attrib span { font-size: 13px; color: var(--el-fg-3); }

.partner-stack {
  display: flex; flex-direction: column;
  gap: 14px;
  border-left: 1px solid var(--el-border-1);
  padding-left: 48px;
}
.partner-card {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: var(--el-bg-2);
  border: 1px solid var(--el-border-1);
  border-radius: 12px;
}
.partner-card .seal {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--el-navy-800);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.partner-card .seal svg { width: 22px; height: 22px; }
.partner-card .seal.cyan { background: var(--el-cyan-500); color: var(--el-navy-900); }
.partner-card .seal.gold { background: linear-gradient(135deg, #f4c542, #c79628); color: #fff; }
.partner-card .text strong { display: block; font-weight: 700; font-size: 13.5px; color: var(--el-fg-1); line-height: 1.2; }
.partner-card .text span { font-size: 12px; color: var(--el-fg-3); }

/* ============================================================
   BLOG
   ============================================================ */
.blog-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 22px;
}
.blog-chip {
  appearance: none;
  border: 1px solid var(--el-border-1);
  background: #fff;
  color: var(--el-navy-900);
  font: 500 13px/1 var(--el-font-body, inherit);
  letter-spacing: 0.01em;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 160ms var(--el-ease-out), border-color 160ms var(--el-ease-out), color 160ms var(--el-ease-out);
}
.blog-chip:hover { border-color: var(--el-cyan-500); }
.blog-chip:focus-visible {
  outline: 2px solid var(--el-cyan-500);
  outline-offset: 2px;
}
.blog-chip.is-active {
  background: var(--el-navy-900);
  border-color: var(--el-navy-900);
  color: #fff;
}
.blog-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 22px;
}
.post {
  background: #fff;
  border: 1px solid var(--el-border-1);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 200ms var(--el-ease-out);
  display: flex; flex-direction: column;
}
.post:hover { box-shadow: var(--el-shadow-md); transform: translateY(-2px); }
.post .cover {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}
.post .cover.c1 { background: linear-gradient(135deg, #011689 0%, #0a25a8 60%, #2aa8c8 100%); }
.post .cover.c2 { background: linear-gradient(135deg, #05081c 0%, #1a2141 50%, #137594 100%); }
.post .cover.c3 { background: linear-gradient(135deg, #0a5d75 0%, #1f93b8 50%, #6cceea 100%); }
.post .cover.c4 { background: linear-gradient(135deg, #2a3358 0%, #011689 100%); }
.post .cover.c5 { background: linear-gradient(135deg, #050a3c 0%, #2a1860 45%, #4dc4dc 100%); }
.post .cover::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.08) 1px, transparent 0);
  background-size: 22px 22px;
  pointer-events: none;
}
.post.large { grid-row: span 2; }
.post.large .cover { aspect-ratio: 16/9; }
.post.large .body h3 { font-size: 24px; }
.post .cover-mark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--el-font-mono);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-align: center;
  letter-spacing: 0.05em;
  z-index: 1;
}
.post .cover-mark .glyph {
  display: block;
  font-size: 56px;
  color: var(--el-cyan-400);
  font-weight: 800;
  margin-bottom: 6px;
  font-family: var(--el-font-display);
}
.post .tag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 9px;
  border-radius: 999px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  z-index: 2;
}
.post .body {
  padding: 22px 24px 26px;
  display: flex; flex-direction: column;
  gap: 10px; flex: 1;
}
.post h3 {
  font-family: var(--el-font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0;
  color: var(--el-fg-1);
  text-wrap: balance;
}
.post p {
  font-size: 14px;
  color: var(--el-fg-2);
  line-height: 1.5;
  margin: 0;
}
.post .meta {
  margin-top: auto;
  padding-top: 12px;
  font-family: var(--el-font-mono);
  font-size: 11.5px;
  color: var(--el-fg-3);
  display: flex; align-items: center; gap: 8px;
}
.post .meta .sep { width: 3px; height: 3px; border-radius: 50%; background: var(--el-ink-300); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(120deg, #011689 0%, #050a3c 100%);
  border-radius: 24px;
  padding: 56px 64px;
  color: #fff;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--el-shadow-lg);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
  background-size: 22px 22px;
  pointer-events: none;
}
.cta-band::after {
  content: "";
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(64,188,216,0.32), transparent 70%);
  right: -100px; top: -100px;
  filter: blur(40px);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 {
  font-family: var(--el-font-display);
  font-size: clamp(26px, 4.2vw, 40px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 14px 0 16px;
  color: #fff;
  text-wrap: balance;
}
.cta-band h2 em { font-style: normal; color: var(--el-cyan-400); }
.cta-band p {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 480px;
}
.cta-band-cta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.cta-band-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(8px);
}
.cta-band-form .field { margin-bottom: 14px; }
.cta-band-form .field:last-of-type { margin-bottom: 18px; }
.cta-band-form label {
  display: block; font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}
.cta-band-form input, .cta-band-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  padding: 11px 12px;
  outline: none;
  transition: all 140ms;
}
.cta-band-form input::placeholder, .cta-band-form textarea::placeholder { color: rgba(255,255,255,0.35); }
.cta-band-form input:focus, .cta-band-form textarea:focus {
  border-color: var(--el-cyan-500);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(64,188,216,0.2);
}
.cta-band-form textarea { resize: vertical; min-height: 76px; }
.cta-band-form button { width: 100%; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--el-ink-1000);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 36px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 30px; margin-bottom: 18px; }
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  max-width: 320px;
  margin: 0 0 22px;
}
.footer-brand .badges { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.footer-brand .badges .sn-badge {
  height: 72px;
  width: auto;
  border-radius: 8px;
  display: block;
}
.footer-brand .badges .b {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  white-space: nowrap;
}
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
}
.footer h6 {
  font-family: var(--el-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: 0 0 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer a {
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  text-decoration: none;
  transition: color 140ms;
  border: none;
}
.footer a:hover { color: var(--el-cyan-400); }
.footer .muted, .footer-bottom .legal .muted {
  color: rgba(255,255,255,0.32);
  cursor: not-allowed;
  font-size: 14px;
}
.footer-bottom .legal .muted { font-size: 12.5px; }
.footer-bottom {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom .legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  transition: all 140ms;
  border: 1px solid rgba(255,255,255,0.06);
}
.footer-social a:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2); }
.footer-social svg { width: 16px; height: 16px; color: #fff; }

/* ============================================================
   THEME — accent variants (Tweaks)
   ============================================================ */
body[data-accent="cyan"] { /* default - no override */ }
body[data-accent="violet"] {
  --el-cyan-100: #efe7ff;
  --el-cyan-200: #d8c8ff;
  --el-cyan-300: #b89dff;
  --el-cyan-400: #9573ff;
  --el-cyan-500: #7c4cff;
  --el-cyan-600: #6939e6;
  --el-cyan-700: #5728c2;
  --el-cyan-800: #421d99;
}
body[data-accent="emerald"] {
  --el-cyan-100: #d6f5e6;
  --el-cyan-200: #aae8c9;
  --el-cyan-300: #7ad8a9;
  --el-cyan-400: #44c585;
  --el-cyan-500: #1ba06a;
  --el-cyan-600: #0f7a4c;
  --el-cyan-700: #0c5e3b;
  --el-cyan-800: #084528;
}

/* ============================================================
   HERO VARIANTS (Tweaks)
   ============================================================ */
body[data-hero="centered"] .hero-inner { grid-template-columns: 1fr; max-width: 920px; margin-left: auto; margin-right: auto; text-align: center; }
body[data-hero="centered"] .hero p.lead { margin-left: auto; margin-right: auto; }
body[data-hero="centered"] .hero-cta { justify-content: center; }
body[data-hero="centered"] .hero-stage { display: none; }
body[data-hero="centered"] .hero-trust-row { justify-content: center; }
body[data-hero="centered"] .hero-badges { margin-left: auto; margin-right: auto; }

body[data-hero="terminal"] .float-card { display: flex; }
body[data-hero="terminal"] .hero-stage { display: flex; }

/* ============================================================
   MOBILE NAV — burger + slide-down drawer
   ============================================================ */
.nav-burger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid var(--el-border-1);
  background: #fff;
  color: var(--el-fg-1);
  align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 140ms, border-color 140ms;
}
.nav-burger:hover { background: var(--el-bg-2); border-color: var(--el-navy-200); }
.nav-burger svg { width: 20px; height: 20px; }

.nav-drawer {
  position: fixed;
  inset: 72px 0 0 0;
  background: #fff;
  z-index: 49;
  overflow-y: auto;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms var(--el-ease-out), transform 200ms var(--el-ease-out);
}
.nav-drawer.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.nav-drawer-inner {
  padding: 24px 24px 96px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 640px;
  margin: 0 auto;
}
.nav-drawer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.nav-drawer-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid var(--el-border-1);
  background: #fff;
  font-family: var(--el-font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--el-fg-1);
  cursor: pointer;
  transition: all 140ms;
}
.nav-drawer-link:hover { background: var(--el-bg-2); border-color: var(--el-navy-200); }
.nav-drawer-link.active { background: var(--el-navy-800); color: #fff; border-color: var(--el-navy-800); }
.nav-drawer-link svg { width: 18px; height: 18px; opacity: 0.6; }
.nav-drawer-link.active svg { opacity: 1; color: var(--el-cyan-400); }

.nav-drawer-sub { display: flex; flex-direction: column; gap: 14px; padding-top: 8px; border-top: 1px solid var(--el-border-1); }
.nav-drawer-sub h6 {
  font-family: var(--el-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--el-fg-3);
  margin: 14px 0 4px;
}
.nav-drawer-sub ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.nav-drawer-sub a {
  display: block;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--el-fg-1);
  border: none;
  cursor: pointer;
  transition: background 120ms;
}
.nav-drawer-sub a:hover { background: var(--el-bg-2); }
.nav-drawer-cta { width: 100%; justify-content: center; margin-top: 8px; }

/* ============================================================
   MOBILE — collapse multi-column grids and tighten paddings
   ============================================================ */
@media (max-width: 960px) {
  .nav-links, .nav-cta-desktop { display: none; }
  .nav-burger { display: inline-flex; }

  .container, .container-wide { padding: 0 20px; }

  /* Section rhythm: roughly halve vertical padding on mobile. */
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 36px; }

  /* Announcement bar — wrap cleanly on phones. */
  .annc {
    flex-wrap: wrap;
    padding: 10px 16px;
    text-align: center;
    font-size: 12px;
    line-height: 1.4;
  }

  /* Hero — already collapses via [data-hero=centered]; tighten padding. */
  .hero { padding: 56px 0 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-stage { margin-top: 8px; }
  .hero p.lead { font-size: 17px; }
  .hero-cta { gap: 10px; }
  .hero-cta .btn.lg { padding: 13px 22px; font-size: 15px; }
  .hero-cta .meta { margin-left: 0; flex-basis: 100%; }
  .hero-trust { margin-top: 36px; padding-top: 24px; }
  .float-card.fc-1 { left: 0; }
  .float-card.fc-2 { right: 0; }

  /* Logo strip — wrap nicely. */
  .logos-row { gap: 24px 32px; justify-content: flex-start; }

  /* Stats partner band already handled by existing 900px rule;
     handle the 4-up stat strip on the home page (when used). */
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat { border-left: none; padding-left: 0; }

  /* Differentiation cards. */
  .diff-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Services — accordion-style on mobile: tap a tab to expand its detail
     inline beneath it; hide the desktop right-column detail panel. */
  .svc-layout { grid-template-columns: 1fr; gap: 20px; }
  .svc-tabs { position: static; flex-direction: column; gap: 10px; }
  .svc-tab-wrap { scroll-margin-top: 88px; }
  .svc-tab { padding: 14px 16px; width: 100%; }
  .svc-tab .tab-icon { width: 40px; height: 40px; }
  .svc-tab .tab-text strong { font-size: 16px; }
  .svc-tab.expanded .tab-arrow { transform: rotate(90deg); color: var(--el-cyan-500); }
  .svc-detail-side { display: none; }
  .svc-detail-inline { display: block; margin-top: 8px; }
  .svc-detail-head { padding: 28px 24px 22px; }
  .svc-detail h3 { font-size: 24px; }
  .svc-detail-lead { font-size: 15.5px; }
  .svc-detail-body { padding: 24px; grid-template-columns: 1fr; gap: 22px; }
  .svc-detail-foot { padding: 16px 20px; flex-wrap: wrap; gap: 12px; }
  .svc-detail-foot .meta { flex-wrap: wrap; gap: 8px 12px; font-size: 12.5px; }

  /* Process — stack the 4-step timeline; drop the connecting line. */
  .process-row { grid-template-columns: 1fr; gap: 28px; }
  .process-row::before { display: none; }
  .process-step .step-num { width: 48px; height: 48px; font-size: 19px; margin-bottom: 16px; }

  /* Findings dark section — stack the report card under the copy. */
  .findings-grid { grid-template-columns: 1fr; gap: 32px; }
  .finding-row { grid-template-columns: auto 1fr; padding: 12px 16px; gap: 12px; }
  .finding-row .finding-meta { display: none; }
  .report-tabs { overflow-x: auto; }
  .report-tab { padding: 12px 14px; font-size: 12.5px; flex: 0 0 auto; }
  .report-foot { padding: 12px 16px; flex-wrap: wrap; gap: 8px; font-size: 12px; }

  /* Testimonial — stack quote above partner stack; drop the divider. */
  .testimonial-block { grid-template-columns: 1fr; padding: 32px 24px; gap: 32px; border-radius: 18px; }
  .testimonial-block::before { font-size: 140px; top: 4px; left: 14px; }
  .testimonial-quote { font-size: 20px; }
  .partner-stack { border-left: none; border-top: 1px solid var(--el-border-1); padding-left: 0; padding-top: 24px; }

  /* Blog — single column. */
  .blog-grid { grid-template-columns: 1fr; gap: 16px; }
  .post.large { grid-row: auto; }
  .post.large .body h3 { font-size: 20px; }

  /* CTA band — stack copy above form, soften the corners. */
  .cta-band { grid-template-columns: 1fr; gap: 28px; padding: 36px 28px; border-radius: 18px; }
  .cta-band p { font-size: 15px; }
  .cta-band-cta { gap: 10px; }

  /* Footer — stack cleanly. */
  .footer { padding: 56px 0 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px 24px; padding-bottom: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
}

@media (max-width: 540px) {
  /* Hero CTAs become full-width stacks on phone. */
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-cta .meta { justify-content: center; }

  /* Stats — single column on phone. */
  .stats-inner { grid-template-columns: 1fr; }

  /* Footer — single column on phone. */
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }

  /* Section heads recenter content padding. */
  .section { padding: 48px 0; }

  /* The bts upsell band stacks cleanly. */
  .bts-upsell { padding: 22px; }
  .bts-upsell-actions { width: 100%; }
  .bts-upsell-cta { width: 100%; justify-content: center; }
}

/* ============ ARTICLE PAGE (generated by publish.mjs) ============ */
.article-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid var(--el-border-1);
}
.article-header img { display: block; }
.article-header nav a {
  color: var(--el-fg-2);
  font-size: 14px;
  text-decoration: none;
}
.article-header nav a:hover { color: var(--el-fg-1); }

.article-page {
  max-width: 720px;
  padding: 56px 24px 96px;
  margin: 0 auto;
}
.article-page article > header {
  margin-bottom: 40px;
}
.article-page article > header .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--el-cyan-700);
  background: var(--el-cyan-100);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.article-page h1 {
  font-family: var(--el-font-display);
  font-size: 40px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--el-fg-1);
  margin: 0 0 16px;
}
.article-page .article-meta {
  font-size: 14px;
  color: var(--el-fg-3);
  margin: 0;
}

.article-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--el-fg-2);
}
.article-body p { margin: 0 0 1.2em; }
.article-body h2 {
  font-family: var(--el-font-display);
  font-size: 26px;
  font-weight: 700;
  margin: 2em 0 0.6em;
  color: var(--el-fg-1);
}
.article-body h3 {
  font-family: var(--el-font-display);
  font-size: 20px;
  font-weight: 700;
  margin: 1.6em 0 0.5em;
  color: var(--el-fg-1);
}
.article-body a { color: var(--el-cyan-700); }
.article-body a:hover { color: var(--el-cyan-800); }
.article-body code {
  font-family: var(--el-font-mono);
  font-size: 0.92em;
  background: var(--el-bg-2);
  padding: 2px 6px;
  border-radius: 4px;
}
.article-body pre {
  background: var(--el-bg-2);
  border: 1px solid var(--el-border-1);
  border-radius: 8px;
  padding: 14px 16px;
  overflow-x: auto;
  font-family: var(--el-font-mono);
  font-size: 13.5px;
  line-height: 1.5;
}
.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.2em 0;
}
.article-body blockquote {
  margin: 1.4em 0;
  padding: 4px 0 4px 18px;
  border-left: 3px solid var(--el-cyan-500);
  color: var(--el-fg-1);
  font-style: italic;
}

.article-footer {
  margin-top: 64px;
  padding: 24px 0;
  border-top: 1px solid var(--el-border-1);
  font-size: 13px;
  color: var(--el-fg-3);
  text-align: center;
}
