/* ================================================================
   NOT JUST 4 AI — SITE STYLESHEET
   Brand System v6 · retoken 2026-06-11 (locked tokens per BUILD_ADDENDUM.md)
   Palette: Charcoal #353431 (body) + #3d3d39 (card) + #2e2e2b (header)
          + Gold #deaa5e (primary) · #f0c989 (light) · #c9964d (dark)
   Type: Fraunces (display), Inter (body/UI), IBM Plex Mono (data)
   NOTE: gold rgba migrated 201,168,76 -> 222,170,94 site-wide; @import will move to per-page preconnect <link> in Phase 3 (perf).
================================================================ */


:root {
  --bg: #353431;
  --bg-card: #3d3d39;
  --bg-card-hover: #45443f;
  --bg-header: rgba(46, 46, 43, 0.94);
  --bg-footer: #2e2e2b;
  --gold: #deaa5e;
  --gold-light: #f0c989;
  --gold-dark: #c9964d;
  --gold-glow: #f4d39a;
  --gold-soft: rgba(222, 170, 94, 0.65);
  --gold-dim: rgba(222, 170, 94, 0.32);
  --gold-hairline: rgba(222, 170, 94, 0.16);
  --gold-glow-shadow: rgba(222, 170, 94, 0.24);
  --gold-border: rgba(222, 170, 94, 0.15);
  --gold-border-strong: rgba(222, 170, 94, 0.35);
  --rail: rgba(222, 170, 94, 0.6);
  --text: #dad6c3;
  --text-heading: #ebeae5;
  --text-primary: #dad6c3;
  /* Contrast on #353431 — RULE: --text-dim is DECORATIVE ONLY (separators / hairlines); it FAILS WCAG AA (2.8:1).
     Any text a user must read uses --text-muted (4.6:1, AA) or stronger. Do not assign --text-dim to body or label text. */
  --text-muted: #a09d90;
  --text-dim: #7a776c;
  --rule: rgba(222, 170, 94, 0.13);
  --radius: 6px;
  /* Family signature colours — restrained engine accents; charcoal + gold stay dominant */
  --ivory: #fbfaf7;
  --sig-compliancy: #1c3d2e;   /* pine green — provisional, confirm exact value */
  --sig-audit: #6e2b2b;        /* oxblood */
  --sig-adhubs: #1e34ad;       /* ink cobalt */
  --sig-myplusfactor: #c2674a; /* terracotta — provisional, confirm */
  --gold-gradient: linear-gradient(90deg, #c9964d, #deaa5e, #f0c989, #deaa5e, #c9964d);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
  --maxw: 1280px;
  --rail-w: 200px;
}

/* ---------------------------------------------------------------
   RESET + BASE
--------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(222, 170, 94, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(222, 170, 94, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.9 0 0 0 0 0.85 0 0 0 0 0.77 0 0 0 0.04 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.55;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
::selection { background: var(--gold); color: var(--bg); }

/* ---------------------------------------------------------------
   TYPOGRAPHY
--------------------------------------------------------------- */
.eyebrow, .mono {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow--muted { color: var(--text-muted); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-heading);
  font-weight: bold;
  letter-spacing: -0.01em;
  line-height: 1.08;
}
h1 { font-size: clamp(44px, 6.5vw, 88px); font-weight: bold; letter-spacing: -0.02em; }
h2 { font-size: clamp(32px, 4vw, 52px); }
h3 { font-size: clamp(22px, 2.2vw, 28px); font-weight: bold; }
h4 { font-size: 18px; font-weight: bold; }
.italic-gold { font-style: italic; color: var(--gold); font-weight: normal; }
p { color: var(--text); }
p + p { margin-top: 1em; }
strong { color: var(--text-heading); font-weight: bold; }

/* ---------------------------------------------------------------
   HEADER / NAV
--------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 68px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: var(--bg-header);
  border-bottom: 1px solid var(--gold-hairline);
  z-index: 100;
  display: flex;
  align-items: center;
}
.nav-inner {
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: bold;
  color: var(--text-heading);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand em { font-style: italic; color: var(--gold); font-weight: normal; }
.brand .bracket { color: var(--gold); font-weight: normal; padding: 0 2px; }
.nav-links {
  display: flex;
  gap: 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.nav-links a {
  transition: color 0.2s ease;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover, .nav-links a.is-current { color: var(--gold); border-bottom-color: var(--gold-dim); }
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  background: transparent;
  transition: all 0.25s ease;
  min-height: 44px;
  white-space: nowrap;
}
.cta-btn:hover { background: var(--gold); color: #111111; box-shadow: 0 0 24px var(--gold-glow-shadow); }
.cta-btn--solid { background: var(--gold); color: #111111; }
.cta-btn--solid:hover { background: transparent; color: var(--gold); }
.cta-btn--ghost { border-color: var(--gold-dim); color: var(--text); }
.cta-btn--ghost:hover { border-color: var(--gold); color: var(--gold); background: transparent; box-shadow: none; }

/* Hamburger toggle (button injected by site.js) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  border: 1px solid var(--gold-border-strong);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--gold); transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .site-header .cta-btn { margin-left: auto; }
  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg-header);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--gold-border-strong);
    padding: 8px 0;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }
  .site-header.menu-open .nav-links { display: flex !important; }
  .nav-links a { width: 100%; padding: 16px 28px; border-bottom: 1px solid var(--rule); font-size: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .nav-toggle span { transition: none; }
}

@media (max-width: 600px) {
  .nav-inner { padding: 0 16px; gap: 12px; }
  .brand { font-size: 18px; }
  .site-header .cta-btn { padding: 9px 14px; font-size: 11px; letter-spacing: 0.08em; }
  .site-header .cta-prefix { display: none; }
}

/* ---------------------------------------------------------------
   GOLD GRADIENT STRIPE — hero top accent per Brand System v5
--------------------------------------------------------------- */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  z-index: 10;
}

