/* ═══════════════════════════════════════════════════════════
   RiskABC Marketing Site — style.css
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --blue:       #2563EB;
  --blue-light: #3B82F6;
  --blue-pale:  #EFF6FF;
  --navy:       #0f2844;
  --navy-mid:   #1e3a5f;
  --navy-light: #e8f0f8;
  --logo-red:        #f65c44;
  --logo-red-pale:   #fff0ec;
  --logo-yellow:     #ffc969;
  --logo-yellow-pale:#fff8ec;
  --green:      #16a34a;
  --green-pale: #f0fdf4;
  --amber:      #d97706;
  --amber-pale: #fffbeb;
  --orange:     #ea580c;
  --red:        #dc2626;
  --red-pale:   #fef2f2;
  --gray-50:    #f8fafc;
  --gray-100:   #f1f5f9;
  --gray-200:   #e2e8f0;
  --gray-300:   #cbd5e1;
  --gray-500:   #64748b;
  --gray-600:   #475569;
  --gray-700:   #334155;
  --gray-900:   #0f172a;
  --text:       #1e293b;
  --radius:     12px;
  --shadow:     0 1px 3px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.06);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.12);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--text); background: #fff; line-height: 1.6; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
}
.tag--blue   { background: var(--blue-pale);       color: var(--blue); }
.tag--navy   { background: var(--logo-red-pale);   color: var(--logo-red); }
.tag--green  { background: var(--green-pale);      color: var(--green); }

/* ── Navigation ── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow .2s;
}
.header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.08); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav__logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); font-size: 20px; font-weight: 700; }
.logo-icon { width: 36px; height: 36px; background: var(--blue); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.logo-icon svg { width: 20px; height: 20px; stroke: #fff; }
.nav__logo strong { color: var(--blue); }
.nav__links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav__links a { text-decoration: none; color: var(--gray-600); font-size: 14px; font-weight: 500; transition: color .2s; }
.nav__links a:hover { color: var(--blue); }
.nav__cta { display: flex; gap: 10px; align-items: center; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 9px 20px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none; transition: all .15s; border: none; }
.btn--ghost { background: transparent; color: var(--gray-700); border: 1.5px solid var(--gray-200); }
.btn--ghost:hover { background: var(--gray-50); border-color: var(--gray-300); }
.btn--blue { background: var(--blue); color: #fff; }
.btn--blue:hover { background: #1d4ed8; }
.btn--navy { background: var(--logo-red); color: #fff; }
.btn--navy:hover { background: #d94832; }
.btn--lg { padding: 13px 28px; font-size: 15px; border-radius: 10px; }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, #f0f7ff 0%, #fff 50%, #f0f4ff 100%);
  padding: 96px 0 80px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 800px 600px at 60% 40%, rgba(37,99,235,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero__eyebrow { margin-bottom: 16px; }
.hero__title { font-size: clamp(30px, 4vw, 50px); font-weight: 800; line-height: 1.15; letter-spacing: -.02em; margin-bottom: 20px; }
.hero__title span { color: var(--blue); }
.hero__sub { font-size: 17px; color: var(--gray-600); max-width: 480px; margin-bottom: 36px; line-height: 1.7; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__stats { display: flex; gap: 32px; padding-top: 24px; border-top: 1px solid var(--gray-200); }
.hero__stat-num { font-size: 26px; font-weight: 800; color: var(--blue); display: block; line-height: 1; margin-bottom: 4px; }
.hero__stat-label { font-size: 11px; color: var(--gray-500); font-weight: 500; text-transform: uppercase; letter-spacing: .04em; }

/* Product cards hero */
.hero__visual { display: flex; flex-direction: column; gap: 16px; }
.product-card-hero {
  background: #fff; border-radius: var(--radius); padding: 22px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200);
}
.product-card-hero__header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.product-card-hero__icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.product-card-hero__icon--blue { background: var(--blue-pale); }
.product-card-hero__icon--navy { background: var(--logo-red-pale); }
.product-card-hero__icon svg { width: 22px; height: 22px; }
.product-card-hero__icon--blue svg { stroke: var(--blue); }
.product-card-hero__icon--navy svg { stroke: var(--logo-red); }
.product-card-hero__title { font-size: 15px; font-weight: 700; }
.product-card-hero__sub { font-size: 12px; color: var(--gray-500); margin-top: 1px; }
.fw-chips { display: flex; flex-wrap: wrap; gap: 5px; }
.fw-chip { font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 5px; background: var(--gray-100); color: var(--gray-600); }
.fw-chip--blue { background: var(--blue-pale);       color: var(--blue); }
.fw-chip--navy { background: var(--logo-yellow-pale); color: #b07800; }

/* ── Sections ── */
.section { padding: 80px 0; }
.section--gray { background: var(--gray-50); }
.section--navy { background: var(--navy); color: #fff; }
.section--dark { background: var(--gray-900); color: #fff; }
.section--blue-grad { background: linear-gradient(135deg, #f5a623 0%, #ffc969 100%); color: var(--navy); }

.section__header { text-align: center; margin-bottom: 52px; }
.section__title { font-size: clamp(24px, 3vw, 36px); font-weight: 800; letter-spacing: -.02em; margin-bottom: 12px; }
.section__sub { font-size: 16px; color: var(--gray-500); max-width: 520px; margin: 0 auto; }
.section--navy .section__sub,
.section--dark .section__sub { color: rgba(255,255,255,.65); }
.section--blue-grad .section__sub { color: rgba(15,40,68,.6); }
.section--navy .section__title,
.section--dark .section__title { color: #fff; }
.section--blue-grad .section__title { color: var(--navy); }

/* ── Product split ── */
.product-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.product-split__label { margin-bottom: 12px; }
.product-split__title { font-size: 28px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 12px; }
.product-split__sub { font-size: 15px; color: var(--gray-600); margin-bottom: 28px; line-height: 1.7; }
.product-split__link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; text-decoration: none; margin-top: 20px; }
.product-split__link--blue { color: var(--blue); }
.product-split__link--navy { color: var(--navy); }
.product-split__features { display: flex; flex-direction: column; gap: 12px; }
.feat-row { display: flex; gap: 12px; align-items: flex-start; }
.feat-row__icon { width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.feat-row__icon--blue { background: var(--blue-pale); }
.feat-row__icon--blue svg { stroke: var(--blue); }
.feat-row__icon--navy { background: var(--logo-red-pale); }
.feat-row__icon--navy svg { stroke: var(--logo-red); }
.feat-row__icon svg { width: 16px; height: 16px; }
.feat-row__title { font-size: 14px; font-weight: 600; margin-bottom: 1px; }
.feat-row__desc { font-size: 12px; color: var(--gray-500); }

/* ── Framework cards ── */
.frameworks-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; }
.fw-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 18px; transition: all .2s; position: relative; overflow: hidden;
}
.fw-card::after {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%;
  background: var(--blue);
}
.fw-card--navy::after { background: var(--navy); }
.fw-card:hover { box-shadow: var(--shadow); transform: translateY(-1px); }
.fw-card__top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 6px; }
.fw-card__name { font-size: 13px; font-weight: 700; line-height: 1.35; flex: 1; padding-right: 6px; }
.fw-card__count { font-size: 24px; font-weight: 800; color: var(--blue); line-height: 1; }
.fw-card--navy .fw-card__count { color: var(--navy); }
.fw-card__meta { font-size: 11px; color: var(--gray-400); margin-bottom: 8px; }
.fw-card__desc { font-size: 11px; color: var(--gray-600); line-height: 1.55; }
.fw-card__label { display: inline-block; margin-top: 10px; font-size: 10px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 2px 7px; border-radius: 4px; background: var(--blue-pale); color: var(--blue); }
.fw-card--navy .fw-card__label { background: var(--navy-light); color: var(--navy); }

/* ── Feature module grid ── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 22px; transition: all .2s;
}
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.feature-card__icon { width: 46px; height: 46px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.feature-card__icon--blue   { background: var(--blue-pale); }
.feature-card__icon--blue svg { stroke: var(--blue); }
.feature-card__icon--navy   { background: var(--navy-light); }
.feature-card__icon--navy svg { stroke: var(--navy); }
.feature-card__icon--green  { background: #f0fdf4; }
.feature-card__icon--green svg { stroke: #16a34a; }
.feature-card__icon--amber  { background: #fffbeb; }
.feature-card__icon--amber svg { stroke: #d97706; }
.feature-card__icon--purple { background: #f5f3ff; }
.feature-card__icon--purple svg { stroke: #7c3aed; }
.feature-card__icon--red    { background: #fef2f2; }
.feature-card__icon--red svg { stroke: #dc2626; }
.feature-card__icon svg { width: 22px; height: 22px; }
.feature-card__title { font-size: 14px; font-weight: 700; margin-bottom: 7px; }
.feature-card__desc { font-size: 12px; color: var(--gray-500); line-height: 1.6; }
.feature-card__pills { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 10px; }
.pill { font-size: 10px; font-weight: 500; padding: 2px 7px; border-radius: 4px; background: var(--gray-100); color: var(--gray-600); }

/* ── Risk formula ── */
.formula-wrap {
  background: var(--navy); border-radius: 16px; padding: 40px 32px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.formula-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.formula-eq {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 10px; margin-bottom: 8px;
}
.formula-eq__op { color: rgba(255,255,255,.35); font-size: 22px; font-weight: 300; }
.feq-box {
  padding: 10px 18px; border-radius: 10px; font-size: clamp(14px, 2vw, 20px);
  font-weight: 800; letter-spacing: -.01em;
}
.feq-box--rs     { background: rgba(255,255,255,.08); color: #e2e8f0; font-size: clamp(16px,2.5vw,24px); }
.feq-box--ip     { background: rgba(59,130,246,.2); color: #93c5fd; border: 1px solid rgba(59,130,246,.25); }
.feq-box--cia    { background: rgba(22,163,74,.15); color: #86efac; border: 1px solid rgba(22,163,74,.2); }
.formula-sub { font-size: 13px; color: rgba(255,255,255,.4); margin-bottom: 32px; }
.formula-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; width: 100%; max-width: 680px; }
.formula-item { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 10px; padding: 14px 10px; text-align: center; }
.formula-item__abbr  { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.formula-item__label { font-size: 10px; color: rgba(255,255,255,.45); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 6px; }
.formula-item__range { font-size: 12px; color: #93c5fd; font-weight: 600; }
.risk-levels-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.rl-item { border-radius: 8px; padding: 10px 18px; text-align: center; min-width: 100px; }
.rl-item__score { font-size: 18px; font-weight: 800; }
.rl-item__label { font-size: 11px; font-weight: 600; margin-top: 2px; }
.rl-item--low      { background: #dcfce7; color: #166534; }
.rl-item--moderate { background: #fef9c3; color: #854d0e; }
.rl-item--high     { background: #ffedd5; color: #9a3412; }
.rl-item--extreme  { background: #fee2e2; color: #991b1b; }

/* ── BIA ── */
.bia-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.bia-features { display: flex; flex-direction: column; gap: 10px; }
.bia-tier-list { display: flex; flex-direction: column; gap: 8px; }
.bia-tier {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--gray-200); border-radius: 9px;
  padding: 13px 16px; border-left: 4px solid transparent;
}
.bia-tier--0 { border-left-color: #dc2626; }
.bia-tier--1 { border-left-color: #ea580c; }
.bia-tier--2 { border-left-color: #d97706; }
.bia-tier--3 { border-left-color: #16a34a; }
.bia-tier__num { font-size: 11px; font-weight: 700; text-transform: uppercase; min-width: 44px; }
.bia-tier--0 .bia-tier__num { color: #dc2626; }
.bia-tier--1 .bia-tier__num { color: #ea580c; }
.bia-tier--2 .bia-tier__num { color: #d97706; }
.bia-tier--3 .bia-tier__num { color: #16a34a; }
.bia-tier__name { font-size: 14px; font-weight: 700; }
.bia-tier__rto  { font-size: 11px; color: var(--gray-500); margin-top: 1px; }

/* Impact matrix */
.impact-matrix { border-radius: 10px; overflow: hidden; border: 1px solid var(--gray-200); }
.im-head { display: grid; grid-template-columns: 1fr repeat(4,1fr); background: var(--gray-900); }
.im-head span { padding: 7px 5px; font-size: 9px; font-weight: 600; color: rgba(255,255,255,.6); text-align: center; letter-spacing: .03em; text-transform: uppercase; }
.im-head span:first-child { text-align: left; padding-left: 10px; }
.im-row { display: grid; grid-template-columns: 1fr repeat(4,1fr); border-bottom: 1px solid var(--gray-100); }
.im-row:last-child { border-bottom: none; }
.im-row span { padding: 7px 4px; font-size: 10px; text-align: center; font-weight: 500; }
.im-row span:first-child { text-align: left; padding-left: 10px; font-weight: 600; color: var(--gray-700); background: var(--gray-50); }
.im-none { color: var(--gray-300); }
.im-low  { background: #dcfce7; color: #166534; font-weight: 700; margin: 2px; border-radius: 3px; }
.im-med  { background: #fef9c3; color: #854d0e; font-weight: 700; margin: 2px; border-radius: 3px; }
.im-high { background: #ffedd5; color: #9a3412; font-weight: 700; margin: 2px; border-radius: 3px; }
.im-vh   { background: #fee2e2; color: #991b1b; font-weight: 700; margin: 2px; border-radius: 3px; }

/* ── App mockup ── */
.app-mockup { background: #fff; border: 1px solid var(--gray-200); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-lg); }
.app-bar { background: var(--gray-900); padding: 10px 14px; display: flex; align-items: center; gap: 7px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #ef4444; } .dot-y { background: #f59e0b; } .dot-g { background: #22c55e; }
.app-bar__url { flex: 1; background: rgba(255,255,255,.08); border-radius: 5px; padding: 3px 10px; font-size: 10px; color: rgba(255,255,255,.4); text-align: center; }
.mock-layout { display: flex; height: 280px; }
.mock-sidebar { width: 136px; background: var(--gray-900); padding: 10px 6px; display: flex; flex-direction: column; gap: 2px; flex-shrink: 0; }
.mock-nav { padding: 6px 8px; border-radius: 6px; font-size: 9.5px; color: rgba(255,255,255,.45); }
.mock-nav--active { background: rgba(59,130,246,.25); color: #93c5fd; font-weight: 700; }
.mock-nav--div { height: 1px; background: rgba(255,255,255,.07); margin: 3px 4px; }
.mock-main { flex: 1; padding: 12px; background: var(--gray-50); overflow: hidden; }
.mock-stat-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; margin-bottom: 8px; }
.mock-stat { background: #fff; border: 1px solid var(--gray-200); border-radius: 6px; padding: 7px 9px; border-left: 3px solid var(--gray-300); }
.mock-stat--o { border-left-color: #f97316; }
.mock-stat--r { border-left-color: #ef4444; }
.mock-stat--a { border-left-color: #f59e0b; }
.mock-stat__v { font-size: 15px; font-weight: 800; color: var(--gray-900); }
.mock-stat__l { font-size: 8px; color: var(--gray-500); }
.mock-tbl { background: #fff; border: 1px solid var(--gray-200); border-radius: 6px; overflow: hidden; }
.mock-tbl-h { display: grid; background: var(--gray-50); border-bottom: 1px solid var(--gray-200); }
.mock-tbl-r { display: grid; border-bottom: 1px solid var(--gray-100); }
.mock-tbl-r:last-child { border-bottom: none; }
.mock-tbl-h span { padding: 5px 8px; font-size: 8px; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: .05em; }
.mock-tbl-r span { padding: 5px 8px; font-size: 9px; color: var(--gray-700); display: flex; align-items: center; }
.mbadge { display: inline-block; font-size: 8px; font-weight: 700; padding: 1px 5px; border-radius: 3px; }
.mb-g { background: #dcfce7; color: #166534; }
.mb-y { background: #fef9c3; color: #854d0e; }
.mb-o { background: #ffedd5; color: #9a3412; }
.mb-r { background: #fee2e2; color: #991b1b; }
.mb-b { background: #dbeafe; color: #1d4ed8; }
.mb-gr{ background: var(--gray-100); color: var(--gray-600); }

/* ── Roles ── */
.roles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px,1fr)); gap: 10px; }
.role-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; padding: 14px; }
.role-card__name { font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.role-perm { font-size: 10px; color: rgba(255,255,255,.55); margin-bottom: 3px; padding-left: 12px; position: relative; }
.role-perm::before { content: '·'; position: absolute; left: 2px; color: #93c5fd; }

/* ── CMMC domains ── */
.cmmc-domains { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px,1fr)); gap: 8px; }
.cmmc-domain { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 8px; padding: 10px 8px; text-align: center; transition: background .2s; }
.cmmc-domain:hover { background: rgba(255,255,255,.1); }
.cmmc-domain__code { font-size: 18px; font-weight: 800; color: #93c5fd; display: block; line-height: 1; margin-bottom: 5px; }
.cmmc-domain__name { font-size: 9.5px; color: rgba(255,255,255,.55); font-weight: 500; line-height: 1.4; }

/* ── Evidence types ── */
.evidence-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.ev-type { border-radius: 8px; padding: 13px; }
.ev-type--blue   { background: #dbeafe; } .ev-type--blue .ev-type__n { color: #1d4ed8; }
.ev-type--purple { background: #ede9fe; } .ev-type--purple .ev-type__n { color: #6d28d9; }
.ev-type--orange { background: #ffedd5; } .ev-type--orange .ev-type__n { color: #c2410c; }
.ev-type--gray   { background: var(--gray-100); } .ev-type--gray .ev-type__n { color: #374151; }
.ev-type--green  { background: #dcfce7; } .ev-type--green .ev-type__n { color: #166534; }
.ev-type--yellow { background: #fef9c3; } .ev-type--yellow .ev-type__n { color: #92400e; }
.ev-type__n { font-size: 12px; font-weight: 700; margin-bottom: 3px; }
.ev-type__d { font-size: 10px; opacity: .65; line-height: 1.4; }

/* ── Audit log ── */
.audit-log { display: flex; flex-direction: column; gap: 6px; }
.audit-entry { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--gray-100); border-radius: 8px; padding: 9px 12px; }
.aa { display: inline-block; font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 4px; min-width: 52px; text-align: center; }
.aa-create { background: #dcfce7; color: #166534; }
.aa-update { background: #dbeafe; color: #1d4ed8; }
.aa-delete { background: #fee2e2; color: #991b1b; }
.aa-login  { background: #f3e8ff; color: #6d28d9; }
.aa-export { background: #fef9c3; color: #92400e; }
.audit-user { font-size: 11px; font-weight: 600; color: var(--gray-700); min-width: 120px; }
.audit-desc { font-size: 11px; color: var(--gray-500); flex: 1; }
.audit-time { font-size: 10px; color: var(--gray-400); white-space: nowrap; }

/* ── Comparison table ── */
.compare-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table thead th { background: var(--gray-900); color: #fff; padding: 14px 20px; font-size: 13px; font-weight: 600; text-align: left; }
.compare-table thead th:first-child { width: 210px; }
.compare-table tbody td { padding: 13px 20px; font-size: 13px; border-bottom: 1px solid var(--gray-100); background: #fff; }
.compare-table tbody tr:nth-child(even) td { background: var(--gray-50); }
.compare-table tbody td:first-child { font-weight: 600; color: var(--gray-600); }
.ck { color: #16a34a; font-size: 17px; font-weight: 700; }
.cx { color: var(--gray-300); font-size: 17px; }

/* ── Settings demo ── */
.settings-block { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 22px; }
.settings-block__title { font-size: 13px; font-weight: 700; color: var(--gray-700); margin-bottom: 14px; }
.settings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.settings-item { background: #fff; border: 1px solid var(--gray-200); border-radius: 8px; padding: 10px 12px; }
.settings-item__label { font-size: 10px; color: var(--gray-500); font-weight: 600; margin-bottom: 4px; }
.settings-item__value { font-size: 13px; font-weight: 700; color: var(--blue); }
.risk-threshold-bar { margin-top: 4px; height: 6px; border-radius: 99px; overflow: hidden; display: flex; }
.rtb-low  { flex: 8; background: #dcfce7; }
.rtb-mod  { flex: 8; background: #fef9c3; }
.rtb-high { flex: 9; background: #ffedd5; }
.rtb-ext  { flex: 9; background: #fee2e2; }

/* ── CTA ── */
.cta-inner { text-align: center; }
.cta-inner h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; color: var(--navy); margin-bottom: 12px; letter-spacing: -.02em; }
.cta-inner p { font-size: 17px; color: rgba(15,40,68,.65); margin-bottom: 40px; }
.cta-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 700px; margin: 0 auto; }
.cta-card { background: rgba(255,255,255,.45); border: 1px solid rgba(255,255,255,.6); border-radius: 14px; padding: 28px 24px; text-align: center; }
.cta-card__title { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.cta-card__sub { font-size: 13px; color: rgba(15,40,68,.6); margin-bottom: 20px; }
.btn--white { background: #fff; color: var(--blue); }
.btn--white:hover { background: #f0f7ff; }
.btn--white-navy { background: #fff; color: var(--navy); }
.btn--white-navy:hover { background: #f0f4ff; }

/* ── Footer ── */
.footer { background: #fff; padding: 40px 0; border-top: 1px solid var(--gray-200); }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.footer__logo { display: flex; align-items: center; gap: 8px; color: var(--navy); font-size: 16px; font-weight: 700; text-decoration: none; }
.footer__links { display: flex; gap: 24px; }
.footer__links a { font-size: 12px; color: var(--gray-500); text-decoration: none; transition: color .2s; }
.footer__links a:hover { color: var(--navy); }
.footer__social { display: flex; gap: 10px; align-items: center; margin-top: 4px; }
.footer__social a {
  width: 36px; height: 36px; border-radius: 10px;
  border: 1.5px solid var(--gray-200); background: #fff;
  color: var(--gray-500);
  display: inline-flex; align-items: center; justify-content: center;
  transition: color .15s, border-color .15s, background .15s, transform .15s;
}
.footer__social a svg { width: 16px; height: 16px; display: block; }
.footer__social a:hover {
  color: var(--navy); border-color: var(--navy);
  background: var(--gray-50); transform: translateY(-1px);
}
.footer__copy { font-size: 11px; color: var(--gray-400, #94a3b8); }

/* ── Divider ── */
.divider { height: 1px; background: var(--gray-200); }

/* ── Scroll targets ── */
[id] { scroll-margin-top: 80px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero__inner, .product-split, .bia-grid, .cta-cards { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .formula-grid { grid-template-columns: repeat(2,1fr); }
  .evidence-types { grid-template-columns: 1fr 1fr; }
  .nav__links, .nav__cta .btn--ghost { display: none; }
  .hero__visual { display: none; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .settings-grid, .cmmc-domains { grid-template-columns: 1fr 1fr; }
}
