/* =========================================================================
   Darkveil. Design system.
   Editorial / intelligence. Dark, serif headlines, restrained color.
   ========================================================================= */

/* -------------------------------------------------------------------------
   COPY VOICE (de-AI ruleset). Check every paragraph before ship.
   - No "X. Y." display titles or "X, not Y" headlines.
   - Vary sentence length. One short sentence, then a longer one. Fragments OK.
   - Cap abstract nouns sitewide: posture (2), practice (2), ledger (1), surface (2).
   - Parallel triplets ("A. B. C.") at most once per page.
   - Cut scaffolding: "in plain language", "the work begins", "on a Darkveil engagement".
   - "Real" as a qualifier: once sitewide max.
   - Client confidentiality line: once on /about only.
   - Prefer verbs operators use. Numbers only when true (brand rule: no invented stats).
   - Prefer affirmative statements over negation ("we protect" over "we do not sell").
   - Defense-prime register: mission-forward headlines, plain body copy, sans labels (not mono).
   - Brand: Darkveil not Darkveil Security. No em dashes. Calm, precise, discreet.
   ------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------
   PHOTO TREATMENT (applied at source in assets/img via scripts/process-photos.sh)
   - Grayscale + slight duotone (#0A0B0E / #ECEEF2, 5% #5BD1BE colorize)
   - Ratios: 21x9 hero, 4x5 tile, 1x1 atmosphere
   - Formats: .webp primary, .jpg fallback. Widths 800 / 1600 / 2400
   - Naming: dv-{page}-{slug}-{ratio}.webp
   - grain.svg overlay applied in CSS on .section__bg and .hero__bg
   ------------------------------------------------------------------------- */

:root {
  /* Brand palette. Near-black base, steel accents, no red chrome. */
  --bg:         #050608;
  --bg-2:       #080A0D;
  --surface:    #0C0E12;
  --elevated:   #111419;
  --hairline:   rgba(255, 255, 255, 0.06);
  --hairline-2: rgba(255, 255, 255, 0.10);
  --text:       #D8DCE3;
  --muted:      #6E7580;
  --faint:      #454B55;
  --dim:        #161920;
  --accent:     #9BA3AE;
  --accent-cool:#7A8A96;
  --accent-dim: #3A4048;
  --highlight:  #8A939E;
  --highlight-dim: #3A424C;
  --alert:      #9A6B6B;

  --font-display: "Bricolage Grotesque", "IBM Plex Sans", system-ui, sans-serif;
  --font-body:    "Hanken Grotesk", "Inter", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  /* Scale. Bumped at the body end so prose reads more like an editorial
     site (Lockheed-style longer body type), with restraint at the display
     end so headlines do not feel theatrical. */
  --step--1: clamp(0.82rem, 0.80rem + 0.10vw, 0.86rem);
  --step-0:  clamp(1.02rem, 0.99rem + 0.18vw, 1.10rem);
  --step-1:  clamp(1.18rem, 1.12rem + 0.32vw, 1.30rem);
  --step-2:  clamp(1.38rem, 1.25rem + 0.65vw, 1.70rem);
  --step-3:  clamp(1.70rem, 1.45rem + 1.20vw, 2.30rem);
  --step-4:  clamp(2.10rem, 1.60rem + 2.40vw, 3.20rem);
  --step-5:  clamp(2.55rem, 1.65rem + 4.40vw, 4.40rem);
  --step-6:  clamp(2.95rem, 1.80rem + 5.80vw, 5.20rem);
  --step-7:  clamp(3.30rem, 1.85rem + 7.20vw, 6.20rem);

  /* Spacing */
  --s-1: 0.25rem; --s-2: 0.5rem; --s-3: 0.75rem; --s-4: 1rem;
  --s-5: 1.5rem; --s-6: 2rem; --s-7: 3rem; --s-8: 4.5rem;
  --s-9: 6.5rem; --s-10: 9rem;

  /* Layout */
  --container: 1280px;
  --container-narrow: 880px;
  --rail: 56px;
  --radius: 4px;
  --radius-lg: 6px;

  /* Motion. Softer expo-out feel. */
  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-1: 200ms;
  --dur-2: 380ms;
  --dur-3: 720ms;
  --dur-4: 1000ms;

  /* Nav */
  --nav-h: 76px;
}

/* =========================================================================
   Reset
   ========================================================================= */

*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  opacity: 0;
  animation: bodyIn 600ms var(--ease-out) 60ms forwards;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(91, 209, 190, 0.06), transparent 55%),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: auto, 64px 64px, 64px 64px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 20%, transparent 75%);
}
body > * { position: relative; z-index: 1; }
@keyframes bodyIn { to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  body { opacity: 1; animation: none; }
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

a {
  color: var(--text);
  text-decoration: none;
  transition: color var(--dur-1) var(--ease), opacity var(--dur-1) var(--ease);
}
a:hover { color: var(--accent); }

::selection { background: var(--accent); color: var(--bg); }
:focus-visible { outline: 1px solid var(--accent); outline-offset: 2px; }

/* =========================================================================
   Atmosphere. Film grain + faint architectural grid + edge vignette.
   No glowing orbs. The page should look photographed, not rendered.
   ========================================================================= */

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Architectural grid. Pulled back, masked to center. */
body::before {
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 35%, #000 0%, #000 50%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 35%, #000 0%, #000 50%, transparent 100%);
  opacity: 0.55;
}

/* Edge vignette + global film grain. */
body::after {
  background:
    url("/assets/img/grain.svg"),
    radial-gradient(ellipse 100% 80% at 50% 50%, transparent 50%, rgba(0,0,0,0.7) 100%);
  background-size: 220px 220px, auto;
  background-repeat: repeat, no-repeat;
  opacity: 0.32;
  mix-blend-mode: overlay;
}

main, header, footer, section { position: relative; z-index: 1; }

/* Optional CRT scanlines. Class so we can opt in. */
.scan {
  position: relative;
}
.scan::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.025) 0 1px,
    transparent 1px 3px
  );
  mix-blend-mode: overlay;
  opacity: 0.5;
}

/* =========================================================================
   Typography. Grotesque sans throughout. Headlines heavy, tight, declarative.
   Tuned to mirror Palantir's Alliance / Univers treatment.
   ========================================================================= */

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0 0 var(--s-4);
  color: var(--text);
}

h1 {
  font-size: var(--step-7);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.92;
}
h2 {
  font-size: var(--step-5);
  font-weight: 600;
  letter-spacing: -0.038em;
  line-height: 0.96;
}
h3 {
  font-size: var(--step-3);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.02;
}
h4 {
  font-size: var(--step-1);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

/* Inline emphasis. Italic only where it actually reads (lede/body),
   never on giant display headlines: sans italic is awkward at size. */
em { font-style: italic; }
h1 em, h2 em, .display em, .hero__title em {
  font-style: normal;
  color: var(--muted);
  font-weight: inherit;
}

p { margin: 0 0 var(--s-4); color: var(--muted); max-width: 64ch; line-height: 1.7; }
p.lead {
  font-size: var(--step-1);
  color: var(--text);
  max-width: 60ch;
  line-height: 1.6;
  font-weight: 400;
}
p.lead-display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--step-2);
  color: var(--text);
  line-height: 1.18;
  letter-spacing: -0.018em;
  max-width: 28ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--s-4);
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--accent);
}

.mono { font-family: var(--font-mono); letter-spacing: 0.02em; }
.muted { color: var(--muted); }
.faint { color: var(--faint); }
.accent { color: var(--accent); }

/* =========================================================================
   Layout primitives
   ========================================================================= */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.container--narrow { max-width: var(--container-narrow); }
.container--wide   { max-width: 1440px; }

.section { padding-block: clamp(4.5rem, 9vw, 9rem); position: relative; }
.section--tight { padding-block: clamp(3rem, 5vw, 5.5rem); }
.section + .section { border-top: 1px solid var(--hairline); }

/* Atmospheric photo backdrop. Heavy grayscale + dim, with edge fades. */
.section--withbg { overflow: hidden; isolation: isolate; }
.section--withbg > .container { position: relative; z-index: 2; }
.section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.section__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.5) brightness(0.42) contrast(1.08) saturate(0.35);
  opacity: 0.55;
}
.section__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--bg) 0%, transparent 12%, transparent 88%, var(--bg) 100%),
    linear-gradient(90deg, rgba(6,7,9,0.4) 0%, transparent 30%, transparent 70%, rgba(6,7,9,0.4) 100%),
    radial-gradient(ellipse 100% 80% at 50% 50%, transparent 0%, rgba(6,7,9,0.55) 100%);
}
.section__bg-tag {
  position: absolute;
  top: var(--s-5);
  right: clamp(1.25rem, 4vw, 2.5rem);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--faint);
  z-index: 1;
  pointer-events: none;
}

.divider { border: 0; height: 1px; background: var(--hairline); margin: 0; }

/* Editorial section header. Dossier-style. */
.section-head {
  display: grid;
  grid-template-columns: minmax(180px, 22%) 1fr;
  align-items: end;
  gap: clamp(1.5rem, 4vw, 4rem);
  margin-bottom: var(--s-7);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid var(--hairline);
}
.section-head__index {
  font-family: var(--font-body);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--faint);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  line-height: 1.45;
}
.section-head__index .num {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.section-head__title { margin: 0; max-width: 24ch; }
.section-head:has(.section-head__deck) {
  grid-template-columns: 1fr;
  align-items: start;
}
.section-head:has(.section-head__deck) .section-head__title {
  max-width: none;
}
.section-head__deck {
  grid-column: 1 / -1;
  margin: var(--s-4) 0 0;
  max-width: 52ch;
  color: var(--muted);
  line-height: 1.55;
  font-size: var(--step-0);
}
.section-head__deck .lnk { white-space: nowrap; }
/* Inline variant. Used when the section head is followed immediately by a
   datasheet (e.g. the compare ledger) and we want it to read as one block
   rather than as a header floating above a separate chart. Pulls the divider
   up against the title and removes the bottom margin entirely. */
.section-head--inline {
  margin-bottom: 0;
  padding-bottom: var(--s-4);
}
/* Anchor the comparison ledger directly under the inline section head.
   The negative margin pulls the chart flush, leaving only enough clearance
   for the floating Most-chosen plate above the Ward column. */
.section-head--inline + .tiers-head {
  margin-top: var(--s-3);
}
@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; align-items: start; }
  .section-head--inline + .tiers-head { margin-top: var(--s-4); }
}

/* Vertical rail label. Used on the side of dossier sections. */
.rail {
  position: absolute;
  left: max(0px, env(safe-area-inset-left));
  top: 50%;
  transform: rotate(-90deg) translate(0, -50%);
  transform-origin: 0 0;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--faint);
  white-space: nowrap;
  pointer-events: none;
  display: none;
}
@media (min-width: 1100px) { .rail { display: block; } }

/* =========================================================================
   Buttons
   ========================================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  padding: 0.95rem 1.3rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  text-transform: none;
  border-radius: var(--radius);
  border: 1px solid var(--hairline-2);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition:
    background var(--dur-1) var(--ease),
    border-color var(--dur-1) var(--ease),
    color var(--dur-1) var(--ease),
    transform var(--dur-2) var(--ease);
}
.btn:hover {
  background: rgba(255,255,255,0.04);
  border-color: var(--text);
  color: var(--text);
  transform: translateY(-1px);
}
.btn .arrow { transition: transform var(--dur-2) var(--ease); display: inline-block; }
.btn:hover .arrow { transform: translateX(3px); }

.btn--primary {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.btn--primary:hover {
  background: var(--highlight);
  color: #fff;
  border-color: var(--highlight);
}

.btn--ghost { border-color: var(--hairline); color: var(--muted); }
.btn--ghost:hover { color: var(--text); border-color: var(--hairline-2); }

/* Inline link with arrow. Sentence case for readability. */
.lnk {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text);
  padding-bottom: 0.2rem;
  border-bottom: 1px solid var(--hairline-2);
}
.lnk:hover { color: var(--accent); border-color: var(--accent); }
.lnk .arrow { transition: transform var(--dur-2) var(--ease); }
.lnk:hover .arrow { transform: translateX(3px); }

