/* ============================================================
   AI Shadow v3 (Safe AI Use)
   Tone: enterprise-grade, coaching-not-surveillance.
   Inherits v2 chassis. Adds category, intersection,
   capability, risk-score, and framework sections, plus
   shield score block in the hero demo.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Surfaces */
  --bg:              #060A12;
  --bg-elevated:     #0B141B;
  --bg-card:         rgba(255, 255, 255, 0.025);
  --bg-card-hover:   rgba(255, 255, 255, 0.04);

  /* Brand */
  --accent:          #34D7A4;
  --accent-bright:   #4FE3B3;
  --accent-dim:      #14B587;
  --accent-soft:     rgba(52, 215, 164, 0.10);
  --accent-glow:     rgba(52, 215, 164, 0.25);
  --accent-ink:      #03150E;

  /* Text */
  --text:            #FFFFFF;
  --text-muted:      #94A3B8;
  --text-dim:        #64748B;
  --text-faint:      #475569;

  /* Lines */
  --line:            rgba(255, 255, 255, 0.06);
  --line-strong:     rgba(255, 255, 255, 0.12);

  /* Feedback */
  --warn:            #F59E0B;
  --warn-bright:     #FBBF24;
  --warn-soft:       rgba(245, 158, 11, 0.12);
  --warn-border:     rgba(245, 158, 11, 0.40);

  /* Risk score bands */
  --risk-high:       #F87171;
  --risk-high-soft:  rgba(248, 113, 113, 0.12);
  --risk-mid:        #FBBF24;
  --risk-mid-soft:   rgba(251, 191, 36, 0.14);
  --risk-low:        #34D7A4;
  --risk-low-soft:   rgba(52, 215, 164, 0.14);

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, monospace;

  /* Layout */
  --container: 1280px;
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

mark {
  background: transparent;
  color: inherit;
}

/* Screen-reader-only utility for the diagram and viz text equivalents */
.intersection__sr,
.risk-score__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 24px;
}

.muted { color: var(--text-muted); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--text);
}

.section__head { margin: 0 0 36px; max-width: 880px; }

.section__title {
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
}

.section__lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  transition: transform 0.15s var(--ease), background 0.15s var(--ease), color 0.15s var(--ease), border-color 0.15s var(--ease), box-shadow 0.2s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn--primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 0 0 0 var(--accent-glow), 0 10px 30px -10px var(--accent-glow);
}
.btn--primary:hover {
  background: var(--accent-bright);
  transform: translateY(-1px);
  box-shadow: 0 0 0 4px var(--accent-soft), 0 14px 36px -10px var(--accent-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  background: var(--bg-card);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--lg { padding: 14px 26px; font-size: 15px; }
.btn--pill { border-radius: 999px; padding: 10px 18px; font-size: 13px; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 10, 18, 0.65);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(6, 10, 18, 0.85);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
}
.brand__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}
.brand__name sup { font-size: 8px; vertical-align: super; opacity: 0.7; }

.header__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__cta { display: none; }
@media (min-width: 768px) { .header__cta { display: inline-flex; } }

/* ---------- Menu button ---------- */
.menu-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line-strong);
  background: var(--bg-card);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.menu-btn:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.2);
}
.menu-btn span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   MENU OVERLAY
   ============================================================ */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(6, 10, 18, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: stretch;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.menu-overlay.is-open { opacity: 1; pointer-events: auto; }

.menu-overlay__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 120px 24px 48px;
  width: 100%;
  max-width: var(--container);
}

.menu-overlay__nav ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.menu-overlay__nav li { display: flex; align-items: baseline; gap: 24px; }
.menu-overlay__nav li::before {
  content: attr(data-num);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-faint);
  letter-spacing: 0.04em;
  min-width: 28px;
}
.menu-overlay__nav a {
  display: block;
  padding: 8px 0;
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
  transition: color 0.2s var(--ease);
}
.menu-overlay__nav a:hover { color: var(--accent); }

.menu-overlay__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.menu-overlay__social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
}
.menu-overlay__social:hover { color: var(--accent); }

body.menu-open { overflow: hidden; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(64px, 9vw, 120px) 0 clamp(80px, 10vw, 140px);
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}
.hero__glow--top-right {
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(52, 215, 164, 0.28), transparent 70%);
}
.hero__glow--bottom-left {
  bottom: -300px;
  left: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(52, 215, 164, 0.10), transparent 70%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr 1fr; gap: 64px; }
}

