/* ==========================================================================
   Simpatico — static site stylesheet
   Tokens, layout primitives, then components. No inline styles in the HTML.
   ========================================================================== */

/* ── Tokens ─────────────────────────────────────────────────────────── */
:root {
  --navy: #1B3A6B;
  --ink: #0E1C3A;
  --periwinkle: #4A5FE0;
  --periwinkle-light: #93A2F5;
  --lavender: #E8EAFB;
  --wash: #F3F4FC;
  --paper: #FFFFFF;
  --muted: #5B6478;
  --amber: #D98F2A;          /* risk statistics ONLY */
  --negative: #B4472E;

  --rule: rgba(27, 58, 107, 0.12);
  --rule-strong: rgba(27, 58, 107, 0.25);

  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --serif: Georgia, 'Times New Roman', serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  --measure: 1160px;
  --gutter: 40px;
  --radius: 10px;

  --shadow-card: 0 1px 2px rgba(14, 28, 58, 0.04), 0 12px 40px rgba(14, 28, 58, 0.08);
  --shadow-lift: 0 2px 6px rgba(14, 28, 58, 0.10), 0 18px 48px rgba(14, 28, 58, 0.18);
}

/* ── Reset ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, p, figure, blockquote, ul, ol { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, svg, video { max-width: 100%; }
img { display: block; }
button { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--periwinkle); }
:focus-visible { outline: 2px solid var(--periwinkle); outline-offset: 2px; }
::selection { background: #D6DBFA; color: var(--navy); }
[hidden] { display: none !important; }

/* ── Type primitives ────────────────────────────────────────────────── */
.serif { font-family: var(--serif); font-weight: 400; }
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--periwinkle);
}
.eyebrow--dark { color: rgba(255, 255, 255, 0.6); }
.eyebrow--muted { color: var(--muted); }
.em { font-style: italic; color: var(--periwinkle); }
.em--dark { font-style: italic; color: var(--periwinkle-light); }
.note {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: var(--muted);
}