/* ---------------------------------------------------------------
   COORDINATE BAND — Abu Dhabi brand stamp (pre-hero)
--------------------------------------------------------------- */
.coord-band {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--gold-hairline);
  background: linear-gradient(
    180deg,
    rgba(222, 170, 94, 0.04) 0%,
    rgba(222, 170, 94, 0.015) 60%,
    transparent 100%
  );
  padding: 28px 0 30px;
  margin-top: 68px;
}
.coord-band__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.coord-band__mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  opacity: 0.95;
}
.coord-band__mark svg { width: 100%; height: 100%; display: block; }
.coord-band__mark circle,
.coord-band__mark line,
.coord-band__mark path,
.coord-band__mark polyline {
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.coord-band__mark .dot-fill { fill: var(--gold); stroke: none; }
.coord-band__coords {
  font-family: var(--font-mono);
  font-size: clamp(13px, 1.25vw, 16px);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  font-weight: 700;
  text-shadow: 0 0 16px rgba(222, 170, 94, 0.25);
}
.coord-band__coords .c-val { color: var(--gold-light); letter-spacing: 0.22em; }
.coord-band__coords .c-sep { color: var(--gold); opacity: 0.45; font-size: 0.85em; }
.coord-band__coords .c-loc { color: var(--text-muted); font-size: 0.78em; letter-spacing: 0.22em; }
.coord-band__rule {
  flex: 1 1 120px;
  max-width: 160px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-dim) 50%, transparent 100%);
  min-width: 40px;
}
@media (max-width: 680px) {
  .coord-band { padding: 20px 0 22px; }
  .coord-band__inner { gap: 14px; }
  .coord-band__rule { display: none; }
  .coord-band__coords { gap: 10px; font-size: 12px; letter-spacing: 0.22em; }
  .coord-band__mark { width: 28px; height: 28px; }
}

/* ---------------------------------------------------------------
   MAIN FLOW — gold timeline rail on the left
--------------------------------------------------------------- */
.main { position: relative; z-index: 1; padding-top: 0; }
.flow { position: relative; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.flow::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(28px + 48px);
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--gold-dim) 4%,
    var(--gold) 8%,
    var(--gold) 92%,
    var(--gold-dim) 96%,
    transparent 100%
  );
  box-shadow: 0 0 12px var(--gold-glow-shadow);
  z-index: 1;
}

