/* ============================================================
   10x Pentest — site styles
   Layered on tokens.css (AppSecure design tokens) + components.css
   Aesthetic: dark cinematic navy hero · light clean body · AI web-app
   Display + body type: Gilroy (uploaded woff/ttf)
   Prefix: xp-
   ============================================================ */

@font-face { font-family: 'Gilroy'; src: url('/fonts/Gilroy-Regular.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Gilroy'; src: url('/fonts/Gilroy-Medium.ttf') format('truetype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Gilroy'; src: url('/fonts/Gilroy-SemiBold.ttf') format('truetype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Gilroy'; src: url('/fonts/Gilroy-Bold.ttf') format('truetype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Gilroy'; src: url('/fonts/Gilroy-ExtraBold.ttf') format('truetype'); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'Gilroy'; src: url('/fonts/Gilroy-Heavy.ttf') format('truetype'); font-weight: 900; font-style: normal; font-display: swap; }

:root {
  --xp-accent: var(--brand-blue-500);
  --xp-accent-hover: var(--brand-blue-hover);
  --xp-glow: 54, 240, 164;        /* live-status green */
  --xp-hero-bg: #070E1F;
  --xp-nav-h: 68px;
  /* Gilroy across the whole site */
  --font-display: 'Gilroy', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  /* modern gradient system */
  --xp-grad-brand: linear-gradient(135deg, #4B8BEA 0%, #0A5BD7 58%, #073A9E 100%);
  --xp-grad-text: linear-gradient(108deg, #1B3FB8 0%, #0A5BD7 50%, #3A77E5 100%);
  --xp-grad-dark: linear-gradient(135deg, #6FA8FF 0%, #0A5BD7 70%);
}

body { font-family: var(--font-sans); }

/* display face for headings + key UI */
h1, h2, h3, .xp-h2, .xp-logo-text, .xp-nav-link, .as-btn,
.xp-stat-num, .xp-price .amt, .xp-cta h2, .xp-pagehead h1, .xp-quote {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}
.xp-nav-link, .as-btn { letter-spacing: -0.005em; }

html { scroll-behavior: smooth; }
body { background: var(--neutral-0); color: var(--neutral-900); margin: 0; }

.xp-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.xp-container-wide { max-width: 1320px; }
.xp-container-narrow { max-width: 880px; }

img { max-width: 100%; }

/* ============ ANNOUNCEMENT BAR ============ */
.xp-topbar {
  background: var(--xp-hero-bg);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.78);
}
.xp-topbar-inner {
  height: 38px; display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 13px; font-weight: 600;
}
.xp-topbar a { color: #fff; display: inline-flex; align-items: center; gap: 4px; }
.xp-topbar a:hover { color: var(--brand-blue-300); }
.xp-topbar .xp-tag {
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: #36F0A4; border: 1px solid rgba(54,240,164,.3);
  border-radius: var(--radius-full); padding: 2px 8px;
}

/* ============ NAV ============ */
.xp-nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(7,14,31,0.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 240ms var(--ease-out), border-color 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
}
.xp-nav.transparent {
  background: linear-gradient(180deg, rgba(7,14,31,0.92) 0%, rgba(7,14,31,0.55) 60%, rgba(7,14,31,0) 100%);
  backdrop-filter: none; -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}
.xp-nav.transparent .xp-nav-link { color: rgba(255,255,255,0.9); }
.xp-nav.transparent .xp-nav-link:hover { color: #fff; }
.xp-nav.light {
  background: rgba(255,255,255,0.9);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(9,30,66,0.04);
}
.xp-nav-inner { height: var(--xp-nav-h); display: flex; align-items: center; gap: 40px; }
.xp-nav-links { display: flex; align-items: center; gap: 30px; flex: 1; }
.xp-nav-link {
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.66);
  text-decoration: none; transition: color 120ms; display: inline-flex; align-items: center; gap: 5px;
}
.xp-nav.light .xp-nav-link { color: var(--neutral-600); }
.xp-nav-link:hover { color: #fff; }
.xp-nav.light .xp-nav-link:hover { color: var(--brand-blue-500); }
.xp-nav-link.active { color: #fff; }
.xp-nav.light .xp-nav-link.active { color: var(--neutral-900); }
.xp-nav-cta { display: flex; gap: 10px; align-items: center; }

/* ---------- mobile menu ---------- */
.xp-nav-burger {
  display: none; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: var(--radius-lg);
  background: transparent; border: 1px solid rgba(255,255,255,0.16);
  color: #fff; cursor: pointer; flex-shrink: 0; transition: background 140ms;
}
.xp-nav.light .xp-nav-burger { color: var(--neutral-800); border-color: var(--border-strong); }
.xp-nav-burger:hover { background: rgba(127,127,127,0.1); }
/* push the open-button to the far right once desktop links/CTA are hidden */
.xp-nav-inner .xp-nav-burger { margin-left: auto; }
.xp-mobile-head .xp-nav-burger { margin-left: 0; }

.xp-mobile-scrim {
  position: fixed; inset: 0; z-index: 70; background: rgba(7,14,31,0.5);
  backdrop-filter: blur(2px); opacity: 0; visibility: hidden; transition: opacity 240ms, visibility 240ms;
}
.xp-mobile-scrim.open { opacity: 1; visibility: visible; }
.xp-mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 80; width: min(360px, 86vw);
  background: #fff; box-shadow: -20px 0 60px rgba(9,30,66,0.22);
  transform: translateX(100%); transition: transform 300ms var(--ease-out);
  display: flex; flex-direction: column; padding: 18px 22px 26px;
}
.xp-mobile-menu.open { transform: translateX(0); }
.xp-mobile-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.xp-mobile-head .xp-logo-img { height: 26px; }
.xp-mobile-head .xp-nav-burger { display: flex; color: var(--neutral-700); border-color: var(--border); }
.xp-mobile-links { display: flex; flex-direction: column; padding: 14px 0; flex: 1; }
.xp-mobile-link {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-display); font-size: 19px; font-weight: 700; letter-spacing: -0.01em;
  color: var(--neutral-900); text-decoration: none; padding: 16px 0; border-bottom: 1px solid var(--neutral-100);
}
.xp-mobile-link svg { color: var(--neutral-300); transition: transform 140ms, color 140ms; }
.xp-mobile-link:hover { color: var(--brand-blue-500); }
.xp-mobile-link:hover svg { color: var(--brand-blue-500); transform: translateX(3px); }
.xp-mobile-link.active { color: var(--brand-blue-500); }
.xp-mobile-cta { display: flex; flex-direction: column; gap: 12px; padding-top: 18px; }

/* wordmark */
.xp-logo { display: inline-flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.xp-logo-img { height: 36px; width: auto; min-width: 130px; display: block; flex-shrink: 0; object-fit: contain; }
.xp-logo-mark { width: 30px; height: 30px; flex-shrink: 0; }
.xp-logo-text {
  font-family: var(--font-display); font-weight: 800; font-size: 19px;
  letter-spacing: -0.02em; color: #fff; line-height: 1;
}
.xp-nav.light .xp-logo-text { color: var(--neutral-900); }
.xp-logo-text sup { font-size: 0.62em; font-weight: 800; top: -0.5em; }
.xp-logo-text .grey { color: var(--logo-grey); font-weight: 700; }

/* on-dark buttons that override component kit */
.xp-btn-line {
  background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.18);
}
.xp-btn-line:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.32); }
/* light nav: Sign-in must be visible on white */
.xp-nav.light .xp-btn-line {
  color: var(--neutral-800); border: 1px solid var(--border-strong); background: #fff;
}
.xp-nav.light .xp-btn-line:hover { background: var(--neutral-50); border-color: var(--neutral-400); color: var(--neutral-900); }

/* ============ HERO (dark) ============ */
.xp-hero {
  position: relative; background: var(--xp-hero-bg); color: #fff;
  overflow: hidden; isolation: isolate;
  padding: 92px 0 104px;
  /* extend up under the transparent sticky nav so they merge */
  margin-top: calc(-1 * var(--xp-nav-h));
  padding-top: calc(40px + var(--xp-nav-h));
}
.xp-hero::before {
  content: ''; position: absolute; inset: 0; z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.075) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 90% 80% at 60% 35%, black 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 60% 35%, black 25%, transparent 78%);
}
.xp-hero::after {
  content: ''; position: absolute; inset: 0; z-index: -2;
  background-image:
    radial-gradient(820px 520px at 78% 18%, rgba(10,91,215,0.34), transparent 64%),
    radial-gradient(680px 480px at 10% 90%, rgba(10,91,215,0.16), transparent 60%);
}
.xp-hero-glow-fade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 160px; z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(7,14,31,0));
}
/* home hero — Platform-style multi-hue glow + grid mask */
.xp-hero.ph::before {
  mask-image: radial-gradient(ellipse 90% 90% at 50% 25%, black 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 25%, black 25%, transparent 80%);
}
.xp-hero.ph::after {
  background-image:
    radial-gradient(680px 460px at 82% 10%, rgba(10,91,215,0.34), transparent 62%),
    radial-gradient(600px 460px at 8% 18%, rgba(109,94,245,0.26), transparent 62%),
    radial-gradient(560px 420px at 60% 108%, rgba(255,138,91,0.18), transparent 60%);
}

.xp-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
  padding: 6px 14px 6px 10px; border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04); border-radius: var(--radius-full);
  color: rgba(255,255,255,0.86); font-size: 12px; font-weight: 700; letter-spacing: .02em;
  margin-bottom: 26px;
}
.xp-hero-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%; background: #36F0A4;
  box-shadow: 0 0 0 0 rgba(54,240,164,0.6); animation: xp-pulse 2.4s var(--ease-out) infinite;
}
@keyframes xp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(54,240,164,0.55); }
  70% { box-shadow: 0 0 0 9px rgba(54,240,164,0); }
  100% { box-shadow: 0 0 0 0 rgba(54,240,164,0); }
}

.xp-hero h1 {
  font-size: clamp(40px, 5.2vw, 68px); font-weight: 600; line-height: 1.02;
  letter-spacing: -0.025em; color: #fff; margin: 0 0 24px;
}
.xp-hero h1 .grad {
  background: linear-gradient(120deg, #6FA8FF 0%, #0A5BD7 60%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.xp-hero .lead {
  font-size: clamp(17px, 1.5vw, 20px); line-height: 1.55; color: rgba(255,255,255,0.72);
  margin: 0 0 32px; max-width: 560px;
}
.xp-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }
.xp-hero-meta { display: flex; gap: 22px; flex-wrap: wrap; color: rgba(255,255,255,0.58); font-size: 13px; font-weight: 600; }
.xp-hero-meta-item { display: inline-flex; gap: 7px; align-items: center; }
.xp-hero-meta-item svg { color: var(--brand-blue-light); }

/* hero layout: SPLIT (default) */
.xp-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }

/* hero layout: CENTERED */
.xp-hero.centered { padding-bottom: 0; }
.xp-hero.centered .xp-hero-grid { display: block; text-align: center; }
.xp-hero.centered .xp-hero-eyebrow,
.xp-hero.centered .xp-hero-ctas,
.xp-hero.centered .xp-hero-meta { justify-content: center; }
.xp-hero.centered .lead { margin-left: auto; margin-right: auto; }
.xp-hero.centered h1 { max-width: 960px; margin-left: auto; margin-right: auto; font-size: clamp(40px, 6vw, 76px); }
.xp-hero.centered .xp-hero-visual-wrap { margin-top: 56px; }
/* hero with no visual: add breathing room below the centered copy */
.xp-hero.novisual { padding-bottom: 96px; }
.xp-hero.novisual .lead { margin-bottom: 36px; }