/* Inline accented link inside running prose. */
.lnk-inline {
  color: var(--text);
  border-bottom: 1px solid var(--hairline-2);
  padding-bottom: 1px;
  transition: color var(--dur-2) var(--ease), border-color var(--dur-2) var(--ease);
}
.lnk-inline:hover { color: var(--accent); border-color: var(--accent); }

/* =========================================================================
   Navigation. Sticky, blurred, mobile toggle. Wordmark uses serif logo.
   ========================================================================= */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  background: color-mix(in oklab, var(--bg) 82%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--hairline);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text);
}
.brand:hover { color: var(--text); }
.brand__mark {
  width: 30px; height: 30px;
  display: inline-block;
  flex-shrink: 0;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.22rem;
  letter-spacing: -0.018em;
  line-height: 1;
}
.brand__name em {
  font-style: normal;
  font-weight: 400;
  color: var(--muted);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--muted);
  position: relative;
  padding: 0.5rem 0;
}
.nav__links a:hover { color: var(--text); }
.nav__links a[aria-current="page"] { color: var(--text); }
.nav__links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--accent);
}

.nav__cta { display: inline-flex; gap: var(--s-3); align-items: center; }

/* Mobile menu toggle.
   Borderless, three confident lines, right-aligned with a slight stagger
   so it reads as a designed mark rather than a generic hamburger.
   The full icon is 22px wide; the middle and bottom lines step in 4px and
   8px so the silhouette feels intentional. The X transform compensates for
   the stagger so both diagonals cross cleanly at the centerline. */
.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.nav__toggle:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--radius);
}
.nav__toggle span {
  position: relative;
  width: 22px; height: 2px;
  background: var(--text);
  display: block;
  transition: background var(--dur-1) var(--ease), transform var(--dur-2) var(--ease), width var(--dur-2) var(--ease);
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  right: 0;
  height: 2px;
  background: var(--text);
  transition: transform var(--dur-2) var(--ease), width var(--dur-2) var(--ease);
}
.nav__toggle span::before { top: -8px; width: 22px; }
.nav__toggle span::after  { top:  8px; width: 14px; }
/* Hover lifts the bottom line to full width so the mark animates as you
   approach it. Subtle enough to feel intentional, not chatty. */
.nav__toggle:hover span::after { width: 22px; }
/* Open state. Hide the middle line, rotate the outer two through the
   centerline. The translateY(8px) cancels the original ::before offset of
   -8px (and vice versa), so the diagonals cross at y=0. */
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before {
  width: 22px;
  transform: translateY(8px)  rotate(45deg);
}
.nav__toggle[aria-expanded="true"] span::after  {
  width: 22px;
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 920px) {
  .nav__toggle { display: inline-flex; }
  .nav__links,
  .nav__cta { display: none; }

  /* Open state. The header itself expands to fit a stacked dropdown panel
     using flex-wrap, so the link list and CTA can never overlap each other,
     no matter how long the menu becomes. */
  .nav[data-open="true"] {
    height: auto;
    background: var(--bg);
  }
  .nav[data-open="true"] .nav__inner {
    flex-wrap: wrap;
    height: auto;
    row-gap: 0;
  }
  /* Top row keeps brand on the left and toggle on the right, both at the
     normal nav height. */
  .nav[data-open="true"] .brand {
    height: var(--nav-h);
    align-self: center;
  }
  .nav[data-open="true"] .nav__toggle { align-self: center; }
  /* The <nav> wrapper and the CTA each wrap to their own full-width row. */
  .nav[data-open="true"] .nav__inner > nav,
  .nav[data-open="true"] .nav__cta {
    flex-basis: 100%;
  }
  .nav[data-open="true"] .nav__inner > nav { order: 3; }
  .nav[data-open="true"] .nav__cta         { order: 4; }
  .nav[data-open="true"] .nav__links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-block: var(--s-3) 0;
    border-top: 1px solid var(--hairline);
    gap: 0;
  }
  .nav[data-open="true"] .nav__links a {
    padding: var(--s-3) 0;
    border-bottom: 1px solid var(--hairline);
  }
  .nav[data-open="true"] .nav__links > li:last-child > a { border-bottom: 0; }
  .nav[data-open="true"] .nav__item--has-sub > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-3);
  }
  .nav[data-open="true"] .nav__item--has-sub > a::after {
    content: "+";
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: var(--faint);
    flex-shrink: 0;
  }
  .nav[data-open="true"] .nav__item--has-sub[data-sub-open="true"] > a::after {
    content: "\2212";
  }
  .nav[data-open="true"] .nav__sub a {
    padding: var(--s-2) 0 var(--s-2) var(--s-4);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--hairline);
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav[data-open="true"] .nav__links > li > a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav[data-open="true"] .nav__item--has-sub .nav__sub li:last-child a {
    border-bottom: 0;
  }
  .nav[data-open="true"] .nav__cta {
    display: flex;
    padding-block: var(--s-3) var(--s-5);
  }
  .nav[data-open="true"] .nav__cta .btn {
    width: 100%;
    justify-content: space-between;
  }
}

/* =========================================================================
   Hero. Photographic backdrop. No glowing orbs.
   ========================================================================= */

.hero {
  position: relative;
  min-height: clamp(640px, 88vh, 900px);
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
  background: var(--bg);
}
.hero--page {
  min-height: clamp(420px, 56vh, 620px);
}
.hero--page .hero__inner {
  justify-content: flex-end;
  padding-top: calc(var(--nav-h) + var(--s-6));
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
  min-height: clamp(320px, 48vh, 520px);
}
.hero--page .hero__title { font-size: var(--step-6); max-width: 22ch; }
.hero--page { min-height: clamp(380px, 52vh, 560px); }

/* ============================================================
   Hero, home variant. Palantir-scale: larger headline, looser
   line breaks, refined eyebrow, no credentials block at the
   bottom so the headline carries the whole top of the page.
   ============================================================ */
.hero--home { min-height: clamp(740px, 96vh, 1000px); }
.hero--home .hero__inner {
  padding-block: clamp(5.5rem, 11vw, 9rem);
  justify-content: flex-end;
}

/* Overline. Sans label with accent bar. Defense-prime register, not dossier mono. */
.hero__overline {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: clamp(1.4rem, 3vw, 2.2rem);
  align-self: flex-start;
}
.hero__overline-bar {
  display: inline-block;
  width: 2px;
  height: 18px;
  background: var(--highlight);
}

.hero--home .hero__title {
  font-size: clamp(3rem, 1.2rem + 8.6vw, 7.6rem);
  letter-spacing: -0.055em;
  line-height: 0.88;
  font-weight: 600;
  max-width: 14ch;
  margin: 0 0 clamp(1.4rem, 2.5vw, 2rem);
}

/* Sub-headline. Display-weight, smaller than the title, larger
   than the lede. The "who this is for" line that lives between
   the headline and the body copy. */
.hero__sub {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.15rem, 0.6rem + 1.4vw, 1.7rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 44ch;
  margin: 0 0 clamp(1.4rem, 2.4vw, 2rem);
}

.hero--home .hero__lede {
  font-size: clamp(1rem, 0.92rem + 0.4vw, 1.18rem);
  max-width: 56ch;
  margin-bottom: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.55;
  color: var(--muted);
}
.hero--home .hero__actions {
  gap: clamp(0.5rem, 1.2vw, 1rem);
  align-items: center;
  flex-wrap: wrap;
}

/* Quiet tertiary link. Lives next to the two real CTAs. */
.hero__quiet {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: clamp(0.3rem, 1vw, 0.8rem);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
  text-decoration: none;
  padding: 0.4rem 0.1rem;
  border-bottom: 1px solid transparent;
  transition: color var(--dur-1) var(--ease-out), border-color var(--dur-1) var(--ease-out);
}
.hero__quiet:hover {
  color: var(--accent);
  border-bottom-color: var(--accent-dim);
}
.hero__quiet .arrow { transition: transform var(--dur-1) var(--ease-out); }
.hero__quiet:hover .arrow { transform: translateX(3px); }

/* Operations strip. Tight, banner-style row across the foot
   of the hero copy. Lives inside the hero container so the
   carousel chrome below (dots + caption) sits underneath it. */
.hero__strip {
  list-style: none;
  margin: clamp(2.5rem, 4vw, 3.4rem) 0 0;
  padding: clamp(1rem, 1.6vw, 1.25rem) 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
  border-top: 1px solid var(--hairline);
  max-width: 880px;
}
.hero__strip li {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}
.hero__strip .mono,
.hero__strip-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--faint);
}
.hero__strip .num { color: var(--accent); font-weight: 600; }
.hero__strip-val {
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 720px) {
  .hero__strip { grid-template-columns: repeat(2, 1fr); }
  .hero__strip-val { white-space: normal; }
}
@media (max-width: 420px) {
  .hero__strip { grid-template-columns: 1fr; }
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6,7,9,0.55) 0%, rgba(6,7,9,0.85) 75%, rgba(6,7,9,1) 100%),
    linear-gradient(90deg, rgba(6,7,9,0.85) 0%, rgba(6,7,9,0.5) 40%, rgba(6,7,9,0.2) 100%);
}

/* Slide stack. Each slide is absolutely positioned, fades + slow-zooms in. */
.hero__slides { position: absolute; inset: 0; z-index: 1; }
.hero__slide,
.hero__slides > picture.hero__slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  transform: scale(1.08);
  transition:
    opacity 1600ms var(--ease-out),
    transform 9000ms linear;
  will-change: opacity, transform;
}
.hero__slide img,
.hero__slides > picture.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.35) saturate(0.45) contrast(1.08) brightness(0.52);
}
.hero__slide.is-active,
.hero__slides > picture.hero__slide.is-active {
  opacity: 1;
  transform: scale(1.0);
}
@media (prefers-reduced-motion: reduce) {
  .hero__slide,
  .hero__slides > picture.hero__slide {
    transition: opacity 200ms linear;
    transform: none !important;
  }
}

/* Caption. Bottom right, readable sans. Counter hidden for a calmer prime look. */
.hero__caption {
  position: absolute;
  bottom: clamp(1.5rem, 3vw, 2.25rem);
  right: clamp(1.5rem, 4vw, 2.75rem);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--muted);
  pointer-events: none;
  max-width: 28ch;
  text-align: right;
  line-height: 1.45;
}
.hero__caption-num {
  display: none;
}
.hero__caption-label {
  color: var(--muted);
  transition: opacity 600ms var(--ease-out);
}

/* Tab nav. Thin bars across the bottom of the hero. */
.hero__nav {
  position: absolute;
  bottom: clamp(1.5rem, 3vw, 2.25rem);
  left: clamp(1.5rem, 4vw, 2.75rem);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}
.hero__dot {
  width: 44px;
  height: 2px;
  background: var(--hairline-2);
  border: 0;
  padding: 0;
  cursor: pointer;
  position: relative;
  transition: background 400ms var(--ease-out);
}
.hero__dot::after {
  content: "";
  position: absolute;
  inset: -10px 0;
}
.hero__dot.is-active { background: var(--accent); }
.hero__dot:hover:not(.is-active) { background: var(--text); }

@media (max-width: 720px) {
  .hero__caption, .hero__nav { bottom: var(--s-4); }
  .hero__nav { gap: 0.4rem; }
  .hero__dot { width: 28px; }
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-block: clamp(5rem, 10vw, 8rem);
  width: 100%;
}

.hero__title {
  font-size: var(--step-7);
  letter-spacing: -0.05em;
  line-height: 0.9;
  font-weight: 600;
  margin-bottom: var(--s-5);
  max-width: 16ch;
}
.hero__title em {
  font-style: normal;
  font-weight: 600;
  color: var(--muted);
}

.hero__lede {
  font-size: var(--step-1);
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: var(--s-6);
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-bottom: var(--s-7);
}

.hero__bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid var(--hairline);
  flex-wrap: wrap;
}
.hero__cred {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
  max-width: 30ch;
  line-height: 1.6;
}

/* =========================================================================
   Index ledger. Replaces the stat row. Reads as a dossier index.
   ========================================================================= */