.section {
  position: relative;
  display: grid;
  grid-template-columns: var(--rail-w) 1fr;
  gap: 0;
  padding: 120px 0 60px;
  min-height: 400px;
}
.rail-area { position: relative; }
.rail-area::before {
  content: '';
  position: absolute;
  top: 108px;
  left: 34px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow:
    0 0 0 5px var(--bg),
    0 0 0 6px var(--gold-dim),
    0 0 28px var(--gold),
    0 0 42px var(--gold-glow-shadow);
  z-index: 3;
  animation: dotPulse 3.2s ease-in-out infinite;
}
.rail-area::after {
  content: '';
  position: absolute;
  top: 116px;
  left: 62px;
  width: 18px;
  height: 2px;
  background: linear-gradient(to right, var(--gold) 0%, transparent 100%);
  z-index: 2;
  opacity: 0.6;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 5px var(--bg), 0 0 0 6px var(--gold-dim), 0 0 28px var(--gold), 0 0 42px var(--gold-glow-shadow); }
  50%      { box-shadow: 0 0 0 5px var(--bg), 0 0 0 7px var(--gold),     0 0 36px var(--gold), 0 0 56px var(--gold-glow-shadow); }
}
.sticky-msg {
  position: sticky;
  top: 120px;
  padding: 128px 28px 0 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.35;
  color: var(--gold-light);
  font-weight: bold;
  text-align: right;
  opacity: 1;
  letter-spacing: -0.005em;
  text-shadow: 0 0 22px rgba(222, 170, 94, 0.35);
}
.sticky-msg .sub {
  color: var(--gold);
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  margin-top: 14px;
  opacity: 0.75;
}
.content { padding-left: 56px; min-width: 0; }

/* ---------------------------------------------------------------
   HERO
--------------------------------------------------------------- */
.hero {
  padding: 96px 0 40px;
  display: grid;
  grid-template-columns: var(--rail-w) 1fr;
  position: relative;
}
.hero .rail-area::before { top: 84px; }
.hero .rail-area::after { top: 92px; }
.hero .content {
  padding-left: 56px;
  border-left: 1px solid var(--gold-hairline);
  padding-top: 96px;
  margin-top: -96px;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  flex-wrap: wrap;
}
.hero__eyebrow span.dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold); }
.hero__eyebrow span.sep { color: var(--text-dim); }
.hero__eyebrow span.muted { color: var(--text-muted); }
.hero h1 { margin-bottom: 28px; max-width: 16ch; }
.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--text);
  max-width: 56ch;
  margin-bottom: 44px;
  font-weight: 400;
}
.hero__sub em { font-style: italic; color: var(--gold); font-weight: bold; }
.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.hero__meta {
  margin-top: 64px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}
.hero__meta span.tag { color: var(--gold); }

/* ---------------------------------------------------------------
   TRUST BAR
--------------------------------------------------------------- */
.trust { padding: 40px 0; display: grid; grid-template-columns: var(--rail-w) 1fr; }
.trust .rail-area::before { display: none; }
.trust-strip {
  padding: 22px 40px;
  border: 1px solid var(--gold-hairline);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-left: 56px;
}
.trust-strip__lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.trust-strip__items {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.trust-strip__items span.gold { color: var(--gold); }
.trust-strip__items span.sep { color: var(--text-dim); opacity: 0.4; }
.trust-strip__items a { transition: color 0.2s; }
.trust-strip__items a:hover { color: var(--gold); }

/* ---------------------------------------------------------------
   BUILD BADGE / SECTION HEADER
--------------------------------------------------------------- */
.build-badge {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gold-hairline);
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.build-badge__title h2 { margin-bottom: 8px; }
.build-badge__title .eyebrow { margin-bottom: 14px; display: block; }
.build-badge__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: right;
}
.build-badge__meta .v { color: var(--gold); }