/* visual wrappers */
.xp-graph-frame {
  position: relative; border-radius: var(--radius-2xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
}
.xp-graph-head {
  display: flex; align-items: center; gap: 10px; padding: 13px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.xp-graph-head .label { font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.5); }
.xp-graph-head .label b { color: rgba(255,255,255,0.82); font-weight: 600; }
.xp-graph-head .live {
  margin-left: auto; font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  color: #36F0A4; display: inline-flex; align-items: center; gap: 6px;
  text-transform: uppercase; letter-spacing: .08em;
}
.xp-graph-head .live::before { content:''; width: 6px; height: 6px; border-radius: 50%; background: #36F0A4; box-shadow: 0 0 8px #36F0A4; }
.xp-graph-svg { display: block; width: 100%; height: auto; }

/* floating finding chip on graph */
.xp-graph-chip {
  position: absolute; display: flex; gap: 9px; align-items: center;
  background: rgba(10,18,38,0.92); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 9px 12px; backdrop-filter: blur(6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.5); max-width: 250px;
}
.xp-graph-chip .t { font-size: 12.5px; font-weight: 700; color: #fff; line-height: 1.2; }
.xp-graph-chip .m { font-family: var(--font-mono); font-size: 10.5px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.xp-graph-chip .sev-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }

/* product dashboard mock (hero variant C + product page) */
.xp-mock {
  border-radius: var(--radius-xl); overflow: hidden;
  background: #0C1424; border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.xp-mock-bar { display: flex; align-items: center; gap: 8px; padding: 12px 14px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.xp-mock-bar .dots { display: flex; gap: 6px; }
.xp-mock-bar .dots i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.14); }
.xp-mock-bar .addr {
  margin-left: 8px; font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.42);
  background: rgba(255,255,255,0.04); border-radius: var(--radius-md); padding: 4px 12px; flex: 1;
}
.xp-mock-body { padding: 18px; display: grid; gap: 12px; }

/* KPI stat cards (dark dashboard) */
/* dashboard split: KPI grid (2x2) + severity card side by side */
.xp-dash-split { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: stretch; }
.xp-kpi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.xp-kpi { padding: 12px; border-radius: var(--radius-lg); background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06); }
.xp-kpi-top { display: flex; align-items: center; justify-content: space-between; gap: 6px; margin-bottom: 10px; }
.xp-kpi-ic { width: 26px; height: 26px; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.xp-kpi-ic.crit { background: rgba(220,38,38,.16); color: #FCA5A5; }
.xp-kpi-ic.high { background: rgba(249,115,22,.16); color: #FDBA74; }
.xp-kpi-ic.info { background: rgba(59,130,246,.16); color: #93C5FD; }
.xp-kpi-ic.ok { background: rgba(16,185,129,.16); color: #6EE7B7; }
.xp-kpi-trend { display: inline-flex; align-items: center; gap: 2px; font-size: 9.5px; font-weight: 700; white-space: nowrap; }
.xp-kpi-trend.bad { color: #FCA5A5; }
.xp-kpi-trend.good { color: #6EE7B7; }
.xp-kpi-num { font-family: var(--font-display); font-size: 26px; font-weight: 800; line-height: 1; letter-spacing: -0.02em; }
.xp-kpi-num.crit { color: #FCA5A5; }  .xp-kpi-num.high { color: #FDBA74; }
.xp-kpi-num.info { color: #93C5FD; }  .xp-kpi-num.ok { color: #6EE7B7; }
.xp-kpi-label { font-size: 11px; color: rgba(255,255,255,0.55); font-weight: 500; margin-top: 5px; }

/* Issues by severity breakdown (minimal) */
.xp-sevcard { padding: 18px; border-radius: var(--radius-lg); background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06); display: flex; flex-direction: column; }
.xp-sevcard-head { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.xp-sevcard-head .t { font-size: 13px; font-weight: 700; color: #fff; }
.xp-sevcard-head .leg { margin-left: auto; display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.45); }
.xp-sevcard-head .leg i { width: 6px; height: 6px; border-radius: 50%; display: inline-block; margin-left: 9px; margin-right: 2px; }
.xp-sevcard-head .leg i.o { background: #F97316; }  .xp-sevcard-head .leg i.c { background: #10B981; }
.xp-sevlist { display: flex; flex-direction: column; gap: 16px; flex: 1; justify-content: center; }
.xp-sevrow { display: flex; flex-direction: column; gap: 8px; }
.xp-sevrow-top { display: flex; align-items: baseline; justify-content: space-between; }
.xp-sevrow .nm { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,0.82); }
.xp-sevrow .nm .dot { width: 7px; height: 7px; border-radius: 50%; }
.xp-sevrow .nm .dot.crit { background: #DC2626; }  .xp-sevrow .nm .dot.high { background: #F97316; }
.xp-sevrow .nm .dot.med { background: #F59E0B; }  .xp-sevrow .nm .dot.low { background: #10B981; }
.xp-sevrow .tot b { font-family: var(--font-display); font-size: 15px; font-weight: 800; color: #fff; }
.xp-sevbar { position: relative; height: 5px; border-radius: 3px; background: rgba(16,185,129,0.65); overflow: hidden; }
.xp-sevbar .fill { position: absolute; left: 0; top: 0; bottom: 0; border-radius: 3px; }
.xp-sevbar .fill.crit { background: #DC2626; }  .xp-sevbar .fill.high { background: #F97316; }
.xp-sevbar .fill.med { background: #F59E0B; }  .xp-sevbar .fill.low { background: #34D399; }

@media (max-width: 560px) {
  .xp-dash-split { grid-template-columns: 1fr; }
}
.xp-mock-row {
  display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center;
  padding: 13px 14px; border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
}
.xp-mock-row .id { font-family: var(--font-mono); font-size: 10.5px; color: rgba(255,255,255,0.4); }
.xp-mock-row .ti { font-size: 13.5px; font-weight: 600; color: #fff; margin-top: 2px; }
.xp-sev {
  display: inline-flex; align-items: center; gap: 6px; padding: 3px 9px; border-radius: var(--radius-full);
  font-size: 11px; font-weight: 700; font-family: var(--font-sans); white-space: nowrap;
}
.xp-sev i { width: 6px; height: 6px; border-radius: 50%; }
.xp-sev.crit { background: rgba(220,38,38,.16); color: #FCA5A5; }  .xp-sev.crit i { background: #DC2626; }
.xp-sev.high { background: rgba(249,115,22,.16); color: #FDBA74; }  .xp-sev.high i { background: #F97316; }
.xp-sev.med  { background: rgba(245,158,11,.16); color: #FCD34D; }  .xp-sev.med i { background: #F59E0B; }
.xp-sev.low  { background: rgba(59,130,246,.16); color: #93C5FD; }  .xp-sev.low i { background: #3B82F6; }
.xp-mock-cvss { font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,0.6); font-weight: 600; }

/* findings table (minimal, dark) */
.xp-find { display: flex; flex-direction: column; }
.xp-find-head, .xp-find-row {
  display: grid; grid-template-columns: 1fr 130px 48px 88px 84px 56px; gap: 14px; align-items: center;
}
.xp-find-head {
  padding: 0 6px 10px; font-size: 9.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); border-bottom: 1px solid rgba(255,255,255,0.06);
}
.xp-find-row { padding: 11px 6px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.xp-find-row:last-child { border-bottom: none; }
.xp-find .fd { display: inline-flex; align-items: center; gap: 10px; min-width: 0; }
.xp-find .fd-ic { width: 22px; height: 22px; border-radius: 7px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.xp-find .fd-ic.crit { background: rgba(220,38,38,.15); color: #FCA5A5; }
.xp-find .fd-ic.high { background: rgba(249,115,22,.15); color: #FDBA74; }
.xp-find .fd-ic.med { background: rgba(245,158,11,.15); color: #FCD34D; }
.xp-find .fd-ic.low { background: rgba(59,130,246,.15); color: #93C5FD; }
.xp-find .fd-ti { font-size: 13px; font-weight: 600; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.xp-find .fd-asset { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.xp-find .fd-asset b { font-family: var(--font-mono); font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.78); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.xp-find .fd-asset span { font-size: 10.5px; color: rgba(255,255,255,0.4); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.xp-find .fd-cvss { font-family: var(--font-mono); font-size: 13px; font-weight: 700; }
.xp-find .fd-cvss.crit { color: #FB7185; }  .xp-find .fd-cvss.high { color: #FB923C; }
.xp-find .fd-cvss.med { color: #FBBF24; }  .xp-find .fd-cvss.low { color: #93C5FD; }
.xp-find .fd-status { font-size: 11px; font-weight: 600; white-space: nowrap; }
.xp-find .fd-status.open { color: #FB7185; }
.xp-find .fd-status.progress { color: #7FB2FF; }
.xp-find .fd-status.fixed { color: #6EE7B7; }
.xp-find .fd-fix { font-size: 11.5px; color: rgba(255,255,255,0.5); font-weight: 500; text-align: right; }
/* skeleton rows */
.xp-find-row.sk { opacity: 0.6; }
.sk-box, .sk-line, .sk-pill { display: inline-block; background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.11) 37%, rgba(255,255,255,0.05) 63%);
  background-size: 400% 100%; animation: xp-shimmer 1.5s ease-in-out infinite; border-radius: 4px; }
.sk-line { height: 9px; }
.sk-pill { width: 56px; height: 18px; border-radius: 999px; }
@keyframes xp-shimmer { 0% { background-position: 100% 0; } 100% { background-position: 0 0; } }
@media (prefers-reduced-motion: reduce) { .sk-box, .sk-line, .sk-pill { animation: none; } }
@media (max-width: 560px) {
  .xp-find-head { display: none; }
  .xp-find-row { grid-template-columns: 1fr auto auto; gap: 10px; }
  .xp-find-row .fd-asset, .xp-find-row .fd-status { display: none; }
}

/* ============ PRODUCT DASHBOARD (uploaded screenshot) ============ */
.xp-dash { display: block; border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10); box-shadow: 0 30px 70px rgba(0,0,0,0.45); background: transparent; }
.xp-dash img { display: block; width: 100%; height: auto; }
/* hero: scale down slightly + crop the bottom ~10% so it seats in the frame */
.xp-hero-visual-wrap .xp-dash { max-width: 92%; margin-left: auto; margin-right: auto; }
.xp-hero-visual-wrap .xp-dash img { height: 90%; object-fit: cover; object-position: top; aspect-ratio: 2306 / 1345; }
/* sidebar */
.xp-dash-side { width: 212px; flex-shrink: 0; background: #fff; border-right: 1px solid var(--border);
  display: flex; flex-direction: column; padding: 14px 12px; }
.xp-dash-org { display: flex; align-items: center; gap: 9px; padding: 8px; border: 1px solid var(--border); border-radius: 10px; margin-bottom: 16px; }
.xp-dash-org .org-badge { width: 28px; height: 28px; border-radius: 7px; background: linear-gradient(135deg,#4B8BEA,#0A5BD7); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; flex-shrink: 0; }
.xp-dash-org .org-name { font-size: 12.5px; font-weight: 700; color: var(--neutral-900); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.xp-dash-nav { flex: 1; overflow: hidden; display: flex; flex-direction: column; gap: 14px; }
.xp-dash-navgroup { display: flex; flex-direction: column; gap: 2px; }
.xp-dash-navlabel { font-size: 9.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--neutral-400); margin: 0 8px 5px; }
.xp-dash-navitem { display: flex; align-items: center; gap: 10px; padding: 7px 9px; border-radius: 8px; color: var(--neutral-600); font-size: 12.5px; font-weight: 600; }
.xp-dash-navitem.active { background: var(--brand-blue-50); color: var(--brand-blue-600); }
.xp-dash-navitem .navbadge { margin-left: auto; font-size: 10px; font-weight: 700; background: var(--brand-blue-500); color: #fff; border-radius: 999px; padding: 1px 7px; }
.xp-dash-credits { border: 1px solid var(--border); border-radius: 12px; padding: 12px; margin-top: 12px; }
.xp-dash-credits .cr-top { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 700; color: var(--neutral-800); }
.xp-dash-credits .cr-ic { width: 22px; height: 22px; border-radius: 6px; background: var(--brand-blue-50); color: var(--brand-blue-500); display: flex; align-items: center; justify-content: center; }
.xp-dash-credits .cr-n { margin-left: auto; font-size: 11px; color: var(--neutral-500); font-weight: 600; }
.xp-dash-credits .cr-bar { height: 5px; border-radius: 3px; background: var(--neutral-100); margin: 9px 0 6px; overflow: hidden; }
.xp-dash-credits .cr-bar span { display: block; height: 100%; background: linear-gradient(90deg,#4B8BEA,#0A5BD7); border-radius: 3px; }
.xp-dash-credits .cr-meta { display: flex; justify-content: space-between; font-size: 10.5px; color: var(--neutral-400); }
.xp-dash-credits .cr-meta .rem { color: var(--brand-blue-500); font-weight: 700; }
.xp-dash-credits .cr-btn { margin-top: 10px; width: 100%; border: none; border-radius: 8px; background: linear-gradient(135deg,#4B8BEA,#0A5BD7); color: #fff; font-weight: 700; font-size: 12px; padding: 9px; display: flex; align-items: center; justify-content: center; gap: 6px; font-family: var(--font-display); cursor: pointer; }
/* main */
.xp-dash-main { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.xp-dash-top { display: flex; align-items: center; justify-content: flex-end; gap: 20px; padding: 12px 22px; border-bottom: 1px solid var(--border); background: #fff; }
.xp-dash-top .dt-link { font-size: 12.5px; font-weight: 600; color: var(--neutral-700); }
.xp-dash-top .dt-ic { position: relative; color: var(--neutral-500); display: inline-flex; }
.xp-dash-top .dt-ic .dot { position: absolute; top: -7px; right: -9px; font-size: 8.5px; font-weight: 700; color: #fff; border-radius: 999px; min-width: 15px; height: 15px; display: flex; align-items: center; justify-content: center; padding: 0 3px; font-family: var(--font-sans); }
.xp-dash-top .dt-ic .dot.orange { background: #F97316; }
.xp-dash-top .dt-ic .dot.blue { background: #0A5BD7; }
.xp-dash-top .dt-user { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; color: var(--neutral-800); }
.xp-dash-top .dt-user .av { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg,#FF8A5B,#EC4899); color: #fff; display: flex; align-items: center; justify-content: center; }
.xp-dash-scroll { flex: 1; padding: 18px; display: flex; flex-direction: column; gap: 14px; background: #F6F8FC; }
/* KPI cards */
.xp-dash-kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.xp-dk { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 16px; }
.xp-dk-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.xp-dk-ic { width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.xp-dk-ic.crit { background: #FEE2E2; color: #DC2626; }  .xp-dk-ic.high { background: #FFEDD5; color: #F97316; }
.xp-dk-ic.info { background: #DBEAFE; color: #2563EB; }  .xp-dk-ic.ok { background: #D1FAE5; color: #059669; }
.xp-dk-trend { display: inline-flex; align-items: center; gap: 3px; font-size: 11px; font-weight: 700; }
.xp-dk-trend.bad { color: #DC2626; }  .xp-dk-trend.good { color: #059669; }
.xp-dk-num { font-family: var(--font-display); font-size: 32px; font-weight: 800; line-height: 1; letter-spacing: -0.02em; }
.xp-dk-num.crit { color: #DC2626; }  .xp-dk-num.high { color: #F97316; }
.xp-dk-num.info { color: #2563EB; }  .xp-dk-num.ok { color: #059669; }
.xp-dk-label { font-size: 12.5px; color: var(--neutral-500); font-weight: 500; margin-top: 8px; }
/* panels */
.xp-dash-row3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.xp-dash-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.xp-panel { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 16px; min-width: 0; }
.xp-panel-h { display: flex; align-items: center; gap: 9px; margin-bottom: 16px; color: var(--neutral-400); }
.xp-panel-h b { display: block; font-size: 13.5px; font-weight: 700; color: var(--neutral-900); letter-spacing: -0.01em; }
.xp-panel-h span { font-size: 11px; color: var(--neutral-400); }
.xp-panel-tag { margin-left: auto; display: inline-flex; align-items: center; gap: 3px; font-size: 10.5px; font-weight: 700; padding: 3px 8px; border-radius: 999px; }
.xp-panel-tag.good { background: #D1FAE5; color: #059669; }
/* donut */
.xp-donut-wrap { display: flex; align-items: center; gap: 18px; }
.xp-donut { width: 92px; height: 92px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.xp-donut .hole { width: 58px; height: 58px; border-radius: 50%; background: #fff; }
.xp-donut-leg { flex: 1; display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.xp-donut-leg .dl-top { display: flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: var(--neutral-700); }
.xp-donut-leg .dl-top i { width: 9px; height: 9px; border-radius: 50%; }
.xp-donut-leg .dl-top i.o { background: #DC2626; }  .xp-donut-leg .dl-top i.c { background: #10B981; }
.xp-donut-leg .dl-top b { margin-left: auto; font-family: var(--font-display); font-size: 15px; font-weight: 800; color: var(--neutral-900); }
.xp-donut-leg .dl-bar { display: block; height: 6px; border-radius: 3px; background: var(--neutral-100); margin-top: 6px; overflow: hidden; }
.xp-donut-leg .dl-bar span { display: block; height: 100%; border-radius: 3px; }
.xp-donut-leg .dl-bar span.o { background: #DC2626; }  .xp-donut-leg .dl-bar span.c { background: #10B981; }
/* severity (light, scoped over the dark base rules) */
.xp-dash .xp-sevlist { display: flex; flex-direction: column; gap: 12px; }
.xp-dash .xp-sevrow { display: flex; flex-direction: column; gap: 7px; }
.xp-dash .xp-sevrow-top { display: flex; align-items: baseline; justify-content: space-between; }
.xp-dash .xp-sevrow .nm { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: var(--neutral-800); }
.xp-dash .xp-sevrow .nm .dot { width: 8px; height: 8px; border-radius: 50%; }
.xp-dash .xp-sevrow .nm .dot.crit { background: #DC2626; }  .xp-dash .xp-sevrow .nm .dot.high { background: #F97316; }
.xp-dash .xp-sevrow .nm .dot.med { background: #F59E0B; }  .xp-dash .xp-sevrow .nm .dot.low { background: #10B981; }
.xp-dash .xp-sevrow .cts { display: inline-flex; gap: 11px; font-family: var(--font-mono); font-size: 11.5px; font-weight: 700; }
.xp-dash .xp-sevrow .cts .o.crit { color: #DC2626; }  .xp-dash .xp-sevrow .cts .o.high { color: #F97316; }
.xp-dash .xp-sevrow .cts .o.med { color: #D97706; }  .xp-dash .xp-sevrow .cts .o.low { color: #059669; }
.xp-dash .xp-sevrow .cts .c { color: #10B981; }  .xp-dash .xp-sevrow .cts .tt { color: var(--neutral-900); }
.xp-dash .xp-sevbar { position: relative; height: 6px; border-radius: 3px; background: #10B981; overflow: hidden; }
.xp-dash .xp-sevbar .fill { position: absolute; left: 0; top: 0; bottom: 0; border-radius: 3px; }
.xp-dash .xp-sevbar .fill.crit { background: #DC2626; }  .xp-dash .xp-sevbar .fill.high { background: #F97316; }
.xp-dash .xp-sevbar .fill.med { background: #F59E0B; }  .xp-dash .xp-sevbar .fill.low { background: #34D399; }
/* vertical bar charts */
.xp-bars { display: flex; align-items: flex-end; justify-content: space-around; gap: 8px; height: 88px; padding: 0 2px; }
.xp-bars.tall { height: 118px; }
.xp-bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; height: 100%; gap: 7px; }
.xp-bar { width: 60%; max-width: 26px; border-radius: 5px 5px 0 0; min-height: 4px; }
.xp-bar-x { font-size: 10px; color: var(--neutral-400); font-weight: 600; }
.xp-aging-leg { display: grid; grid-template-columns: 1fr 1fr; gap: 7px 14px; margin-top: 16px; }
.xp-aging-leg .al { display: flex; align-items: center; gap: 7px; font-size: 11px; color: var(--neutral-500); font-weight: 500; }
.xp-aging-leg .al i { width: 8px; height: 8px; border-radius: 2px; }
.xp-aging-leg .al b { margin-left: auto; color: var(--neutral-900); font-weight: 700; font-family: var(--font-mono); }
/* area chart */
.xp-area { width: 100%; height: 104px; display: block; }
.xp-area-x { display: flex; justify-content: space-between; font-size: 10px; color: var(--neutral-400); font-weight: 600; margin-top: 6px; }
@media (max-width: 760px) {
  .xp-dash { height: auto; }
  .xp-dash-side { display: none; }
  .xp-dash-kpis { grid-template-columns: 1fr 1fr; }
  .xp-dash-row3, .xp-dash-row2 { grid-template-columns: 1fr; }
}

/* ============ SECTION SCAFFOLD ============ */
.xp-section { padding: 104px 0; }
.xp-section-tight { padding: 72px 0; }
.xp-section.subtle { background: var(--neutral-25); }
.xp-section.dark { background: var(--xp-hero-bg); color: #fff; position: relative; overflow: hidden; }

.xp-eyebrow {
  font-family: var(--font-sans); font-size: 12px; font-weight: 700; line-height: 1;
  letter-spacing: .14em; text-transform: uppercase; color: var(--brand-blue-500); margin-bottom: 16px;
}
.xp-section.dark .xp-eyebrow { color: var(--brand-blue-300); }
.xp-h2 {
  font-size: clamp(30px, 3.6vw, 46px); font-weight: 800; line-height: 1.08;
  letter-spacing: -0.022em; color: var(--neutral-900); margin: 0 0 18px; max-width: 760px;
}
.xp-section.dark .xp-h2 { color: #fff; }
.xp-lead { font-size: 19px; line-height: 1.6; color: var(--neutral-600); max-width: 680px; margin: 0; }
.xp-section.dark .xp-lead { color: rgba(255,255,255,0.7); }
.xp-center { margin-left: auto; margin-right: auto; text-align: center; }

/* ============ LOGO STRIP ============ */
.xp-logos { padding: 44px 0; background: #fff; border-bottom: 1px solid var(--border); }
.xp-logos.on-dark { background: var(--xp-hero-bg); border-bottom: 1px solid rgba(255,255,255,0.07); }
.xp-logos-label { text-align: center; font-size: 12.5px; font-weight: 600; letter-spacing: .04em;
  color: var(--neutral-500); margin-bottom: 26px; }
.xp-logos.on-dark .xp-logos-label { color: rgba(255,255,255,0.5); }
.xp-logos-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 52px; }
.xp-logo-item {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 800; font-size: 19px; letter-spacing: -0.01em; color: var(--neutral-400);
  opacity: .9; transition: color 160ms, opacity 160ms;
}
.xp-logos.on-dark .xp-logo-item { color: rgba(255,255,255,0.46); }
.xp-logo-item:hover { color: var(--neutral-700); }
.xp-logos.on-dark .xp-logo-item:hover { color: #fff; }
.xp-logo-item svg { opacity: .85; }

/* ============ FEATURE / DIFFERENTIATION GRID ============ */
.xp-feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 56px; }
.xp-feature {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 32px; transition: border-color 200ms, box-shadow 200ms;
}
.xp-feature:hover { border-color: var(--brand-blue-200); box-shadow: var(--shadow-md); }
.xp-feature-ic {
  width: 48px; height: 48px; border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  background: var(--brand-blue-50); color: var(--brand-blue-500); margin-bottom: 22px;
}
.xp-feature h3 { font-size: 21px; font-weight: 700; color: var(--neutral-900); margin: 0 0 10px; letter-spacing: -0.01em; }
.xp-feature p { font-size: 15px; line-height: 1.62; color: var(--neutral-600); margin: 0; }

/* ============ USE-CASES (numbered) ============ */
.xp-cases { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; margin-top: 56px; }
.xp-case { background: #fff; padding: 34px; transition: background 160ms; }
.xp-case:hover { background: var(--neutral-25); }
.xp-case-num { font-family: var(--font-mono); font-size: 13px; font-weight: 700; color: var(--brand-blue-400); margin-bottom: 18px; }
.xp-case h3 { font-size: 20px; font-weight: 700; color: var(--neutral-900); margin: 0 0 10px; letter-spacing: -0.01em; }
.xp-case p { font-size: 15px; line-height: 1.6; color: var(--neutral-600); margin: 0; }

/* ============ METHODOLOGY (steps + visual) ============ */
.xp-method-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; margin-top: 56px; }
.xp-steps { display: flex; flex-direction: column; gap: 14px; }
.xp-step {
  display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 20px;
  border-radius: var(--radius-xl); border: 1px solid var(--border); background: #fff;
  cursor: pointer; transition: border-color 160ms, background 160ms, box-shadow 160ms;
}
.xp-step:hover { border-color: var(--brand-blue-200); }
.xp-step.active { border-color: var(--brand-blue-500); background: var(--brand-blue-50); box-shadow: 0 0 0 3px rgba(10,91,215,0.08); }
.xp-step-num {
  width: 44px; height: 44px; border-radius: var(--radius-lg); background: var(--navy-900); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 17px;
}
.xp-step.active .xp-step-num { background: var(--brand-blue-500); }
.xp-step h4 { font-size: 16px; font-weight: 700; color: var(--neutral-900); margin: 0 0 4px; }
.xp-step p { font-size: 14px; line-height: 1.5; color: var(--neutral-600); margin: 0; }

.xp-method-panel {
  position: sticky; top: 92px; border-radius: var(--radius-2xl); background: var(--xp-hero-bg);
  border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 24px 60px rgba(9,30,66,0.18); overflow: hidden;
  min-height: 440px;
}

/* ============ COMPARISON ============ */
.xp-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
.xp-compare-card { border-radius: var(--radius-xl); padding: 32px; border: 1px solid var(--border); background: #fff; }
.xp-compare-card.win { background: var(--xp-hero-bg); border-color: transparent; color: #fff; position: relative; overflow: hidden; isolation: isolate; }
.xp-compare-card.win::after { content:''; position:absolute; inset:0; z-index:-1;
  background-image: radial-gradient(600px 360px at 80% 0%, rgba(10,91,215,0.30), transparent 65%); }
.xp-compare-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.xp-compare-head h3 { font-size: 20px; font-weight: 700; margin: 0; letter-spacing: -0.01em; }
.xp-compare-card.win h3 { color: #fff; }
.xp-compare-tag { font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: .05em;
  padding: 4px 10px; border-radius: var(--radius-full); }
.xp-compare-card .xp-compare-tag { background: var(--neutral-100); color: var(--neutral-600); }
.xp-compare-card.win .xp-compare-tag { background: rgba(54,240,164,0.16); color: #36F0A4; }
.xp-compare-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.xp-compare-list li { display: grid; grid-template-columns: 24px 1fr; gap: 14px; align-items: start; }
.xp-compare-list .ic { width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.xp-compare-card .ic { background: var(--neutral-100); color: var(--neutral-500); }
.xp-compare-card.win .ic { background: rgba(54,240,164,0.16); color: #36F0A4; }
.xp-compare-list .lt { font-size: 15px; font-weight: 700; margin: 0 0 3px; }
.xp-compare-card .lt { color: var(--neutral-900); }
.xp-compare-card.win .lt { color: #fff; }
.xp-compare-list .ld { font-size: 13.5px; line-height: 1.5; margin: 0; }
.xp-compare-card .ld { color: var(--neutral-500); }
.xp-compare-card.win .ld { color: rgba(255,255,255,0.62); }

/* ============ STATS ============ */
.xp-stats { background: var(--xp-hero-bg); color: #fff; padding: 96px 0; position: relative; overflow: hidden; }
.xp-stats::before { content:''; position:absolute; inset:0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, black, transparent 75%); }
.xp-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; position: relative; }
.xp-stat { border-left: 2px solid var(--brand-blue-500); padding-left: 22px; }
.xp-stat-num { font-size: clamp(38px, 4.6vw, 56px); font-weight: 800; letter-spacing: -0.02em; line-height: 1; margin-bottom: 10px; }
.xp-stat-num .grad { background: linear-gradient(120deg, #6FA8FF, #0A5BD7);
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.xp-stat-label { font-size: 13.5px; color: rgba(255,255,255,0.62); font-weight: 500; line-height: 1.45; }

/* ============ COMPLIANCE (tinted cards w/ illustration) ============ */
.xp-comp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 48px; }
.xp-comp-card {
  position: relative; overflow: hidden; border: 1px solid transparent;
  border-radius: var(--radius-2xl); padding: 26px 24px 28px; min-height: 300px;
  transition: transform 200ms var(--ease-out), box-shadow 200ms;
}
.xp-comp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.xp-comp-card.t-rose   { background: linear-gradient(160deg, #FCE7E4 0%, #FBEFEC 100%); }
.xp-comp-card.t-amber  { background: linear-gradient(160deg, #FBF0CF 0%, #FCF5DD 100%); }
.xp-comp-card.t-blue   { background: linear-gradient(160deg, #E1E8FB 0%, #ECF0FC 100%); }
.xp-comp-card.t-violet { background: linear-gradient(160deg, #E9E4F9 0%, #F0ECFB 100%); }
.xp-comp-art {
  position: absolute; top: 22px; right: 20px; width: 76px; height: 76px;
  display: flex; align-items: center; justify-content: center;
}
.xp-comp-badge {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono);
  font-size: 11px; font-weight: 700; color: var(--neutral-700);
  background: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-full); padding: 5px 12px 5px 6px; margin-bottom: 72px; letter-spacing: .03em;
}
.xp-comp-badge .bm { width: 20px; height: 20px; border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.xp-comp-card h4 { font-size: 19px; font-weight: 800; color: var(--neutral-900); margin: 0 0 10px; letter-spacing: -0.01em; }
.xp-comp-card p { font-size: 14px; line-height: 1.58; color: var(--neutral-600); margin: 0; }

/* ============ COMPLIANCE (two-column: image + copy) ============ */
.xp-comp-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.xp-comp-frame { border-radius: var(--radius-2xl); padding: 36px;
  background:
    radial-gradient(420px 320px at 50% 40%, rgba(10,91,215,0.06), transparent 70%),
    linear-gradient(160deg, #F4F7FE, #FBFAFF);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center; }
.xp-comp-frame img { display: block; width: 100%; max-width: 360px; height: auto; }
/* unified compliance logo grid (white tiles normalize mixed backgrounds) */
.xp-comp-logos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; width: 100%; }
.xp-comp-logos .cl { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  height: 96px; display: flex; align-items: center; justify-content: center; padding: 14px; box-shadow: var(--shadow-xs); }
.xp-comp-logos .cl img { display: block; max-width: 100%; max-height: 100%; width: auto; height: auto; }
.xp-comp-logos .cl.wide { grid-column: span 3; height: 88px; }
.xp-comp-copy .xp-eyebrow { margin-bottom: 16px; }
.xp-comp-copy .xp-lead { margin-bottom: 28px; }
.xp-comp-points { display: flex; flex-direction: column; gap: 13px; }
.xp-comp-points span { display: inline-flex; align-items: center; gap: 11px; font-size: 15.5px; font-weight: 600; color: var(--neutral-800); }
.xp-comp-points span svg { color: var(--brand-blue-500); flex-shrink: 0; }
@media (max-width: 900px) {
  .xp-comp-split { grid-template-columns: 1fr; gap: 36px; }
  .xp-comp-frame { padding: 28px; }
  .xp-cov-split { grid-template-columns: 1fr; gap: 32px; }
}

/* ============ COVERAGE ============ */
.xp-cov-split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.xp-cov-copy .xp-eyebrow { margin-bottom: 16px; }
.xp-cov-split .xp-cov-grid { grid-template-columns: 1fr 1fr; margin-top: 0; }

/* coverage illustration: central core + 4 domain chips */
.xp-cov-art { position: relative; min-height: 360px; }
.xp-cov-lines { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.xp-cov-pulse { animation: xp-ring 2.8s var(--ease-out) infinite; }
.xp-cov-core { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 2;
  width: 116px; height: 116px; border-radius: 50%; background: #fff; border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(10,91,215,0.18); display: flex; align-items: center; justify-content: center; }
.xp-cov-core img { width: 56px; height: 56px; object-fit: contain; display: block; }
.xp-cov-chip { position: absolute; z-index: 1; width: 46%; display: flex; align-items: flex-start; gap: 10px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 12px 13px; box-shadow: var(--shadow-sm); }
.xp-cov-chip .ci { width: 30px; height: 30px; border-radius: 8px; background: var(--navy-900); color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.xp-cov-chip b { display: block; font-size: 13.5px; font-weight: 700; color: var(--neutral-900); letter-spacing: -0.01em; margin-bottom: 2px; }
.xp-cov-chip span:not(.ci) { font-size: 11.5px; line-height: 1.4; color: var(--neutral-500); }
.xp-cov-chip.c0 { top: 6px; left: 0; }
.xp-cov-chip.c1 { top: 6px; right: 0; }
.xp-cov-chip.c2 { bottom: 6px; left: 0; }
.xp-cov-chip.c3 { bottom: 6px; right: 0; }
@media (max-width: 900px) { .xp-cov-art { min-height: 420px; } }
@media (max-width: 480px) {
  .xp-cov-chip { position: static; width: 100%; margin-bottom: 10px; }
  .xp-cov-lines, .xp-cov-core { display: none; }
}

.xp-cov-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.xp-cov { border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 28px; background: var(--neutral-25); }
.xp-cov-ic { width: 42px; height: 42px; border-radius: var(--radius-lg); background: var(--navy-900); color: #fff;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.xp-cov h4 { font-size: 16px; font-weight: 700; color: var(--neutral-900); margin: 0 0 8px; }
.xp-cov p { font-size: 14px; line-height: 1.55; color: var(--neutral-600); margin: 0; }

/* ============ TESTIMONIAL ============ */
.xp-quote-sec { background: var(--xp-hero-bg); color: #fff; padding: 110px 0; position: relative; overflow: hidden; isolation: isolate; }
.xp-quote-sec::after { content:''; position:absolute; inset:0; z-index:-1;
  background-image: radial-gradient(700px 420px at 50% -10%, rgba(10,91,215,0.26), transparent 62%); }
.xp-quote { font-size: clamp(24px, 2.8vw, 34px); font-weight: 600; line-height: 1.34; letter-spacing: -0.01em;
  color: #fff; max-width: 900px; margin: 0 auto 36px; text-align: center; }
.xp-quote .hl { color: var(--brand-blue-300); }
.xp-author { display: flex; align-items: center; justify-content: center; gap: 13px; }
.xp-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, #4B8BEA, #0A5BD7);
  color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.xp-author-name { font-size: 14px; font-weight: 700; color: #fff; }
.xp-author-role { font-size: 13px; color: rgba(255,255,255,0.6); }

/* multi testimonial cards */
.xp-tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.xp-tcard { display: flex; flex-direction: column; border-radius: var(--radius-2xl);
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); padding: 28px; }
.xp-tcard-logo { display: flex; align-items: center; gap: 9px; font-family: var(--font-display);
  font-weight: 800; font-size: 17px; color: #fff; letter-spacing: -0.01em; margin-bottom: 20px; }
.xp-tcard-quote { font-size: 15.5px; line-height: 1.6; color: rgba(255,255,255,0.86); margin: 0 0 24px; flex: 1; }
.xp-tcard-author { display: flex; align-items: center; gap: 13px; }
.xp-tcard-photo { position: relative; width: 46px; height: 46px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.15); }
.xp-tcard-photo image-slot { position: absolute; inset: 0; display: block; width: 100%; height: 100%; z-index: 1; }
.xp-tcard-initials { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 15px; }
.xp-tcard-name { font-size: 14px; font-weight: 700; color: #fff; }
.xp-tcard-role { font-size: 12.5px; color: rgba(255,255,255,0.58); margin-top: 2px; }
@media (max-width: 860px) { .xp-tcards { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; } }

/* ============ CTA ============ */
.xp-cta { background: var(--xp-hero-bg); color: #fff; padding: 92px 40px; position: relative; overflow: hidden; isolation: isolate;
  width: calc(100% - 48px); max-width: 1200px; margin: 88px auto; border-radius: 32px; border: 1px solid rgba(255,255,255,0.06); }
.xp-cta::before { content:''; position:absolute; inset:0; z-index:-2;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px); background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 70% 90% at 50% 50%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 90% at 50% 50%, black 20%, transparent 75%); }
.xp-cta::after { content:''; position:absolute; inset:0; z-index:-1;
  background-image: radial-gradient(760px 420px at 50% 110%, rgba(10,91,215,0.34), transparent 64%); }
.xp-cta-inner { text-align: center; }
.xp-cta-frame {
  position: absolute; top: 50%; right: -60px; left: auto; transform: translateY(-50%);
  width: min(420px, 50%); height: 116%; z-index: -1; pointer-events: none;
  background: url('/assets/cta-frame.svg') center right / contain no-repeat;
  opacity: 0.12;
}
.xp-cta h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 800; letter-spacing: -0.025em; margin: 0 0 18px; color: #fff; line-height: 1.05; }
.xp-cta p { font-size: 19px; color: rgba(255,255,255,0.72); max-width: 600px; margin: 0 auto 34px; }
.xp-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============ FOOTER ============ */
.xp-footer { padding: 72px 0 36px; background: var(--xp-hero-bg); color: #fff; border-top: 1px solid rgba(255,255,255,0.07); }
.xp-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.xp-footer-tagline { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; margin: 16px 0 22px; max-width: 300px; }
.xp-footer-mail { font-family: var(--font-mono); font-size: 13px; color: var(--brand-blue-300); }
.xp-footer-social { display: flex; gap: 10px; margin-top: 18px; }
.xp-footer-social a { width: 36px; height: 36px; border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: all 140ms; }
.xp-footer-social a:hover { color: #fff; border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.06); }
.xp-footer-col h5 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,0.45); margin: 0 0 16px; }
.xp-footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.xp-footer-col a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.72); text-decoration: none; }
.xp-footer-col a:hover { color: #fff; }
.xp-footer-addr { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; margin-top: 20px;
  transition: color 200ms var(--ease-out); cursor: default; }
.xp-footer-addr:hover { color: #fff; }
.xp-footer-bottom { padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,0.5); }
.xp-footer-bottom .legal { display: flex; gap: 20px; }
.xp-footer-bottom a { color: rgba(255,255,255,0.5); }
.xp-footer-bottom a:hover { color: #fff; }

/* ============ PAGE HEADER (inner pages) ============ */
.xp-pagehead { background: var(--xp-hero-bg); color: #fff; padding: 84px 0 72px; position: relative; overflow: hidden; isolation: isolate;
  margin-top: calc(-1 * var(--xp-nav-h)); padding-top: calc(84px + var(--xp-nav-h)); }
.xp-pagehead::before { content:''; position:absolute; inset:0; z-index:-2;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px); background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 20%, black 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 20%, black 25%, transparent 78%); }
.xp-pagehead::after { content:''; position:absolute; inset:0; z-index:-1;
  background-image:
    radial-gradient(620px 420px at 80% 6%, rgba(10,91,215,0.32), transparent 62%),
    radial-gradient(560px 420px at 8% 20%, rgba(109,94,245,0.26), transparent 62%),
    radial-gradient(520px 380px at 55% 110%, rgba(255,138,91,0.18), transparent 60%); }
.xp-pagehead h1 { font-size: clamp(36px, 4.6vw, 60px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.04; margin: 18px 0 18px; color: #fff; max-width: 820px; }
.xp-pagehead p { font-size: 19px; line-height: 1.55; color: rgba(255,255,255,0.72); max-width: 620px; margin: 0; }

/* ============ PRICING ============ */
.xp-price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 8px; }
.xp-price { border: 1px solid var(--border); border-radius: var(--radius-2xl); padding: 34px; background: #fff;
  display: flex; flex-direction: column; transition: border-color 200ms, box-shadow 200ms; }
.xp-price:hover { border-color: var(--brand-blue-200); box-shadow: var(--shadow-md); }
.xp-price.feat { background: var(--xp-hero-bg); border-color: transparent; color: #fff; position: relative; overflow: hidden; isolation: isolate; }
.xp-price.feat::after { content:''; position:absolute; inset:0; z-index:-1;
  background-image: radial-gradient(500px 340px at 80% 0%, rgba(10,91,215,0.32), transparent 64%); }
.xp-price-badge { align-self: flex-start; font-family: var(--font-mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: #36F0A4; background: rgba(54,240,164,0.14);
  border-radius: var(--radius-full); padding: 4px 11px; margin-bottom: 20px; }
.xp-price h3 { font-size: 22px; font-weight: 700; margin: 0 0 6px; letter-spacing: -0.01em; }
.xp-price.feat h3 { color: #fff; }
.xp-price .desc { font-size: 14px; line-height: 1.55; color: var(--neutral-600); margin: 0 0 22px; min-height: 44px; }
.xp-price.feat .desc { color: rgba(255,255,255,0.66); }
.xp-price .amt { font-size: 40px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 4px; }
.xp-price.feat .amt { color: #fff; }
.xp-price .per { font-size: 14px; color: var(--neutral-500); margin-bottom: 26px; }
.xp-price.feat .per { color: rgba(255,255,255,0.55); }
.xp-price ul { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 13px; flex: 1; }
.xp-price li { display: grid; grid-template-columns: 20px 1fr; gap: 11px; font-size: 14px; line-height: 1.45; color: var(--neutral-700); }
.xp-price.feat li { color: rgba(255,255,255,0.82); }
.xp-price li svg { color: var(--brand-blue-500); margin-top: 2px; }
.xp-price.feat li svg { color: #36F0A4; }

/* two-up pricing layout + icon + head/amount rows */
.xp-price-grid.two { grid-template-columns: repeat(2, 1fr); }
.xp-price-ic { width: 46px; height: 46px; border-radius: var(--radius-xl); display: flex; align-items: center;
  justify-content: center; background: var(--brand-blue-50); color: var(--brand-blue-500); margin-bottom: 22px; }
.xp-price.feat .xp-price-ic { background: rgba(255,255,255,0.1); color: #fff; }
.xp-price-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 6px; }
.xp-price-head h3 { margin: 0; }
.xp-price .amt-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 24px; }
.xp-price .amt-row .amt { margin-bottom: 0; }
.xp-price .amt-row .per { margin-bottom: 0; }
.xp-price .amt-note { font-size: 12.5px; line-height: 1.5; color: var(--neutral-500); margin: -16px 0 22px;
  padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.xp-price.feat .amt-note { color: rgba(255,255,255,0.6); border-bottom-color: rgba(255,255,255,0.12); }
.xp-price-incl { font-size: 13px; font-weight: 700; color: var(--neutral-500); text-transform: uppercase;
  letter-spacing: .06em; margin-bottom: 16px; }
.xp-price.feat .xp-price-incl { color: rgba(255,255,255,0.5); }

/* add-ons */
.xp-addon-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.xp-addon { border: 1px solid var(--border); border-radius: var(--radius-2xl); padding: 30px; background: #fff;
  display: flex; flex-direction: column; transition: border-color 200ms, box-shadow 200ms; }
.xp-addon:hover { border-color: var(--brand-blue-200); box-shadow: var(--shadow-sm); }
.xp-addon h3 { font-size: 19px; font-weight: 700; color: var(--neutral-900); margin: 0 0 10px; letter-spacing: -0.01em; }
.xp-addon .amt-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px; }
.xp-addon .amt { font-family: var(--font-display); font-size: 30px; font-weight: 800; letter-spacing: -0.02em; color: var(--neutral-900); }
.xp-addon .per { font-size: 13.5px; color: var(--neutral-500); }
.xp-addon p { font-size: 14px; line-height: 1.6; color: var(--neutral-600); margin: 0 0 22px; flex: 1; }
.xp-addon .as-btn { align-self: flex-start; }
@media (max-width: 860px) { .xp-price-grid.two, .xp-addon-grid { grid-template-columns: 1fr; } }

/* ============ FAQ ============ */
.xp-faq { max-width: 820px; margin: 48px auto 0; }
.xp-faq-item { border-bottom: 1px solid var(--border); }
.xp-faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 24px 0;
  font-size: 18px; font-weight: 700; color: var(--neutral-900); font-family: var(--font-sans); }
.xp-faq-q svg { color: var(--brand-blue-500); transition: transform 200ms var(--ease-out); flex-shrink: 0; }
.xp-faq-item.open .xp-faq-q svg { transform: rotate(45deg); }
.xp-faq-a { max-height: 0; overflow: hidden; transition: max-height 280ms var(--ease-out); }
.xp-faq-item.open .xp-faq-a { max-height: 240px; }
.xp-faq-a p { font-size: 15.5px; line-height: 1.62; color: var(--neutral-600); margin: 0; padding: 0 0 26px; max-width: 700px; }

/* ============ CONTACT ============ */
.xp-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.xp-form { display: grid; gap: 18px; }
.xp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.xp-field label { display: block; font-size: 13px; font-weight: 600; color: var(--neutral-800); margin-bottom: 7px; }
.xp-field input, .xp-field textarea, .xp-field select {
  width: 100%; font-family: var(--font-sans); font-size: 14px; color: var(--neutral-900);
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 11px 13px;
  transition: border-color 140ms, box-shadow 140ms; }
.xp-field textarea { resize: vertical; min-height: 110px; }
.xp-field input:focus, .xp-field textarea:focus, .xp-field select:focus {
  outline: none; border-color: var(--brand-blue-400); box-shadow: var(--shadow-glow); }
.xp-contact-aside { background: var(--neutral-25); border: 1px solid var(--border); border-radius: var(--radius-2xl); padding: 34px; }
.xp-contact-li { display: grid; grid-template-columns: 40px 1fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.xp-contact-li:last-child { border-bottom: 0; }
.xp-contact-li .ic { width: 40px; height: 40px; border-radius: var(--radius-lg); background: var(--brand-blue-50);
  color: var(--brand-blue-500); display: flex; align-items: center; justify-content: center; }
.xp-contact-li h4 { font-size: 15px; font-weight: 700; color: var(--neutral-900); margin: 0 0 3px; }
.xp-contact-li p { font-size: 13.5px; color: var(--neutral-600); margin: 0; line-height: 1.5; }

/* ============ NETWORK GRAPH ANIM ============ */
.xp-edge {
  stroke: rgba(120,170,255,0.28); stroke-width: 1.4; fill: none;
  stroke-dasharray: 5 7; animation: xp-flow 3.6s linear infinite;
}
.xp-edge-active {
  stroke: rgba(120,170,255,0.7); stroke-width: 1.8;
  stroke-dasharray: 6 6; animation: xp-flow 2s linear infinite;
  filter: drop-shadow(0 0 4px rgba(75,139,234,0.6));
}
@keyframes xp-flow { to { stroke-dashoffset: -120; } }

.xp-node-surf { fill: #6FA8FF; animation: xp-node-breathe 3.4s var(--ease-in-out) infinite; }
.xp-node-leaf { fill: rgba(180,205,255,0.55); animation: xp-node-breathe 3.4s var(--ease-in-out) infinite; }
@keyframes xp-node-breathe { 0%,100% { opacity: .55; } 50% { opacity: 1; } }

.xp-node-halo { fill: rgba(10,91,215,0.18); animation: xp-halo 3s var(--ease-out) infinite; transform-box: fill-box; transform-origin: center; }
.xp-node-halo-soft { animation: xp-halo 3.6s var(--ease-out) infinite; transform-box: fill-box; transform-origin: center; }
@keyframes xp-halo { 0% { opacity: .5; transform: scale(0.8);} 70% { opacity: 0; transform: scale(1.6);} 100% { opacity: 0; transform: scale(1.6);} }

.xp-node-ring { animation: xp-ring 2.4s var(--ease-out) infinite; }
@keyframes xp-ring { 0% { opacity: .55; transform: scale(0.7);} 70% { opacity: 0; transform: scale(1.9);} 100% { opacity: 0; transform: scale(1.9);} }
.xp-node-find circle:last-child { filter: drop-shadow(0 0 6px currentColor); }

@media (prefers-reduced-motion: reduce) {
  .xp-edge, .xp-edge-active, .xp-node-surf, .xp-node-leaf, .xp-node-halo, .xp-node-ring,
  .xp-hero-eyebrow .dot { animation: none !important; }
  .xp-reveal { opacity: 1 !important; transform: none !important; }
}

/* ============ AGENT CHAT (methodology · discovery) ============ */
.xp-chat { display: flex; flex-direction: column; height: 480px; }
.xp-chat-scroll { flex: 1; overflow-y: auto; padding: 22px; display: flex; flex-direction: column; gap: 14px; }
.xp-chat-scroll::-webkit-scrollbar { width: 6px; }
.xp-chat-scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 3px; }
.xp-chat-msg { display: flex; gap: 10px; align-items: flex-start; animation: xp-msg-in .5s var(--ease-out) both; }
.xp-chat-msg.user { flex-direction: row-reverse; }
@keyframes xp-msg-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.xp-chat-av { width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.xp-chat-av.ai { background: linear-gradient(135deg, #4B8BEA, var(--brand-blue-600)); color: #fff; }
.xp-chat-av.me { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
.xp-bubble {
  font-size: 13.5px; line-height: 1.5; border-radius: 12px; padding: 10px 13px; max-width: 84%;
  border: 1px solid rgba(255,255,255,0.08);
}
.xp-bubble.me { background: var(--brand-blue-500); color: #fff; border-color: transparent; font-weight: 600; }
.xp-bubble.ai { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.88); }
.xp-chip-row { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.xp-chip { font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16); color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.03); }
.xp-chip.sel { background: var(--brand-blue-500); border-color: transparent; color: #fff; }
.xp-card-mini { margin-top: 9px; padding: 10px 12px; border-radius: 9px; background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.08); display: flex; flex-direction: column; gap: 7px; }
.xp-kv { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11.5px; color: rgba(255,255,255,0.62); }
.xp-kv b { color: rgba(255,255,255,0.92); font-weight: 600; }
.xp-kv .lab { color: rgba(255,255,255,0.45); min-width: 64px; }
.xp-kv .ok { color: #36F0A4; margin-left: auto; display: inline-flex; align-items: center; gap: 4px; }
.xp-launch { width: 100%; margin-top: 11px; justify-content: center; }
.xp-tool { display: flex; flex-direction: column; gap: 7px; margin-top: 10px; }
.xp-tool-row { display: flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 11.5px; color: rgba(255,255,255,0.62); }
.xp-tool-row .ok { color: #36F0A4; display: flex; }
.xp-tool-row b { color: rgba(255,255,255,0.92); font-weight: 600; }
.xp-typing { display: inline-flex; gap: 4px; align-items: center; }
.xp-typing i { width: 5px; height: 5px; border-radius: 50%; background: #6FA8FF; animation: xp-typing 1.2s infinite; }
.xp-typing i:nth-child(2) { animation-delay: .2s; } .xp-typing i:nth-child(3) { animation-delay: .4s; }
@keyframes xp-typing { 0%,60%,100% { opacity: .25; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
.xp-chat-input {
  margin: 0 16px 16px; display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  border-radius: var(--radius-lg); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
}
.xp-chat-input span { flex: 1; font-size: 13px; color: rgba(255,255,255,0.4); font-family: var(--font-mono); }
.xp-chat-input .send { width: 30px; height: 30px; border-radius: 8px; background: var(--brand-blue-500); color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ============ PLATFORM FEATURE ROWS ============ */
.xp-frow { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.xp-frow + .xp-frow { margin-top: 96px; }
.xp-frow.flip .xp-frow-media { order: -1; }
.xp-frow-eyebrow { font-family: var(--font-mono); font-size: 12px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--brand-blue-500); margin-bottom: 14px; }
.xp-frow h3 { font-size: clamp(24px, 2.6vw, 32px); font-weight: 800; letter-spacing: -0.02em;
  color: var(--neutral-900); margin: 0 0 14px; line-height: 1.12; }
.xp-frow > div > p { font-size: 16px; line-height: 1.62; color: var(--neutral-600); margin: 0 0 22px; }
.xp-frow-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.xp-frow-list li { display: grid; grid-template-columns: 22px 1fr; gap: 11px; font-size: 15px; color: var(--neutral-700); font-weight: 500; }
.xp-frow-list svg { color: var(--brand-blue-500); margin-top: 2px; }
.xp-frow-media {
  border-radius: var(--radius-2xl); background: var(--xp-hero-bg); border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px rgba(9,30,66,0.18); overflow: hidden; padding: 4px;
}
.xp-frow-media.pad { padding: 28px; }

/* integration grid */
.xp-int-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 44px; }
.xp-int { display: flex; align-items: center; gap: 12px; padding: 18px 20px; border: 1px solid var(--border);
  border-radius: var(--radius-xl); background: #fff; transition: border-color 160ms; }
.xp-int:hover { border-color: var(--brand-blue-200); }
.xp-int-ic { width: 38px; height: 38px; border-radius: var(--radius-lg); background: var(--neutral-50);
  color: var(--neutral-700); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.xp-int b { font-size: 14px; font-weight: 700; color: var(--neutral-900); display: block; }
.xp-int span { font-size: 12px; color: var(--neutral-500); }

@media (max-width: 980px) {
  .xp-frow { grid-template-columns: 1fr; gap: 36px; }
  .xp-frow.flip .xp-frow-media { order: 0; }
  .xp-int-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) { .xp-int-grid { grid-template-columns: 1fr; } }

/* ============ reveal-on-scroll ============ */
.xp-reveal { opacity: 0; transform: translateY(22px); transition: opacity 620ms var(--ease-out), transform 620ms var(--ease-out); }
.xp-reveal.in { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .xp-hero-grid, .xp-method-grid, .xp-compare, .xp-contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .xp-feature-grid, .xp-cases, .xp-comp-grid, .xp-cov-grid, .xp-price-grid, .xp-stats-grid { grid-template-columns: 1fr 1fr; }
  .xp-footer-grid { grid-template-columns: 1fr 1fr; }
  .xp-method-panel { position: static; }
}
/* nav collapses to hamburger only on real tablet/phone widths */
@media (max-width: 860px) {
  .xp-nav-links { display: none; }
  .xp-nav-cta { display: none; }
  .xp-nav-burger { display: flex; }
}
@media (max-width: 600px) {
  .xp-container { padding: 0 20px; }
  .xp-section { padding: 72px 0; }
  .xp-feature-grid, .xp-cases, .xp-comp-grid, .xp-cov-grid, .xp-price-grid, .xp-stats-grid, .xp-form-row { grid-template-columns: 1fr; }
  .xp-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .xp-logos-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px 16px; justify-items: center; }
  .xp-logo-item.color { font-size: 16px; flex-direction: column; gap: 8px; text-align: center; }
}

/* ============================================================
   MODERN GRADIENT LAYER (added pass)
   ============================================================ */
/* primary buttons — brand gradient + soft glow */
.as-btn-primary {
  background: var(--xp-grad-brand);
  border: none;
  box-shadow: 0 6px 18px rgba(10,91,215,0.28), inset 0 1px 0 rgba(255,255,255,0.18);
  transition: background var(--duration-fast) var(--ease-out),
              box-shadow 200ms var(--ease-out),
              transform 200ms var(--ease-out);
}
.as-btn-primary:hover {
  background: linear-gradient(135deg, #5B9BFF 0%, #2A6FE0 55%, #0A5BD7 100%);
  box-shadow: 0 12px 30px rgba(10,91,215,0.5), inset 0 1px 0 rgba(255,255,255,0.32);
  transform: translateY(-2px);
  color: #fff;
}
.as-btn-primary:active { transform: translateY(0); box-shadow: 0 5px 14px rgba(10,91,215,0.34); }

/* keep button label colors on hover — global a:hover (tokens.css) must not recolor button text */
.as-btn-primary, .as-btn-primary:hover, .as-btn-primary:focus { color: #fff; }
.as-btn-secondary, .as-btn-secondary:hover, .as-btn-secondary:focus { color: var(--neutral-900); }
.xp-btn-line, .xp-btn-line:hover, .xp-btn-line:focus { color: #fff; }
.xp-nav.light .xp-btn-line, .xp-nav.light .xp-btn-line:hover, .xp-nav.light .xp-btn-line:focus { color: var(--neutral-800); }
.xp-nav.light .xp-btn-line:hover { color: var(--neutral-900); }

/* eyebrows — gradient text */
.xp-eyebrow {
  background: var(--xp-grad-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  width: fit-content;
}
.xp-section.dark .xp-eyebrow, .xp-pagehead .xp-eyebrow {
  background: var(--xp-grad-dark);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.xp-center.xp-eyebrow { margin-left: auto; margin-right: auto; }

/* feature / coverage / contact icon tiles — gradient fills */
.xp-feature-ic {
  background: var(--xp-grad-brand); color: #fff;
  box-shadow: 0 8px 20px rgba(10,91,215,0.22);
}
.xp-cov-ic {
  background: linear-gradient(135deg, #1B2C52 0%, var(--xp-hero-bg) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.xp-contact-li .ic {
  background: var(--brand-blue-50);
  background-image: linear-gradient(135deg, rgba(75,139,234,0.18), rgba(10,91,215,0.08));
}

/* soft gradient wash on light "subtle" sections */
.xp-section.subtle {
  background:
    radial-gradient(900px 500px at 12% -5%, rgba(10,91,215,0.05), transparent 60%),
    radial-gradient(800px 460px at 95% 105%, rgba(75,139,234,0.06), transparent 60%),
    var(--neutral-25);
}

/* gradient hairline accents */
.xp-feature, .xp-comp-card, .xp-price, .xp-int { position: relative; }
.xp-feature::before, .xp-price.feat::before {
  content: ''; position: absolute; top: 0; left: 24px; right: 24px; height: 2px;
  background: var(--xp-grad-brand); opacity: 0; border-radius: 2px;
  transition: opacity 220ms var(--ease-out);
}
.xp-feature:hover::before { opacity: 1; }
.xp-price.feat::before { opacity: .9; left: 34px; right: 34px; }

/* hero — extra depth glow */
.xp-hero::after {
  background-image:
    radial-gradient(820px 520px at 78% 18%, rgba(10,91,215,0.40), transparent 64%),
    radial-gradient(520px 420px at 12% 12%, rgba(75,139,234,0.16), transparent 60%),
    radial-gradient(680px 480px at 10% 95%, rgba(10,91,215,0.18), transparent 60%);
}

/* stat cards — gradient left rule */
.xp-stat { border-left: none; padding-left: 24px; position: relative; }
.xp-stat::before {
  content: ''; position: absolute; left: 0; top: 2px; bottom: 2px; width: 2px;
  background: var(--xp-grad-dark); border-radius: 2px;
}

/* logo mark glow */
.xp-logo-mark { filter: drop-shadow(0 2px 8px rgba(10,91,215,0.35)); }

/* ============================================================
   GLEAN THEME LAYER — light, airy, colorful, illustrated
   Multi-hue gradient system anchored on AppSecure blue.
   ============================================================ */
:root {
  --xp-violet: #6D5EF5;
  --xp-indigo: #4F46E5;
  --xp-cyan:   #15B8C9;
  --xp-teal:   #14B8A6;
  --xp-coral:  #FF6B57;
  --xp-peach:  #FF8A5B;
  --xp-amber:  #F5A623;
  --xp-pink:   #EC4899;
  --xp-green:  #10B981;
  --xp-paper:  #FBFAFF;
  --xp-mesh:
    radial-gradient(680px 520px at 8% 0%, rgba(109,94,245,0.20), transparent 60%),
    radial-gradient(720px 560px at 92% 6%, rgba(10,91,215,0.20), transparent 60%),
    radial-gradient(620px 520px at 70% 96%, rgba(255,138,91,0.16), transparent 60%),
    radial-gradient(560px 480px at 18% 100%, rgba(21,184,201,0.16), transparent 60%);
}

body { background: var(--xp-paper); }

/* ---------- LIGHT GLEAN HERO ---------- */
.xp-hero.glean {
  background: var(--xp-paper);
  color: var(--neutral-900);
  padding: 84px 0 96px;
}
.xp-hero.glean::before,
.xp-hero.glean::after { display: none; }
.xp-hero-mesh {
  position: absolute; inset: -10% -5% 0; z-index: -2;
  background:
    linear-gradient(135deg, rgba(109,94,245,0.34) 0%, rgba(10,91,215,0.30) 50%, rgba(255,138,91,0.28) 100%),
    var(--xp-paper);
  filter: saturate(1.05);
}
.xp-hero-mesh::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(15,23,42,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 10%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 10%, transparent 72%);
}
.xp-hero.glean h1 { color: var(--neutral-900); }
.xp-hero.glean h1 .grad {
  background: linear-gradient(108deg, var(--xp-violet) 0%, var(--brand-blue-500) 48%, var(--xp-cyan) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.xp-hero.glean .lead { color: var(--neutral-600); }
.xp-hero.glean .xp-hero-meta { color: var(--neutral-500); }
.xp-hero.glean .xp-hero-meta-item svg { color: var(--xp-green); }
.xp-hero.glean .xp-hero-eyebrow {
  background: #fff; border: 1px solid var(--border);
  color: var(--neutral-700); box-shadow: var(--shadow-xs); white-space: nowrap;
}
.xp-hero.glean .xp-hero-eyebrow .dot { background: var(--xp-violet); }
.xp-hero.glean .xp-btn-line {
  background: #fff; color: var(--neutral-800); border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-xs);
}
.xp-hero.glean .xp-btn-line:hover { background: var(--neutral-50); border-color: var(--neutral-400); }

/* floating colorful halo behind the product visual */
.xp-hero-visual-wrap { position: relative; }
.xp-hero-halo {
  position: absolute; inset: -14% -10%; z-index: 0; border-radius: 50%;
  background:
    radial-gradient(closest-side at 30% 30%, rgba(109,94,245,0.55), transparent 70%),
    radial-gradient(closest-side at 75% 35%, rgba(10,91,215,0.5), transparent 70%),
    radial-gradient(closest-side at 60% 80%, rgba(255,138,91,0.42), transparent 70%);
  filter: blur(46px); opacity: 0.8;
}
.xp-hero-visual-wrap > .xp-graph-frame,
.xp-hero-visual-wrap > .xp-mock,
.xp-hero-visual-wrap > .xp-dash { position: relative; z-index: 1; }

/* floating colorful UI chips around the product */
.xp-float-chip {
  position: absolute; z-index: 2; display: flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 10px 13px; box-shadow: var(--shadow-lg);
  animation: xp-bob 5s var(--ease-in-out) infinite;
}
.xp-float-chip .ic { width: 30px; height: 30px; border-radius: 9px; display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.xp-float-chip .ti { font-size: 12.5px; font-weight: 700; color: var(--neutral-900); line-height: 1.15; }
.xp-float-chip .mt { font-size: 11px; color: var(--neutral-500); font-weight: 600; }
.xp-float-chip.a { top: 8%; left: -8%; animation-delay: 0s; }
.xp-float-chip.b { bottom: 14%; right: -6%; animation-delay: 1.4s; }
@keyframes xp-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (prefers-reduced-motion: reduce) { .xp-float-chip { animation: none; } }
@media (max-width: 980px) { .xp-float-chip.a { left: 0; } .xp-float-chip.b { right: 0; } }

/* ---------- FULL-COLOR LOGO WALL ---------- */
.xp-logos.color { background: #fff; border-bottom: 1px solid var(--border); }
.xp-logos.color .xp-logos-label { color: var(--neutral-500); }
.xp-logo-item.color { color: var(--neutral-800); opacity: 1; font-weight: 800; font-size: 20px; }
.xp-logo-item.color:hover { color: var(--neutral-900); }
.xp-logo-item .cmark { width: 26px; height: 26px; border-radius: 7px; display: flex; align-items: center; justify-content: center; color: #fff; }

/* ---------- COLORFUL BENTO FEATURES ---------- */
.xp-bento { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 56px; }
.xp-bento .xp-feature {
  border: 1px solid var(--border); border-radius: var(--radius-2xl); overflow: hidden;
  background: #fff;
}
.xp-bento .xp-feature.tint-0 { background: linear-gradient(160deg, rgba(109,94,245,0.07), #fff 62%); }
.xp-bento .xp-feature.tint-1 { background: linear-gradient(160deg, rgba(10,91,215,0.07), #fff 62%); }
.xp-bento .xp-feature.tint-2 { background: linear-gradient(160deg, rgba(21,184,201,0.08), #fff 62%); }
.xp-bento .xp-feature.tint-3 { background: linear-gradient(160deg, rgba(255,138,91,0.08), #fff 62%); }
.xp-feature-ic.hue-0 { background: linear-gradient(135deg, #8B7CFF, var(--xp-violet)); box-shadow: 0 8px 20px rgba(109,94,245,0.28); }
.xp-feature-ic.hue-1 { background: linear-gradient(135deg, #4B8BEA, var(--brand-blue-600)); box-shadow: 0 8px 20px rgba(10,91,215,0.26); }
.xp-feature-ic.hue-2 { background: linear-gradient(135deg, #2DD4E0, var(--xp-cyan)); box-shadow: 0 8px 20px rgba(21,184,201,0.28); }
.xp-feature-ic.hue-3 { background: linear-gradient(135deg, #FFA071, var(--xp-coral)); box-shadow: 0 8px 20px rgba(255,107,87,0.28); }

/* ---------- SHOWCASE w/ image slot ---------- */
.xp-showcase { background: var(--xp-paper); position: relative; overflow: hidden; }
.xp-showcase-mesh { position: absolute; inset: 0; z-index: 0; background:
  radial-gradient(700px 420px at 85% 10%, rgba(109,94,245,0.12), transparent 60%),
  radial-gradient(620px 420px at 5% 90%, rgba(21,184,201,0.12), transparent 60%); }
.xp-showcase .xp-container { position: relative; z-index: 1; }
.xp-shot-frame {
  margin-top: 48px; border-radius: var(--radius-2xl); padding: 12px;
  background: linear-gradient(135deg, rgba(109,94,245,0.5), rgba(10,91,215,0.5) 50%, rgba(255,138,91,0.45));
  box-shadow: 0 40px 90px rgba(9,30,66,0.22);
}
.xp-shot-frame img { display: block; width: 100%; height: auto; border-radius: var(--radius-xl); }

/* interactive demo embed (Supademo popup trigger) */
.xp-demo-frame { margin-top: 48px; border-radius: var(--radius-2xl); overflow: hidden;
  border: 1px solid var(--border); box-shadow: 0 40px 90px rgba(9,30,66,0.22); background: #0C1424; }
.xp-demo-bar { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.xp-demo-bar .dots { display: flex; gap: 6px; }
.xp-demo-bar .dots i { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.16); }
.xp-demo-bar .addr { margin-left: 6px; font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.05); border-radius: var(--radius-md); padding: 5px 14px; }
.xp-demo-stage { display: block; position: relative; width: 100%; border: none; padding: 0; cursor: pointer; background: #fff; line-height: 0; }
.xp-demo-stage img { display: block; width: 100%; height: auto; }
.xp-demo-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  background: radial-gradient(circle at 50% 45%, rgba(7,14,31,0.28), rgba(7,14,31,0.55)); transition: background 200ms; }
.xp-demo-stage:hover .xp-demo-overlay { background: radial-gradient(circle at 50% 45%, rgba(7,14,31,0.2), rgba(7,14,31,0.48)); }
.xp-demo-play { width: 74px; height: 74px; border-radius: 50%; background: rgba(255,255,255,0.96); color: var(--brand-blue-600);
  display: flex; align-items: center; justify-content: center; padding-left: 5px;
  box-shadow: 0 14px 40px rgba(10,91,215,0.4); transition: transform 200ms var(--ease-out); }
.xp-demo-stage:hover .xp-demo-play { transform: scale(1.08); }
.xp-demo-play::after { content: ''; position: absolute; width: 74px; height: 74px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6); animation: xp-orbit-pulse 2.4s var(--ease-out) infinite; }
.xp-demo-label { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: #fff; letter-spacing: -0.01em;
  background: rgba(7,14,31,0.5); padding: 7px 18px; border-radius: var(--radius-full); border: 1px solid rgba(255,255,255,0.18); }
.xp-demo-cta { display: flex; justify-content: center; margin-top: 28px; }
@media (prefers-reduced-motion: reduce) { .xp-demo-play::after { animation: none; } }
@media (max-width: 600px) { .xp-demo-play { width: 58px; height: 58px; } .xp-demo-play::after { width: 58px; height: 58px; } }

/* gallery of 3 small illustration/photo slots */
.xp-gal { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.xp-gal-card { border: 1px solid var(--border); border-radius: var(--radius-2xl); overflow: hidden; background: #fff; box-shadow: var(--shadow-xs); }
.xp-gal-card image-slot { display: block; width: 100%; height: 200px; }
.xp-gal-card .cap { padding: 18px 20px; }
.xp-gal-card .cap h4 { font-size: 16px; font-weight: 700; color: var(--neutral-900); margin: 0 0 5px; }
.xp-gal-card .cap p { font-size: 13.5px; color: var(--neutral-600); margin: 0; line-height: 1.5; }

/* ---------- multi-hue glow on dark sections ---------- */
.xp-stats::after, .xp-quote-sec::before, .xp-cta::after {
  background-image:
    radial-gradient(620px 420px at 18% 8%, rgba(109,94,245,0.30), transparent 62%),
    radial-gradient(680px 460px at 82% 14%, rgba(10,91,215,0.34), transparent 62%),
    radial-gradient(560px 420px at 60% 108%, rgba(255,138,91,0.22), transparent 60%) !important;
}
.xp-stat-num .grad { background: linear-gradient(108deg, #A99Cff, #6FA8FF 55%, #66E6F2);
  -webkit-background-clip: text; background-clip: text; color: transparent; }

/* colorful section eyebrow variants */
.xp-eyebrow.ev-violet { background: linear-gradient(108deg, var(--xp-violet), var(--xp-indigo)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.xp-eyebrow.ev-cyan { background: linear-gradient(108deg, var(--xp-cyan), var(--brand-blue-500)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.xp-eyebrow.ev-coral { background: linear-gradient(108deg, var(--xp-peach), var(--xp-coral)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.xp-eyebrow.ev-rose { background: linear-gradient(108deg, #F43F8E, #C026D3); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ============ NEWS / PRESS ============ */
.nl { display: block; width: auto; object-fit: contain; }
.nl-techcrunch { height: 22px; }
.nl-yahoofinance { height: 34px; }
.nl-cybernews { height: 20px; }
.nl-economictimes { height: 19px; }
.nl-freedompress { height: 30px; }
.nl-indiatoday { height: 34px; }

.xp-news-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.xp-news-all { display: inline-flex; align-items: center; gap: 7px; font-size: 15px; font-weight: 700; color: var(--brand-blue-600); white-space: nowrap; transition: gap 160ms; }
.xp-news-all:hover { gap: 11px; }

.xp-news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.xp-news-grid > .xp-reveal { display: flex; }
.xp-news-grid .xp-news-card { height: 100%; width: 100%; }
.xp-news-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-2xl); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms; text-decoration: none; }
.xp-news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--brand-blue-300); }
.xp-news-media { height: 196px; display: flex; align-items: center; justify-content: center; position: relative;
  background: linear-gradient(135deg, #4B8BEA, #0A5BD7); }
.xp-news-card.pub-techcrunch .xp-news-media { background: linear-gradient(135deg, #1FB23A, #0A8200); }
.xp-news-card.pub-yahoofinance .xp-news-media { background: linear-gradient(135deg, #8B5CF6, #5F01D1); }
.xp-news-card.pub-economictimes .xp-news-media { background: linear-gradient(135deg, #FF6B6B, #ED1C24); }
.xp-news-plate { background: #fff; border-radius: var(--radius-lg); padding: 16px 24px;
  box-shadow: 0 10px 30px rgba(9,30,66,0.18); display: inline-flex; align-items: center; }
.xp-news-plate .nl-techcrunch { height: 26px; }
.xp-news-plate .nl-yahoofinance { height: 40px; }
.xp-news-plate .nl-economictimes { height: 22px; }
.xp-news-body { display: flex; flex-direction: column; flex: 1; padding: 22px 24px; }
.xp-news-cat { align-self: flex-start; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--neutral-500); background: var(--neutral-100); border-radius: var(--radius-full); padding: 5px 11px; white-space: nowrap; }
.xp-news-card h3 { font-size: 20px; font-weight: 800; line-height: 1.22; letter-spacing: -0.02em; color: var(--neutral-900); margin: 14px 0 12px; }
.xp-news-card p { font-size: 14.5px; line-height: 1.55; color: var(--neutral-600); margin: 0 0 20px; flex: 1; }
.xp-news-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--border); font-size: 13px; color: var(--neutral-500); font-weight: 600; }
.xp-news-read { display: inline-flex; align-items: center; gap: 5px; color: var(--brand-blue-600); font-weight: 700; }
.xp-news-card:hover .xp-news-read { color: var(--brand-blue-press); }

.xp-presswall-label { text-align: center; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--neutral-400); margin: 56px 0 22px; }
.xp-presswall { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 16px 14px; }
.xp-presswall-item { display: inline-flex; align-items: center; padding: 12px 20px; border-radius: var(--radius-lg);
  background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-xs);
  filter: grayscale(1); opacity: 0.62; transition: filter 200ms, opacity 200ms, transform 200ms, box-shadow 200ms; text-decoration: none; }
.xp-presswall-item:hover { filter: grayscale(0); opacity: 1; transform: translateY(-2px); box-shadow: var(--shadow-md); }

@media (max-width: 900px) {
  .xp-news-grid { grid-template-columns: 1fr; }
  .xp-news-head { flex-direction: column; align-items: flex-start; gap: 14px; }
}

@media (max-width: 980px) { .xp-bento, .xp-gal { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .xp-bento, .xp-gal { grid-template-columns: 1fr; } }

/* ---------- PENTEST REPORT ILLUSTRATION (methodology step 4) ---------- */
.xp-rep { padding: 22px; }
.xp-rep-sheet {
  background: #fff; border-radius: 14px; padding: 20px; color: var(--neutral-900);
  box-shadow: 0 24px 50px rgba(0,0,0,0.45);
}
.xp-rep-head { display: flex; align-items: center; gap: 11px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.xp-rep-logo { width: 32px; height: 32px; border-radius: 9px; background: var(--xp-grad-brand);
  display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.xp-rep-head .ti { font-size: 14px; font-weight: 800; color: var(--neutral-900); line-height: 1.15; letter-spacing: -0.01em; }
.xp-rep-head .sub { font-family: var(--font-mono); font-size: 10.5px; color: var(--neutral-500); margin-top: 2px; }
.xp-rep-pass { margin-left: auto; display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 800;
  color: var(--success-700); background: var(--success-50); border: 1px solid var(--success-100);
  border-radius: 999px; padding: 4px 10px; }
.xp-rep-sev { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 16px 0; }
.xp-rep-sevcard { border-radius: 10px; padding: 11px 12px; border: 1px solid var(--border); }
.xp-rep-sevcard .n { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
.xp-rep-sevcard .l { font-size: 10.5px; font-weight: 700; margin-top: 5px; text-transform: uppercase; letter-spacing: .04em; }
.xp-rep-sevcard.crit { background: var(--critical-50); border-color: var(--critical-100); } .xp-rep-sevcard.crit .n,.xp-rep-sevcard.crit .l { color: var(--critical-700); }
.xp-rep-sevcard.high { background: var(--high-50); border-color: var(--high-100); } .xp-rep-sevcard.high .n,.xp-rep-sevcard.high .l { color: var(--high-700); }
.xp-rep-sevcard.med  { background: var(--medium-50); border-color: var(--medium-100); } .xp-rep-sevcard.med .n,.xp-rep-sevcard.med .l { color: var(--medium-700); }
.xp-rep-sevcard.low  { background: var(--low-50); border-color: var(--low-100); } .xp-rep-sevcard.low .n,.xp-rep-sevcard.low .l { color: var(--low-700); }
.xp-rep-complabel { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--neutral-500); margin: 4px 0 11px; }
.xp-rep-comp { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.xp-rep-badge { display: flex; align-items: center; gap: 9px; padding: 9px 11px; border-radius: 9px;
  border: 1px solid var(--border); background: var(--neutral-25); }
.xp-rep-badge .mk { width: 26px; height: 26px; border-radius: 7px; display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800; color: #fff; letter-spacing: -0.02em; flex-shrink: 0; }
.xp-rep-badge .nm { font-size: 12px; font-weight: 700; color: var(--neutral-800); }
.xp-rep-badge .tick { margin-left: auto; width: 18px; height: 18px; border-radius: 50%; background: var(--success-500);
  display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.xp-rep-foot { margin-top: 14px; display: flex; align-items: center; gap: 9px; }

/* ---------- COMPLIANCE SEAL WALL ---------- */
.xp-seal-wall {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; margin: 8px 0 8px;
  padding: 40px 32px; border-radius: var(--radius-2xl);
  background:
    radial-gradient(600px 300px at 15% 0%, rgba(10,91,215,0.06), transparent 60%),
    radial-gradient(600px 300px at 85% 100%, rgba(109,94,245,0.07), transparent 60%),
    #fff;
  border: 1px solid var(--border); box-shadow: var(--shadow-xs);
}
.xp-seal { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.xp-seal svg { width: 92px; height: 92px; transition: transform 220ms var(--ease-out); filter: drop-shadow(0 8px 16px rgba(9,30,66,0.12)); }
.xp-seal:hover svg { transform: translateY(-4px) scale(1.03); }
.xp-seal .nm { font-size: 13px; font-weight: 700; color: var(--neutral-800); line-height: 1.2; }
.xp-seal .st { font-size: 11px; font-weight: 600; color: var(--success-600); display: inline-flex; align-items: center; gap: 4px; margin-top: 2px; }
@media (max-width: 980px) { .xp-seal-wall { grid-template-columns: repeat(3, 1fr); gap: 28px 18px; } }
@media (max-width: 600px) { .xp-seal-wall { grid-template-columns: repeat(2, 1fr); padding: 28px 16px; } }

/* ============================================================
   BLOG — index + article
   ============================================================ */
/* featured post */
.xp-blog-feat {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 0; margin-top: 8px;
  border: 1px solid var(--border); border-radius: var(--radius-2xl); overflow: hidden; background: #fff;
  box-shadow: var(--shadow-sm);
}
.xp-blog-feat-media { position: relative; min-height: 360px; }
.xp-blog-feat-media image-slot { display: block; width: 100%; height: 100%; }
.xp-blog-feat-body { padding: 44px; display: flex; flex-direction: column; justify-content: center; }
.xp-blog-feat-body .xp-blog-cat { margin-bottom: 16px; }
.xp-blog-feat-body h2 { font-size: clamp(26px, 2.6vw, 36px); font-weight: 800; letter-spacing: -0.02em;
  line-height: 1.1; color: var(--neutral-900); margin: 0 0 14px; }
.xp-blog-feat-body p { font-size: 16px; line-height: 1.6; color: var(--neutral-600); margin: 0 0 24px; }

/* category pill */
.xp-blog-cat { display: inline-flex; align-items: center; gap: 7px; width: fit-content;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; padding: 5px 12px; border-radius: var(--radius-full); }
.xp-blog-cat.c0 { color: #6D5EF5; background: rgba(109,94,245,0.1); }
.xp-blog-cat.c1 { color: #0A5BD7; background: rgba(10,91,215,0.1); }
.xp-blog-cat.c2 { color: #15B8C9; background: rgba(21,184,201,0.12); }
.xp-blog-cat.c3 { color: #FF6B57; background: rgba(255,107,87,0.12); }
.xp-blog-cat.c4 { color: #10B981; background: rgba(16,185,129,0.12); }

/* filter chips */
.xp-blog-filters { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 36px; }
.xp-blog-chip { font-size: 13.5px; font-weight: 600; padding: 8px 16px; border-radius: var(--radius-full);
  border: 1px solid var(--border); background: #fff; color: var(--neutral-600); cursor: pointer;
  transition: all 140ms; font-family: var(--font-sans); }
.xp-blog-chip:hover { border-color: var(--brand-blue-300); color: var(--neutral-900); }
.xp-blog-chip.active { background: var(--xp-grad-brand); border-color: transparent; color: #fff;
  box-shadow: 0 4px 12px rgba(10,91,215,0.22); }

/* post grid */
.xp-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.xp-post-card { display: flex; flex-direction: column; border: 1px solid var(--border);
  border-radius: var(--radius-2xl); overflow: hidden; background: #fff; text-decoration: none;
  transition: transform 220ms var(--ease-out), box-shadow 220ms; }
.xp-post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.xp-post-media { position: relative; height: 196px; }
.xp-post-media image-slot { display: block; width: 100%; height: 100%; }
.xp-post-grad { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.xp-post-grad svg { width: 64px; height: 64px; color: #fff; opacity: .92; }
.xp-post-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.xp-post-body .xp-blog-cat { margin-bottom: 14px; }
.xp-post-body h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.25;
  color: var(--neutral-900); margin: 0 0 10px; }
.xp-post-body p { font-size: 14px; line-height: 1.55; color: var(--neutral-600); margin: 0 0 20px; flex: 1; }
.xp-post-meta { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: var(--neutral-500); }
.xp-post-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--neutral-300); }
.xp-post-avatar { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; color: #fff; font-size: 11px; font-weight: 700; flex-shrink: 0; }

/* ===== article (restructured: breadcrumb + split header + 3-col body) ===== */
.xp-art2 { background: var(--xp-paper); }
.xp-art2-head { padding: 56px 0 44px; }
.xp-breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 14px; font-weight: 600;
  color: var(--neutral-500); margin-bottom: 26px; }
.xp-breadcrumb a { color: var(--neutral-500); text-decoration: none; }
.xp-breadcrumb a:hover { color: var(--brand-blue-500); }
.xp-breadcrumb .sep { color: var(--neutral-300); }
.xp-breadcrumb .cur { color: var(--neutral-800); }
.xp-art2-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.xp-art2-grid h1 { font-size: clamp(32px, 4vw, 52px); font-weight: 800; letter-spacing: -0.025em;
  line-height: 1.08; color: var(--neutral-900); margin: 0; }
.xp-art2-cover { position: relative; border-radius: var(--radius-2xl); overflow: hidden; aspect-ratio: 16 / 10;
  border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
.xp-art2-cover image-slot { display: block; width: 100%; height: 100%; }
.xp-art2-cover .grad { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.xp-art2-cover .grad svg { width: 84px; height: 84px; color: #fff; opacity: .9; }
.xp-art2-byline { display: flex; align-items: center; gap: 14px; margin-top: 38px; }
.xp-art2-avatars { display: flex; }
.xp-art2-avatars .av { width: 46px; height: 46px; border-radius: 50%; border: 3px solid var(--xp-paper);
  display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 15px; }
.xp-art2-avatars .av:not(:first-child) { margin-left: -14px; }
.xp-art2-byline .wb { font-size: 16px; font-weight: 700; color: var(--neutral-900); }
.xp-art2-byline .mt { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--neutral-500); margin-top: 3px; }
.xp-art2-byline .mt svg { color: var(--neutral-400); }
.xp-art2-byline .mt .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--neutral-300); }

/* 3-column body */
.xp-art2-body { padding: 8px 0 90px; }
.xp-art2-cols { display: grid; grid-template-columns: 256px 1fr 280px; gap: 48px; align-items: start; }
.xp-art2-aside { position: sticky; top: 90px; }
.xp-toc-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-2xl); padding: 24px; }
.xp-toc-card .lbl { font-size: 15px; font-weight: 800; color: var(--neutral-900); margin: 0 0 16px; letter-spacing: -0.01em; }
.xp-toc-list { display: flex; flex-direction: column; gap: 14px; max-height: 360px; overflow: hidden; position: relative; }
.xp-toc-list::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 40px;
  background: linear-gradient(transparent, #fff); pointer-events: none; }
.xp-toc-link { font-size: 14.5px; line-height: 1.4; font-weight: 600; color: var(--neutral-600); text-decoration: none;
  border-left: 2px solid transparent; padding-left: 12px; margin-left: -14px; transition: all 140ms; }
.xp-toc-link:hover { color: var(--neutral-900); }
.xp-toc-link.active { color: var(--brand-blue-500); border-left-color: var(--brand-blue-500); }
.xp-share-block { margin-top: 28px; }
.xp-share-block .lbl { font-size: 15px; font-weight: 800; color: var(--neutral-900); margin: 0 0 14px; }
.xp-share-row { display: flex; gap: 12px; }
.xp-share-row a { width: 50px; height: 50px; border-radius: var(--radius-xl); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--neutral-500); background: #fff; transition: all 140ms; }
.xp-share-row a:hover { color: var(--brand-blue-500); border-color: var(--brand-blue-300); box-shadow: var(--shadow-sm); }

.xp-art2-main { max-width: none; }
.xp-art2-main > .intro { font-size: 18px; line-height: 1.7; color: var(--neutral-700); }
.xp-art2-main > .intro p { margin: 0 0 22px; }
.xp-art2-main h2 { font-size: clamp(26px, 2.6vw, 34px); font-weight: 800; letter-spacing: -0.02em;
  color: var(--neutral-900); margin: 44px 0 16px; line-height: 1.15; scroll-margin-top: 100px; }
.xp-art2-main h3 { font-size: 21px; font-weight: 700; color: var(--neutral-900); margin: 30px 0 12px; }
.xp-art2-main p { font-size: 17px; line-height: 1.72; color: var(--neutral-700); margin: 0 0 22px; }
.xp-art2-main ul { margin: 0 0 24px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.xp-art2-main li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; font-size: 16.5px; line-height: 1.6; color: var(--neutral-700); }
.xp-art2-main li svg { color: var(--brand-blue-500); margin-top: 4px; }
.xp-art2-main blockquote { margin: 30px 0; padding: 20px 26px; border-left: 3px solid var(--brand-blue-500);
  background: var(--neutral-25); border-radius: 0 var(--radius-lg) var(--radius-lg) 0; font-family: var(--font-display);
  font-size: 19px; font-weight: 600; line-height: 1.5; color: var(--neutral-800); }
.xp-art2-main strong { color: var(--neutral-900); font-weight: 700; }

/* right CTA card */
.xp-art2-cta { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 22px; }
.xp-trust-card { background: #EEF2FE; border-radius: var(--radius-2xl); padding: 30px; }
.xp-trust-card h3 { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; margin: 0 0 22px; color: var(--neutral-900); }
.xp-trust-card h3 .hl { color: var(--brand-blue-500); }
.xp-trust-card .as-btn { background: linear-gradient(135deg, #FFD23F, #F5A623); color: var(--neutral-900);
  border: none; font-weight: 700; box-shadow: 0 6px 16px rgba(245,166,35,0.3); }
.xp-trust-card .as-btn:hover { background: linear-gradient(135deg, #FFC700, #E89510); }

@media (max-width: 1100px) {
  .xp-art2-cols { grid-template-columns: 220px 1fr; }
  .xp-art2-cta { display: none; }
}
@media (max-width: 860px) {
  .xp-art2-grid { grid-template-columns: 1fr; gap: 32px; }
  .xp-art2-cols { grid-template-columns: 1fr; }
  .xp-art2-aside { position: static; }
  .xp-toc-list { max-height: none; }
  .xp-toc-list::after { display: none; }
}

/* ===== legacy article (kept for fallback) ===== */
.xp-article { padding: 72px 0 96px; }
.xp-article-wrap { max-width: 720px; margin: 0 auto; }
.xp-article-back { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600;
  color: var(--brand-blue-500); text-decoration: none; margin-bottom: 28px; }
.xp-article-back:hover { gap: 10px; }
.xp-article-hero-media { max-width: 980px; margin: 40px auto 0; padding: 0 32px; }
.xp-article-hero-media .frame { border-radius: var(--radius-2xl); overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow-lg); }
.xp-article-hero-media image-slot { display: block; width: 100%; height: 420px; }
.xp-article-meta { display: flex; align-items: center; gap: 12px; margin-top: 26px; }
.xp-article-meta .nm { font-size: 14px; font-weight: 700; color: var(--neutral-900); }
.xp-article-meta .rl { font-size: 13px; color: var(--neutral-500); }
.xp-article-body { font-size: 17px; line-height: 1.75; color: var(--neutral-700); }
.xp-article-body > p { margin: 0 0 24px; }
.xp-article-body h2 { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; color: var(--neutral-900);
  margin: 44px 0 16px; line-height: 1.18; }
.xp-article-body h3 { font-size: 21px; font-weight: 700; color: var(--neutral-900); margin: 32px 0 12px; }
.xp-article-body ul { margin: 0 0 24px; padding-left: 4px; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.xp-article-body li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; font-size: 16.5px; line-height: 1.6; }
.xp-article-body li svg { color: var(--brand-blue-500); margin-top: 4px; }
.xp-article-body blockquote { margin: 32px 0; padding: 22px 28px; border-left: 3px solid var(--brand-blue-500);
  background: var(--neutral-25); border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-size: 19px; line-height: 1.5; font-weight: 600; color: var(--neutral-800); font-family: var(--font-display); }
.xp-article-body strong { color: var(--neutral-900); font-weight: 700; }
.xp-article-share { display: flex; align-items: center; gap: 12px; margin-top: 44px; padding-top: 28px;
  border-top: 1px solid var(--border); }
.xp-article-share span { font-size: 13px; font-weight: 700; color: var(--neutral-700); }
.xp-article-share a { width: 36px; height: 36px; border-radius: var(--radius-lg); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--neutral-500); transition: all 140ms; }
.xp-article-share a:hover { color: var(--brand-blue-500); border-color: var(--brand-blue-300); }

/* related */
.xp-related { background: var(--neutral-25); }

@media (max-width: 980px) {
  .xp-blog-feat { grid-template-columns: 1fr; }
  .xp-blog-feat-media { min-height: 240px; }
  .xp-blog-feat-body { padding: 32px; }
  .xp-blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .xp-blog-grid { grid-template-columns: 1fr; }
  .xp-article-hero-media image-slot { height: 240px; }
}

/* ============================================================
   ABOUT — story, values, founders, advisors
   ============================================================ */
.xp-about-lead { max-width: 760px; }
.xp-about-lead p { font-size: 21px; line-height: 1.55; color: var(--neutral-700); margin: 0 0 20px; font-weight: 500; }
.xp-about-lead p:last-child { margin-bottom: 0; }

/* origin two-col */
.xp-origin { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.xp-origin h2 { font-size: clamp(28px, 3vw, 40px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1;
  color: var(--neutral-900); margin: 0 0 18px; }
.xp-origin p { font-size: 16px; line-height: 1.65; color: var(--neutral-600); margin: 0 0 16px; }
.xp-origin-media { position: relative; border-radius: var(--radius-2xl); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-lg); background: var(--xp-hero-bg); }
.xp-origin-media image-slot { display: block; width: 100%; height: 440px; }
.xp-origin-badge { position: absolute; left: 20px; bottom: 20px; display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.95); border-radius: var(--radius-xl); padding: 12px 16px; box-shadow: var(--shadow-md); }
.xp-origin-badge .y { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--brand-blue-500); letter-spacing: -0.02em; }
.xp-origin-badge .t { font-size: 13px; font-weight: 600; color: var(--neutral-700); line-height: 1.3; }

/* values */
.xp-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.xp-value { padding: 30px; border-radius: var(--radius-2xl); border: 1px solid var(--border); background: #fff; }
.xp-value-ic { width: 46px; height: 46px; border-radius: var(--radius-xl); display: flex; align-items: center;
  justify-content: center; color: #fff; margin-bottom: 20px; }
.xp-value h3 { font-size: 19px; font-weight: 700; color: var(--neutral-900); margin: 0 0 10px; letter-spacing: -0.01em; }
.xp-value p { font-size: 14.5px; line-height: 1.6; color: var(--neutral-600); margin: 0; }

/* single founder feature */
.xp-founder-feature { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: center; margin-top: 52px; }
.xp-founder-photo { position: relative; border-radius: var(--radius-2xl); overflow: hidden; aspect-ratio: 1 / 1;
  border: 1px solid var(--border); background: linear-gradient(160deg, var(--neutral-100), var(--neutral-50)); }
.xp-founder-photo image-slot { display: block; width: 100%; height: 100%; }
.xp-founder-info h3 { font-size: 26px; font-weight: 800; color: var(--neutral-900); margin: 14px 0 4px; letter-spacing: -0.02em; }
.xp-founder-info .role { font-size: 15px; font-weight: 600; color: var(--brand-blue-500); margin: 0 0 16px; }
.xp-founder-info .bio { font-size: 16px; line-height: 1.7; color: var(--neutral-600); margin: 0 0 18px; max-width: 540px; }
.xp-founder-info .xp-person-socials a { width: 38px; height: 38px; }
@media (max-width: 860px) { .xp-founder-feature { grid-template-columns: 1fr; gap: 28px; }
  .xp-founder-photo { max-width: 320px; } }

/* people grid (founders + advisors) */
.xp-people { display: grid; gap: 28px; margin-top: 52px; }
.xp-people.founders { grid-template-columns: repeat(3, 1fr); }
.xp-people.advisors { grid-template-columns: repeat(4, 1fr); }
.xp-person { text-align: left; }
.xp-person-photo { position: relative; border-radius: var(--radius-2xl); overflow: hidden; aspect-ratio: 1 / 1;
  border: 1px solid var(--border); background: linear-gradient(160deg, var(--neutral-100), var(--neutral-50)); margin-bottom: 18px; }
.xp-person-photo image-slot { display: block; width: 100%; height: 100%; }
.xp-person-ring { position: absolute; inset: 0; border-radius: var(--radius-2xl); pointer-events: none;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,0.5); }
.advisors .xp-person-photo { aspect-ratio: 1 / 1; border-radius: 50%; max-width: 150px; margin-left: auto; margin-right: auto; }
.advisors .xp-person { text-align: center; }
.xp-person h3 { font-size: 18px; font-weight: 700; color: var(--neutral-900); margin: 0 0 3px; letter-spacing: -0.01em; }
.advisors .xp-person h3 { font-size: 16px; }
.xp-person .role { font-size: 13.5px; font-weight: 600; color: var(--brand-blue-500); margin: 0 0 10px; }
.xp-person .bio { font-size: 13.5px; line-height: 1.55; color: var(--neutral-600); margin: 0 0 12px; }
.xp-person-socials { display: flex; gap: 8px; }
.advisors .xp-person-socials { justify-content: center; }
.xp-person-socials a { width: 30px; height: 30px; border-radius: 8px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--neutral-400); transition: all 140ms; }
.xp-person-socials a:hover { color: var(--brand-blue-500); border-color: var(--brand-blue-300); }
.xp-person-tag { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 11px;
  font-weight: 700; color: var(--neutral-500); background: var(--neutral-50); border: 1px solid var(--border);
  border-radius: var(--radius-full); padding: 3px 10px; margin-top: 4px; }

/* press / featured-in strip */
.xp-press { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 48px; margin-top: 36px; }
.xp-press span { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--neutral-400); letter-spacing: -0.01em; }

@media (max-width: 980px) {
  .xp-origin { grid-template-columns: 1fr; gap: 36px; }
  .xp-values, .xp-people.founders { grid-template-columns: 1fr 1fr; }
  .xp-people.advisors { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .xp-values, .xp-people.founders, .xp-people.advisors { grid-template-columns: 1fr; }
}

/* ============================================================
   ATLAN-STYLE CENTERED HERO (dark royal-blue, our palette)
   ============================================================ */
.xp-hero.atlan {
  position: relative; overflow: hidden; isolation: isolate; text-align: center;
  padding: 84px 0 0; color: #fff;
  background:
    radial-gradient(120% 90% at 50% 0%, #0E2A6B 0%, #0A1C46 38%, #081534 70%, #070E1F 100%);
}
.xp-hero.atlan .xp-hero-grid-bg {
  position: absolute; inset: 0; z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 80% 78% at 50% 30%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 78% at 50% 30%, black 30%, transparent 80%);
}
.xp-hero.atlan .xp-hero-glow {
  position: absolute; left: 50%; top: 56%; transform: translate(-50%,-50%); z-index: -1;
  width: 1100px; height: 720px; pointer-events: none;
  background: radial-gradient(closest-side, rgba(35,108,255,0.55), rgba(10,91,215,0.18) 55%, transparent 75%);
  filter: blur(10px);
}
.xp-hero-center { max-width: 880px; margin: 0 auto; text-align: center; }
.xp-hero.atlan .xp-hero-eyebrow {
  display: inline-flex; white-space: nowrap;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.9); text-transform: none; font-size: 13px; font-weight: 600; margin: 0 auto 30px;
}
.xp-hero.atlan h1 {
  font-size: clamp(40px, 5vw, 68px); font-weight: 800; line-height: 1.08; letter-spacing: -0.03em;
  color: #fff; margin: 0 auto 26px; max-width: 14ch;
}
.xp-hero.atlan h1 .grad {
  background: linear-gradient(92deg, #6FB0FF 0%, #4F93FF 60%, #7FC4FF 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.xp-hero.atlan .lead {
  font-size: clamp(17px, 1.5vw, 20px); line-height: 1.6; color: rgba(255,255,255,0.74);
  max-width: 580px; margin: 0 auto 38px;
}
.xp-hero.atlan .xp-hero-ctas { display: flex; align-items: center; gap: 26px; justify-content: center; margin-bottom: 36px; }
.xp-btn-white { background: #fff; color: var(--neutral-900); border: none; font-weight: 700;
  box-shadow: 0 0 0 6px rgba(255,255,255,0.08), 0 14px 30px rgba(5,16,40,0.4); padding-left: 32px; padding-right: 32px; }
.xp-btn-white:hover { background: #fff; color: var(--brand-blue-600); transform: translateY(-1px);
  box-shadow: 0 0 0 6px rgba(111,160,255,0.18), 0 18px 38px rgba(5,16,40,0.5); }
.xp-hero-textlink { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-size: 16px; font-weight: 700;
  text-decoration: none; border-bottom: 2px solid rgba(255,255,255,0.5); padding-bottom: 2px; transition: gap 140ms, border-color 140ms; }
.xp-hero-textlink:hover { gap: 12px; border-bottom-color: #fff; }
.xp-hero.atlan .xp-hero-meta { color: rgba(255,255,255,0.6); justify-content: center; margin-bottom: 6px; }
.xp-hero.atlan .xp-hero-meta-item svg { color: #6FE0B0; }

/* product peeking up from the bottom of the hero */
.xp-hero-showcase { position: relative; margin-top: 58px; padding-top: 14px;
  max-width: 1000px; margin-left: auto; margin-right: auto; }
.xp-hero-showcase-inner {
  border-radius: 22px 22px 0 0; padding: 14px 14px 0; background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.14); border-bottom: none;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.12);
}
.xp-hero-showcase-inner .xp-graph-frame,
.xp-hero-showcase-inner .xp-mock,
.xp-hero-showcase-inner .xp-dash { border-radius: 14px 14px 0 0; max-height: 380px; overflow: hidden; }
.xp-hero-showcase::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 120px;
  background: linear-gradient(180deg, transparent, rgba(7,14,31,0) 0%, rgba(7,14,31,0));
  pointer-events: none;
}
.xp-hero.atlan + * { position: relative; z-index: 1; }
@media (max-width: 860px) {
  .xp-hero.atlan { padding-top: 56px; }
  .xp-hero.atlan .xp-hero-ctas { flex-direction: column; gap: 18px; }
  .xp-hero-showcase-inner .xp-graph-frame, .xp-hero-showcase-inner .xp-mock, .xp-hero-showcase-inner .xp-dash { max-height: 300px; }
}

/* ---------- CONTINUOUS COMPLIANCE ORBIT ---------- */
.xp-comp-orbit {
  position: relative; max-width: 640px; margin: 52px auto 12px; padding: 14px;
  border-radius: var(--radius-2xl); overflow: hidden;
  background:
    radial-gradient(520px 360px at 50% 42%, rgba(10,91,215,0.30), transparent 64%),
    radial-gradient(420px 300px at 80% 90%, rgba(109,94,245,0.20), transparent 62%),
    var(--xp-hero-bg);
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 30px 70px rgba(9,30,66,0.28), inset 0 1px 0 rgba(255,255,255,0.06);
}
.xp-comp-orbit::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 45%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 45%, black 20%, transparent 75%);
}
.xp-comp-orbit svg { position: relative; z-index: 1; display: block; width: 100%; height: auto; }
.xp-orbit-spin { animation: xp-orbit 64s linear infinite; transform-origin: 300px 300px; }
.xp-orbit-spin-rev { animation: xp-orbit-rev 80s linear infinite; transform-origin: 300px 300px; }
@keyframes xp-orbit { to { transform: rotate(360deg); } }
@keyframes xp-orbit-rev { to { transform: rotate(-360deg); } }
.xp-shield-halo { fill: rgba(80,140,255,0.18); animation: xp-halo 3.4s var(--ease-out) infinite; transform-origin: 300px 280px; }
@media (prefers-reduced-motion: reduce) { .xp-orbit-spin, .xp-orbit-spin-rev, .xp-shield-halo { animation: none; } }

/* ---------- INTEGRATION ORBIT (platform) ---------- */
.xp-orbit-wrap { --orbit-r: 150px; position: relative; z-index: 2; width: 380px; height: 380px; max-width: 100%; margin: -70px auto 0; }
/* single thin solid ring in brand blue — node centers sit on it */
.xp-orbit-rings { position: absolute; top: 50%; left: 50%; width: calc(var(--orbit-r) * 2); height: calc(var(--orbit-r) * 2);
  transform: translate(-50%, -50%); border-radius: 50%; border: 1px solid rgba(10,91,215,0.22); }
/* soft concentric glow in the center */
.xp-orbit-glow {
  position: absolute; top: 50%; left: 50%; width: 250px; height: 250px; transform: translate(-50%,-50%);
  border-radius: 50%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(closest-side, rgba(109,94,245,0.10), transparent 100%),
    repeating-radial-gradient(circle, rgba(10,91,215,0.05) 0 1px, transparent 1px 17%);
}
.xp-orbit-spin { position: absolute; inset: 0; animation: xp-orbit-rot 48s linear infinite; z-index: 4; }
@keyframes xp-orbit-rot { to { transform: rotate(360deg); } }
/* node placed on the ring via rotate→translate→rotate(back): no tilt, locked on circle */
.xp-orbit-node {
  position: absolute; top: 50%; left: 50%; width: 58px; height: 58px; margin: -29px;
  transform: rotate(var(--a)) translateX(var(--orbit-r)) rotate(calc(-1 * var(--a)));
}
.xp-orbit-node .tile {
  width: 58px; height: 58px; border-radius: 16px; background: #fff;
  border: 1px solid var(--border); box-shadow: 0 8px 22px rgba(9,30,66,0.12);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  animation: xp-orbit-rot-rev 48s linear infinite; transition: transform 200ms var(--ease-out);
}
.xp-orbit-node .tile:hover { transform: scale(1.1); box-shadow: 0 12px 28px rgba(9,30,66,0.2); }
@keyframes xp-orbit-rot-rev { to { transform: rotate(-360deg); } }
.xp-orbit-node .tile img { width: 58%; height: 58%; object-fit: contain; display: block; }
.xp-orbit-node .tile.wide img { width: 72%; }
.xp-orbit-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 3;
  width: 92px; height: 92px; border-radius: 22px; background: #fff;
  box-shadow: 0 18px 44px rgba(9,30,66,0.18);
  display: flex; align-items: center; justify-content: center;
}
.xp-orbit-center img { width: 46px; height: 46px; object-fit: contain; display: block; }
.xp-orbit-center .pulse {
  position: absolute; inset: 0; border-radius: 22px; border: 1.5px solid rgba(10,91,215,0.4);
  animation: xp-orbit-pulse 2.8s var(--ease-out) infinite;
}
@keyframes xp-orbit-pulse {
  0% { opacity: .6; transform: scale(1); }
  70% { opacity: 0; transform: scale(1.5); }
  100% { opacity: 0; transform: scale(1.5); }
}
@media (prefers-reduced-motion: reduce) {
  .xp-orbit-spin, .xp-orbit-node .tile, .xp-orbit-center .pulse { animation: none; }
}
@media (max-width: 560px) { .xp-orbit-wrap { --orbit-r: 108px; width: 280px; height: 280px; }
  .xp-orbit-node { width: 46px; height: 46px; margin: -23px; }
  .xp-orbit-node .tile { width: 46px; height: 46px; border-radius: 12px; }
  .xp-orbit-glow { width: 180px; height: 180px; }
  .xp-orbit-center { width: 72px; height: 72px; border-radius: 17px; } .xp-orbit-center img { width: 36px; height: 36px; }
}

/* ============ LEGAL PAGES ============ */
.xp-legal { max-width: 800px; margin: 0 auto; }
.xp-legal-meta { display: flex; flex-wrap: wrap; gap: 6px 20px; margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.xp-legal-meta span { font-size: 13px; color: var(--neutral-500); }
.xp-legal-meta span strong { color: var(--neutral-700); font-weight: 600; }
.xp-legal-intro { font-size: 15.5px; line-height: 1.75; color: var(--neutral-700); margin-bottom: 40px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.xp-legal-section { padding: 36px 0; border-bottom: 1px solid var(--border); }
.xp-legal-section:last-child { border-bottom: none; }
.xp-legal-section h2 { font-size: 18px; font-weight: 700; color: var(--neutral-900); margin: 0 0 16px; display: flex; align-items: baseline; gap: 10px; }
.xp-legal-section h2 .sec-num { font-size: 12px; font-weight: 700; color: var(--brand-blue-500); background: rgba(10,91,215,0.08); padding: 2px 8px; border-radius: 20px; flex-shrink: 0; }
.xp-legal-section h3 { font-size: 14.5px; font-weight: 700; color: var(--neutral-800); margin: 24px 0 10px; }
.xp-legal-section p { font-size: 14.5px; line-height: 1.8; color: var(--neutral-700); margin: 0 0 14px; }
.xp-legal-section ul, .xp-legal-section ol { padding-left: 20px; margin: 0 0 14px; }
.xp-legal-section li { font-size: 14.5px; line-height: 1.75; color: var(--neutral-700); margin-bottom: 6px; }
.xp-legal-section ul { list-style: none; padding-left: 0; }
.xp-legal-section ul li { padding-left: 18px; position: relative; }
.xp-legal-section ul li::before { content: '—'; position: absolute; left: 0; color: var(--brand-blue-400); font-weight: 700; }
.xp-legal-section.disclaimers p { font-size: 13px; letter-spacing: 0.01em; line-height: 1.7; }
.xp-legal-contact { margin-top: 48px; padding: 28px 32px; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; }
.xp-legal-contact h3 { font-size: 15px; font-weight: 700; color: var(--neutral-900); margin: 0 0 12px; }
.xp-legal-contact p { font-size: 14px; line-height: 1.75; color: var(--neutral-600); margin: 0; }
.xp-legal-contact a { color: var(--brand-blue-500); text-decoration: none; }
.xp-legal-contact a:hover { text-decoration: underline; }
.xp-legal-accept { margin-top: 32px; padding: 20px 28px; background: rgba(10,91,215,0.05); border: 1px solid rgba(10,91,215,0.15); border-radius: 12px; }
.xp-legal-accept p { font-size: 13px; line-height: 1.7; color: var(--neutral-600); margin: 0; }
.xp-legal-accept strong { color: var(--neutral-800); }

/* ============ STYLE-OVERRIDES (direct edit) ============ */
#__om-edit-overrides {}