.ledger {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.ledger__cell {
  position: relative;
  padding: var(--s-6) var(--s-5);
  border-right: 1px solid var(--hairline);
}
.ledger__cell:last-child { border-right: 0; }

.ledger__num {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: var(--s-3);
}
.ledger__num .accent { color: var(--accent); }
.ledger__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--step-2);
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: var(--s-3);
}
.ledger__hint {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
  max-width: 26ch;
}

@media (max-width: 920px) {
  .ledger { grid-template-columns: repeat(2, 1fr); }
  .ledger__cell:nth-child(2) { border-right: 0; }
  .ledger__cell:nth-child(1),
  .ledger__cell:nth-child(2) { border-bottom: 1px solid var(--hairline); }
}
@media (max-width: 520px) {
  .ledger { grid-template-columns: 1fr; }
  .ledger__cell { border-right: 0; border-bottom: 1px solid var(--hairline); }
  .ledger__cell:last-child { border-bottom: 0; }
}

/* =========================================================================
   Capability grid. Editorial cells with photo or vector treatment.
   ========================================================================= */

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
/* 4-up variant. Two by two on desktop, prevents the 3+1 orphan layout. */
.cap-grid--4up { grid-template-columns: repeat(2, 1fr); }
.cap-grid--4up .cap-grid__cell { min-height: 0; }
.cap-grid--simple .cap-grid__cell {
  min-height: 0;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  gap: var(--s-2);
}
.cap-grid--simple .cap-grid__title {
  font-size: var(--step-1);
  margin: 0;
}
.cap-grid--simple .cap-grid__body {
  font-size: var(--step-0);
  margin: 0;
}
.cap-grid__cell {
  position: relative;
  padding: clamp(1.5rem, 2.6vw, 2.25rem);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  transition: background var(--dur-2) var(--ease);
  min-height: 320px;
}
.cap-grid__cell:hover { background: var(--surface); }

.cap-grid__cell.has-media { padding: 0; }
.cap-grid__cell.has-media .cap-grid__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
}
.cap-grid__cell.has-media .cap-grid__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.45) saturate(0.5) contrast(1.08) brightness(0.58);
  transition: transform 900ms var(--ease-out), filter 900ms var(--ease-out);
}
.cap-grid__cell.has-media:hover .cap-grid__media img {
  transform: scale(1.04);
  filter: grayscale(0.3) saturate(0.55) contrast(1.08) brightness(0.65);
}
.cap-grid__cell.has-media .cap-grid__body-wrap {
  padding: clamp(1.5rem, 2.6vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  flex: 1;
}

.cap-grid__index {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--faint);
}
.cap-grid__index .accent { color: var(--accent); }

.cap-grid__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--step-2);
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0;
  color: var(--text);
}
.cap-grid__body {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  max-width: 38ch;
}
.cap-grid__meta {
  margin: auto 0 0;
  padding-top: var(--s-4);
  border-top: 1px solid var(--hairline);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
}
.cap-grid__meta::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 0.6rem;
  opacity: 0.65;
}
.cap-grid__more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: var(--s-3);
}
.cap-grid__cell:hover .cap-grid__more { color: var(--accent); }
.cap-grid__more .arrow { transition: transform var(--dur-2) var(--ease); }
.cap-grid__cell:hover .cap-grid__more .arrow { transform: translateX(3px); }

@media (max-width: 920px) { .cap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cap-grid { grid-template-columns: 1fr; } }

/* Decorative accent for text-only cap-grid cells. A faint architectural
   diagram so the cell does not read as "blank". */
.cap-grid__cell:not(.has-media) {
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: -1px -1px;
}
.cap-grid__cell:not(.has-media)::after {
  content: "";
  position: absolute;
  right: clamp(1.25rem, 2vw, 1.75rem);
  top: clamp(1.25rem, 2vw, 1.75rem);
  width: clamp(70px, 12vw, 110px);
  height: clamp(70px, 12vw, 110px);
  border: 1px solid var(--hairline);
  background:
    radial-gradient(circle at center, rgba(201, 168, 106, 0.04) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0.9;
  transition: transform 900ms var(--ease-out), border-color 600ms var(--ease-out);
}
.cap-grid__cell:not(.has-media)::before {
  content: "";
  position: absolute;
  right: clamp(1.25rem, 2vw, 1.75rem);
  top: clamp(1.25rem, 2vw, 1.75rem);
  width: clamp(70px, 12vw, 110px);
  height: clamp(70px, 12vw, 110px);
  background:
    linear-gradient(to right, transparent calc(50% - 0.5px), var(--hairline) calc(50% - 0.5px), var(--hairline) calc(50% + 0.5px), transparent calc(50% + 0.5px)),
    linear-gradient(to bottom, transparent calc(50% - 0.5px), var(--hairline) calc(50% - 0.5px), var(--hairline) calc(50% + 0.5px), transparent calc(50% + 0.5px));
  pointer-events: none;
  opacity: 0.7;
  transition: opacity 600ms var(--ease-out);
}
.cap-grid__cell:not(.has-media):hover::after {
  transform: rotate(45deg);
  border-color: var(--accent-dim);
}
.cap-grid__cell:not(.has-media):hover::before {
  opacity: 1;
}

/* =========================================================================
   Tier cards. Three-up presentation for the services page.
   ========================================================================= */

.tier-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.tier-card {
  position: relative;
  background: var(--bg);
  padding: clamp(2rem, 3vw, 2.75rem);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  transition: background var(--dur-2) var(--ease-out);
}
.tier-card:hover { background: var(--surface); }

.tier-card--featured {
  background: var(--surface);
  outline: 1px solid var(--highlight-dim);
  outline-offset: -1px;
  z-index: 1;
}
.tier-card__badge {
  position: absolute;
  top: -1px;
  left: -1px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 0.4rem 0.7rem;
}
.tier-card__legend {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--faint);
}
.tier-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--step-3);
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0;
  color: var(--text);
}
.tier-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding-block: var(--s-3) var(--s-4);
  border-bottom: 1px solid var(--hairline);
}
.tier-card__price .num {
  font-family: var(--font-display);
  font-size: var(--step-4);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}
.tier-card__price .per {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.tier-card__lede { color: var(--muted); margin: 0; }

.tier-card__promise {
  color: var(--text);
  margin: 0;
  padding: var(--s-3) 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  font-size: 0.95rem;
  line-height: 1.45;
}
.tier-card__promise-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-right: 0.45rem;
}

/* Inline capability badge. Used in tier list and ledger to call out
   named technology (HORIZON, ECLIPSE) inside a longer bullet. */
.tier-card__cap,
.tiers-cap {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.1rem 0.4rem;
  margin-right: 0.45rem;
  border: 1px solid var(--accent-dim);
  border-radius: 1px;
  vertical-align: 0.08em;
}

/* ============================================================
   FAQ. Native <details> styled to look like the rest of the
   site. One line per question, expands to the answer, with
   a thin hairline between rows.
   ============================================================ */
.faq {
  border-top: 1px solid var(--hairline);
}
.faq__item {
  border-bottom: 1px solid var(--hairline);
}
.faq__item > summary {
  list-style: none;
  cursor: pointer;
  padding: var(--s-4) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--text);
  letter-spacing: -0.012em;
  transition: color var(--dur-1) var(--ease-out);
}
.faq__item > summary::-webkit-details-marker { display: none; }
.faq__item > summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--accent);
  transition: transform var(--dur-2) var(--ease-out), color var(--dur-1) var(--ease-out);
  flex: 0 0 auto;
  width: 1.2rem;
  text-align: right;
}
.faq__item[open] > summary::after { content: "−"; transform: none; }
.faq__item > summary:hover { color: var(--accent); }
.faq__a {
  padding: 0 0 var(--s-5) 0;
  max-width: 64ch;
  color: var(--muted);
}
.faq__a p { margin: 0; }
.faq__a a { color: var(--text); border-bottom: 1px solid var(--hairline-2); }

/* ============================================================
   Field record. Day-by-day timeline of an engagement, rendered
   as a left rail with mono day labels and editorial entries.
   ============================================================ */
.record {
  border-top: 1px solid var(--hairline);
}
.record__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: var(--s-5) 0;
  border-bottom: 1px solid var(--hairline);
  align-items: start;
  transition: background var(--dur-1) var(--ease-out);
}
.record__row:hover { background: rgba(255, 255, 255, 0.012); }
.record__day {
  font-family: var(--font-body);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-top: 0.35rem;
}
.record__body { max-width: 64ch; }
.record__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  letter-spacing: -0.012em;
  margin: 0 0 0.45rem 0;
  color: var(--text);
}
.record__body p { margin: 0; color: var(--muted); }
@media (max-width: 720px) {
  .record__row { grid-template-columns: 1fr; gap: 0.45rem; }
  .record__day { padding-top: 0; }
}

.tier-card__includes {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--faint);
  padding-top: var(--s-3);
}
.tier-card__includes .accent { color: var(--accent); }

.tier-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.tier-card__list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.45;
}
.tier-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55rem;
  width: 10px; height: 1px;
  background: var(--accent);
}

.tier-card__cta { margin-top: auto; padding-top: var(--s-4); }

@media (max-width: 920px) { .tier-cards { grid-template-columns: 1fr; } }

/* =========================================================================
   Program CTA. A prominent path to /services on the homepage.
   ========================================================================= */

.program-cta {
  margin-top: var(--s-7);
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--hairline-2);
  background:
    linear-gradient(90deg, rgba(201, 168, 106, 0.04), transparent 70%),
    var(--surface);
  position: relative;
  overflow: hidden;
  transition: border-color var(--dur-2) var(--ease-out), background var(--dur-2) var(--ease-out);
}
.program-cta:hover { border-color: var(--accent-dim); }
.program-cta::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--accent);
  opacity: 0.7;
}
.program-cta__label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s-2);
}
.program-cta__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--step-3);
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0;
  color: var(--text);
}
.program-cta__body {
  color: var(--muted);
  margin: 0;
  max-width: 44ch;
  font-size: 0.96rem;
}
@media (max-width: 920px) {
  .program-cta { grid-template-columns: 1fr; }
}

/* =========================================================================
   How it works. 4-step process row.
   ========================================================================= */

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.steps__item {
  position: relative;
  background: var(--bg);
  padding: clamp(1.75rem, 2.6vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  min-height: 240px;
  transition: background var(--dur-2) var(--ease-out);
}
.steps__item:hover { background: var(--surface); }
.steps__num {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}
.steps__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--step-2);
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0;
  color: var(--text);
}
.steps__body {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
  max-width: 28ch;
  line-height: 1.55;
}
.steps__detail {
  font-size: 0.82rem;
  margin: 0;
  max-width: 52ch;
  line-height: 1.5;
}
.steps--wide {
  grid-template-columns: 1fr;
  gap: 0;
}
.steps--wide .steps__item {
  min-height: 0;
  border-bottom: 1px solid var(--hairline);
}
.steps--wide .steps__item:last-child { border-bottom: 0; }
.steps--wide .steps__item::after { display: none; }
.steps--wide .steps__body,
.steps--wide .steps__detail { max-width: 64ch; }
.steps__item::after {
  content: "";
  position: absolute;
  right: -1px; top: 50%;
  width: 8px; height: 1px;
  background: var(--accent-dim);
  transform: translateY(-50%);
}
.steps__item:last-child::after { display: none; }

@media (max-width: 920px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .steps__item::after { display: none; }
}
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

.steps--compact .steps__item {
  min-height: 0;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
}
.steps--compact .steps__title {
  font-size: var(--step-1);
}
.steps--compact .steps__body {
  font-size: var(--step-0);
  max-width: none;
}

/* =========================================================================
   Deliverables by tier (services page).
   ========================================================================= */

.deliverables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.deliverables__tier {
  background: var(--bg);
  padding: var(--s-6) var(--s-5);
}
.deliverables__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--step-1);
  letter-spacing: -0.02em;
  margin: 0 0 var(--s-5);
  color: var(--text);
}
.deliverables__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--s-3);
}
.deliverables__list li {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
  padding-left: 1rem;
  border-left: 2px solid var(--hairline-2);
}
@media (max-width: 920px) {
  .deliverables { grid-template-columns: 1fr; }
}

/* =========================================================================
   Boundaries list. "What we don't do".
   ========================================================================= */