/* ---------- Pulse badge ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-glow);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 32px;
}
.badge__pulse {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.badge__pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.4;
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0%   { transform: scale(0.6); opacity: 0.6; }
  100% { transform: scale(2.4);  opacity: 0;   }
}

/* ---------- Hero copy ---------- */
.hero__title {
  font-size: clamp(38px, 6.4vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 700;
  margin: 0 0 28px;
}
.hero__title--accent {
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-dim));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero__sub {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 0 40px;
  line-height: 1.55;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 40px;
}

.hero__signals {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}
.hero__signals li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__signals-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

/* ---------- Hero demo / browser scene ---------- */
.hero__demo {
  position: relative;
}

.browser {
  background: var(--bg-elevated);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 30px 80px -20px rgba(0, 0, 0, 0.6),
    0 0 0 1px var(--line),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform: perspective(1600px) rotateY(-3deg) rotateX(2deg);
  transform-origin: center;
  transition: transform 0.6s var(--ease);
}
.browser:hover { transform: perspective(1600px) rotateY(0deg) rotateX(0deg); }

.browser__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}
.browser__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}
.browser__dot:nth-child(1) { background: #FF5F57; opacity: 0.6; }
.browser__dot:nth-child(2) { background: #FEBC2E; opacity: 0.6; }
.browser__dot:nth-child(3) { background: #28C840; opacity: 0.6; }

.browser__url {
  margin-left: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

.browser__body {
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.chat-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.chat-user {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.chat-user__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.chat-user__msg {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
}

/* PII highlights */
.pii {
  position: relative;
  display: inline-block;
  background: rgba(245, 158, 11, 0.16);
  color: var(--warn-bright);
  padding: 1px 6px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  border: 1px solid var(--warn-border);
  animation: piiPulse 2.4s var(--ease) infinite;
}
.pii:nth-of-type(2) { animation-delay: 0.4s; }
.pii:nth-of-type(3) { animation-delay: 0.8s; }
@keyframes piiPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
  50%      { box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.18); }
}

/* AI Shadow interception overlay */
.shield {
  margin-top: 4px;
  background: linear-gradient(180deg, rgba(52, 215, 164, 0.08), rgba(52, 215, 164, 0.02));
  border: 1px solid var(--accent-glow);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.shield__header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
}
.shield__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.shield__title {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.shield__title sup { font-size: 8px; opacity: 0.7; }
.shield__count {
  margin-left: auto;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.shield__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11.5px;
}
.shield__list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text-muted);
}
.shield__list li span:first-child {
  color: var(--accent);
  letter-spacing: 0.04em;
}

/* Score block inside the shield */
.shield__score {
  background: var(--risk-high-soft);
  border: 1px solid rgba(248, 113, 113, 0.25);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.shield__score-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.shield__score-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.shield__score-num {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--risk-high);
  line-height: 1;
}
.shield__score-denom {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 2px;
}
.shield__score-band {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--risk-high);
  background: rgba(248, 113, 113, 0.18);
  padding: 3px 8px;
  border-radius: 4px;
}
.shield__score-bar {
  position: relative;
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
}
.shield__score-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 80%;
  background: linear-gradient(90deg, var(--risk-mid), var(--risk-high));
  border-radius: 2px;
  animation: scoreFill 1.4s var(--ease) both;
}
@keyframes scoreFill {
  0%   { width: 0; }
  100% { width: 80%; }
}

.shield__guide {
  font-size: 13px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed var(--accent-glow);
  border-radius: 8px;
  padding: 10px 12px;
}

.shield__actions {
  border-top: 1px solid var(--line);
  padding-top: 10px;
  display: flex;
  justify-content: flex-end;
}
.shield__action {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.hero__demo-caption {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  justify-content: center;
}
.hero__demo-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent);
  animation: heartbeat 1.6s var(--ease) infinite;
}
@keyframes heartbeat {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); }
  50%      { box-shadow: 0 0 0 6px transparent; }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  position: relative;
  padding: clamp(60px, 7.5vw, 100px) 0;
}
.section--tight { padding: clamp(44px, 5.5vw, 76px) 0; }

/* ============================================================
   CATEGORY CONTRAST (NEW)
   5-cell row showing what each category does.
   ============================================================ */