/* ---------------------------------------------------------------
   PROOF / LETTER BREAKDOWN
--------------------------------------------------------------- */
.proof-layout {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 48px;
  margin-top: 40px;
}
.proof-letters {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 120px;
  align-self: start;
  padding-top: 8px;
}
.proof-letters__item {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text-muted);
  padding: 10px 0 10px 14px;
  font-weight: normal;
  transition: all 0.35s ease;
  letter-spacing: 0.08em;
  border-left: 2px solid transparent;
}
.proof-letters__item.active {
  font-size: 48px;
  font-weight: bold;
  color: var(--gold);
  border-left-color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  font-style: italic;
}
.proof-stack { display: flex; flex-direction: column; gap: 32px; }
.proof-card {
  padding: 28px 32px;
  border: 1px solid var(--gold-hairline);
  background: var(--bg-card);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.proof-card:hover { border-color: var(--gold-dim); transform: translateY(-2px); }
.proof-card__head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}
.proof-card__letter {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: bold;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
}
.proof-card__title h3 { color: var(--text-heading); }
.proof-card__title .mono { display: block; color: var(--text-muted); margin-top: 4px; font-size: 10px; }
.proof-card__body { color: var(--text); margin-bottom: 14px; }
.proof-card__points {
  display: grid;
  gap: 8px;
  list-style: none;
}
.proof-card__points li {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.proof-card__points li::before { content: '\2014'; position: absolute; left: 0; color: var(--gold); }

/* ---------------------------------------------------------------
   DEEP SECTION — for the framework sub-pages
--------------------------------------------------------------- */
.letter-deep {
  padding: 120px 0 60px;
  display: grid;
  grid-template-columns: var(--rail-w) 1fr;
  scroll-margin-top: 80px;
}
.letter-deep__head {
  margin-bottom: 32px;
  display: flex;
  align-items: flex-end;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gold-hairline);
}
.letter-deep__letter {
  font-family: var(--font-display);
  font-size: clamp(88px, 10vw, 140px);
  line-height: 0.85;
  font-style: italic;
  font-weight: bold;
  color: var(--gold);
  letter-spacing: -0.03em;
}
.letter-deep__titleblock .eyebrow { display: block; margin-bottom: 10px; }
.letter-deep__titleblock h2 { font-size: clamp(32px, 4.5vw, 56px); }
.letter-deep__lede {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--text);
  margin: 0 0 32px;
  max-width: 64ch;
  font-weight: 400;
}
.letter-deep__lede em { color: var(--gold); font-style: italic; font-weight: bold; }

.deep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--gold-hairline);
  border: 1px solid var(--gold-hairline);
  margin-top: 24px;
}
.deep-block {
  background: var(--bg-card);
  padding: 28px 28px 24px;
}
.deep-block h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.deep-block ul { list-style: none; display: grid; gap: 10px; }
.deep-block ul li {
  font-size: 14px;
  color: var(--text);
  padding-left: 22px;
  position: relative;
  line-height: 1.55;
}
.deep-block ul li::before { content: '\2014'; position: absolute; left: 0; color: var(--gold); }
.deep-block .mono-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  padding: 4px 10px;
  border: 1px solid var(--rule);
  margin-right: 6px;
  margin-bottom: 6px;
}
@media (max-width: 780px) {
  .deep-grid { grid-template-columns: 1fr; }
  .letter-deep__head { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ---------------------------------------------------------------
   COMMITMENTS GRID
--------------------------------------------------------------- */
.commit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--gold-hairline);
  border: 1px solid var(--gold-hairline);
}
.commit {
  background: var(--bg-card);
  padding: 36px 32px;
  transition: background 0.3s ease;
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}
.commit:hover { background: var(--bg-card-hover); }
.commit__num {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 14px;
}
.commit h3 { color: var(--text-heading); margin-bottom: 12px; font-size: 22px; }
.commit p { color: var(--text); font-size: 15px; margin-bottom: 18px; }
.commit__quote {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
}
@media (max-width: 780px) { .commit-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------
   SEVEN DELIVERABLES PREVIEW (homepage)
--------------------------------------------------------------- */
.deliv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--gold-hairline);
  border: 1px solid var(--gold-hairline);
}
.deliv-card {
  background: var(--bg-card);
  padding: 28px 24px;
  transition: background 0.3s ease;
  display: flex;
  flex-direction: column;
}
.deliv-card:hover { background: var(--bg-card-hover); }
.deliv-card__num {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 10px;
}
.deliv-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.25;
}
.deliv-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}

/* Engine signature accents — restrained: a top hairline + a swatch identify the engine.
   Gold stays the family thread; charcoal stays the ground. Mother brand carries no signature. */
.deliv-card--eng { border-top: 3px solid var(--sig, var(--gold-hairline)); }
.eng-dot {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  margin-right: 12px;
  vertical-align: middle;
  position: relative;
  top: -2px;
  background: var(--sig, var(--gold));
  border: 1px solid rgba(251, 250, 247, 0.16);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.12);
}
.deliv-card--compliancy   { --sig: var(--sig-compliancy); }
.deliv-card--audit        { --sig: var(--sig-audit); }
.deliv-card--adhubs       { --sig: var(--sig-adhubs); }
.deliv-card--myplusfactor { --sig: var(--sig-myplusfactor); }