.bounds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.bounds__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--hairline);
}
.bounds__list li {
  padding-block: var(--s-4);
  border-bottom: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: var(--s-4);
  align-items: baseline;
}
.bounds__list .label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--faint);
}
.bounds__list .body { color: var(--muted); }
@media (max-width: 920px) { .bounds { grid-template-columns: 1fr; } }

/* =========================================================================
   Principal profiles. Four-up cards for "Who the program is for".
   ========================================================================= */

.profiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.profiles--quad { grid-template-columns: repeat(2, 1fr); }
.profile {
  background: var(--bg);
  padding: clamp(1.5rem, 2.6vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  min-height: 280px;
  position: relative;
  transition: background var(--dur-2) var(--ease-out);
}
.profile:hover { background: var(--surface); }
.profile--inverse { background: var(--bg-2); }
.profile--inverse:hover { background: var(--surface); }
.profile__tag {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}
.profile__index {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 0;
}
.profile__index .accent { color: var(--accent); }
.profile__index .muted { color: var(--muted); }
.profile__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--step-2);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0;
  color: var(--text);
}
.profile--inverse .profile__title { color: var(--muted); }
.profile__body {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
  margin: 0;
  max-width: 36ch;
}
.profile__meta {
  margin-top: auto;
  padding-top: var(--s-3);
  border-top: 1px solid var(--hairline);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--faint);
  display: flex;
  justify-content: space-between;
  gap: var(--s-3);
}
.profile__meta .accent { color: var(--accent); }

@media (max-width: 1100px) { .profiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  {
  .profiles { grid-template-columns: 1fr; }
  .profiles--quad { grid-template-columns: 1fr; }
}

/* =========================================================================
   Stance band. A display quote that frames the practice's position,
   followed by three numbered columns. Used on the homepage as the
   editorial pause between capabilities and the program ladder.
   ========================================================================= */

.stance {
  border-block: 1px solid var(--hairline);
  padding-block: clamp(3rem, 6vw, 5rem);
}
.stance .eyebrow {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 0 0 clamp(1rem, 2.4vw, 1.8rem);
}
.stance__quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.6rem, 0.8rem + 2.2vw, 2.7rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--text);
  max-width: 32ch;
  margin: 0 0 clamp(2.5rem, 5vw, 4rem);
}
.stance__quote .accent { color: var(--accent); }

/* Editorial replacement for the old triad. Long-form prose set in two
   columns on wide screens, single column on narrow. Reads like a defense
   contractor masthead instead of a feature card grid. */
.stance__prose {
  border-top: 1px solid var(--hairline);
  padding-top: clamp(1.6rem, 3vw, 2.4rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.6rem) clamp(2rem, 5vw, 4.5rem);
}
.stance__prose p {
  margin: 0;
  color: var(--muted);
  font-size: var(--step-0);
  line-height: 1.7;
  max-width: 38ch;
}
@media (max-width: 880px) {
  .stance__prose { grid-template-columns: 1fr; }
}

/* =========================================================================
   Pull quote. Used on the about page and the ECLIPSE page.
   ========================================================================= */

.pull {
  border-block: 1px solid var(--hairline);
  padding-block: clamp(3rem, 6vw, 5rem);
  margin-block: var(--s-7);
}
.pull--inset {
  margin-block: 0;
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.pull__text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--step-4);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  max-width: 24ch;
  margin: 0 auto;
  text-align: center;
}
.pull--inset .pull__text {
  max-width: 36ch;
  font-size: clamp(1.25rem, 0.6rem + 1.8vw, 2rem);
  line-height: 1.22;
  letter-spacing: -0.025em;
  font-weight: 500;
}
.pull__source {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--faint);
  text-align: center;
  margin-top: var(--s-5);
}

/* =========================================================================
   Signal roster. Used on the ECLIPSE page to enumerate detection categories
   in a 2-up grid of mono-tagged cells. Each row reads like a defense roster.
   ========================================================================= */

.signal-roster {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--hairline);
  background: var(--bg);
}
.signal-roster li {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.2rem, 2.4vw, 1.8rem);
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  transition: background var(--dur-1) var(--ease-out);
}
.signal-roster li:nth-child(2n) { border-right: 0; }
.signal-roster li:nth-last-child(-n+2):not(:nth-child(2n-1):last-child) { border-bottom: 0; }
.signal-roster li:hover { background: rgba(184, 149, 86, 0.025); }

.signal-roster__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  border-radius: 1px;
  padding: 0.35rem 0.4rem;
  height: fit-content;
  text-align: center;
  text-transform: uppercase;
  align-self: start;
  margin-top: 0.15rem;
}
.signal-roster__body h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 0.7rem + 0.5vw, 1.15rem);
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.25;
  color: var(--text);
}
.signal-roster__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
  max-width: 46ch;
}
@media (max-width: 720px) {
  .signal-roster { grid-template-columns: 1fr; }
  .signal-roster li {
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
  }
  .signal-roster li:last-child { border-bottom: 0; }
}

/* =========================================================================
   Tier ledger. A datasheet, not a SaaS pricing card.
   ========================================================================= */

/* ============================================================
   Comparison ledger.

   Reads more like a capability matrix than a price chart. The
   leftmost column on every row carries an entry-tier badge
   (I / II / III) so the eye can trace where each capability
   enters the program. Marks are calibrated discs, not solid
   squares, to feel less like a checklist and more like
   instrumentation. Section dividers are full-width with a
   leading accent block.
   ============================================================ */
.tiers-head {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  border: 1px solid var(--hairline);
  background: var(--bg);
}
.tiers-head__cell {
  padding: clamp(1.2rem, 2vw, 1.6rem) clamp(1rem, 2vw, 1.4rem);
  border-right: 1px solid var(--hairline);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  position: relative;
}
.tiers-head__cell:last-child { border-right: 0; }
.tiers-head__cell--legend {
  background: linear-gradient(180deg, rgba(255,255,255,0.012), rgba(255,255,255,0)) , var(--bg-2);
}
.tiers-head__cell.is-featured {
  background: linear-gradient(180deg, rgba(184, 149, 86, 0.05), rgba(184, 149, 86, 0) 70%), var(--surface);
}
.tiers-head__cell.is-featured::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 2px;
  background: var(--accent);
}

.tiers-head__legend {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
}
.tiers-head__cell.is-featured .tiers-head__legend { color: var(--accent); }
.tiers-head__intro {
  color: var(--muted);
  margin: var(--s-1) 0 0;
  font-size: 0.92rem;
  line-height: 1.5;
  max-width: 38ch;
}
.tiers-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  margin-top: auto;
  padding-top: var(--s-3);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
}
.tiers-legend > span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.tiers-legend__enter i {
  font-style: normal;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 14px;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  border-radius: 1px;
}

.tiers-head__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.1vw, 1.7rem);
  letter-spacing: -0.028em;
  line-height: 1.05;
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.tiers-head__name .tier-id {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--faint);
  text-transform: uppercase;
}
.tiers-head__price {
  display: flex; align-items: baseline; gap: 0.35rem;
  font-family: var(--font-display);
}
.tiers-head__price .num {
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}
.tiers-head__price .per {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.tiers-head__lede {
  color: var(--muted);
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.45;
}
.tiers-head__cta { margin-top: auto; padding-top: var(--s-3); }

.tiers-row {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  border-left: 1px solid var(--hairline);
  border-right: 1px solid var(--hairline);
  border-top: 1px solid var(--hairline);
  transition: background var(--dur-1) var(--ease-out);
  position: relative;
}
.tiers-row:hover { background: rgba(184, 149, 86, 0.020); }
.tiers-row:hover::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 2px;
  background: var(--accent);
  opacity: 0.55;
}

/* Section dividers: full-width banner with a leading accent block. */
.tiers-row.is-section,
.tiers-row.is-section:hover {
  background: var(--bg-2);
  border-top: 1px solid var(--hairline-2);
}
.tiers-row.is-section:hover::before { content: none; }
.tiers-row.is-section .tiers-cell {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text);
  padding: 0.95rem clamp(0.9rem, 1.8vw, 1.3rem) 0.6rem;
  min-height: 0;
  border-right: 0;
  background: transparent;
}
.tiers-row.is-section .tiers-cell:first-child {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.tiers-row.is-section .tiers-cell:first-child::before {
  content: "";
  display: inline-block;
  width: 18px; height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.tiers-row:last-child { border-bottom: 1px solid var(--hairline); }
.tiers-cell {
  padding: 0.7rem clamp(0.9rem, 1.8vw, 1.3rem);
  border-right: 1px solid var(--hairline);
  font-size: 0.9rem;
  color: var(--muted);
  background: var(--bg);
  display: flex;
  align-items: center;
  min-height: 42px;
  position: relative;
}
.tiers-cell:last-child { border-right: 0; }
.tiers-cell.is-featured {
  background: var(--surface);
  color: var(--text);
}
.tiers-cell.is-featured::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: -1px;
  width: 1px;
  background: var(--accent);
  opacity: 0.35;
}
.tiers-cell.is-name {
  color: var(--text);
  font-weight: 500;
  gap: 0.85rem;
  letter-spacing: -0.005em;
}

/* Entry-tier badge on every capability row.
   Tier I = neutral, Tier II = warmer, Tier III = full accent.
   The badge is a small mono pill that tells the eye where this
   capability enters the program. */
.tiers-row[data-enter] .tiers-cell.is-name::before {
  content: attr(data-enter);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 18px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--faint);
  border: 1px solid var(--dim);
  border-radius: 1px;
  background: transparent;
}
.tiers-row[data-enter]:not(.is-section) {
  /* the data-enter is rendered via the is-name cell ::before, but we read
     the attribute off the row, so duplicate via custom property. */
}
/* Override per entry tier by targeting the row attribute, but ::before uses
   attr() against its own element. So fall back to inheritance: */
.tiers-row[data-enter="I"]   .tiers-cell.is-name::before { color: var(--muted); border-color: var(--hairline-2); }
.tiers-row[data-enter="II"]  .tiers-cell.is-name::before { color: var(--accent); border-color: rgba(184,149,86,0.35); background: rgba(184,149,86,0.05); }
.tiers-row[data-enter="III"] .tiers-cell.is-name::before { color: var(--bg); border-color: var(--accent); background: var(--accent); }

/* The badge has to actually carry the right text. attr() on ::before reads
   the element's own attribute, but the data-enter sits on the row. Mirror
   it onto the name cell with a generated text override. */
.tiers-row[data-enter="I"]   .tiers-cell.is-name::before { content: "I"; }
.tiers-row[data-enter="II"]  .tiers-cell.is-name::before { content: "II"; }
.tiers-row[data-enter="III"] .tiers-cell.is-name::before { content: "III"; }

/* Tier marks. Calibrated disc = included. Long faint stroke = not.
   Defined globally inside the ledger so the legend strip can reuse them. */
.tiers-head .check,
.tiers-cell .check {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid var(--accent-dim);
  background: transparent;
  flex-shrink: 0;
}
.tiers-head .check::after,
.tiers-cell .check::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.55;
  transition: opacity var(--dur-1) var(--ease-out);
}
.tiers-cell.is-featured .check {
  border-color: var(--accent);
}
.tiers-cell.is-featured .check::after {
  opacity: 1;
  box-shadow: 0 0 10px rgba(184, 149, 86, 0.45);
}
.tiers-row:hover .check::after { opacity: 1; }

.tiers-head .dash,
.tiers-cell .dash {
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--faint);
  opacity: 0.5;
  flex-shrink: 0;
}

@media (max-width: 920px) {
  .tiers-head, .tiers-row { grid-template-columns: 1fr; }
  .tiers-head__cell, .tiers-cell { border-right: 0; border-bottom: 1px solid var(--hairline); }
  .tiers-head__cell:last-child, .tiers-cell:last-child { border-bottom: 0; }
  .tiers-row { border-top: 0; }
  .tiers-row.is-section .tiers-cell:not(:first-child) { display: none; }
  .tiers-cell.is-name { font-weight: 500; color: var(--text); border-bottom: 0; }

  /* Reset desktop-only rails on mobile. */
  .tiers-cell.is-featured::before,
  .tiers-head__cell.is-featured::before,
  .tiers-row:hover::before {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    opacity: 1;
    content: none;
  }

  .tiers-cell:not(.is-name)::before {
    content: attr(data-tier);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--faint);
    width: 70px;
    flex-shrink: 0;
    position: static;
    background: transparent;
    opacity: 1;
  }

  /* The Most-chosen plate above the Ward column has no anchor in stacked
     layout, so retire it for mobile. */
  .tiers-head__cell.is-featured::after { content: none; }
}