/* ── Layout ─────────────────────────────────────────────────────────── */
.panel { padding: 96px var(--gutter); }
.panel--tight { padding: 72px var(--gutter); }
.panel--wash { background: var(--lavender); }
.panel--wash2 { background: var(--wash); }
.panel--paper { background: var(--paper); }
.panel--ink { background: var(--ink); color: #fff; }
.wrap { max-width: var(--measure); margin: 0 auto; }

.split { display: grid; gap: 64px; align-items: center; }
.split--even { grid-template-columns: 1fr 1fr; }
.split--copy-left { grid-template-columns: 0.95fr 1.05fr; }
.split--copy-right { grid-template-columns: 1.05fr 0.95fr; }
.split--copy-narrow { grid-template-columns: 0.85fr 1.3fr; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stack-sm > * + * { margin-top: 18px; }

/* ── Section heading block ──────────────────────────────────────────── */
.section-title { max-width: 720px; }
.section-title--wide { max-width: 860px; }
.section-title h2 {
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -0.022em;
  color: var(--navy);
  margin-top: 18px;
}
.section-title p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 640px;
  margin-top: 18px;
}
.panel--ink .section-title h2 { color: #fff; }
.panel--ink .section-title p { color: rgba(255, 255, 255, 0.75); }

.lede { font-size: 16.5px; line-height: 1.65; color: var(--ink); }
.headline-md {
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -0.021em;
  color: var(--navy);
  margin: 18px 0 22px;
}

/* ── Buttons ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  white-space: nowrap;
  cursor: pointer;
  background: transparent;
  color: var(--periwinkle);
  border-color: var(--periwinkle);
  transition: opacity 140ms ease;
}
.btn:hover { opacity: 0.85; color: var(--periwinkle); }
.btn--primary { background: var(--periwinkle); color: #fff; border-color: var(--periwinkle); }
.btn--primary:hover { color: #fff; }
.btn--on-dark { color: #fff; border-color: rgba(255, 255, 255, 0.4); }
.btn--on-dark:hover { color: #fff; }
.btn-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--periwinkle);
}

/* ── Check / cross lists ────────────────────────────────────────────── */
.checklist { display: grid; gap: 12px; }
.checklist--dense { gap: 8px; }
.checklist li {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.5;
}
.checklist li::before {
  content: "";
  width: 16px;
  height: 16px;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(74, 95, 224, 0.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.5l2.8 2.8L12 6' fill='none' stroke='%234A5FE0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 10px no-repeat;
}
.checklist--negative li::before {
  background: rgba(180, 71, 46, 0.1) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M5 5l6 6M11 5l-6 6' fill='none' stroke='%23B4472E' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") center / 10px no-repeat;
}
.checklist--on-dark li { color: rgba(255, 255, 255, 0.85); }
.checklist--on-dark li::before {
  background: rgba(147, 162, 245, 0.2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.5l2.8 2.8L12 6' fill='none' stroke='%2393A2F5' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 10px no-repeat;
}

/* ── Cards ──────────────────────────────────────────────────────────── */
.card { background: var(--paper); border-radius: var(--radius); padding: 36px; }
.card--bordered { border: 1px solid rgba(27, 58, 107, 0.08); }
.card--wash { background: var(--wash); }
.card--flush { padding: 0; overflow: hidden; }
.compare {
  background: var(--wash);
  border-radius: 8px;
  padding: 28px;
  border-top: 3px solid rgba(27, 58, 107, 0.18);
}
.compare--positive { border-top-color: var(--periwinkle); }
.compare__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.compare--positive .compare__label { color: var(--periwinkle); }
.chip {
  font-size: 13px;
  padding: 7px 13px;
  border-radius: 4px;
  background: var(--wash);
  color: var(--navy);
}
.chip-row { display: flex; gap: 8px; flex-wrap: wrap; }

/* ── Numbered rule row (Identify / Understand / …) ───────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule-strong);
  margin-top: 56px;
}
.steps--3 { grid-template-columns: repeat(3, 1fr); }
.steps > li { padding: 26px 24px 0 24px; border-left: 1px solid var(--rule); }
.steps > li:first-child { padding-left: 0; border-left: none; }
.steps__num { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--periwinkle); }
.steps__title { font-size: 16px; font-weight: 600; color: var(--navy); margin: 10px 0 8px; }
.steps__body { font-size: 13.5px; line-height: 1.6; color: var(--muted); }

/* ── Stats ──────────────────────────────────────────────────────────── */
.stat { display: flex; align-items: baseline; gap: 20px; flex-wrap: wrap; }
.stat__figure {
  font-family: var(--serif);
  font-size: 62px;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--periwinkle);
  white-space: nowrap;
}
.stat__figure--on-dark { color: var(--periwinkle-light); }
.stat__figure--risk { color: var(--amber); }
.stat__body { max-width: 430px; }
.stat__lead { font-size: 16px; line-height: 1.4; }
.stat__source { margin-top: 6px; font-size: 12.5px; line-height: 1.55; color: var(--muted); }
.panel--ink .stat__lead, .hero .stat__lead { color: rgba(255, 255, 255, 0.85); }
.panel--ink .stat__source, .hero .stat__source { color: rgba(255, 255, 255, 0.55); }

/* ── Quote ──────────────────────────────────────────────────────────── */
.quote {
  border-left: 2px solid var(--periwinkle);
  padding-left: 26px;
  max-width: 700px;
}
.quote blockquote {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.45;
  font-style: italic;
  font-weight: 300;
  color: var(--navy);
}
.quote figcaption { margin-top: 18px; }
.quote__name { font-size: 14.5px; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
.quote__role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.quote__note {
  margin-top: 16px;
  font-size: 11.5px;
  line-height: 1.6;
  font-style: italic;
  color: var(--muted);
  max-width: 620px;
}
.quote-band { background: var(--lavender); padding: 88px var(--gutter); }
.quote-band__rule { width: 54px; height: 3px; background: var(--periwinkle); margin-bottom: 34px; }
.quote-band blockquote {
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1.24;
  letter-spacing: -0.015em;
  font-style: italic;
  font-weight: 300;
  color: var(--navy);
  max-width: 1000px;
}
.quote-band__role {
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Bar diagram (blind-spot funnel) ────────────────────────────────── */
.funnel { margin-top: 56px; background: var(--paper); border-radius: var(--radius); padding: 44px 48px; }
.funnel__rows { display: grid; gap: 26px; }
.funnel__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 10px;
}
.funnel__label { font-size: 13.5px; }
.funnel__value { font-family: var(--serif); font-size: 28px; letter-spacing: -0.015em; color: var(--navy); white-space: nowrap; }
.funnel__track { height: 16px; background: var(--wash); border-radius: 3px; overflow: hidden; }
.funnel__bar { height: 100%; min-width: 14px; border-radius: 3px; background: var(--periwinkle); }
.funnel__bar--faint { background: rgba(74, 95, 224, 0.25); }
.funnel__bar--mid { background: rgba(74, 95, 224, 0.55); }
.funnel__remainder {
  margin-top: 8px;
  background: var(--ink);
  border-radius: var(--radius);
  padding: 30px 32px;
  box-shadow: var(--shadow-lift);
}
.funnel__remainder .funnel__label { font-size: 16px; font-weight: 600; color: #fff; letter-spacing: -0.005em; }
.funnel__remainder .funnel__value { font-size: 58px; line-height: 0.9; color: var(--periwinkle-light); letter-spacing: -0.03em; }
.funnel__remainder .funnel__track { background: rgba(255, 255, 255, 0.1); }
.funnel__remainder .funnel__bar { background: var(--periwinkle-light); }
.funnel__caption { margin-top: 16px; font-size: 13px; line-height: 1.6; color: rgba(255, 255, 255, 0.65); }
.funnel__sources { margin-top: 26px; padding-top: 18px; border-top: 1px solid rgba(27, 58, 107, 0.1); }

/* ── Iceberg ────────────────────────────────────────────────────────── */
.iceberg { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); }
.iceberg__above { background: var(--paper); padding: 28px 32px; }
.iceberg__waterline { height: 0; border-top: 2px dashed rgba(27, 58, 107, 0.35); }
.iceberg__below { background: var(--ink); padding: 28px 32px 32px; }
.iceberg__label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.iceberg__below .iceberg__label { color: var(--amber); }
.iceberg__below .chip { background: rgba(255, 255, 255, 0.07); color: rgba(255, 255, 255, 0.85); }
.iceberg__caption { margin-top: 18px; font-size: 12.5px; line-height: 1.55; color: rgba(255, 255, 255, 0.55); }

/* ── Path cards ─────────────────────────────────────────────────────── */
.path-card { display: flex; flex-direction: column; }
.path-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.path-card__body { padding: 36px; display: flex; flex-direction: column; flex: 1; }
.path-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 12px;
}
.path-card p { font-size: 14.5px; line-height: 1.6; flex: 1; margin-bottom: 24px; }

/* ── Portrait + quote (credibility) ─────────────────────────────────── */
.portrait-quote {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  align-items: center;
  background: var(--wash);
  border-radius: var(--radius);
  padding: 32px;
}
.portrait-quote img { aspect-ratio: 4 / 5; object-fit: cover; object-position: center 20%; border-radius: 6px; }
.portrait-quote blockquote {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.35;
  font-style: italic;
  font-weight: 300;
  color: var(--navy);
}
.portrait-quote figcaption { margin-top: 20px; font-size: 13.5px; color: var(--muted); }
.portrait-quote figcaption strong { display: block; color: var(--navy); font-weight: 500; }

/* ── Closing CTA band ───────────────────────────────────────────────── */
.cta-band { background: var(--navy); padding: 92px var(--gutter); text-align: center; }
.cta-band h2 {
  font-family: var(--serif);
  font-size: 50px;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: #fff;
  max-width: 820px;
  margin: 0 auto 22px;
}
.cta-band p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  max-width: 620px;
  margin: 0 auto 36px;
}
.cta-band .btn-row { justify-content: center; }

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 1199px) {
  :root { --gutter: 30px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps > li:nth-child(3) { padding-left: 0; border-left: none; }
  .section-title h2 { font-size: 34px; }
  .cta-band h2 { font-size: 38px; }
  .headline-md { font-size: 34px; }
}

@media (max-width: 767px) {
  :root { --gutter: 20px; }
  .panel, .panel--tight { padding: 56px var(--gutter); }
  .split, .split--even, .split--copy-left, .split--copy-right,
  .grid-2, .grid-3, .steps, .steps--3, .portrait-quote { grid-template-columns: 1fr; }
  .split { gap: 36px; }
  .steps { margin-top: 36px; }
  .steps > li { padding: 24px 0 0 0; border-left: none; }
  .steps > li + li { border-top: 1px solid var(--rule); }
  .section-title h2 { font-size: 27px; line-height: 1.15; }
  .section-title p, .lede { font-size: 16px; }
  .headline-md { font-size: 27px; }
  .cta-band h2 { font-size: 30px; }
  .cta-band p { font-size: 16px; }
  .quote blockquote, .quote-band blockquote { font-size: 22px; line-height: 1.35; }
  .funnel { padding: 26px 22px; }
  .funnel__remainder { padding: 24px 22px; }
  .funnel__remainder .funnel__value { font-size: 40px; }
  .stat__figure { font-size: 46px; }
  .card { padding: 26px; }
  .path-card__body { padding: 26px; }
  .portrait-quote { padding: 24px; }
  .portrait-quote img { max-width: 160px; }
  .btn { min-height: 44px; }
  p, li, span, div, a { text-wrap: pretty; }
}

/* ==========================================================================
   Chrome — header, mega-menu, hero, footer, consent
   ========================================================================== */

.site-header { position: sticky; top: 0; z-index: 40; }
.nav-mobile { display: none; background: rgba(255,255,255,0.96); backdrop-filter: blur(10px); border-bottom: 1px solid var(--rule); }
.nav-mobile__bar { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 16px; }
.nav-mobile__actions { display: flex; align-items: center; gap: 8px; }
.nav-mobile__toggle {
  width: 44px; height: 44px; border-radius: 4px; cursor: pointer;
  background: transparent; border: 1px solid rgba(27,58,107,0.16); color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
}
.nav-mobile__toggle[aria-expanded="true"] { background: var(--wash); }
.nav-mobile__drawer { border-top: 1px solid rgba(27,58,107,0.1); background: #fff; padding: 8px 8px 16px; }
.nav-mobile__drawer .nav__link { display: flex; align-items: center; min-height: 48px; padding: 0 12px; font-size: 15.5px; border-radius: 5px; }

.nav-desktop { background: rgba(255,255,255,0.94); backdrop-filter: blur(10px); border-bottom: 1px solid var(--rule); }
.nav-desktop__bar { max-width: 1240px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 16px var(--gutter); }
.nav__links { display: flex; gap: 2px; align-items: center; }
.nav__link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; padding: 8px 14px; border-radius: 4px; color: var(--ink);
  transition: background 140ms ease, color 140ms ease;
}
.nav__link:hover { background: var(--wash); color: var(--periwinkle); }
.nav__link.is-active { color: var(--periwinkle); background: var(--wash); font-weight: 500; }
.nav__caret { display: inline-flex; transition: transform 160ms ease; color: var(--muted); }
.nav__has-menu { position: relative; }

.megamenu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
  width: 640px; background: #fff; border-radius: 8px; border: 1px solid rgba(27,58,107,0.10);
  box-shadow: 0 1px 2px rgba(14,28,58,0.04), 0 24px 60px rgba(14,28,58,0.14);
  padding: 12px; z-index: 50;
}
.megamenu__caret {
  position: absolute; top: -7px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px; background: #fff;
  border-left: 1px solid rgba(27,58,107,0.10); border-top: 1px solid rgba(27,58,107,0.10);
}
.megamenu__label { padding: 6px 8px 10px; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.megamenu__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.megamenu__item { display: block; padding: 16px; border-radius: 6px; transition: background 140ms ease; }
.megamenu__item:hover { background: var(--wash); color: inherit; }
.megamenu__icon { width: 34px; height: 34px; border-radius: 8px; background: var(--lavender); color: var(--periwinkle); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.megamenu__title { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.megamenu__line { display: block; font-size: 12.5px; line-height: 1.45; color: var(--muted); }

.btn--sm { padding: 0 14px; height: 44px; font-size: 12.5px; }

/* ── Hero ───────────────────────────────────────────────────────────── */
.hero { position: relative; background: var(--ink); overflow: hidden; color: #fff; }
.hero__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(96deg, rgba(14,28,58,0.95) 0%, rgba(14,28,58,0.88) 40%, rgba(14,28,58,0.62) 66%, rgba(14,28,58,0.42) 100%);
}
.hero__inner { position: relative; max-width: var(--measure); margin: 0 auto; padding: 104px var(--gutter) 88px; min-height: var(--hero-h, 620px); display: flex; flex-direction: column; justify-content: center; }
.hero__copy { max-width: 820px; }
.hero h1 { font-family: var(--serif); font-size: 60px; line-height: 1.04; letter-spacing: -0.027em; margin: 24px 0 26px; }
.hero__sub { font-size: 18px; line-height: 1.62; color: rgba(255,255,255,0.8); max-width: 640px; margin-bottom: 36px; }
.hero__proof { margin-top: 42px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.18); }

/* ── Footer ─────────────────────────────────────────────────────────── */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.72); padding: 64px var(--gutter) 40px; }
.site-footer__top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.site-footer__logo { margin-bottom: 20px; }
.site-footer__blurb { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.55); max-width: 360px; }
.site-footer__heading { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.45); margin-bottom: 16px; }
.site-footer__list { display: grid; gap: 10px; }
.site-footer__list a { font-size: 13px; }
.site-footer__list a:hover, .site-footer__meta a:hover { color: var(--periwinkle-light); }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: baseline;
  flex-wrap: wrap; gap: 16px; font-size: 12px; color: rgba(255,255,255,0.45);
}
.site-footer__meta { display: flex; gap: 22px; flex-wrap: wrap; }