/* Framed section label + fixed 2-col grid */
.framed-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border-strong);
  padding: 7px 14px;
  border-radius: var(--radius);
}
.deliv-grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 680px) { .deliv-grid--2 { grid-template-columns: 1fr; } }

/* Engine outcome — one crisp value line under each name; shown on mobile in
   place of the fuller description so each engine stays scannable on a phone. */
.eng-outcome { display: none; }
@media (max-width: 680px) {
  .deliv-card--eng .eng-outcome {
    display: block;
    flex: 0 0 auto;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-heading);
  }
  .deliv-card--eng > p:not(.eng-outcome) { display: none; }
}

/* ---------------------------------------------------------------
   PRICING TABLE
--------------------------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gold-hairline);
  border: 1px solid var(--gold-hairline);
}
.pricing-card {
  background: var(--bg-card);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-card--featured {
  border-top: 3px solid var(--gold);
}
.pricing-card--featured::after {
  content: 'RECOMMENDED';
  position: absolute;
  top: -3px;
  right: 20px;
  transform: translateY(-100%);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #111111;
  background: var(--gold);
  padding: 4px 12px;
}
.pricing-card__tier {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.pricing-card__price {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: bold;
  color: var(--text-heading);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card__period {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.pricing-card__desc {
  font-size: 15px;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.pricing-card__features {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}
.pricing-card__features li {
  font-size: 14px;
  color: var(--text);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.pricing-card__features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}
.pricing-card__fit {
  font-size: 0.82rem;
  color: var(--gold);
  font-family: var(--font-body);
  font-style: italic;
  margin: 0 0 12px;
  padding: 0;
}
.pricing-card__proof {
  display: inline-block;
  font-size: 0.72rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bg);
  background: var(--gold);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
  font-weight: bold;
}
.pricing-card .cta-btn { width: 100%; justify-content: center; }
@media (max-width: 860px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------
   COMPARISON TABLE
--------------------------------------------------------------- */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--gold-hairline);
  margin-top: 24px;
}
.compare-table th,
.compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--rule);
  font-size: 14px;
  vertical-align: top;
}
.compare-table thead th {
  background: rgba(0,0,0,0.15);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-hairline);
}
.compare-table tbody tr { background: var(--bg-card); }
.compare-table tbody tr:hover { background: var(--bg-card-hover); }
.compare-table td:first-child {
  font-weight: bold;
  color: var(--text-heading);
  min-width: 200px;
}
.compare-table .check { color: var(--gold); font-weight: bold; }
.compare-table .miss { color: var(--text-muted); }

/* ---------------------------------------------------------------
   FAQ
--------------------------------------------------------------- */
.faq-list { display: grid; gap: 1px; background: var(--gold-hairline); border: 1px solid var(--gold-hairline); margin-top: 24px; }
.faq-item { background: var(--bg-card); padding: 24px 28px; }
.faq-item summary {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: bold;
  color: var(--text-heading);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  max-width: 72ch;
}

/* ---------------------------------------------------------------
   VERDICT CARD
--------------------------------------------------------------- */
.verdict {
  margin-top: 48px;
  padding: 40px 36px;
  border: 2px solid var(--gold);
  background: var(--bg-card);
  position: relative;
}
.verdict::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-gradient);
}
.verdict h3 {
  font-size: 28px;
  margin-bottom: 16px;
}
.verdict p {
  font-size: 16px;
  line-height: 1.65;
  max-width: 64ch;
}