/* =========================================================================
   Editorial split. Photo + heavy serif sidenote.
   ========================================================================= */

.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  border: 1px solid var(--hairline);
}
.split__media {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  min-height: 480px;
  border-right: 1px solid var(--hairline);
}
.split__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.25) saturate(0.85) contrast(1.05) brightness(0.95);
  transition: transform 1400ms var(--ease-out), filter 1400ms var(--ease-out);
}
.split:hover .split__media img {
  transform: scale(1.03);
  filter: grayscale(0.1) saturate(1.0) contrast(1.05) brightness(1.05);
}
.split__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,7,9,0.2) 0%, rgba(6,7,9,0.55) 100%);
}
.split__media-tag {
  position: absolute;
  bottom: var(--s-4); left: var(--s-4);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--faint);
  background: rgba(0,0,0,0.5);
  padding: 0.4rem 0.6rem;
  border: 1px solid var(--hairline-2);
}
.split__body {
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--s-5);
}
@media (max-width: 920px) {
  .split { grid-template-columns: 1fr; }
  .split__media { min-height: 280px; border-right: 0; border-bottom: 1px solid var(--hairline); }
}

/* =========================================================================
   Marquee strip
   ========================================================================= */

.strip {
  border-block: 1px solid var(--hairline);
  background: var(--bg-2);
  overflow: hidden;
  position: relative;
}
.strip::before,
.strip::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(40px, 8vw, 96px);
  z-index: 2;
  pointer-events: none;
}
.strip::before { left: 0;  background: linear-gradient(to right, var(--bg-2), transparent); }
.strip::after  { right: 0; background: linear-gradient(to left,  var(--bg-2), transparent); }

.strip__track {
  display: inline-flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: var(--s-4);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
  white-space: nowrap;
  animation: marquee 56s linear infinite;
  will-change: transform;
}
.strip:hover .strip__track { animation-play-state: paused; }
.strip__track span { display: inline-flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.strip__track span::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--accent);
  display: inline-block;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .strip__track { animation: none; }
}

.strip--audience {
  background: var(--bg);
  border-top: 0;
}
.audience-strip {
  border-bottom: 1px solid var(--hairline);
  background: var(--bg);
}
.audience-strip__head {
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
  text-align: center;
}
.audience-strip__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 1.1rem + 1vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text);
  margin: 0;
}
.strip--audience .strip__track {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 0.95rem + 0.55vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  padding-block: clamp(1.25rem, 2.5vw, 1.75rem);
  gap: clamp(2.5rem, 6vw, 5rem);
  animation-duration: 52s;
}
.strip--audience .strip__track span::before {
  width: 5px;
  height: 5px;
}
.strip--audience::before { background: linear-gradient(to right, var(--bg), transparent); }
.strip--audience::after  { background: linear-gradient(to left, var(--bg), transparent); }

.audience-strip + .practice-intro {
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
}

/* =========================================================================
   Callout band
   ========================================================================= */

.callout {
  position: relative;
  border-block: 1px solid var(--hairline);
  background: var(--bg-2);
  padding-block: clamp(4rem, 7vw, 7rem);
  overflow: hidden;
}
.callout__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.callout__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.6) brightness(0.5) contrast(1.05) saturate(0.45);
  opacity: 0.55;
}
.callout__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(6,7,9,0.95) 0%, rgba(6,7,9,0.6) 60%, rgba(6,7,9,0.85) 100%);
}
.callout__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}
.callout__title {
  font-family: var(--font-display);
  font-size: var(--step-5);
  letter-spacing: -0.04em;
  line-height: 0.96;
  font-weight: 600;
  margin: 0 0 var(--s-3);
  max-width: 22ch;
}
.callout__body { color: var(--muted); margin: 0; max-width: 50ch; }
.callout__actions {
  display: flex; flex-wrap: wrap; gap: var(--s-3);
  justify-content: flex-start;
}
@media (max-width: 920px) {
  .callout__inner { grid-template-columns: 1fr; }
}

/* =========================================================================
   Field notes. Editorial preview cards. (Practice-focused, no fake clients.)
   ========================================================================= */

.notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.notes__item {
  background: var(--bg);
  padding: clamp(1.5rem, 2.6vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  min-height: 260px;
  transition: background var(--dur-2) var(--ease);
}
.notes__item:hover { background: var(--surface); }
.notes__meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: var(--s-3);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--hairline);
}
.notes__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--step-1);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0;
  color: var(--text);
}
.notes__excerpt { color: var(--muted); font-size: 0.94rem; margin: 0; }
.notes__more {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: var(--s-3);
}
.notes__item:hover .notes__more { color: var(--accent); }

@media (max-width: 920px) { .notes { grid-template-columns: 1fr; } }

/* =========================================================================
   Field notes, feature variant. One large lead with photograph, supported
   by a stacked list. Lockheed-style editorial layout. Reads better than
   a uniform three-card grid and avoids the AI-default triad pattern.
   ========================================================================= */

.notes-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.notes-feature__lead {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2.5vw, 1.8rem);
  border: 1px solid var(--hairline);
  background: var(--bg-2);
  transition: border-color var(--dur-2) var(--ease);
}
.notes-feature__lead:hover { border-color: var(--hairline-2); }
.notes-feature__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--surface);
}
.notes-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.18) brightness(0.78) contrast(1.05);
  transition: transform var(--dur-3) var(--ease), filter var(--dur-3) var(--ease);
}
.notes-feature__lead:hover .notes-feature__media img {
  transform: scale(1.02);
  filter: grayscale(0.05) brightness(0.86) contrast(1.05);
}
.notes-feature__body {
  padding: 0 clamp(1.5rem, 2.6vw, 2.2rem) clamp(1.6rem, 3vw, 2.2rem);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.notes-feature__meta {
  display: flex;
  gap: 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
}
.notes-feature__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 0.95rem + 1.2vw, 2rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--text);
  margin: 0;
  max-width: 24ch;
}
.notes-feature__excerpt {
  color: var(--muted);
  font-size: var(--step-0);
  line-height: 1.7;
  margin: 0;
  max-width: 48ch;
}
.notes-feature__more {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.notes-feature__lead:hover .notes-feature__more { color: var(--accent); }

.notes-feature__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.notes-feature__list > li {
  padding: clamp(1.25rem, 2.4vw, 1.8rem) 0;
  border-bottom: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.notes-feature__list > li:first-child { padding-top: 0; }
.notes-feature__list > li:last-child { border-bottom: 0; padding-bottom: 0; }
.notes-feature__list-meta {
  display: flex;
  gap: 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
}
.notes-feature__list h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--step-1);
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text);
  margin: 0;
  max-width: 32ch;
}
.notes-feature__list p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
  margin: 0;
  max-width: 44ch;
}

@media (max-width: 920px) {
  .notes-feature { grid-template-columns: 1fr; }
  .notes-feature__list > li:first-child {
    padding-top: clamp(1rem, 2vw, 1.4rem);
    border-top: 1px solid var(--hairline);
  }
}

/* =========================================================================
   Footer
   ========================================================================= */

.footer {
  border-top: 1px solid var(--hairline);
  background: var(--bg);
  padding-block: var(--s-8) var(--s-5);
  margin-top: 0;
}
.footer__top {
  display: grid;
  grid-template-columns: minmax(200px, 1.35fr) repeat(auto-fit, minmax(9.5rem, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-bottom: var(--s-7);
  border-bottom: 1px solid var(--hairline);
}
.footer__brand p {
  color: var(--muted);
  max-width: 32ch;
  margin: var(--s-3) 0 var(--s-5);
}
.footer__col h5 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 0 0 var(--s-4);
}
.footer__col ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: var(--s-3);
}
.footer__col a { color: var(--muted); }
.footer__col a:hover { color: var(--text); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  flex-wrap: wrap;
  padding-top: var(--s-5);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
}
.footer__bottom a { color: var(--faint); }
.footer__bottom a:hover { color: var(--text); }

.footer__big {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(4rem, 14vw, 13rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  color: var(--text);
  opacity: 0.92;
  margin: var(--s-6) 0 var(--s-3);
  user-select: none;
}
.footer__big em { font-style: normal; color: var(--muted); font-weight: 400; }

@media (max-width: 920px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer__top { grid-template-columns: 1fr; }
}

/* =========================================================================
   Scroll reveal. Staggered.
   ========================================================================= */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity var(--dur-4) var(--ease-out),
    transform var(--dur-4) var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay:  80ms; }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 240ms; }
.reveal[data-delay="4"] { transition-delay: 320ms; }
.reveal[data-delay="5"] { transition-delay: 400ms; }
.reveal[data-delay="6"] { transition-delay: 480ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal[data-delay] { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* =========================================================================
   Utility
   ========================================================================= */

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.skip {
  position: absolute;
  left: -9999px; top: var(--s-3);
  background: var(--text); color: var(--bg);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 100;
}
.skip:focus { left: var(--s-4); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); }
@media (max-width: 920px) { .grid-2 { grid-template-columns: 1fr; } }

.contact-form {
  display: grid;
  gap: var(--s-4);
  border-left: 1px solid var(--hairline);
  padding: 0 0 0 var(--s-5);
}
.contact-form label {
  display: grid;
  gap: 0.4rem;
}
@media (max-width: 920px) {
  .contact-form {
    border-left: 0;
    border-top: 1px solid var(--hairline);
    padding: var(--s-5) 0 0;
    margin-top: var(--s-4);
  }
}
.contact-form input,
.contact-form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--hairline-2);
  color: var(--text);
  padding: 0.6rem 0;
  font: inherit;
  width: 100%;
  max-width: 100%;
}
.contact-form textarea {
  border: 1px solid var(--hairline-2);
  padding: 0.7rem;
  resize: vertical;
}

/* =========================================================================
   GUARDIAN POSITIONING + RARE CALLOUT GRID
   Editorial layout used on /index and /services to introduce the program.
   Two-column lede paragraph, then a 2x2 numbered list of differentiators.
   ========================================================================= */
.guardian-pos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: var(--s-7);
  padding-bottom: var(--s-6);
  border-bottom: 1px solid var(--hairline);
}
.guardian-pos__lede {
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--text);
  letter-spacing: -0.005em;
  margin: 0;
}
.guardian-pos__body {
  color: var(--muted);
  margin: 0;
}
@media (max-width: 920px) {
  .guardian-pos { grid-template-columns: 1fr; }
}

.rare {
  display: block;
}
.rare__head {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-1);
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 var(--s-5) 0;
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--hairline);
}
.rare__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-left: 1px solid var(--hairline);
  border-top: 1px solid var(--hairline);
}
.rare__item {
  padding: var(--s-5) var(--s-5);
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--surface);
  transition: background var(--dur-2) var(--ease);
}
.rare__item:hover {
  background: var(--elevated);
}
.rare__num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin: 0 0 var(--s-3) 0;
}
.rare__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: -0.005em;
  margin: 0 0 var(--s-3) 0;
}
.rare__body {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0;
  max-width: 56ch;
}
@media (max-width: 920px) {
  .rare__list { grid-template-columns: 1fr; }
}

/* =========================================================================
   Premier redesign. Life-system positioning, editorial home.
   ========================================================================= */

.hero--premier {
  min-height: clamp(88vh, 92vh, 960px);
  border-bottom: 1px solid var(--hairline);
}
.hero--premier .hero__inner {
  justify-content: center;
  padding-block: clamp(6rem, 14vh, 10rem);
  max-width: 920px;
}
.hero--premier .hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.75rem, 1.2rem + 5.5vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  max-width: 14ch;
  margin-bottom: var(--s-5);
}
.hero--premier .hero__sub {
  font-size: clamp(1.2rem, 1rem + 0.8vw, 1.55rem);
  max-width: 42ch;
  color: var(--text);
  font-weight: 500;
  line-height: 1.4;
}
.hero--premier .hero__lede {
  max-width: 48ch;
  font-size: 1.05rem;
}
.hero--premier .hero__bg::after {
  background:
    linear-gradient(180deg, rgba(10, 11, 14, 0.35) 0%, rgba(10, 11, 14, 0.92) 72%, var(--bg) 100%),
    linear-gradient(90deg, rgba(10, 11, 14, 0.75) 0%, rgba(10, 11, 14, 0.25) 50%, rgba(10, 11, 14, 0.6) 100%);
}