/* ── Consent ────────────────────────────────────────────────────────── */
.consent {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200;
  max-width: 720px; margin: 0 auto; background: var(--ink); color: #fff;
  border-radius: var(--radius); padding: 22px 24px;
  box-shadow: 0 2px 8px rgba(14,28,58,0.2), 0 24px 60px rgba(14,28,58,0.4);
  display: grid; gap: 16px;
}
.consent[hidden] { display: none; }
.consent__eyebrow { color: var(--periwinkle-light); margin-bottom: 10px; }
.consent__body { font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,0.82); }
.consent__body a { color: var(--periwinkle-light); font-weight: 600; text-decoration: underline; }

@media (max-width: 1199px) {
  .hero__inner { min-height: min(var(--hero-h, 620px), 520px); }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .nav-mobile { display: block; }
  .nav-desktop { display: none; }
  .hero__inner { min-height: 0; padding: 56px var(--gutter); }
  .hero h1 { font-size: 36px; line-height: 1.1; margin: 16px 0 18px; }
  .hero__sub { font-size: 16px; margin-bottom: 26px; }
  .hero__proof { margin-top: 32px; padding-top: 22px; }
  .hero__scrim { background: linear-gradient(180deg, rgba(14,28,58,0.82) 0%, rgba(14,28,58,0.90) 55%, rgba(14,28,58,0.95) 100%); }
  .site-footer__top { grid-template-columns: 1fr; gap: 32px; margin-bottom: 36px; }
}
@media (max-width: 420px) { .hero h1 { font-size: 32px; } }

/* ==========================================================================
   Page components — introduced by SME, reused across Enterprise/Platform/etc.
   ========================================================================== */

/* ── Pillar cards (two jobs, one system) ────────────────────────────── */
.pillar { background: var(--wash); padding: 36px; border-radius: var(--radius); border-top: 3px solid var(--periwinkle); }
.pillar--navy { border-top-color: var(--navy); }
.pillar__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--periwinkle); margin-bottom: 10px; }
.pillar--navy .pillar__label { color: var(--navy); }
.pillar__title { font-family: var(--serif); font-size: 24px; line-height: 1.2; letter-spacing: -0.01em; color: var(--navy); margin-bottom: 20px; }

/* ── One-system diagram ─────────────────────────────────────────────── */
.sysbox { position: relative; background: var(--paper); border: 2px solid var(--periwinkle); border-radius: 12px; padding: 26px 28px; }
.sysbox__tag { position: absolute; top: -12px; left: 28px; background: var(--periwinkle); color: #fff; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 12px; border-radius: 12px; }
.sysbox__rows { margin-top: 8px; }
.sysrow { display: grid; grid-template-columns: 40px 1fr; gap: 16px; align-items: center; padding: 13px 4px; }
.sysrow__icon { width: 38px; height: 38px; border-radius: 9px; background: var(--wash); color: var(--periwinkle); display: flex; align-items: center; justify-content: center; }
.sysrow__t { font-size: 14.5px; font-weight: 600; color: var(--navy); }
.sysrow__d { font-size: 12.5px; line-height: 1.45; color: var(--muted); }
.sysbox__join { display: flex; justify-content: center; color: var(--periwinkle); }

/* ── Video card (click-to-load player) ──────────────────────────────── */
.video-card { display: block; width: 100%; max-width: 420px; cursor: pointer; border-radius: var(--radius); overflow: hidden; background: var(--paper); border: 1px solid rgba(27,58,107,0.14); box-shadow: 0 1px 2px rgba(14,28,58,0.04), 0 10px 30px rgba(14,28,58,0.07); outline-offset: 3px; }
.video-card__media { position: relative; aspect-ratio: 16 / 9; background: var(--navy); overflow: hidden; }
.video-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-card__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(27,58,107,0.28) 0%, rgba(14,28,58,0.55) 100%); }
.video-card__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 62px; height: 62px; border-radius: 50%; background: var(--periwinkle); display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(14,28,58,0.4); }
.video-card__body { padding: 20px 22px 22px; }
.video-card__eyebrow { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--periwinkle); margin-bottom: 10px; }
.video-card__title { font-family: var(--serif); font-size: 21px; line-height: 1.2; letter-spacing: -0.01em; color: var(--navy); margin-bottom: 8px; }
.video-card__line { font-size: 13.5px; line-height: 1.55; color: var(--muted); }