.category {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) { .category { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .category { grid-template-columns: repeat(5, 1fr); } }

.category__cell {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
}
.category__cell:hover {
  border-color: var(--line-strong);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}
.category__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.category__verb {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
  letter-spacing: -0.01em;
}
.category__desc {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

.category__cell--accent {
  background: linear-gradient(180deg, rgba(52, 215, 164, 0.10), rgba(52, 215, 164, 0.02));
  border-color: var(--accent-glow);
  box-shadow: 0 30px 60px -30px rgba(52, 215, 164, 0.30);
}
.category__cell--accent .category__label { color: var(--accent); font-weight: 600; }
.category__cell--accent .category__verb { color: var(--text); }

/* ============================================================
   INTERSECTION DIAGRAM (NEW)
   Center node + 4 outer market nodes, connected via SVG.
   On mobile: stack vertically with dashed lines hidden.
   ============================================================ */
.intersection { position: relative; }

.intersection__diagram {
  position: relative;
  width: 100%;
  max-width: 760px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  justify-items: center;
  gap: 12px;
}

.intersection__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.intersection__node {
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  text-align: center;
  min-width: 0;
  width: 100%;
  max-width: 200px;
  position: relative;
  z-index: 1;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
}
.intersection__node:hover {
  border-color: var(--accent-glow);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}
.intersection__node-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.intersection__node-sub {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-top: 4px;
  text-transform: uppercase;
}

.intersection__node--north { grid-column: 2; grid-row: 1; }
.intersection__node--south { grid-column: 2; grid-row: 3; }
.intersection__node--west  { grid-column: 1; grid-row: 2; }
.intersection__node--east  { grid-column: 3; grid-row: 2; }
.intersection__node--center {
  grid-column: 2;
  grid-row: 2;
  background: linear-gradient(180deg, rgba(52, 215, 164, 0.18), rgba(52, 215, 164, 0.06));
  border-color: var(--accent);
  border-width: 1.5px;
  box-shadow: 0 30px 80px -20px rgba(52, 215, 164, 0.40);
  padding: 22px 22px;
  z-index: 2;
}
.intersection__node-brand {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.intersection__node-brand sup { font-size: 8px; vertical-align: super; opacity: 0.7; }
.intersection__node-center-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text);
  margin-top: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* Below 720px the diagram becomes too cramped; stack vertically */
@media (max-width: 719px) {
  .intersection__diagram {
    aspect-ratio: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 12px;
    max-width: 360px;
  }
  .intersection__lines { display: none; }
  .intersection__node,
  .intersection__node--north,
  .intersection__node--south,
  .intersection__node--west,
  .intersection__node--east,
  .intersection__node--center {
    grid-column: 1;
    grid-row: auto;
    max-width: none;
  }
  .intersection__node--center { order: -1; }
}

/* ============================================================
   CAPABILITIES (NEW)
   ============================================================ */
.capability-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 640px) { .capability-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .capability-grid { grid-template-columns: repeat(4, 1fr); } }

.capability-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
}
.capability-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0.7;
}
.capability-card:hover {
  border-color: var(--accent-glow);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}
.capability-card__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.capability-card h3 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
}
.capability-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

/* ============================================================
   PROBLEM
   ============================================================ */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0 0 48px;
}
@media (min-width: 768px) { .problem-grid { grid-template-columns: repeat(3, 1fr); } }

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
}
.problem-card:hover {
  border-color: var(--line-strong);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}
.problem-card__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.problem-card h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.problem-card p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}
.problem-card em { font-style: italic; color: var(--warn); }

.risk-flow {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
}
@media (min-width: 900px) {
  .risk-flow {
    flex-direction: row;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
  }
  .risk-flow__step { flex: 1; }
}
.risk-flow__step {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 18px;
  font-family: var(--font-mono);
  font-size: 13px;
  text-align: center;
  color: var(--text);
}
.risk-flow__step--warn {
  background: var(--warn-soft);
  border-color: var(--warn-border);
  color: var(--warn-bright);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.risk-flow__warn-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--warn-bright);
  animation: piiPulse 1.8s var(--ease) infinite;
}
.risk-flow__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-family: var(--font-mono);
}
.risk-flow__caption {
  flex-basis: 100%;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  margin-top: 8px;
}

/* ============================================================
   GAP
   ============================================================ */
.gap-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 640px) { .gap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gap-grid { grid-template-columns: repeat(4, 1fr); } }

.gap-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
}
.gap-card:hover {
  border-color: var(--line-strong);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}
.gap-card__label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.gap-card__label--accent {
  color: var(--accent);
  font-weight: 600;
}
.gap-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  flex: 1;
  line-height: 1.55;
}
.gap-card__acts {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  padding-top: 10px;
  border-top: 1px dashed var(--line);
}
.gap-card__acts--accent {
  color: var(--accent);
  border-top-color: var(--accent-glow);
}
.gap-card__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.gap-card__status .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.gap-card__status--blind { color: var(--warn); }
.gap-card__status--blind .dot { background: var(--warn); }
.gap-card__status--solve { color: var(--accent); }
.gap-card__status--solve .dot { background: var(--accent); }