.practice-intro {
  padding-block: clamp(3.5rem, 8vw, 5.5rem);
  border-bottom: 1px solid var(--hairline);
}
.practice-intro .section-head {
  margin-bottom: var(--s-5);
}
.practice-intro__deck {
  margin: 0 0 var(--s-6);
  max-width: none;
  color: var(--text);
  line-height: 1.6;
  font-size: var(--step-1);
}
.practice-intro__lead {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.4rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  max-width: 28ch;
  margin: 0 0 var(--s-6);
  color: var(--text);
}
.practice-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.practice-duo--simple .practice-duo__col {
  min-height: clamp(240px, 26vw, 300px);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  gap: var(--s-3);
}
.practice-duo--simple .practice-duo__line {
  flex: 1;
  width: 100%;
  max-width: none;
  font-size: clamp(1.05rem, 0.98rem + 0.35vw, 1.22rem);
  line-height: 1.65;
}
.practice-duo__col {
  background: var(--surface);
  padding: clamp(2rem, 4vw, 3rem);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.practice-duo__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.practice-duo__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-2);
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.15;
}
.practice-duo__line {
  margin: 0;
  color: var(--text);
  line-height: 1.55;
  font-size: var(--step-1);
}
.practice-duo__link {
  margin-top: auto;
  padding-top: var(--s-2);
}
.practice-duo__body {
  margin: 0;
  color: var(--muted);
  max-width: 40ch;
  flex: 1;
}

.life-system {
  padding-block: clamp(5rem, 12vw, 9rem);
  background: var(--bg-2);
  border-bottom: 1px solid var(--hairline);
}
.life-system__head {
  max-width: 720px;
  margin-bottom: var(--s-8);
}
.life-system__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 1.4rem + 2.5vw, 3.4rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0 0 var(--s-5);
}
.life-system__lede {
  font-size: var(--step-1);
  color: var(--text);
  margin: 0;
  line-height: 1.55;
}
.life-compare {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.life-compare__aside {
  padding-top: var(--s-2);
  border-top: 2px solid var(--hairline-2);
}
.life-compare__aside-title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 0 0 var(--s-4);
}
.life-compare__aside p {
  margin: 0 0 var(--s-4);
  font-size: 0.95rem;
}
.life-compare__main {
  border: 1px solid var(--hairline);
  background: var(--surface);
  padding: clamp(2rem, 4vw, 3rem);
}
.life-compare__main-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s-5);
  display: block;
}
.life-pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--s-5);
}
.life-pillars li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: var(--s-4);
  align-items: start;
  padding-bottom: var(--s-5);
  border-bottom: 1px solid var(--hairline);
}
.life-pillars li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.life-pillars__num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  padding-top: 0.2rem;
}
.life-pillars__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0 0 0.35rem;
  color: var(--text);
}
.life-pillars__body {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}

.premier-band {
  padding-block: clamp(4rem, 8vw, 6rem);
  text-align: center;
  border-bottom: 1px solid var(--hairline);
}
.premier-band__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 1rem + 1.2vw, 2rem);
  letter-spacing: -0.02em;
  max-width: 36ch;
  margin: 0 auto;
  line-height: 1.35;
  color: var(--text);
}
.premier-band__text .accent { color: var(--accent); }

.guardian-teaser {
  padding-block: clamp(5rem, 10vw, 8rem);
}
.guardian-teaser__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.guardian-teaser__price-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  margin-top: var(--s-6);
}
.guardian-teaser__price {
  flex: 1;
  min-width: 140px;
  padding: var(--s-4) var(--s-5);
  border: 1px solid var(--hairline);
  background: var(--surface);
}
.guardian-teaser__price strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.guardian-teaser__price span {
  font-size: 0.85rem;
  color: var(--muted);
}

.btn--accent {
  background: var(--highlight);
  color: #fff;
  border-color: var(--highlight);
}
.btn--accent:hover {
  background: #9BA3AE;
  border-color: #9BA3AE;
  color: #fff;
}

.nav__links a[aria-current="page"] {
  color: var(--text);
}
.nav__links a[aria-current="page"]::after {
  transform: scaleX(1);
  background: var(--highlight);
}

@media (max-width: 920px) {
  .practice-duo,
  .life-compare,
  .guardian-teaser__grid { grid-template-columns: 1fr; }
  .hero--premier .hero__title { max-width: none; }
}

/* =========================================================================
   Corporate home (Booz Allen–inspired layout). Full-bleed hero, explore
   pillars, firm story, differentiators, feature bands. Darkveil palette.
   ========================================================================= */

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.corp .nav--corp {
  background: color-mix(in oklab, var(--bg) 70%, transparent);
  border-bottom-color: var(--hairline);
}
.corp .nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.corp .nav__links a:hover::after {
  transform: scaleX(1);
  background: var(--accent);
}
.corp .nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: transparent;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-2) var(--ease);
}

.corp-kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--s-4);
}

.corp-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.corp-cta:hover { color: var(--accent); }
.corp-cta--ghost { color: var(--muted); }
.corp-cta--ghost:hover { color: var(--text); }
.corp-cta .arrow { transition: transform var(--dur-2) var(--ease); }
.corp-cta:hover .arrow { transform: translateX(4px); }

/* Hero */
.corp-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(560px, calc(85vh - var(--nav-h)), 820px);
  padding-top: var(--nav-h);
  box-sizing: border-box;
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
}
.corp-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.corp-hero__poster,
.corp-hero__poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.corp-hero__broll {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  pointer-events: none;
}
.corp-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, var(--bg) 0%, rgba(10, 11, 14, 0.55) 45%, rgba(10, 11, 14, 0.35) 100%),
    linear-gradient(90deg, rgba(10, 11, 14, 0.85) 0%, rgba(10, 11, 14, 0.35) 55%, rgba(10, 11, 14, 0.7) 100%);
}
.corp-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: var(--s-5);
  padding-bottom: clamp(2.5rem, 6vh, 4.5rem);
  max-width: 980px;
}
.corp-hero__firm {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--s-5);
}
.corp-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 1.2rem + 5vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0 0 var(--s-6);
  max-width: 16ch;
}
.corp-hero__tag {
  font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.35rem);
  color: var(--muted);
  max-width: 46ch;
  margin: 0 0 var(--s-7);
  line-height: 1.5;
}
.corp-hero__tag em {
  font-style: italic;
  color: var(--text);
}
.corp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-6);
  align-items: center;
}

/* Commitment band */
.corp-statement {
  padding-block: clamp(4rem, 8vw, 6.5rem);
  background: var(--bg-2);
  border-bottom: 1px solid var(--hairline);
}
.corp-statement__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.corp-statement__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 1.4rem + 2.2vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0;
  max-width: 14ch;
}
.corp-statement__body p {
  font-size: var(--step-1);
  color: var(--muted);
  margin: 0 0 var(--s-6);
  max-width: 52ch;
  line-height: 1.65;
}

/* Explore pillars */
.corp-explore {
  padding-block: clamp(4rem, 8vw, 6rem);
  border-bottom: 1px solid var(--hairline);
}
.corp-explore__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.corp-explore__card {
  background: var(--surface);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  transition: background var(--dur-2) var(--ease);
}
.corp-explore__card:hover { background: var(--elevated); }
.corp-explore__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 1.1rem + 0.8vw, 1.75rem);
  margin: 0;
  letter-spacing: -0.02em;
}
.corp-explore__name a { color: var(--text); }
.corp-explore__name a:hover { color: var(--accent); }
.corp-explore__tag {
  flex: 1;
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}
.corp-explore__tag em { font-style: italic; color: var(--text); }
.corp-explore__link {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.corp-explore__link:hover { color: var(--highlight); }

/* Firm story */
.corp-firm {
  padding-block: clamp(5rem, 10vw, 8rem);
  border-bottom: 1px solid var(--hairline);
}
.corp-firm__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.corp-firm__media {
  border: 1px solid var(--hairline);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 640px;
}
.corp-firm__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.corp-firm__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 1.3rem + 1.8vw, 2.75rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 var(--s-5);
}
.corp-firm__lede {
  font-size: var(--step-1);
  color: var(--text);
  margin: 0 0 var(--s-5);
  line-height: 1.6;
  max-width: 58ch;
}
.corp-firm__copy p {
  color: var(--muted);
  margin: 0 0 var(--s-5);
  max-width: 58ch;
  line-height: 1.65;
}

/* Differentiators */
.corp-diff {
  padding-block: clamp(5rem, 10vw, 8rem);
  background: var(--bg-2);
  border-bottom: 1px solid var(--hairline);
}
.corp-diff__head { max-width: 640px; margin-bottom: var(--s-8); }
.corp-diff__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 1.2rem + 2vw, 2.85rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 var(--s-5);
}
.corp-diff__intro {
  margin: 0;
  color: var(--muted);
  font-size: var(--step-1);
  line-height: 1.6;
  max-width: 48ch;
}
.corp-diff__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.corp-diff__item {
  background: var(--bg);
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  min-height: 200px;
}
.corp-diff__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--highlight);
  display: block;
  margin-bottom: var(--s-4);
}
.corp-diff__item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0 0 var(--s-3);
  letter-spacing: -0.02em;
}
.corp-diff__item p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 36ch;
}

/* Feature bands */
.corp-features { border-bottom: 1px solid var(--hairline); }
.corp-feature {
  position: relative;
  min-height: clamp(420px, 55vh, 560px);
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid var(--hairline);
}
.corp-feature:last-child { border-bottom: 0; }
.corp-feature__media {
  position: absolute;
  inset: 0;
}
.corp-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.corp-feature__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--bg) 8%, rgba(10, 11, 14, 0.75) 50%, rgba(10, 11, 14, 0.4) 100%);
}
.corp-feature--alt .corp-feature__media::after {
  background: linear-gradient(0deg, var(--bg-2) 8%, rgba(14, 16, 20, 0.8) 55%, rgba(14, 16, 20, 0.45) 100%);
}
.corp-feature__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(3rem, 8vw, 5rem);
  max-width: 640px;
}
.corp-feature__cat {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--s-4);
}
.corp-feature__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 1.2rem + 1.8vw, 2.65rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 var(--s-5);
}
.corp-feature__body {
  margin: 0 0 var(--s-6);
  color: var(--muted);
  font-size: var(--step-1);
  line-height: 1.6;
  max-width: 48ch;
}
.corp-feature--alt .corp-feature__inner { padding-bottom: clamp(3rem, 8vw, 5rem); }

/* Life system list */
.corp-system {
  padding-block: clamp(5rem, 10vw, 8rem);
  border-bottom: 1px solid var(--hairline);
}
.corp-system__head { max-width: 720px; margin-bottom: var(--s-8); }
.corp-system__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 1.2rem + 2vw, 2.85rem);
  letter-spacing: -0.03em;
  margin: 0 0 var(--s-5);
  line-height: 1.1;
}
.corp-system__lede {
  margin: 0;
  font-size: var(--step-1);
  color: var(--muted);
  line-height: 1.6;
}
.corp-system__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--hairline);
  background: var(--surface);
}
.corp-system__list li {
  display: grid;
  grid-template-columns: minmax(200px, 280px) 1fr;
  gap: var(--s-5);
  padding: var(--s-6) clamp(1.5rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--hairline);
  align-items: baseline;
}
.corp-system__list li:last-child { border-bottom: 0; }
.corp-system__list strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
}
.corp-system__list span {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* Tiers */
.corp-tiers {
  padding-block: clamp(5rem, 10vw, 8rem);
  background: var(--bg-2);
  border-bottom: 1px solid var(--hairline);
}
.corp-tiers__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--s-5);
  margin-bottom: var(--s-7);
}
.corp-tiers__note {
  margin: var(--s-3) 0 0;
  color: var(--muted);
}
.corp-tiers__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.corp-tier {
  background: var(--bg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  position: relative;
}
.corp-tier--featured {
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--highlight-dim);
}
.corp-tier__badge {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--highlight);
  margin: 0 0 var(--s-3);
}
.corp-tier h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 0 var(--s-3);
}
.corp-tier__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  margin: 0 0 var(--s-5);
  letter-spacing: -0.02em;
}
.corp-tier__price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}
.corp-tier p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