/* ── Numbered rows (employee pathway) ───────────────────────────────── */
.numlist > li { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 16px 0; }
.numlist > li + li { border-top: 1px solid var(--rule); }
.numlist__num { font-family: var(--serif); font-style: italic; font-size: 24px; color: var(--periwinkle); }
.numlist__t { font-size: 15.5px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.numlist__d { font-size: 13.5px; line-height: 1.55; color: var(--muted); }
.aside-note { margin-top: 24px; font-size: 13.5px; line-height: 1.6; color: var(--muted); }
.aside-note a { color: var(--periwinkle); font-weight: 600; }

/* ── Quarterly cycle ────────────────────────────────────────────────── */
.cycle { margin: 56px auto 0; max-width: 880px; }
.cycle__row { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.cycle__node { width: 118px; height: 118px; border-radius: 50%; background: var(--paper); border: 1px solid rgba(27,58,107,0.2); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
.cycle__node--first { background: var(--periwinkle); border: none; }
.cycle__num { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--periwinkle); }
.cycle__node--first .cycle__num { color: rgba(255,255,255,0.7); }
.cycle__name { font-size: 15px; font-weight: 600; color: var(--navy); }
.cycle__node--first .cycle__name { color: #fff; }
.cycle__arrow { display: flex; color: var(--periwinkle); }
.cycle__loop { display: flex; justify-content: center; margin-top: 10px; }
.cycle__note { margin-top: 18px; background: var(--wash); border-radius: 8px; padding: 16px 26px; text-align: center; font-size: 13.5px; line-height: 1.6; color: var(--ink); }
.cycle__note strong { color: var(--periwinkle); font-weight: 600; }

/* ── Tab group ──────────────────────────────────────────────────────── */
.tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 40px; }
.tab { padding: 11px 22px; border-radius: 24px; border: 1px solid rgba(27,58,107,0.16); background: var(--paper); color: var(--navy); font-size: 14px; font-weight: 600; cursor: pointer; min-height: 44px; }
.tabpanel { margin-top: 24px; background: var(--paper); border-radius: var(--radius); padding: 36px 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 22px 48px; }
.benefit { display: grid; grid-template-columns: 24px 1fr; gap: 14px; }
.benefit::before {
  content: "";
  width: 20px; height: 20px; margin-top: 2px; border-radius: 50%;
  background: rgba(74, 95, 224, 0.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.5l2.8 2.8L12 6' fill='none' stroke='%234A5FE0' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.benefit__t { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.benefit__d { font-size: 13.5px; line-height: 1.55; color: var(--muted); }

/* ── Plan matrix ────────────────────────────────────────────────────── */
.matrix { border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden; background: var(--paper); }
.matrix__grid { display: grid; grid-template-columns: 1.6fr repeat(3, 0.8fr); }
.matrix__heads { align-items: end; }
.matrix__plan { background: var(--navy); color: #fff; padding: 18px 12px 16px; text-align: center; border-radius: 10px 10px 0 0; }
.matrix__plan--rec { background: var(--periwinkle); padding: 24px 12px 22px; box-shadow: 0 -6px 24px rgba(74,95,224,0.28); position: relative; z-index: 1; }
.matrix__badge { display: inline-block; margin-bottom: 10px; padding: 4px 12px; border-radius: 20px; background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.35); font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; }
.matrix__name { font-size: 17px; font-weight: 600; letter-spacing: -0.005em; }
.matrix__plan--rec .matrix__name { font-size: 19px; }
.matrix__price { margin-top: 4px; font-size: 12px; color: rgba(255,255,255,0.85); }
.matrix__group { background: var(--lavender); }
.matrix__group-name { padding: 13px 26px; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); font-weight: 500; }
.matrix__row { border-top: 1px solid rgba(27,58,107,0.07); }
.matrix__label { padding: 15px 26px; font-size: 14px; line-height: 1.4; color: var(--ink); }
.matrix__cell { display: flex; align-items: center; justify-content: center; padding: 15px 12px; }
.matrix__cell--rec { background: rgba(74, 95, 224, 0.09); }
.tick, .cross { width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; }
.tick { background: var(--periwinkle) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.4l2.8 2.8L12 5.8' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px no-repeat; }
.cross { background: rgba(27,58,107,0.09) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M5 5l6 6M11 5l-6 6' fill='none' stroke='%23808CA6' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E") center / 10px no-repeat; }

.rwd-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.rwd-hint { display: none; margin-top: 8px; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.06em; color: var(--muted); }

/* ── Stat list ──────────────────────────────────────────────────────── */
.stat-list { display: grid; gap: 26px; }
.stat-list > div { display: flex; align-items: baseline; gap: 18px; }
.stat-list__v { font-family: var(--serif); font-size: 36px; line-height: 1; color: var(--periwinkle); letter-spacing: -0.02em; white-space: nowrap; min-width: 118px; }
.stat-list__l { font-size: 13px; line-height: 1.5; color: var(--muted); }
.stat-list__note { margin-top: 26px; padding-top: 18px; border-top: 1px solid rgba(27,58,107,0.1); font-size: 12.5px; line-height: 1.6; color: var(--muted); }

/* ── FAQ ────────────────────────────────────────────────────────────── */
.faq { margin-top: 44px; max-width: 860px; }
.faq__item { border-bottom: 1px solid rgba(27,58,107,0.14); }
.faq__q { display: flex; justify-content: space-between; align-items: center; gap: 20px; width: 100%; padding: 20px 4px; background: none; border: none; cursor: pointer; text-align: left; font-size: 16px; font-weight: 600; color: var(--navy); line-height: 1.4; }
.faq__icon { display: flex; flex-shrink: 0; color: var(--periwinkle); transition: transform 180ms ease; }
.faq__a { padding: 0 4px 22px; font-size: 14.5px; line-height: 1.65; color: var(--ink); max-width: 760px; }

/* ── Callouts, mini cards ───────────────────────────────────────────── */
.callout { background: var(--wash); border-radius: var(--radius); padding: 26px 30px; }
.callout__label { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--periwinkle); margin-bottom: 12px; }
.callout__body { font-size: 14px; line-height: 1.6; color: var(--ink); margin-bottom: 10px; }
.callout__note { font-size: 13px; line-height: 1.55; color: var(--muted); font-style: italic; }
.minicard { background: var(--wash); border-radius: 8px; padding: 20px 24px; }
.minicard__t { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.minicard__d { font-size: 13px; line-height: 1.55; color: var(--muted); }
.stack-20 > * + * { margin-top: 20px; }

/* ── Two-column compare table ───────────────────────────────────────── */
.ctable { border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden; }
.ctable__row { display: grid; grid-template-columns: 1fr 1fr; }
.ctable__row + .ctable__row { border-top: 1px solid rgba(27,58,107,0.08); }
.ctable__head { padding: 16px 24px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; border-bottom: 1px solid var(--rule); }
.ctable__head--neg { background: var(--wash); color: var(--muted); }
.ctable__head--pos { background: var(--periwinkle); color: #fff; }
.ctable__cell { padding: 13px 24px; font-size: 13.5px; line-height: 1.45; display: flex; align-items: center; gap: 10px; }
.ctable__cell--neg { background: var(--wash); color: var(--muted); }
.ctable__mark { display: flex; flex-shrink: 0; color: var(--periwinkle); }
.ctable__cell--neg .ctable__mark { color: var(--negative); }

/* ── Flow stack (where Simpatico sits) ──────────────────────────────── */
.flow { margin: 48px auto 0; max-width: 860px; }
.flow__box { background: var(--wash); border-radius: 8px; padding: 20px 26px; text-align: center; }
.flow__box-t { font-size: 14.5px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.flow__box-d { font-size: 13px; line-height: 1.5; color: var(--muted); }
.flow__down { display: flex; justify-content: center; padding: 10px 0; color: var(--periwinkle); }
.flow__down--split { justify-content: space-around; }
.flow__hero { background: var(--periwinkle); border-radius: 8px; padding: 26px 30px; color: #fff; text-align: center; }
.flow__hero-t { font-family: var(--serif); font-style: italic; font-size: 24px; letter-spacing: -0.01em; margin-bottom: 6px; }
.flow__hero-d { font-size: 13.5px; color: rgba(255,255,255,0.85); margin-bottom: 14px; }
.flow__pills { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.flow__pill { font-size: 12px; padding: 6px 12px; border-radius: 16px; background: rgba(255,255,255,0.14); }
.flow__outs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.flow__out { background: var(--paper); border: 1px solid rgba(27,58,107,0.14); border-radius: 8px; padding: 20px 24px; }
.flow__out-t { font-size: 13.5px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.flow__out-d { font-size: 12.5px; line-height: 1.6; color: var(--muted); }
.flow__note { margin-top: 22px; text-align: center; font-size: 13px; line-height: 1.6; color: var(--muted); font-style: italic; }

/* ── Intervention-timing chart ──────────────────────────────────────── */
.timing { margin-top: 52px; background: var(--paper); border-radius: var(--radius); padding: 40px 44px 32px; }
.timing__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; align-items: end; height: 240px; }
.timing__col { display: flex; flex-direction: column; justify-content: flex-end; height: 100%; }
.timing__bar { border-radius: 6px 6px 0 0; padding: 14px 14px 10px; display: flex; flex-direction: column; }
.timing__bar--1 { height: 26%; background: var(--lavender); }
.timing__bar--2 { height: 44%; background: var(--periwinkle); outline: 2px solid var(--navy); outline-offset: -2px; }
.timing__bar--3 { height: 68%; background: #8892B0; }
.timing__bar--4 { height: 100%; background: var(--amber); }
.timing__t { font-size: 13.5px; font-weight: 600; line-height: 1.25; color: #fff; }
.timing__d { margin-top: 4px; font-size: 11.5px; line-height: 1.4; color: rgba(255,255,255,0.8); }
.timing__bar--1 .timing__t { color: var(--navy); }
.timing__bar--1 .timing__d { color: var(--muted); }
.timing__axis { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--rule); display: flex; justify-content: space-between; gap: 16px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: var(--muted); }

/* ── Definition rows ────────────────────────────────────────────────── */
.deflist > div { display: grid; grid-template-columns: 150px 1fr; gap: 18px; padding: 14px 0; }
.deflist > div + div { border-top: 1px solid var(--rule); }
.deflist__t { font-size: 13.5px; font-weight: 600; color: var(--navy); }
.deflist__d { font-size: 13px; line-height: 1.55; color: var(--muted); }

/* ── Proof bars ─────────────────────────────────────────────────────── */
.proof-big { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }
.proof-big__v { font-family: var(--serif); font-size: 68px; line-height: 0.9; color: var(--periwinkle); letter-spacing: -0.03em; white-space: nowrap; }
.proof-big__l { font-size: 15.5px; line-height: 1.4; color: var(--ink); max-width: 210px; }
.bars { display: grid; gap: 26px; }
.bars__head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.bars__name { font-size: 13px; font-weight: 600; color: var(--navy); }
.bars__v { font-family: var(--mono); font-size: 12px; color: var(--periwinkle); }
.bars__name--muted, .bars__v--muted { color: var(--muted); }
.bars__track { height: 12px; background: var(--wash); border-radius: 6px; overflow: hidden; }
.bars__fill { height: 100%; border-radius: 6px; background: var(--periwinkle); }
.bars__fill--muted { background: rgba(91,100,120,0.45); }
.bars__note { margin-top: 26px; padding-top: 20px; border-top: 1px solid rgba(27,58,107,0.1); font-size: 13px; line-height: 1.6; color: var(--muted); }
.bars__note strong { color: var(--navy); font-weight: 600; }

/* ── Sector selector ────────────────────────────────────────────────── */
.tab--sm { padding: 10px 18px; border-radius: 22px; font-size: 13.5px; font-weight: 500; }
.sector-panel { margin-top: 20px; background: var(--paper); border: 1px solid rgba(27,58,107,0.08); border-radius: 8px; padding: 30px 36px; }
.sector-panel__name { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--periwinkle); margin-bottom: 10px; }
.sector-panel__line { font-family: var(--serif); font-size: 23px; line-height: 1.35; font-style: italic; color: var(--navy); }

/* ── Icon cards ─────────────────────────────────────────────────────── */
.icard { background: var(--paper); padding: 28px; border-radius: 8px; }
.icard__icon { width: 38px; height: 38px; border-radius: 9px; background: var(--wash); color: var(--periwinkle); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.icard__t { font-size: 15px; font-weight: 600; line-height: 1.3; color: var(--navy); margin-bottom: 8px; }
.icard__d { font-size: 13px; line-height: 1.55; color: var(--muted); }

/* ── Pilot guarantee panel ──────────────────────────────────────────── */
.guarantee { background: var(--ink); border-radius: var(--radius); padding: 44px 48px; color: #fff; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.guarantee__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.guarantee h2 { font-family: var(--serif); font-size: 34px; line-height: 1.15; letter-spacing: -0.018em; margin-bottom: 16px; }
.guarantee > div > p { font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,0.7); margin-bottom: 26px; }
.guarantee__spec > div { display: grid; grid-template-columns: 90px 1fr; gap: 16px; padding: 13px 0; }
.guarantee__spec > div + div { border-top: 1px solid rgba(255,255,255,0.12); }
.guarantee__k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--periwinkle-light); padding-top: 2px; }
.guarantee__v { font-size: 13.5px; line-height: 1.5; color: rgba(255,255,255,0.85); }

/* ── Platform layer rows ─────────────────────────────────────────────── */
.layers > div { display: grid; grid-template-columns: 120px 1fr 1fr; gap: 56px; padding: 56px 0; border-bottom: 1px solid var(--wash); align-items: start; }
.layers > div:first-child { border-top: 1px solid var(--wash); }
.layer__tag { font-family: var(--serif); font-style: italic; font-size: 44px; line-height: 1; color: var(--periwinkle); }
.layer__kicker { margin-top: 12px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.layer__t { font-family: var(--serif); font-size: 32px; line-height: 1.15; letter-spacing: -0.015em; color: var(--navy); margin-bottom: 16px; }
.layer__d { font-size: 15.5px; line-height: 1.6; color: var(--ink); max-width: 440px; }
.layer__list { background: var(--wash); padding: 24px; border-radius: 4px; }

/* ── Product screenshots (on ink) ─────────────────────────────────── */
.shots { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
/* Equal-height bounding box per column so the captions below align; no frame
   chrome, because both screenshots already carry their own card/device edge. */
.shot__frame { position: relative; margin-bottom: 26px; aspect-ratio: 16 / 10; }
.shot__frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center; }
.shot__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.shot__t { font-family: var(--serif); font-size: 24px; letter-spacing: -0.01em; color: #fff; margin-bottom: 12px; }
.shot__d { font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,0.72); }

/* ── Trust cards, AI bounds, proof strip ───────────────────────────── */
.tcard { background: var(--wash); padding: 32px; border-radius: 4px; }
.tcard__icon { width: 36px; height: 36px; border-radius: 50%; background: var(--paper); color: var(--periwinkle); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.tcard__t { font-size: 16px; font-weight: 500; color: var(--navy); margin-bottom: 10px; }
.tcard__d { font-size: 14px; line-height: 1.55; color: var(--ink); }
.bound { background: var(--wash); padding: 32px; border-radius: 8px; border-top: 3px solid var(--periwinkle); }
.bound--neg { border-top-color: var(--negative); }
.bound__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.gov-note { margin-top: 28px; background: var(--wash); border-radius: 8px; padding: 20px 28px; font-size: 13px; line-height: 1.6; color: var(--muted); }
.gov-note strong { color: var(--navy); font-weight: 600; }
.proof-strip { display: flex; align-items: baseline; gap: 24px; flex-wrap: wrap; justify-content: center; text-align: center; }
.proof-strip__v { font-family: var(--serif); font-size: 54px; line-height: 1; color: var(--periwinkle); letter-spacing: -0.025em; white-space: nowrap; }
.proof-strip__l { font-size: 18px; line-height: 1.5; color: var(--ink); max-width: 560px; }
.figcap { margin-top: 12px; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.04em; line-height: 1.6; color: var(--muted); }

/* ── Bordered step boxes (partnership models) ────────────────────── */
.stepbox { margin-top: 52px; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--wash); border-radius: 8px; overflow: hidden; }
.stepbox > div { padding: 36px 30px; background: var(--paper); }
.stepbox > div + div { border-left: 1px solid var(--wash); }
.stepbox__n { font-family: var(--serif); font-style: italic; font-size: 30px; line-height: 1; color: var(--periwinkle); }
.stepbox__t { font-family: var(--serif); font-size: 22px; line-height: 1.2; letter-spacing: -0.01em; color: var(--navy); margin: 18px 0 10px; }
.stepbox__d { font-size: 14px; line-height: 1.6; color: var(--ink); }

/* ── Ruled feature rows ───────────────────────────────────────────── */
.frows { margin-top: 44px; display: grid; grid-template-columns: 1fr 1fr; column-gap: 72px; }
.frows > div { display: grid; grid-template-columns: 36px 1fr; gap: 18px; padding: 28px 0; border-top: 1px solid rgba(27,58,107,0.16); }
.frow__icon { color: var(--periwinkle); padding-top: 3px; }
.frow__t { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.frow__d { font-size: 14px; line-height: 1.6; color: var(--muted); }

/* ── Editorial statement band ────────────────────────────────────── */
.statement { background: var(--lavender); padding: 84px var(--gutter); }
.statement__inner { max-width: 940px; margin: 0 auto; }
.statement__rule { width: 56px; height: 3px; background: var(--periwinkle); margin-bottom: 36px; }
.statement p { font-family: var(--serif); font-size: 42px; line-height: 1.2; letter-spacing: -0.018em; font-style: italic; font-weight: 300; color: var(--navy); }
.statement em { font-style: italic; color: var(--periwinkle); }

/* ── Download band ──────────────────────────────────────────────── */
.dlband { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.dlband h3 { font-family: var(--serif); font-size: 26px; line-height: 1.2; letter-spacing: -0.015em; color: var(--navy); margin: 14px 0 10px; }
.dlband p { font-size: 15px; line-height: 1.6; color: var(--muted); max-width: 560px; }

/* ── Differentiation cards ──────────────────────────────────────── */
.dcard { background: var(--paper); padding: 30px; border-radius: 8px; border-top: 3px solid rgba(27,58,107,0.18); }
.dcard--ours { border-top-color: var(--periwinkle); }
.dcard__t { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.dcard--ours .dcard__t { color: var(--periwinkle); }
.dcard__d { font-size: 14.5px; line-height: 1.6; color: var(--ink); }

/* ── Commercial-model rows ─────────────────────────────────────── */
.tiers { background: var(--wash); border-radius: 8px; padding: 30px 32px; }
.tiers__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.tiers__row { display: grid; grid-template-columns: 80px 1fr 1fr; gap: 16px; align-items: baseline; padding: 18px 0; }
.tiers__row + .tiers__row { border-top: 1px solid var(--rule); }
.tiers__name { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--periwinkle); }
.tiers__k { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.tiers__v { font-size: 13px; line-height: 1.4; color: var(--ink); }
.hero__stats { display: flex; gap: 48px; flex-wrap: wrap; }
.hero__stats > div { display: flex; align-items: baseline; gap: 14px; }
.hero__stats .stat-list__v { color: var(--periwinkle-light); min-width: 0; }
.hero__stats .stat-list__l { color: rgba(255,255,255,0.6); max-width: 230px; }

/* ── Resources: contents index ───────────────────────────────────── */
.split--index { grid-template-columns: 0.8fr 1.2fr; gap: 72px; align-items: start; }
.split--top { align-items: start; }
.contents { border-top: 1px solid var(--rule-strong); }
.contents > div { display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: baseline; padding: 24px 0; border-bottom: 1px solid var(--rule); }
.contents__n { font-family: var(--serif); font-style: italic; font-size: 26px; color: var(--periwinkle); }
.contents__t { font-family: var(--serif); font-size: 22px; letter-spacing: -0.01em; color: var(--navy); margin-bottom: 6px; }
.contents__d { font-size: 14px; line-height: 1.55; color: var(--muted); }

/* ── Duty card, risk figures, claim columns ──────────────────────── */
.card-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.duty { background: var(--paper); border-radius: 8px; padding: 36px; }
.duty__row { display: grid; grid-template-columns: 28px 1fr; gap: 14px; padding-bottom: 16px; }
.duty__row + .duty__row { padding-top: 16px; border-top: 1px solid var(--lavender); }
.duty__n { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--periwinkle); }
.duty__t { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.duty__d { font-size: 13px; line-height: 1.5; color: var(--muted); }
.riskgrid { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; background: var(--paper); border-radius: 8px; padding: 36px 40px; }
.riskfig__v { font-family: var(--serif); font-size: 40px; line-height: 1; color: var(--amber); letter-spacing: -0.02em; }
.riskfig__l { margin-top: 12px; font-size: 13.5px; line-height: 1.55; color: var(--muted); }
.claimcols { margin-top: 48px; border-top: 1px solid var(--rule-strong); display: grid; grid-template-columns: repeat(3, 1fr); column-gap: 56px; }
.claimcols > div { padding-top: 26px; }

/* ── Clinical framework cards ───────────────────────────────────── */
.clincard { background: var(--wash); padding: 30px; border-radius: 8px; }
.clincard__t { font-family: var(--serif); font-size: 22px; letter-spacing: -0.01em; color: var(--navy); margin-bottom: 6px; }
.clincard__s { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.06em; line-height: 1.5; color: var(--periwinkle); margin-bottom: 14px; }
.clincard__d { font-size: 14px; line-height: 1.6; color: var(--ink); }

/* ── Case study (on ink) ───────────────────────────────────────── */
.cobrand { display: flex; align-items: center; gap: 22px; background: rgba(255,255,255,0.94); border-radius: 10px; padding: 20px 26px; width: fit-content; margin-bottom: 30px; }
.cobrand__x { font-size: 17px; color: rgba(27,58,107,0.35); }
.casefigs { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 28px 0 34px; }
.casefig__v { font-family: var(--serif); font-size: 34px; line-height: 1; color: var(--periwinkle-light); letter-spacing: -0.02em; }
.casefig__l { margin-top: 10px; font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.6); }
.note--dark { color: rgba(255,255,255,0.45); }
.testi { margin-top: 24px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; padding: 28px; display: grid; grid-template-columns: 104px 1fr; gap: 24px; align-items: start; }
.testi img { width: 104px; height: 104px; object-fit: cover; border-radius: 50%; }
.testi blockquote { font-family: var(--serif); font-size: 18px; line-height: 1.45; font-style: italic; font-weight: 300; color: #fff; }
.testi figcaption { margin-top: 16px; font-size: 13.5px; line-height: 1.5; color: rgba(255,255,255,0.6); }
.testi figcaption strong { display: block; color: #fff; font-weight: 500; }

/* ── Release gate, news strip, reading cards ─────────────────────── */
.release { background: var(--wash); padding: 40px; border-radius: 8px; }
.release__row { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 14px 0; }
.release__row + .release__row { border-top: 1px solid rgba(27,58,107,0.1); }
.release__stage { font-size: 14px; line-height: 1.4; color: var(--ink); }
.release__owner { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: var(--periwinkle); white-space: nowrap; }
.news { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(27,58,107,0.2); }
.news > a { display: block; padding: 24px 24px 24px 0; }
.news > a + a { padding-left: 24px; border-left: 1px solid var(--rule); }
.news__masthead { font-family: var(--serif); font-size: 20px; letter-spacing: -0.01em; color: var(--navy); margin-bottom: 8px; }
.news__line { font-size: 13px; line-height: 1.55; color: var(--muted); margin-bottom: 10px; }
.news > a:hover .news__masthead { color: var(--periwinkle); }
.rcards { margin-top: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.rcard { background: var(--wash); padding: 40px; border-radius: 8px; display: flex; flex-direction: column; justify-content: space-between; }
.rcard--dark { background: var(--ink); }
.rcard__kind { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--periwinkle); margin-bottom: 18px; }
.rcard--dark .rcard__kind { color: rgba(255,255,255,0.55); }
.rcard__t { font-family: var(--serif); font-size: 27px; line-height: 1.2; letter-spacing: -0.015em; color: var(--navy); margin-bottom: 16px; }
.rcard--dark .rcard__t { color: #fff; }
.rcard__d { font-size: 14.5px; line-height: 1.6; color: var(--muted); }
.rcard--dark .rcard__d { color: rgba(255,255,255,0.72); }
.rcard .link-arrow { margin-top: 32px; }
.rcard--dark .link-arrow { color: var(--periwinkle-light); }

/* ── Company: moment columns, people, principles ─────────────────── */
.mcols { margin-top: 52px; border-top: 1px solid var(--rule-strong); display: grid; grid-template-columns: repeat(3, 1fr); column-gap: 56px; }
.mcols > div { padding-top: 24px; }
.mcols__v { font-family: var(--serif); font-size: 30px; line-height: 1; letter-spacing: -0.015em; color: var(--periwinkle); }
.mcols__l { margin-top: 10px; font-size: 13px; line-height: 1.5; color: var(--muted); max-width: 260px; }
.proof-big--sm .proof-big__v { font-size: 44px; }
.proof-big--sm .proof-big__l { font-size: 14.5px; color: var(--muted); max-width: 360px; }
.proof-rule { padding-top: 22px; border-top: 1px solid rgba(27,58,107,0.18); }
.person { background: var(--paper); border-radius: 8px; padding: 28px; display: grid; grid-template-columns: 140px 1fr; gap: 24px; align-items: start; }
.person__photo { aspect-ratio: 1 / 1; border-radius: 6px; background-size: cover; background-position: center 20%; }
.person__name { font-size: 17px; font-weight: 600; color: var(--navy); }
.person__role { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--periwinkle); margin: 6px 0 12px; }
.person__bio { font-size: 13.5px; line-height: 1.6; color: var(--muted); }
.board { border-top: 1px solid var(--rule-strong); display: grid; grid-template-columns: repeat(3, 1fr); column-gap: 48px; }
.board > div { padding-top: 22px; }
.board__name { font-size: 15.5px; font-weight: 600; color: var(--navy); }
.board__bio { font-size: 12.5px; line-height: 1.6; color: var(--muted); }
.builtby { margin-top: 48px; background: var(--paper); border-radius: 8px; padding: 26px 30px; display: grid; grid-template-columns: 130px 1fr auto; gap: 28px; align-items: center; }
.builtby__t { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
.builtby__d { font-size: 13.5px; line-height: 1.55; color: var(--muted); max-width: 520px; }
.principles { margin-top: 52px; border-top: 1px solid var(--rule-strong); display: grid; grid-template-columns: repeat(5, 1fr); }
.principles > div { padding: 26px 20px 0; }
.principles > div:first-child { padding-left: 0; }
.principles > div + div { border-left: 1px solid var(--rule); }
.principles__n { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--periwinkle); }
.principles__t { font-size: 14px; font-weight: 600; line-height: 1.3; color: var(--navy); margin: 12px 0 8px; }
.principles__d { font-size: 12.5px; line-height: 1.55; color: var(--muted); }
.investor { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; background: var(--paper); border-radius: 8px; padding: 32px 40px; border: 1px solid rgba(27,58,107,0.08); }
.investor p { font-size: 15.5px; line-height: 1.6; color: var(--ink); max-width: 640px; }

/* ── LinkedIn glyph on team profiles ─────────────────────────────── */
.li-link { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; margin: 12px 0 -12px -11px; color: var(--muted); }
.li-link:hover { color: var(--periwinkle); }
.li-link svg { display: block; }

/* ── Microsoft Teams page + shared "Built with Microsoft" panel ────── */
.ms-asset { border: 1px dashed rgba(74,95,224,0.55); border-radius: 10px; background: repeating-linear-gradient(45deg, rgba(74,95,224,0.07), rgba(74,95,224,0.07) 12px, rgba(74,95,224,0.13) 12px, rgba(74,95,224,0.13) 24px); display: flex; align-items: center; justify-content: center; text-align: center; font-family: var(--mono); font-size: 11px; line-height: 1.6; color: var(--periwinkle); padding: 12px; box-sizing: border-box; }
.ms-asset--on-dark { background: repeating-linear-gradient(45deg, rgba(255,255,255,0.05), rgba(255,255,255,0.05) 12px, rgba(255,255,255,0.09) 12px, rgba(255,255,255,0.09) 24px); border-color: rgba(255,255,255,0.35); color: rgba(255,255,255,0.7); }
.ms-hero .eyebrow { margin-bottom: 22px; }
.ms-lockup { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 24px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); border-radius: 10px; padding: 12px 20px; }
.ms-lockup img { display: block; }
.ms-lockup__teams { height: 34px; width: auto; }
.ms-lockup__ms { height: 20px; width: auto; }
.ms-lockup__x { color: rgba(255,255,255,0.35); font-size: 16px; }
.ms-badge { display: inline-flex; align-items: center; gap: 14px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.16); border-radius: 10px; padding: 20px 26px; }
.ms-badge-wrap { display: flex; align-items: center; justify-content: center; height: 100%; }
.ms-badge img.ms-badge__teams { height: 44px; }
.ms-badge img.ms-badge__copilot { height: 40px; }
.ms-badge img.ms-badge__ms { height: 24px; }
.ms-badge__rule { width: 1px; height: 30px; background: rgba(255,255,255,0.2); }
.ms-badge__label { font-size: 13px; line-height: 1.4; color: rgba(255,255,255,0.65); max-width: 140px; }
.ms-hero { background: var(--ink); color: #fff; padding: 88px var(--gutter) 76px; }
.ms-hero__inner { max-width: var(--measure); margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.ms-hero h1 { font-family: var(--serif); font-size: 44px; line-height: 1.14; letter-spacing: -0.022em; margin-bottom: 18px; }
.ms-hero__sub { font-size: 16.5px; line-height: 1.65; color: rgba(255,255,255,0.72); max-width: 480px; margin-bottom: 30px; }
.ms-hero__shot { height: 300px; }
.ms-asset { min-height: var(--ms-asset-h, auto); height: auto; }
.ms-cta-row { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.ms-ref { font-size: 13.5px; color: var(--periwinkle-light); border-bottom: 1px solid rgba(255,255,255,0.28); padding-bottom: 1px; }
.ms-ref:hover { border-color: var(--periwinkle-light); }
.ms-flow { padding: 76px var(--gutter); }
.ms-flow__inner { max-width: var(--measure); margin: 0 auto; display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: center; }
.ms-points { display: grid; }
.ms-points > li { padding: 16px 0; border-bottom: 1px solid var(--rule); font-size: 15.5px; line-height: 1.55; color: var(--ink); }
.ms-points > li:last-child { border-bottom: none; }
.ms-points b { color: var(--navy); }
.ms-standalone { margin-top: 22px; padding: 16px 20px; background: var(--lavender); border-radius: 8px; font-size: 14px; line-height: 1.55; color: var(--ink); }
.ms-standalone b { color: var(--navy); }
.ms-flow__shot { height: 320px; }
.ms-procure { background: var(--lavender); padding: 76px var(--gutter); }
.ms-procure__inner { max-width: var(--measure); margin: 0 auto; }
.ms-grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 40px; }
.ms-card { background: var(--paper); border: 1px solid rgba(27,58,107,0.1); border-radius: 8px; padding: 24px 22px; }
.ms-card__k { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--periwinkle); margin-bottom: 12px; }
.ms-card p { font-size: 13.5px; line-height: 1.55; color: var(--ink); }
.ms-partner { background: var(--navy); color: #fff; padding: 84px var(--gutter); }
.ms-partner__inner { max-width: var(--measure); margin: 0 auto; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.ms-partner h2 { font-family: var(--serif); font-size: 32px; line-height: 1.18; letter-spacing: -0.018em; }
.ms-partner h2 em { font-style: italic; color: var(--periwinkle-light); }
.ms-partner__lede { margin-top: 16px; font-size: 15.5px; line-height: 1.65; color: rgba(255,255,255,0.72); }
.ms-claim { margin-top: 24px; padding: 18px 22px; border-left: 3px solid var(--periwinkle); background: rgba(255,255,255,0.05); font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,0.85); }
.ms-claim__tag { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: #FFD76A; margin-bottom: 8px; }
.ms-partner__badge { min-height: 200px; height: auto; }
.ms-close { text-align: center; background: var(--navy2, var(--navy)); padding: 84px var(--gutter); color: #fff; }
.ms-close__inner { max-width: 640px; margin: 0 auto; }
.ms-close h2 { font-family: var(--serif); font-size: 32px; line-height: 1.2; letter-spacing: -0.018em; margin-bottom: 14px; }
.ms-close p { font-size: 15.5px; line-height: 1.6; color: rgba(255,255,255,0.75); margin-bottom: 26px; }
.ms-close .ms-ref { display: inline-block; margin-top: 18px; }
/* Shared compact "Built with Microsoft" panel — Platform + Enterprise only */
.msft-panel { margin-top: 20px; background: var(--paper); border: 1px solid rgba(27,58,107,0.1); border-radius: 8px; padding: 30px 34px; display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; }
.msft-panel__logos { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.msft-panel__logos img { display: block; }
.msft-panel__logos .msft-panel__teams { height: 30px; }
.msft-panel__logos .msft-panel__rule { width: 1px; height: 22px; background: rgba(27,58,107,0.18); }
.msft-panel__logos .msft-panel__ms { height: 22px; }
.msft-panel__body { font-size: 14px; line-height: 1.6; color: var(--ink); max-width: 620px; margin: 10px 0 14px; }
.msft-panel__links { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; white-space: nowrap; }

/* ── Pilot page + HubSpot form ──────────────────────────────────── */
.pilot { position: relative; background: var(--ink); color: #fff; padding: 84px var(--gutter) 76px; overflow: hidden; }
.pilot__bg { position: absolute; inset: 0; background: radial-gradient(120% 90% at 80% 20%, rgba(74,95,224,0.34), rgba(14,28,58,0) 60%), linear-gradient(120deg, #0E1C3A 0%, #16264B 62%, #1B3A6B 100%); }
.pilot__inner { position: relative; max-width: var(--measure); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.pilot h1 { font-family: var(--serif); font-size: 52px; line-height: 1.06; letter-spacing: -0.026em; margin: 22px 0 24px; max-width: 560px; }
.pilot__sub { font-size: 17px; line-height: 1.65; color: rgba(255,255,255,0.75); margin-bottom: 36px; max-width: 520px; }
.pilot__steps { display: grid; gap: 18px; max-width: 480px; }
.pilot__steps > div { display: grid; grid-template-columns: 32px 1fr; gap: 14px; }
.pilot__n { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--periwinkle-light); }
.pilot__t { font-size: 15.5px; font-weight: 600; margin-bottom: 4px; }
.pilot__d { font-size: 13.5px; line-height: 1.55; color: rgba(255,255,255,0.6); }
.pform { background: var(--paper); border-radius: 10px; padding: 36px; color: var(--ink); }
.pform form { display: grid; gap: 16px; }
.pform__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pform label { display: block; }
.pform__label { display: block; font-size: 12.5px; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.pform input { width: 100%; box-sizing: border-box; min-height: 44px; padding: 11px 14px; font-size: 14px; font-family: inherit; color: var(--ink); background: var(--wash); border: 1px solid var(--lavender); border-radius: 6px; outline: none; }
.pform input:focus { border-color: var(--periwinkle); }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip-btn { min-height: 44px; padding: 8px 14px; border-radius: 20px; cursor: pointer; font-size: 13px; font-family: inherit; background: var(--wash); color: var(--ink); border: 1px solid var(--lavender); }
.pform__status { font-size: 13px; line-height: 1.5; color: var(--negative); }
.pform__submit { margin-top: 8px; width: 100%; min-height: 44px; background: var(--periwinkle); color: #fff; border: none; padding: 14px 18px; font-size: 14px; font-weight: 500; font-family: inherit; border-radius: 6px; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.pform__fine { font-size: 11.5px; line-height: 1.5; color: var(--muted); text-align: center; }

/* ── 404 ─────────────────────────────────────────────────────────────── */
.nf { background: var(--ink); color: #fff; padding: 128px var(--gutter) 132px; }
.nf__inner { max-width: var(--measure); margin: 0 auto; }
.nf h1 { font-family: var(--serif); font-size: 52px; line-height: 1.08; letter-spacing: -0.026em; font-weight: 400; margin: 24px 0 22px; max-width: 780px; }
.nf h1 em { font-style: italic; color: var(--periwinkle-light); }
.nf__lede { font-size: 17px; line-height: 1.65; color: rgba(255,255,255,0.72); max-width: 520px; margin-bottom: 44px; }
.nf__links { display: flex; flex-wrap: wrap; gap: 10px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.14); }
.nf__links a { padding: 11px 18px; border: 1px solid rgba(255,255,255,0.24); border-radius: 24px; font-size: 14px; color: rgba(255,255,255,0.86); min-height: 44px; display: inline-flex; align-items: center; }
.nf__links a:hover { border-color: var(--periwinkle-light); color: #fff; }
.nf__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 18px; }

/* ── Legal pages ───────────────────────────────────────────────────── */
.legal-head { background: var(--ink); color: #fff; padding: 92px var(--gutter) 72px; }
.legal-head > div { max-width: var(--measure); margin: 0 auto; }
.legal-head h1 { font-family: var(--serif); font-size: 52px; line-height: 1.06; letter-spacing: -0.026em; margin: 22px 0 20px; max-width: 760px; }
.legal-head__meta { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.legal-body { background: var(--paper); padding: 80px var(--gutter) 96px; }
.legal-grid { max-width: var(--measure); margin: 0 auto; display: grid; grid-template-columns: 260px 1fr; gap: 72px; align-items: start; }
.legal-rail { position: sticky; top: 96px; min-width: 0; }
.legal-rail ol { display: grid; gap: 9px; padding-top: 16px; border-top: 1px solid rgba(27,58,107,0.16); }
.legal-rail li { display: grid; grid-template-columns: 26px 1fr; gap: 6px; font-size: 12.5px; line-height: 1.45; color: var(--muted); }
.legal-rail__n { font-family: var(--serif); font-style: italic; color: var(--periwinkle); }
.legal-main { max-width: 760px; min-width: 0; }
.legal-intro { margin-bottom: 44px; }
.legal-sections { padding-top: 44px; border-top: 1px solid rgba(27,58,107,0.16); }
.legal-sec { margin-bottom: 44px; }
.legal-sec__n { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; color: var(--periwinkle); margin-bottom: 10px; }
.legal-sec h2 { font-family: var(--serif); font-size: 27px; line-height: 1.2; letter-spacing: -0.015em; color: var(--navy); margin-bottom: 16px; }
.legal-sec h3 { font-size: 15.5px; font-weight: 600; color: var(--navy); margin: 26px 0 12px; }
.legal-body p { font-size: 15.5px; line-height: 1.7; color: var(--ink); margin-bottom: 14px; }
.legal-note { font-size: 14.5px; line-height: 1.65; color: var(--muted); font-style: italic; margin-bottom: 18px; padding-left: 18px; border-left: 2px solid var(--wash); }
.legal-list { margin: 0 0 16px; display: grid; gap: 10px; }
.legal-list li { display: grid; grid-template-columns: 18px 1fr; gap: 12px; font-size: 15px; line-height: 1.65; color: var(--ink); }
.legal-list li::before { content: ""; width: 5px; height: 5px; margin-top: 9px; border-radius: 50%; background: var(--periwinkle); }
.legal-table { border: 1px solid rgba(27,58,107,0.14); border-radius: 8px; overflow: hidden; margin-bottom: 20px; }
.legal-table__row { display: grid; grid-template-columns: 1.1fr 1.9fr 0.5fr; }
.legal-table__head { background: var(--wash); border-bottom: 1px solid rgba(27,58,107,0.14); }
.legal-table__head div { padding: 11px 16px; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.legal-table__row + .legal-table__row { border-top: 1px solid rgba(27,58,107,0.08); }
.legal-table__cat { padding: 13px 16px; font-size: 13px; font-weight: 600; line-height: 1.45; color: var(--navy); }
.legal-table__ex { padding: 13px 16px; font-size: 12.5px; line-height: 1.5; color: var(--muted); }
.legal-table__yes, .legal-table__no { padding: 13px 16px; font-size: 12.5px; font-weight: 600; }
.legal-table__yes { color: var(--periwinkle); }
.legal-table__no { color: var(--muted); }

/* ── Inline risk statistic (amber — risk figures only) ──────────────── */
.risk-stat { padding-top: 20px; border-top: 1px solid var(--rule-strong); display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.risk-stat__v { font-family: var(--serif); font-size: 38px; line-height: 1; color: var(--amber); letter-spacing: -0.02em; white-space: nowrap; }
.risk-stat__l { font-size: 13.5px; line-height: 1.5; color: var(--muted); max-width: 320px; }
.steps__sub { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--periwinkle); margin: 0 0 10px; }
.steps__sub + .steps__body { margin-top: 0; }
.iceberg__below .iceberg__label--amber { color: var(--amber); }

/* ── Dark quote band variant ────────────────────────────────────────── */
.quote-band--ink { background: var(--ink); }
.quote-band--ink blockquote { color: #fff; }
.quote-band--ink .quote-band__rule { background: var(--periwinkle-light); }
.quote-band--ink .quote-band__role { color: rgba(255,255,255,0.5); }

@media (max-width: 1199px) {
  .tabpanel { padding: 30px 28px; }
  .cycle__node { width: 104px; height: 104px; }
  .layers > div { grid-template-columns: 84px 1fr 1fr; gap: 28px; }
  .layer__tag { font-size: 34px; }
  .layer__t { font-size: 26px; }
  .split--copy-narrow { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .pillar { padding: 26px; }
  .tabpanel { grid-template-columns: 1fr; padding: 26px 22px; }
  .sysbox { padding: 24px 20px; }
  .cycle { margin-top: 36px; }
  .cycle__row { gap: 8px; }
  .cycle__node { width: 88px; height: 88px; }
  .cycle__name { font-size: 13.5px; }
  .cycle__loop { display: none; }
  .cycle__note { padding: 16px 18px; }
  .rwd-hint { display: block; }
  .rwd-scroll .matrix { min-width: 660px; }
  .matrix__label { padding: 14px 18px; }
  .faq__q { font-size: 15px; }
  .stat-list__v { font-size: 30px; min-width: 92px; }
  .callout { padding: 22px 20px; }
  .video-card { max-width: none; }
  .guarantee { grid-template-columns: 1fr; gap: 32px; padding: 26px 22px; }
  .guarantee h2 { font-size: 26px; }
  .deflist > div, .flow__outs { grid-template-columns: 1fr; }
  .timing { padding: 24px 20px 20px; }
  .timing__cols { height: 200px; gap: 8px; }
  .timing__bar { padding: 10px 9px 8px; }
  .timing__t { font-size: 12px; }
  .timing__d { font-size: 10.5px; }
  .timing__axis { font-size: 10px; gap: 10px; }
  .proof-big__v { font-size: 48px; }
  .sector-panel { padding: 22px 20px; }
  .sector-panel__line { font-size: 19px; }
  .ctable__cell, .ctable__head { padding: 12px 14px; font-size: 12.5px; }
  .flow__hero, .flow__box, .flow__out { padding: 20px 18px; }
  .split--copy-narrow, .shots, .layers > div { grid-template-columns: 1fr; }
  .layers > div { gap: 22px; padding: 34px 0; }
  .layer__t { font-size: 23px; }
  .layer__list { padding: 20px; }
  .tcard, .bound { padding: 24px; }
  .gov-note { padding: 18px 20px; }
  .proof-strip__v { font-size: 40px; }
  .proof-strip__l { font-size: 16px; }
  .stepbox, .frows { grid-template-columns: 1fr; }
  .stepbox > div { padding: 24px 20px; }
  .stepbox > div + div { border-left: none; border-top: 1px solid var(--wash); }
  .frows > div { padding: 22px 0; }
  .statement { padding: 56px var(--gutter); }
  .statement p { font-size: 24px; line-height: 1.3; }
  .dlband { grid-template-columns: 1fr; gap: 24px; }
  .dcard { padding: 24px; }
  .tiers { padding: 22px 20px; }
  .tiers__row { grid-template-columns: 1fr; gap: 10px; }
  .hero__stats { gap: 24px; }
  .split--index, .riskgrid, .claimcols, .news, .rcards, .casefigs, .testi { grid-template-columns: 1fr; }
  .split--index { gap: 32px; }
  .riskgrid { padding: 24px 20px; gap: 22px; }
  .riskfig__v, .claimcols .riskfig__v { font-size: 32px; }
  .claimcols > div { padding: 22px 0 0; }
  .claimcols > div + div { border-top: 1px solid var(--rule); }
  .duty, .release, .rcard { padding: 24px; }
  .clincard { padding: 24px; }
  .contents__t { font-size: 19px; }
  .news > a { padding: 20px 0; }
  .news > a + a { padding-left: 0; border-left: none; border-top: 1px solid var(--rule); }
  .rcard__t { font-size: 22px; }
  .testi { gap: 18px; padding: 22px; }
  .cobrand { padding: 16px 18px; gap: 16px; }
  .mcols, .board, .principles, .builtby, .pilot__inner, .person, .pform__pair { grid-template-columns: 1fr; }
  .mcols > div, .board > div { padding: 22px 0 0; }
  .mcols > div + div, .board > div + div { border-top: 1px solid var(--rule); }
  .principles > div { padding: 22px 0 0; }
  .principles > div + div { border-left: none; border-top: 1px solid var(--rule); }
  .person { padding: 22px; gap: 18px; }
  .person__photo { max-width: 140px; }
  .builtby { padding: 22px; gap: 18px; }
  .investor { padding: 24px 22px; gap: 20px; }
  .pilot { padding: 56px var(--gutter); }
  .pilot__inner { gap: 36px; }
  .pilot h1 { font-size: 32px; }
  .pilot__sub { font-size: 16px; }
  .pform { padding: 24px; }
  .proof-big--sm .proof-big__v { font-size: 36px; }
  .ms-hero { padding: 52px var(--gutter) 44px; }
  .ms-hero__inner, .ms-flow__inner, .ms-partner__inner { grid-template-columns: 1fr; gap: 28px; }
  .ms-hero h1 { font-size: 28px; }
  .ms-hero__shot, .ms-flow__shot { height: 220px; }
  .ms-flow, .ms-procure, .ms-partner, .ms-close { padding: 48px var(--gutter); }
  .ms-grid4 { grid-template-columns: 1fr 1fr; }
  .ms-partner h2, .ms-close h2 { font-size: 24px; }
  .ms-partner__badge { min-height: 140px; }
  .msft-panel { grid-template-columns: 1fr; padding: 22px 20px; }
  .legal-head { padding: 56px var(--gutter) 44px; }
  .legal-head h1 { font-size: 30px; line-height: 1.15; }
  .legal-body { padding: 48px var(--gutter) 64px; }
  .legal-grid { grid-template-columns: 1fr; gap: 36px; }
  .legal-rail { position: static; }
  .legal-sec h2 { font-size: 22px; }
  .legal-body p, .legal-list li { font-size: 15px; }
  .rwd-scroll .legal-table { min-width: 620px; }
  .nf { padding: 64px var(--gutter) 72px; }
  .nf h1 { font-size: 32px; }
  .nf__lede { font-size: 16px; margin-bottom: 32px; }
}