/* ---------------------------------------------------------------
   FOUNDER BLOCK
--------------------------------------------------------------- */
.founder {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.founder__photo {
  position: relative;
  border: 1px solid var(--gold-hairline);
  padding: 10px;
  background: var(--bg-card);
}
.founder__photo::before, .founder__photo::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid var(--gold);
}
.founder__photo::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.founder__photo::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.founder__photo img { width: 100%; height: auto; display: block; filter: contrast(1.04) brightness(0.98); }
.founder__caption {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  margin-top: 14px;
  line-height: 1.5;
  padding: 0 10px;
}
.founder__voice {
  padding: 24px 28px;
  border: 1px solid var(--gold-hairline);
  border-left: 2px solid var(--gold);
  background: var(--bg-card);
  margin-bottom: 28px;
}
.founder__voice p { font-size: 17px; line-height: 1.65; color: var(--text); font-weight: 400; }
.founder__voice p + p { margin-top: 1em; }
.founder__voice em { font-style: italic; color: var(--gold); font-weight: bold; }
.founder__sig {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.founder__sig strong { color: var(--gold); font-weight: 700; }
.founder__creds {
  list-style: none;
  display: grid;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.founder__creds li {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  padding-left: 22px;
  position: relative;
  line-height: 1.55;
}
.founder__creds li::before { content: '\2014'; position: absolute; left: 0; color: var(--gold); }
@media (max-width: 900px) { .founder { grid-template-columns: 1fr; gap: 32px; } }

/* ---------------------------------------------------------------
   LICENCE / SPEC TABLE
--------------------------------------------------------------- */
.spec-table {
  border: 1px solid var(--gold-hairline);
  background: var(--bg-card);
  margin-top: 16px;
}
.spec-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--rule);
}
.spec-row:last-child { border-bottom: none; }
.spec-row__lbl {
  padding: 18px 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border-right: 1px solid var(--rule);
  background: rgba(0,0,0,0.08);
}
.spec-row__val {
  padding: 18px 24px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.55;
}
.spec-row__val strong { color: var(--text-heading); font-weight: bold; }
@media (max-width: 780px) {
  .spec-row { grid-template-columns: 1fr; }
  .spec-row__lbl { border-right: none; border-bottom: 1px solid var(--rule); padding: 12px 18px; }
  .spec-row__val { padding: 14px 18px; }
}