/* Final CTA */
.corp-final {
  padding-block: clamp(5rem, 12vw, 9rem);
  text-align: center;
  border-bottom: 1px solid var(--hairline);
}
.corp-final__inner { max-width: 560px; margin-inline: auto; }
.corp-final__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 1.2rem + 1.5vw, 2.5rem);
  letter-spacing: -0.03em;
  margin: 0 0 var(--s-5);
}
.corp-final__inner p {
  color: var(--muted);
  margin: 0 0 var(--s-7);
  line-height: 1.65;
}
.btn--lg {
  padding: 1rem 1.75rem;
  font-size: 1rem;
}

.footer--corp .footer__big { display: none; }
.footer--corp { padding-top: var(--s-8); }

@media (max-width: 1100px) {
  .corp-explore__grid { grid-template-columns: repeat(2, 1fr); }
  .corp-diff__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  .corp-statement__grid,
  .corp-firm__grid { grid-template-columns: 1fr; }
  .corp-firm__media { max-height: 420px; aspect-ratio: 16 / 10; }
  .corp-tiers__row { grid-template-columns: 1fr; }
  .corp-system__list li { grid-template-columns: 1fr; gap: var(--s-2); }
}
/* Markets and process */
.corp-markets {
  padding-block: clamp(5rem, 10vw, 8rem);
  border-bottom: 1px solid var(--hairline);
}
.corp-markets__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.corp-markets__item {
  background: var(--bg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.corp-markets__item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0 0 var(--s-3);
}
.corp-markets__item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
  max-width: 42ch;
}

.corp-process {
  padding-block: clamp(5rem, 10vw, 8rem);
  background: var(--bg-2);
  border-bottom: 1px solid var(--hairline);
}
.corp-process__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--hairline);
}
.corp-process__steps li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: var(--s-5);
  padding: var(--s-6) clamp(1.5rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--hairline);
  background: var(--bg);
  align-items: start;
}
.corp-process__steps li:last-child { border-bottom: 0; }
.corp-process__phase {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--highlight);
}
.corp-process__steps strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: var(--s-3);
  color: var(--text);
}
.corp-process__steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.corp-resources-hub {
  padding-block: clamp(5rem, 10vw, 8rem);
  background: var(--surface);
  border-bottom: 1px solid var(--hairline);
}
.corp-resources-hub__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.corp-resources-hub__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--hairline);
  background: var(--bg);
}
.corp-resources-hub__list li {
  border-bottom: 1px solid var(--hairline);
}
.corp-resources-hub__list li:last-child { border-bottom: 0; }
.corp-resources-hub__list a {
  display: block;
  padding: var(--s-4) var(--s-5);
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}
.corp-resources-hub__list a:hover {
  background: var(--elevated);
  color: var(--highlight);
}

/* Resource center */
.resource-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding-block: var(--s-8);
}
.resource-nav {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
  border: 1px solid var(--hairline);
  background: var(--surface);
  padding: var(--s-5);
}
.resource-nav h2 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--s-4);
}
.resource-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.resource-nav a {
  display: block;
  padding: 0.45rem 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.resource-nav a:hover,
.resource-nav a[aria-current="true"] {
  color: var(--text);
}
.resource-nav a[aria-current="true"] {
  font-weight: 600;
  border-left: 2px solid var(--highlight);
  padding-left: var(--s-3);
  margin-left: calc(-1 * var(--s-3));
}

.resource-guide {
  padding-bottom: var(--s-9);
  margin-bottom: var(--s-8);
  border-bottom: 1px solid var(--hairline);
  scroll-margin-top: calc(var(--nav-h) + 1.5rem);
}
.resource-guide:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}
.resource-guide h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2.1rem);
  letter-spacing: -0.03em;
  margin: 0 0 var(--s-3);
}
.resource-guide__meta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--faint);
  margin: 0 0 var(--s-5);
}
.resource-guide p,
.resource-guide li {
  color: var(--muted);
  line-height: 1.7;
  max-width: 68ch;
}
.resource-guide ul,
.resource-guide ol {
  margin: var(--s-4) 0;
  padding-left: 1.25rem;
}
.resource-guide strong { color: var(--text); }
.resource-callout {
  margin: var(--s-6) 0;
  padding: var(--s-5) var(--s-6);
  border-left: 3px solid var(--highlight);
  background: var(--bg-2);
}
.resource-callout p { margin: 0; }

@media (max-width: 920px) {
  .corp-markets__grid { grid-template-columns: 1fr; }
  .corp-process__steps li { grid-template-columns: 1fr; }
  .corp-resources-hub__grid,
  .resource-layout { grid-template-columns: 1fr; }
  .resource-nav { position: static; }
}
/* Nav capabilities dropdown */
.nav__item--has-sub { position: relative; }
.nav__sub {
  list-style: none;
  margin: 0;
  padding: var(--s-3) 0;
  min-width: 200px;
  background: var(--elevated);
  border: 1px solid var(--hairline);
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--dur-2) var(--ease), transform var(--dur-2) var(--ease), visibility var(--dur-2);
  z-index: 60;
}
.nav__item--has-sub:hover .nav__sub,
.nav__item--has-sub:focus-within .nav__sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__sub a {
  display: block;
  padding: 0.5rem var(--s-5);
  font-size: 0.88rem;
  color: var(--muted);
  white-space: nowrap;
}
.nav__sub a:hover { color: var(--text); background: var(--surface); }
.nav__sub a[aria-current="page"] { color: var(--text); }
.nav__sub a::after { display: none; }
@media (min-width: 921px) {
  .nav__item--has-sub > a::after { display: none; }
}

/* Pre-call block for principals */
.pre-call__copy { max-width: 520px; margin-bottom: var(--s-7); }
.pre-call__faq {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-6) var(--s-8);
  margin: 0;
}
.pre-call__faq div { margin: 0; }
.pre-call__faq dt {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: var(--s-3);
}
.pre-call__faq dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 42ch;
}

/* Capability product bands */
.cap-product {
  position: relative;
  border-bottom: 1px solid var(--hairline);
}
.cap-product--alt { background: var(--bg-2); }
.cap-product__media {
  position: relative;
  height: clamp(220px, 32vw, 380px);
  overflow: hidden;
}
.cap-product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cap-product__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--bg) 0%, transparent 70%);
}
.cap-product--alt .cap-product__media::after {
  background: linear-gradient(0deg, var(--bg-2) 0%, transparent 70%);
}
.cap-product__inner {
  padding-block: var(--s-7);
  max-width: 720px;
}
.cap-product__inner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 1.2rem + 1.5vw, 2.5rem);
  letter-spacing: -0.03em;
  margin: 0 0 var(--s-5);
}
.cap-product__list {
  margin: 0 0 var(--s-6);
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.65;
}
.cap-product__list li { margin-bottom: var(--s-3); max-width: 52ch; }
.cap-product__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-5);
  align-items: center;
}

.cap-grid--photos {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 640px) {
  .cap-grid--photos { grid-template-columns: 1fr; }
}

/* Photo capability cards */
.cap-grid--photos .cap-grid__cell--photo {
  padding: 0;
  overflow: hidden;
}
.cap-grid__thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
}
.cap-grid__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
  opacity: 0.88;
}
.cap-grid__cell--photo .cap-grid__index,
.cap-grid__cell--photo .cap-grid__title,
.cap-grid__cell--photo .cap-grid__body {
  padding-inline: clamp(1.25rem, 2vw, 1.75rem);
}
.cap-grid__cell--photo .cap-grid__index { padding-top: var(--s-4); display: block; }
.cap-grid__cell--photo .cap-grid__body { padding-bottom: var(--s-5); }

/* Intel photo mosaic */
.intel-mosaic {
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
}
.intel-mosaic__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  max-height: 280px;
}
.intel-mosaic__grid picture,
.intel-mosaic__grid img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 140px;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.08);
  opacity: 0.75;
}

/* Capabilities hub on home */
.cap-hub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  margin-bottom: var(--s-8);
}
.cap-hub__card {
  background: var(--surface);
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 320px;
}
.cap-hub__visual {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.cap-hub__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: 0.85;
}
.cap-hub__body {
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.cap-hub__body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0;
}
.cap-hub__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
  flex: 1;
}

@media (max-width: 920px) {
  .nav__sub {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 0;
    background: transparent;
    padding: 0 0 var(--s-2);
    margin: 0;
    min-width: 0;
    display: none;
  }
  .nav__item--has-sub[data-sub-open="true"] .nav__sub {
    display: block;
  }
  .nav__item--has-sub > a[aria-current="page"] {
    color: var(--text);
  }
  .pre-call__faq { grid-template-columns: 1fr; }
  .cap-hub { grid-template-columns: 1fr; }
  .intel-mosaic__grid { grid-template-columns: repeat(2, 1fr); max-height: none; }
}
@media (max-width: 560px) {
  .corp-diff__grid { grid-template-columns: 1fr; }
  .corp-hero__title { max-width: none; }
  .intel-mosaic__grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   Brief layout. Editorial intelligence-firm reading experience.
   ========================================================================= */

.brief { --brief-measure: 42rem; }

.brief-open {
  position: relative;
  min-height: clamp(480px, 72vh, 720px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: var(--nav-h);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
}
.brief-open--page { min-height: clamp(360px, 50vh, 520px); }
.brief-open__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.brief-open__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: grayscale(100%) contrast(1.06);
}
.brief-open__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, var(--bg) 0%, rgba(10, 11, 14, 0.5) 50%, rgba(10, 11, 14, 0.35) 100%),
    linear-gradient(90deg, rgba(10, 11, 14, 0.9) 0%, rgba(10, 11, 14, 0.4) 55%, rgba(10, 11, 14, 0.75) 100%);
}
.brief-open__inner {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(2.5rem, 6vh, 4rem);
  max-width: var(--brief-measure);
}
.brief-mast {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--s-5);
}
.brief-open__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 1.2rem + 4.5vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0 0 var(--s-5);
  max-width: 14ch;
}
.brief-open__deck {
  font-size: var(--step-1);
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 var(--s-6);
  max-width: 48ch;
}
.brief-open__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-5) var(--s-7);
  margin: 0;
}
.brief-open__links a {
  font-weight: 600;
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--hairline-2);
}
.brief-open__links a:hover {
  color: var(--highlight);
  text-decoration-color: var(--highlight);
}

.brief-prose {
  padding-block: clamp(3.5rem, 8vw, 5.5rem);
  max-width: var(--brief-measure);
}
.brief-prose__h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  letter-spacing: -0.03em;
  margin: 0 0 var(--s-5);
  line-height: 1.15;
}
.brief-prose p {
  margin: 0 0 var(--s-5);
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.05rem;
}
.brief-prose p:last-child { margin-bottom: 0; }

.brief-figure {
  margin: 0;
  border-block: 1px solid var(--hairline);
}
.brief-figure img {
  width: 100%;
  display: block;
  max-height: min(56vh, 520px);
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
}
.brief-figure--pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hairline);
}
.brief-figure--pair img { max-height: 320px; }
.brief-figure figcaption {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--faint);
  padding: var(--s-4) var(--s-5);
  background: var(--bg-2);
  letter-spacing: 0.04em;
}

.brief-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 0 0 var(--s-4);
}
.brief-program {
  padding-block: clamp(3rem, 7vw, 5rem);
  border-top: 1px solid var(--hairline);
  max-width: 960px;
}
.brief-program__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 1.2rem + 1.5vw, 2.5rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 var(--s-5);
  max-width: 20ch;
}
.brief-program__intro,
.brief-program__foot {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
  max-width: 52ch;
}
.brief-program__foot { margin-top: var(--s-6); }
.brief-program__foot a { color: var(--text); font-weight: 600; }
.brief-program__sub {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  margin: var(--s-8) 0 var(--s-5);
}