.gap-card--solve {
  background: linear-gradient(180deg, rgba(52, 215, 164, 0.10), rgba(52, 215, 164, 0.02));
  border-color: var(--accent-glow);
  box-shadow: 0 30px 60px -30px rgba(52, 215, 164, 0.30);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 640px) { .how { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .how { grid-template-columns: repeat(5, 1fr); } }

.how__step {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
}
.how__step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0.7;
}
.how__step:hover {
  border-color: var(--accent-glow);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}
.how__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--accent);
}
.how__step h3 {
  font-size: 17px;
  font-weight: 600;
}
.how__step p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

/* ============================================================
   RISK SCORE (NEW flagship)
   ============================================================ */
.risk-score {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 1024px) {
  .risk-score { grid-template-columns: 1.05fr 1fr; gap: 32px; }
}

.risk-score__answers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) { .risk-score__answers { grid-template-columns: repeat(2, 1fr); } }

.risk-score__answer {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.risk-score__answer:hover {
  border-color: var(--accent-glow);
  background: var(--bg-card-hover);
}
.risk-score__answer-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.06em;
}
.risk-score__answer h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.risk-score__answer p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

.risk-score__viz {
  background: var(--bg-elevated);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.6);
}
.risk-score__viz-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.risk-score__viz-eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
}
.risk-score__viz-meta {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

.risk-score__bars {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.risk-score__bar {
  display: grid;
  grid-template-columns: 90px 1fr 36px;
  align-items: center;
  gap: 12px;
}
.risk-score__bar-label {
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}
.risk-score__bar-track {
  position: relative;
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
}
.risk-score__bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: var(--w, 50%);
  background: linear-gradient(90deg, var(--risk-mid), var(--risk-high));
  border-radius: 4px;
  animation: barGrow 1.6s var(--ease) both;
}
.risk-score__bar-fill--mid {
  background: linear-gradient(90deg, var(--risk-low), var(--risk-mid));
}
.risk-score__bar-fill--low {
  background: linear-gradient(90deg, rgba(52, 215, 164, 0.6), var(--risk-low));
}
@keyframes barGrow {
  0%   { width: 0; }
  100% { width: var(--w, 50%); }
}
.risk-score__bar-val {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  text-align: right;
}

.risk-score__trend {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.risk-score__trend-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.risk-score__trend-delta {
  color: var(--risk-low);
  background: var(--risk-low-soft);
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 500;
}
.risk-score__trend-svg {
  width: 100%;
  height: 80px;
}
.risk-score__trend-axis {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}

.risk-score__wedge {
  grid-column: 1 / -1;
  font-size: 16px;
  color: var(--text-muted);
  text-align: center;
  margin: 8px 0 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}
.risk-score__wedge em {
  font-style: normal;
  color: var(--accent);
  font-weight: 600;
}

/* ============================================================
   FRAMEWORK (NEW)
   ============================================================ */
.framework {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 640px)  { .framework { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .framework { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .framework { grid-template-columns: repeat(5, 1fr); } }

.framework__stage {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
}
.framework__stage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0.7;
}
.framework__stage:hover {
  border-color: var(--accent-glow);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}
.framework__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.framework__stage h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.framework__lead {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}
.framework__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.framework__list li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.framework__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 1.5px;
  background: var(--accent);
}

/* ============================================================
   COVERAGE
   ============================================================ */
.coverage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0 0 32px;
}
@media (min-width: 640px) { .coverage { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .coverage { grid-template-columns: repeat(5, 1fr); } }

.coverage__item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}
.coverage__item:hover {
  border-color: var(--accent-glow);
  background: var(--bg-card-hover);
  color: var(--accent);
}

.coverage__note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-glow);
  border-radius: 999px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  margin: 0;
}
.coverage__note svg { color: var(--accent); flex-shrink: 0; }

/* ============================================================
   AUDIENCE
   ============================================================ */
.audience {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 700px)  { .audience { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1280px) { .audience { grid-template-columns: repeat(4, 1fr); } }

.audience-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.audience-card:hover {
  border-color: var(--line-strong);
  background: var(--bg-card-hover);
}
.audience-card__tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}
.audience-card h3 {
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.audience-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.audience-card li {
  font-size: 14.5px;
  color: var(--text-muted);
  padding-left: 22px;
  position: relative;
  line-height: 1.55;
}
.audience-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 1.5px;
  background: var(--accent);
}