/* ---------------------------------------------------------------
   CTA BAND
--------------------------------------------------------------- */
.cta-band {
  margin-top: 60px;
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid var(--gold-hairline);
  border-bottom: 1px solid var(--gold-hairline);
  background: linear-gradient(180deg, transparent 0%, rgba(222, 170, 94, 0.045) 50%, transparent 100%);
}
.cta-band .eyebrow { display: block; margin-bottom: 24px; }
.cta-band h2 { max-width: 22ch; margin: 0 auto 32px; font-size: clamp(28px, 4vw, 44px); }
.cta-band h2 em { font-style: italic; color: var(--gold); font-weight: normal; }
.cta-band p { max-width: 52ch; margin: 0 auto 28px; color: var(--text-muted); font-size: 15px; line-height: 1.6; }
.cta-band__ctas { display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ---------------------------------------------------------------
   FOOTER
--------------------------------------------------------------- */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--gold-hairline);
  padding: 60px 28px 32px;
  background: var(--bg-footer);
}
.footer-inner { max-width: var(--maxw); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col .brand { display: block; margin-bottom: 16px; }
.footer-col p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col ul a { font-size: 13px; color: var(--text-muted); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-trust {
  padding: 20px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.footer-trust span.gold { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom__links { display: flex; gap: 20px; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }

/* ---------------------------------------------------------------
   SCROLL REVEAL
--------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 80ms; }
.d2 { transition-delay: 160ms; }
.d3 { transition-delay: 240ms; }
.d4 { transition-delay: 320ms; }
.d5 { transition-delay: 400ms; }
.d6 { transition-delay: 480ms; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal.in { opacity: 1; transform: none; transition: none; }
  .rail-area::before { animation: none; }
}

/* ---------------------------------------------------------------
   ABOUT-PAGE UTILITIES
--------------------------------------------------------------- */
.sec-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: bold;
  line-height: 1.15;
  color: var(--text-heading);
  margin-top: 8px;
  margin-bottom: 28px;
  max-width: 26ch;
  letter-spacing: -0.01em;
}
.sec-title em { font-style: italic; color: var(--gold); font-weight: normal; }

.build-badge__num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  padding: 4px 10px;
  border: 1px solid var(--gold-hairline);
  margin-right: 12px;
  vertical-align: middle;
}
.build-badge__lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
  vertical-align: middle;
}
.build-badge > .build-badge__num + .build-badge__lbl { display: inline-block; }

.commit-card {
  background: var(--bg-card);
  padding: 36px 32px;
  transition: background 0.3s ease;
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}
.commit-card:hover { background: var(--bg-card-hover); }
.commit-card__num {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 14px;
}
.commit-card__title {
  color: var(--text-heading);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: -0.005em;
}
.commit-card__title em { font-style: italic; color: var(--gold); font-weight: normal; }
.commit-card__body { color: var(--text); font-size: 15px; line-height: 1.6; margin-bottom: 18px; }
.commit-card__body em { font-style: italic; color: var(--gold); font-weight: bold; }
.commit-card__foot {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}

.mono-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  padding: 4px 10px;
  border: 1px solid var(--rule);
  margin-right: 6px;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.mono-tag a { color: var(--gold); text-decoration: none; }

@media (max-width: 780px) {
  .commit-card { padding: 28px 22px; min-height: auto; }
  .sec-title { font-size: clamp(24px, 7vw, 32px); max-width: 100%; }
}

/* ---------------------------------------------------------------
   MOBILE — collapse rail
--------------------------------------------------------------- */
@media (max-width: 860px) {
  .flow::before { display: none; }
  .section, .hero, .trust, .letter-deep { grid-template-columns: 1fr; }
  .hero .content, .content, .trust-strip { padding-left: 0; margin-left: 0; border-left: none; }
  .rail-area { display: none; }
  .sticky-msg {
    position: static;
    padding: 14px 18px;
    text-align: left;
    border-left: 2px solid var(--gold);
    background: var(--bg-card);
    margin-bottom: 24px;
  }
  .hero { padding: 56px 0 24px; }
  .section, .letter-deep { padding: 72px 0 32px; min-height: auto; }
  .proof-layout { grid-template-columns: 1fr; gap: 16px; }
  .proof-letters { position: static; flex-direction: row; gap: 8px; padding-top: 0; flex-wrap: wrap; }
  .proof-letters__item { font-size: 18px; padding: 8px 10px; border-left: none; border-bottom: 2px solid transparent; }
  .proof-letters__item.active { font-size: 28px; border-bottom-color: var(--gold); border-left: none; padding-left: 10px; }
  h1 { font-size: clamp(36px, 9vw, 52px); }
  .trust-strip { padding: 18px 20px; flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ---------------------------------------------------------------
   INTAKE FORM
--------------------------------------------------------------- */
.intake-form {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}
.intake-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 600px) { .intake-form__row { grid-template-columns: 1fr; } }
.intake-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.intake-field label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.intake-field input,
.intake-field select,
.intake-field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--gold-hairline);
  color: var(--text-heading);
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.intake-field input:focus,
.intake-field select:focus,
.intake-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold-dim);
}
.intake-field input::placeholder,
.intake-field textarea::placeholder {
  color: var(--text-muted);
}
.intake-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8'><polyline points='1,1 6,6 11,1' fill='none' stroke='%23a09d90' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.intake-field select option {
  background: var(--bg-card);
  color: var(--text);
}
.intake-field textarea {
  resize: vertical;
  min-height: 80px;
}
.intake-form .cta-btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}
.intake-form__note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
}

/* ---------------------------------------------------------------
   PROCESS STEPS — "What happens next"
--------------------------------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gold-hairline);
  border: 1px solid var(--gold-hairline);
  margin-top: 24px;
}
@media (max-width: 780px) { .process-grid { grid-template-columns: 1fr; } }
.process-step {
  background: var(--bg-card);
  padding: 36px 28px;
  position: relative;
}
.process-step__num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: bold;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}
.process-step h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.process-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}
.process-step__time {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  margin-top: auto;
}

/* ---------------------------------------------------------------
   PROOF BAR — trust signals inline
--------------------------------------------------------------- */
.proof-bar {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 20px 0;
  margin-top: 24px;
  border-top: 1px solid var(--rule);
}
.proof-bar__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.proof-bar__label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.proof-bar__value {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: bold;
  color: var(--gold);
}

/* ---------------------------------------------------------------
   SAMPLE DELIVERABLE PREVIEW
--------------------------------------------------------------- */
.sample-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  background: var(--gold-hairline);
  border: 1px solid var(--gold-hairline);
  margin-top: 24px;
}
.sample-card {
  background: var(--bg-card);
  padding: 28px 24px;
}
.sample-card__icon {
  font-family: var(--font-display);
  font-size: 32px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 12px;
}
.sample-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
}
.sample-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}
.sample-card__foot {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  text-transform: uppercase;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}