.brief-contrast {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  margin: var(--s-7) 0;
}
.brief-contrast__col {
  background: var(--surface);
  padding: var(--s-6);
}
.brief-contrast__col--us {
  background: var(--bg-2);
  border-left: 2px solid var(--highlight);
}
.brief-contrast h3 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 0 0 var(--s-4);
}
.brief-contrast ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}
.brief-contrast li { margin-bottom: 0.5rem; }

.brief-layers {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--hairline);
}
.brief-layers li {
  padding: var(--s-5) 0;
  border-bottom: 1px solid var(--hairline);
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.98rem;
}
.brief-layers strong {
  color: var(--text);
  font-weight: 600;
  margin-right: 0.35rem;
}

.brief-tiers {
  padding-block: clamp(3rem, 7vw, 5rem);
  border-top: 1px solid var(--hairline);
  max-width: var(--brief-measure);
}
.brief-tiers__note {
  color: var(--faint);
  font-size: 0.9rem;
  margin: 0 0 var(--s-6);
}
.brief-tier {
  padding: var(--s-6) 0;
  border-bottom: 1px solid var(--hairline);
}
.brief-tier--focus {
  padding-left: var(--s-5);
  border-left: 2px solid var(--highlight);
}
.brief-tier__badge {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--highlight);
  margin: 0 0 var(--s-3);
}
.brief-tier__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--s-4) var(--s-6);
  margin-bottom: var(--s-3);
}
.brief-tier__head h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  margin: 0;
}
.brief-tier__price {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}
.brief-tier p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  max-width: 52ch;
}
.brief-tiers__cta { margin-top: var(--s-7); }

.brief-aside {
  padding-block: clamp(3rem, 7vw, 5rem);
  border-top: 1px solid var(--hairline);
  max-width: var(--brief-measure);
}
.brief-aside__list {
  margin: var(--s-5) 0 0;
}
.brief-aside__list div {
  padding: var(--s-5) 0;
  border-bottom: 1px solid var(--hairline);
}
.brief-aside__list dt {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: var(--s-2);
}
.brief-aside__list dt a { color: var(--text); }
.brief-aside__list dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.brief-cta {
  padding-block: clamp(4rem, 10vw, 7rem);
  background: var(--bg-2);
  border-top: 1px solid var(--hairline);
}
.brief-cta__inner {
  max-width: var(--brief-measure);
}
.brief-cta h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2.2rem);
  margin: 0 0 var(--s-4);
}
.brief-cta p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 var(--s-6);
  max-width: 48ch;
}

@media (max-width: 720px) {
  .brief-contrast { grid-template-columns: 1fr; }
  .brief-contrast__col--us { border-left: 0; border-top: 2px solid var(--highlight); }
  .brief-figure--pair { grid-template-columns: 1fr; }
  .brief-open__title { max-width: none; }
}

/* =========================================================================
   Premier brief. Exclusive register, rich media, tier matrix.
   ========================================================================= */

.brief-open__slideshow {
  position: absolute;
  inset: 0;
}
.brief-open__slideshow picture {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: dv-hero-fade 18s ease-in-out infinite;
}
.brief-open__slideshow picture:nth-child(1) { animation-delay: 0s; }
.brief-open__slideshow picture:nth-child(2) { animation-delay: 6s; }
.brief-open__slideshow picture:nth-child(3) { animation-delay: 12s; }
.brief-open__slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: grayscale(100%) contrast(1.08) brightness(0.85);
}
@keyframes dv-hero-fade {
  0%, 28% { opacity: 1; }
  33%, 95% { opacity: 0; }
  100% { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .brief-open__slideshow picture {
    animation: none;
    opacity: 0;
  }
  .brief-open__slideshow picture:first-child { opacity: 1; }
}

.brief-open--cinema { min-height: clamp(520px, 78vh, 780px); }
.brief-open__inner--wide { max-width: 52rem; }
.brief-lead {
  font-size: clamp(1.1rem, 1rem + 0.4vw, 1.25rem);
  color: var(--text);
  line-height: 1.55;
  max-width: 46ch;
  margin: 0 0 var(--s-5);
  font-weight: 500;
}
.brief-statline {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-6) var(--s-8);
  margin: var(--s-7) 0 0;
  padding-top: var(--s-6);
  border-top: 1px solid var(--hairline);
}
.brief-statline div {
  min-width: 120px;
}
.brief-statline dt {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 0.35rem;
}
.brief-statline dd {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--text);
}

.panel-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  border-block: 1px solid var(--hairline);
  background: var(--bg-2);
}
.panel-split--flip .panel-split__media { order: 2; }
.panel-split__media {
  min-height: 360px;
  position: relative;
  overflow: hidden;
}
.panel-split__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.06);
}
.panel-split__copy {
  padding: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 36rem;
}
.panel-split__copy h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 1.1rem + 0.8vw, 1.85rem);
  margin: 0 0 var(--s-4);
  letter-spacing: -0.02em;
}
.panel-split__copy p {
  margin: 0 0 var(--s-4);
  color: var(--muted);
  line-height: 1.7;
}
.panel-split__copy p:last-child { margin-bottom: 0; }

.visual-wall {
  border-block: 1px solid var(--hairline);
  overflow: hidden;
}
.visual-wall__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--hairline);
}
.visual-wall__grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.05);
  opacity: 0.82;
  transition: opacity var(--dur-2) var(--ease);
}
.visual-wall__grid img:hover { opacity: 1; }

.tier-matrix-wrap {
  padding-block: clamp(3rem, 8vw, 6rem);
  border-top: 1px solid var(--hairline);
  background: var(--bg);
}
.tier-matrix-wrap--inset {
  background: var(--bg-2);
  border-bottom: 1px solid var(--hairline);
}
.tier-matrix__head {
  max-width: 52rem;
  margin-bottom: var(--s-7);
}
.tier-matrix__head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 1.2rem + 1.5vw, 2.6rem);
  letter-spacing: -0.03em;
  margin: 0 0 var(--s-4);
}
.tier-matrix__head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  max-width: 56ch;
}
.tier-matrix-scroll {
  overflow-x: auto;
  border: 1px solid var(--hairline);
  background: var(--surface);
}
.tier-matrix {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.tier-matrix th,
.tier-matrix td {
  padding: var(--s-4) var(--s-4);
  border-bottom: 1px solid var(--hairline);
  text-align: left;
  vertical-align: top;
}
.tier-matrix thead th {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--elevated);
  position: sticky;
  top: 0;
  z-index: 1;
}
.tier-matrix th:not(:first-child),
.tier-matrix td:not(:first-child) {
  text-align: center;
  width: 11%;
}
.tier-matrix td:first-child {
  color: var(--text);
  font-weight: 500;
  max-width: 220px;
  background: var(--bg);
}
.tier-matrix tbody tr:hover td { background: rgba(255,255,255,0.02); }
.tier-matrix .tier-matrix__price-row td {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  padding-block: var(--s-5);
  background: var(--bg-2);
}
.tier-matrix .tier-matrix__price-row td:first-child {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--faint);
}
.tier-matrix__col--focus {
  background: rgba(184, 50, 50, 0.06);
  box-shadow: inset 0 0 0 1px var(--highlight-dim);
}
.tier-matrix .mark-yes {
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.8rem;
}
.tier-matrix .mark-no {
  color: var(--faint);
}
.tier-matrix .mark-inc {
  color: var(--muted);
  font-size: 0.8rem;
}
.tier-matrix__note {
  margin-top: var(--s-5);
  font-size: 0.85rem;
  color: var(--faint);
  max-width: 60ch;
}

.tier-pricing-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  margin-top: var(--s-7);
}
.tier-pricing-card {
  background: var(--surface);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.tier-pricing-card--focus {
  background: var(--elevated);
  box-shadow: inset 0 0 0 1px var(--highlight-dim);
}
.tier-pricing-card__badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--highlight);
}
.tier-pricing-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0;
}
.tier-pricing-card__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.03em;
  margin: 0;
}
.tier-pricing-card__price span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}
.tier-pricing-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  flex: 1;
}
.tier-pricing-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.85rem;
  color: var(--muted);
  border-top: 1px solid var(--hairline);
  padding-top: var(--s-4);
}
.tier-pricing-card li {
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--hairline);
}
.tier-pricing-card li:last-child { border-bottom: 0; }

.aegis-eclipse {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 0;
  border: 1px solid var(--hairline);
  margin-top: var(--s-8);
  background: var(--surface);
}
.aegis-eclipse__copy {
  padding: clamp(2rem, 4vw, 3rem);
}
.aegis-eclipse__copy h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  margin: 0 0 var(--s-4);
}
.aegis-eclipse__copy p {
  margin: 0 0 var(--s-4);
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
}
.aegis-eclipse__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: var(--s-4);
}
.aegis-eclipse__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-4) var(--s-5);
  margin-top: var(--s-5);
}
.aegis-eclipse__media {
  min-height: 280px;
  border-left: 1px solid var(--hairline);
  display: block;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
}
a.aegis-eclipse__media:hover img {
  filter: grayscale(85%) contrast(1.12) brightness(0.92);
}
.aegis-eclipse__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.08);
}

@media (max-width: 960px) {
  .panel-split,
  .aegis-eclipse { grid-template-columns: 1fr; }
  .panel-split--flip .panel-split__media { order: 0; }
  .aegis-eclipse__media { border-left: 0; border-top: 1px solid var(--hairline); min-height: 240px; }
  .visual-wall__grid { grid-template-columns: repeat(3, 1fr); }
  .tier-pricing-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .visual-wall__grid { grid-template-columns: repeat(2, 1fr); }
}

/* Legal pages */
.legal-prose {
  max-width: 68ch;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}
.legal-prose h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  margin: var(--s-7) 0 var(--s-4);
  letter-spacing: -0.01em;
}
.legal-prose p { margin: 0 0 var(--s-4); }
.legal-prose ul {
  margin: 0 0 var(--s-5);
  padding-left: 1.25rem;
}
.legal-prose li { margin-bottom: 0.35rem; }
.legal-prose strong { color: var(--text); font-weight: 600; }

/* =========================================================================
   Home (simplified). Compact hero, audience fork, tier snapshot.
   ========================================================================= */

.hero--home-compact {
  min-height: clamp(520px, 72vh, 720px);
}
.hero--home-compact .hero__inner {
  padding-block: clamp(4rem, 8vw, 6rem);
}
.hero__bg > picture {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
}
.hero__bg > picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.35) saturate(0.45) contrast(1.08) brightness(0.52);
}

.home-path-link {
  margin-top: var(--s-6);
  text-align: center;
}

.home-audience {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s-5);
}
.home-audience__card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid var(--hairline);
  background: var(--surface);
  min-height: 100%;
}
.home-audience__label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--s-3);
}
.home-audience__title {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 var(--s-4);
  max-width: 22ch;
}
.home-audience__body {
  color: var(--muted);
  margin: 0 0 var(--s-4);
  line-height: 1.55;
}
.home-audience__list {
  list-style: none;
  margin: 0 0 var(--s-5);
  padding: 0;
  flex: 1;
}
.home-audience__list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.45rem;
  color: var(--text);
  font-size: 0.95rem;
}
.home-audience__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 1px;
  background: var(--accent);
}
.home-audience__card .btn {
  align-self: flex-start;
  margin-top: auto;
}
.home-audience--simple .home-audience__card {
  padding: clamp(1.5rem, 3vw, 2rem);
  gap: var(--s-3);
}
.home-audience__line {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: var(--step-0);
  flex: 1;
}

.tier-cards--snapshot .tier-card {
  min-height: auto;
}
.tier-cards--snapshot .tier-card__list--snapshot {
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
}
.tier-cards--snapshot .tier-card__list--snapshot li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}
.tier-cards--snapshot .tier-card__list--snapshot li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 1px;
  background: var(--accent);
}
.tier-cards--snapshot .tier-card__cta {
  margin-top: var(--s-5);
}

@media (max-width: 920px) {
  .home-audience { grid-template-columns: 1fr; }
}