/* Evidence panel (reused inside the Prove section) */
.evidence {
  background: linear-gradient(180deg, rgba(52, 215, 164, 0.06), rgba(52, 215, 164, 0.02));
  border: 1px solid var(--accent-glow);
  border-radius: var(--radius-xl);
  padding: 32px;
}
.evidence__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 24px;
}
.evidence__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px)  { .evidence__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .evidence__grid { grid-template-columns: repeat(3, 1fr); } }
.evidence__num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.evidence__item h4 {
  font-size: 15px;
  font-weight: 600;
  margin: 6px 0 4px;
}
.evidence__item p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ============================================================
   CTA
   ============================================================ */
.section--cta {
  position: relative;
  text-align: center;
  overflow: hidden;
}
.cta__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 215, 164, 0.15), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.cta__head {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 56px;
}
.cta__title {
  font-size: clamp(34px, 5.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0 0 18px;
}
.cta__lead {
  font-size: 17px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

.cta__options {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 0 0 48px;
  text-align: left;
}
@media (min-width: 768px) { .cta__options { grid-template-columns: repeat(3, 1fr); } }
.cta__option {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
}
.cta__option:hover {
  border-color: var(--accent-glow);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}
.cta__option-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.cta__option h3 {
  font-size: 17px;
  font-weight: 600;
}
.cta__option p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

.cta__actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  padding: 72px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 768px) { .footer__top { grid-template-columns: 1.2fr 2fr; } }

.footer__brand p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 16px 0 0;
  max-width: 320px;
  line-height: 1.55;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 16px;
}
@media (min-width: 640px) { .footer__nav { grid-template-columns: repeat(4, 1fr); } }
.footer__nav h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin: 0 0 16px;
  font-weight: 600;
}
.footer__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__nav a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.15s var(--ease);
}
.footer__nav a:hover { color: var(--text); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
}
.footer__bottom p { margin: 0; }

/* ============================================================
   PRODUCT SCREENSHOTS
   Real product UI shots used in place of synthetic mockups —
   .hero__screenshot replaces the hero browser/shield diagram,
   .risk-score__shot replaces the Risk Score SVG dashboard mock,
   .evidence__shot lives under the Prove section as an audit-trail
   visual proof point.
   ============================================================ */
.hero__screenshot {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 30px 80px -20px rgba(0, 0, 0, 0.6),
    0 0 0 1px var(--line-strong);
  transform: perspective(1600px) rotateY(-3deg) rotateX(2deg);
  transform-origin: center;
  transition: transform 0.6s var(--ease);
  background: var(--bg-elevated);
}
.hero__screenshot:hover {
  transform: perspective(1600px) rotateY(0deg) rotateX(0deg);
}
.hero__screenshot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

.risk-score__shot,
.evidence__shot {
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.6);
}
.risk-score__shot img,
.evidence__shot img {
  display: block;
  width: 100%;
  height: auto;
}
.risk-score__shot-cap,
.evidence__shot-cap {
  display: block;
  padding: 12px 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.evidence__shot {
  margin-top: 24px;
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .browser,
  .hero__screenshot { transform: none !important; }
  .shield__score-fill,
  .risk-score__bar-fill {
    animation: none !important;
    width: var(--w, 80%) !important;
  }
}

/* ============================================================
   ENFORCEMENT STACK (added: messaging refresh, June 2026)
   ============================================================ */
.enforcement-stack {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  counter-reset: enforcement-counter;
}
@media (min-width: 700px)  { .enforcement-stack { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .enforcement-stack { grid-template-columns: repeat(3, 1fr); } }

.enforcement-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
}
.enforcement-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), transparent 80%);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  opacity: 0.65;
}
.enforcement-card:hover {
  border-color: var(--accent-glow);
  background: var(--bg-card-hover);
}

.enforcement-card__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
}

.enforcement-card__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.enforcement-card h3 {
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.enforcement-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.enforcement-card__where {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.enforcement-stack__wedge {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  font-style: italic;
}

/* ============================================================
   FRAMEWORK ALIGNMENT (added: messaging refresh, June 2026)
   ============================================================ */
.framework-align {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.framework-align__chip {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 22px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--text);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}
.framework-align__chip:hover {
  border-color: var(--accent-glow);
  background: var(--bg-card-hover);
  color: var(--accent);
}

.framework-align__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 720px;
  margin: 0 auto;
  padding: 14px 22px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-glow);
  border-radius: 12px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: left;
}
.framework-align__note svg { color: var(--accent); flex-shrink: 0; }
