/* ============================================================
   Delta Hub Media — style.css v7 (OPERATOR-GRADE, global)
   Palette: Obsidian #2B2926 · Carbon #383430 · Gold #CC942E /
            Gold-lt #E8C070 · Bone #F5F2EA · Ash #9A958A
   Type:    display "Bricolage Grotesque" · body "Geist" ·
            labels/stats "Geist Mono"
   Signature: gold hairline frames · machined corner ticks ·
            mono status labels (● SYSTEM ONLINE)
   v7: operator-grade system promoted from the homepage into the
       SHARED stylesheet so every page inherits it.
   ============================================================ */

/* Fonts imported here so all 52 pages get the full type system
   (incl. Bricolage Grotesque) without editing each <head>. */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Geist:wght@300;400;500;600;700;800;900&family=Geist+Mono:wght@400;500;600&display=swap');

/* ── Reset & base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Geist', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

/* ── CSS Variables — OPERATOR-GRADE palette ─────────────────────
   Redefining these tokens cascades the operator look through the
   entire stylesheet and every page that uses var(--gold) etc. */
:root {
  /* surfaces */
  --bg:        #2B2926;   /* Obsidian */
  --bg-2:      #322F2B;   /* deep carbon */
  --surface:   #383430;   /* Carbon */
  --surface-2: #403C37;
  --surface-3: #48433D;
  /* accent — gold only */
  --gold:      #CC942E;
  --gold-2:    #E8C070;   /* Gold-lt */
  --gold-dk:   #8A6320;
  --gold-glow: rgba(200,144,42,0.32);
  /* text */
  --text:      #F5F2EA;   /* Bone */
  --text-2:    #B6B1A6;   /* Ash */
  --text-3:    #B5B0A6;
  /* lines */
  --border:    rgba(200,144,42,0.26);
  --border-sub:rgba(245,242,234,0.09);
  --op-line:   rgba(200,144,42,0.26);
  --op-line-soft: rgba(200,144,42,0.14);
  /* fonts */
  --font-display:'Bricolage Grotesque','Geist',system-ui,sans-serif;
  --font-body:   'Geist',system-ui,-apple-system,sans-serif;
  --font-mono:   'Geist Mono',ui-monospace,monospace;
  --nav-h:     68px;
}

/* ── Typography scale ───────────────────────────────────────── */
.h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.035em;
  color: var(--text);
}
.h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.025em;
  color: var(--text);
}
.lede {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-2);
  line-height: 1.7;
  max-width: 54ch;
}
.kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.accent       { color: var(--gold); }
.accent-gold2 { color: var(--gold-2); }
.eyebrow {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1.4rem;
}
.eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 var(--gold-glow); }
  50%      { box-shadow: 0 0 0 6px transparent; }
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 600;
  padding: .75rem 1.6rem;
  transition: background .2s, color .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: var(--gold);
  color: #2B2926;
}
.btn--primary:hover {
  background: var(--gold-2);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,146,42,.4);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}
.btn--lg { padding: .9rem 2rem; font-size: 1rem; }

/* ── Boot screen ────────────────────────────────────────────── */
.boot {
  position: fixed;
  inset: 0;
  background: #2B2926;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .4s ease, visibility .4s;
}
.boot.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.boot__mark { animation: bootSpin .6s ease forwards; }
@keyframes bootSpin {
  from { transform: scale(.5) rotate(-20deg); opacity: 0; }
  to   { transform: scale(1) rotate(0); opacity: 1; }
}

/* ── Grain overlay ──────────────────────────────────────────── */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  z-index: 100;
  background: rgba(10,10,10,.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-sub);
  transition: background .3s;
}
.nav.scrolled { background: rgba(10,10,10,.95); }
.nav__logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-shrink: 0;
}
.nav__logo .logo-mark {
  width: 52px;
  height: auto;
  object-fit: contain;
}
.nav__logo .logo-name {
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.1;
}
.nav__logo .logo-tag {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color .2s;
}
.nav__links a:hover { color: var(--text); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--gold);
  color: #2B2926;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 700;
  padding: .5rem 1.2rem;
  transition: background .2s, transform .15s;
}
.nav__cta:hover { background: var(--gold-2); transform: translateY(-1px); }

/* ── Section scaffolding ────────────────────────────────────── */
.page-section { padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 5vw, 3rem); }
.section-head {
  max-width: 780px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  text-align: center;
}
.section-head--dark { color: var(--text); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}
.hero__stage {
  position: relative;
  width: 100%;
  padding: calc(var(--nav-h) + 0.5rem) clamp(1.5rem, 5vw, 3rem) 2rem;
}
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
/* Atmospheric blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: blobFade 1.2s forwards;
}
.blob--deep  { width: 60vw; height: 60vw; background: radial-gradient(circle, rgba(201,146,42,.07) 0%, transparent 70%); top: -20%; left: -10%; animation-delay: .1s; }
.blob--amber { width: 45vw; height: 45vw; background: radial-gradient(circle, rgba(201,146,42,.14) 0%, transparent 70%); top: -10%; right: -5%; animation-delay: .3s; }
.blob--glow  { width: 30vw; height: 30vw; background: radial-gradient(circle, rgba(232,184,80,.10) 0%, transparent 70%); bottom: 10%; left: 20%; animation-delay: .5s; }
.blob--warm  { width: 35vw; height: 35vw; background: radial-gradient(circle, rgba(201,146,42,.06) 0%, transparent 70%); top: 30%; right: 10%; animation-delay: .4s; }
@keyframes blobFade { to { opacity: 1; } }
.grid-lines {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  color: rgba(201,146,42,.05);
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.hero__copy { max-width: 580px; }
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.hero__trust {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-sub);
}
.hero__trust div { display: flex; flex-direction: column; gap: .15rem; }
.hero__trust strong { font-size: 1.3rem; font-weight: 800; color: var(--gold); }
.hero__trust span  { font-size: .75rem; color: var(--text-3); letter-spacing: .04em; }

/* ── Hero Mock ──────────────────────────────────────────────── */
.hero__mock {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mock {
  width: 100%;
  max-width: 520px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.6), 0 0 0 1px var(--border);
  animation: mockRise .8s cubic-bezier(.4,0,.2,1) .4s both;
}
@keyframes mockRise {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.mock__chrome {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1rem;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border-sub);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.d1 { background: #FF5C58; }
.d2 { background: #FDBC40; }
.d3 { background: #34C749; }
.mock__url {
  font-size: .72rem;
  color: var(--text-3);
  font-family: 'Geist Mono', monospace;
  margin-left: .5rem;
}
.mock__body {
  display: flex;
  min-height: 280px;
}
.mock__side {
  width: 130px;
  background: var(--bg-2);
  padding: 1rem .75rem;
  border-right: 1px solid var(--border-sub);
  flex-shrink: 0;
}
.mock__brand {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
}
.mock__brand-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
}
.mock__nav { display: flex; flex-direction: column; gap: .3rem; }
.mock__nav-item {
  font-size: .7rem;
  color: var(--text-3);
  padding: .3rem .5rem;
  border-radius: 4px;
  transition: background .15s, color .15s;
}
.mock__nav-item.is-active {
  background: rgba(201,146,42,.15);
  color: var(--gold);
}
.mock__main {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.mock__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mock__head h4 { font-size: .78rem; font-weight: 600; color: var(--text); }
.pill {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .65rem;
  font-weight: 600;
  background: rgba(201,146,42,.15);
  color: var(--gold);
  border: 1px solid rgba(201,146,42,.3);
  padding: .2rem .6rem;
  border-radius: 100px;
}
.pill__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
.mock__cards { display: flex; flex-direction: column; gap: .5rem; }
.mcard {
  background: var(--surface-2);
  border-radius: 8px;
  padding: .55rem .75rem;
  border: 1px solid var(--border-sub);
}
.mcard--gold   { border-color: rgba(201,146,42,.4); }
.mcard--amber  { border-color: rgba(232,184,80,.3); }
.mcard--mix    { border-color: rgba(139,104,32,.4); }
.mcard__top    { display: flex; justify-content: space-between; align-items: center; margin-bottom: .35rem; }
.mcard__title  { font-size: .7rem; font-weight: 600; color: var(--text); }
.mcard__meta   { font-size: .6rem; color: var(--text-3); font-family: 'Geist Mono', monospace; }
.mcard__bar    { height: 3px; background: rgba(255,255,255,.08); border-radius: 2px; overflow: hidden; margin-bottom: .35rem; }
.mcard__bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--gold-dk), var(--gold)); border-radius: 2px; }
.mcard__foot   { display: flex; justify-content: space-between; font-size: .65rem; color: var(--text-3); }
.up            { color: #4ADE80; }
.down          { color: #F87171; }
.mock__chart   { margin-top: .25rem; }
.mock__float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 600;
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .35rem .75rem;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  animation: floatPop .6s cubic-bezier(.4,0,.2,1) both;
}
.mock__float svg { color: var(--gold); }
.mock__float--1 { bottom: -1rem; left: -1.5rem; animation-delay: .8s; }
.mock__float--2 { top: -0.5rem; right: -1rem; animation-delay: 1s; }
@keyframes floatPop {
  from { transform: scale(.7); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* ── Kinetic marquee ────────────────────────────────────────── */
.kinetic {
  overflow: hidden;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-sub);
  border-bottom: 1px solid var(--border-sub);
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.kinetic__row { display: flex; overflow: hidden; }
.kinetic__track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marqueeL 28s linear infinite;
  flex-shrink: 0;
}
.kinetic__row--b .kinetic__track { animation-name: marqueeR; animation-duration: 22s; }
.kinetic__track span {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  padding: .25rem 1.2rem;
  color: var(--text);
  letter-spacing: .02em;
}
.kinetic__track span.is-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold-dk);
}
.kinetic__sep { color: var(--gold) !important; padding: .25rem .4rem !important; }
@keyframes marqueeL { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marqueeR { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* ── Logos / stack strip ────────────────────────────────────── */
.logos {
  padding: 2.5rem clamp(1.5rem, 5vw, 3rem);
  border-bottom: 1px solid var(--border-sub);
  background: var(--bg);
}
.logos__label {
  text-align: center;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1.25rem;
}
.logos__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 2.5rem;
}
.logos__row span {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: .04em;
  opacity: .7;
  transition: opacity .2s, color .2s;
}
.logos__row span:hover { opacity: 1; color: var(--gold); }

/* ── Proof band ─────────────────────────────────────────────── */
.proof {
  padding: 3.5rem clamp(1.5rem, 5vw, 3rem);
  background: var(--surface);
  border-bottom: 1px solid var(--border-sub);
}
.proof__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.proof__stat { text-align: center; }
.proof__num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .35rem;
}
.proof__unit {
  font-size: .7em;
  font-weight: 500;
  color: var(--text-3);
}
.proof__lbl { font-size: .8rem; color: var(--text-3); line-height: 1.4; }

/* ── Image band ─────────────────────────────────────────────── */
.imgband {
  position: relative;
  height: 120px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--surface) 100%);
}
.imgband--tall { height: 160px; }
.imgband img { width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.imgband__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201,146,42,.08) 0%, rgba(10,10,10,.7) 100%);
}
.imgband__kicker {
  font-size: clamp(.65rem, 1.2vw, .8rem);
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-2);
  opacity: .8;
}

/* ── Glimpse cards ──────────────────────────────────────────── */
.glimpse { padding: clamp(3rem,5vw,5rem) clamp(1.5rem,5vw,3rem); background: var(--bg); }
.glimpse__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.25rem;
}
.glimpse__card {
  background: var(--surface);
  border: 1px solid var(--border-sub);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.glimpse__card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0,0,0,.45);
}
.glimpse__card--wide { grid-column: 1; grid-row: 1 / span 2; }
.glimpse__stack { display: flex; flex-direction: column; gap: 1.25rem; }
.glimpse__stack .glimpse__card { flex: 1; }
.glimpse__tag {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 1.1rem 1.4rem .5rem;
}
.glimpse__art {
  width: 100%;
  flex: 1;
  min-height: 0;
  display: block;
}
.glimpse__card--wide .glimpse__art { height: 320px; flex: none; }
.glimpse__card:not(.glimpse__card--wide) .glimpse__art { height: 180px; flex: none; }
.glimpse__body { padding: 1.25rem 1.4rem 1.5rem; }
.glimpse__body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .45rem; color: var(--text); }
.glimpse__body p  { font-size: .85rem; color: var(--text-2); line-height: 1.65; }
@media(max-width: 800px) {
  .glimpse__grid { grid-template-columns: 1fr; }
  .glimpse__card--wide { grid-column: 1; grid-row: auto; }
  .glimpse__card--wide .glimpse__art { height: 220px; }
  .glimpse__stack { display: contents; }
}

/* ── Services / Work grid ───────────────────────────────────── */
.work { padding: clamp(3rem,5vw,5rem) clamp(1.5rem,5vw,3rem); background: var(--bg-2); }
.work__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 960px) { .work__grid { grid-template-columns: repeat(2, 1fr); } }
.card {
  background: var(--surface);
  border: 1px solid var(--border-sub);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  position: relative;
  overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.card--featured {
  border-color: rgba(201,146,42,.35);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(22,18,12,.95) 100%);
}
.card--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(201,146,42,.12) 0%, transparent 60%);
  pointer-events: none;
}
.card__ico {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(201,146,42,.12);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.card__num { font-size: .65rem; font-weight: 700; letter-spacing: .1em; color: var(--text-3); }
.card__badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,146,42,.15);
  border: 1px solid var(--border);
  padding: .2rem .55rem;
  border-radius: 100px;
}
.card h3 { font-size: 1.2rem; font-weight: 700; color: var(--text); margin-top: .25rem; }
.card p   { font-size: .9rem; color: var(--text-2); line-height: 1.65; }
.card__list {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.card__list li {
  font-size: .82rem;
  color: var(--text-3);
  padding-left: 1rem;
  position: relative;
}
.card__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .75rem;
}
.card__graphic {
  margin-top: auto;
  width: 100%;
  height: 70px;
  opacity: .8;
}
.card__link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: .25rem;
  transition: gap .15s;
}
.card__link:hover { gap: .6rem; }

/* ── Feature case study ─────────────────────────────────────── */
.feature-case { padding: clamp(3rem,5vw,5rem) clamp(1.5rem,5vw,3rem); background: var(--bg); }
.feature-case__card {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(2rem, 5vw, 4rem);
  transition: border-color .25s;
}
.feature-case__card:hover { border-color: var(--gold); }
.feature-case__left .kicker { display: block; }
.feature-case__lede { font-size: .95rem; color: var(--text-2); line-height: 1.7; margin-top: 1rem; }
.feature-case__stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-sub);
}
.feature-case__stats div {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.feature-case__stats strong { font-size: 1.3rem; font-weight: 800; color: var(--gold); }
.feature-case__stats span  { font-size: .75rem; color: var(--text-3); }
.feature-case__cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 1.5rem;
  transition: gap .15s;
}
.feature-case__cta:hover { gap: .7rem; }
.feature-case__right svg { width: 100%; height: auto; }

/* ── More cases ─────────────────────────────────────────────── */
.more-cases { padding: clamp(3.5rem,7vw,6rem) clamp(1.5rem,5vw,3rem); background: var(--bg-2); }
.more-cases__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.mini-case {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  background: var(--surface);
  border: 1px solid var(--border-sub);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color .25s, transform .25s;
}
.mini-case:hover { border-color: var(--border); transform: translateY(-2px); }
.mini-case--wide { grid-column: 1 / -1; }
.mini-case__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mini-case__tag {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,146,42,.12);
  border: 1px solid var(--border);
  padding: .2rem .6rem;
  border-radius: 100px;
}
.mini-case__date { font-size: .72rem; color: var(--text-3); }
.mini-case__h    { font-size: 1.05rem; font-weight: 700; color: var(--text); line-height: 1.3; }
.mini-case__p    { font-size: .85rem; color: var(--text-2); line-height: 1.65; }
.mini-case__stats {
  display: flex;
  gap: 1.5rem;
  padding-top: .75rem;
  border-top: 1px solid var(--border-sub);
}
.mini-case__stats div {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.mini-case__stats strong { font-size: 1.05rem; font-weight: 800; color: var(--gold); }
.mini-case__stats span   { font-size: .7rem; color: var(--text-3); }
.mini-case__cta {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: auto;
  transition: color .2s;
}
.mini-case__cta:hover { color: var(--gold-2); }

/* ── How we work / Steps ────────────────────────────────────── */
.how { padding: clamp(3rem,5vw,5rem) clamp(1.5rem,5vw,3rem); background: var(--bg); }
.steps {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border-sub);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: border-color .25s, transform .25s;
}
.step:hover { border-color: var(--border); transform: translateY(-3px); }
.step__num {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--gold);
  font-family: 'Geist Mono', monospace;
}
.step h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); }
.step p   { font-size: .87rem; color: var(--text-2); line-height: 1.65; }
.step__art { margin-top: auto; width: 100%; height: 100px; color: var(--gold); }

/* ── Impact ─────────────────────────────────────────────────── */
.impact { position: relative; overflow: hidden; background: #060401; }
.impact__inner {
  position: relative;
  z-index: 1;
  padding: clamp(3rem,5vw,5rem) clamp(1.5rem,5vw,3rem);
  max-width: 1200px;
  margin: 0 auto;
}
.impact__constellation {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .6;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.stat {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(201,146,42,.04);
  border: 1px solid rgba(201,146,42,.12);
  border-radius: 16px;
  transition: border-color .25s, background .25s;
}
.stat:hover { border-color: rgba(201,146,42,.3); background: rgba(201,146,42,.08); }
.stat__num {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .5rem;
}
.stat__suffix { font-size: .5em; color: var(--gold-2); }
.stat__label  { font-size: .82rem; color: var(--text-3); line-height: 1.4; }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1300px;
  margin: 3rem auto 0;
}
.testi-stack { display: contents; }
.testi-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testi-card--featured { background: var(--bg-2); }
.testi-stars { color: var(--gold); font-size: 1rem; letter-spacing: .1em; }
.testi-card blockquote {
  font-size: .925rem;
  color: rgba(245,240,232,.75);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.testi-card figcaption {
  display: flex;
  align-items: center;
  gap: .875rem;
  margin-top: .5rem;
}
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
  line-height: 1;
}
.testi-name {
  display: block;
  font-size: .875rem;
  font-weight: 700;
  color: var(--text-1);
}
.testi-role {
  display: block;
  font-size: .78rem;
  color: var(--text-3);
  margin-top: .1rem;
}
.testi-source {
  display: block;
  font-size: .72rem;
  color: var(--text-3);
  margin-top: .25rem;
  opacity: .7;
}
@media (max-width: 1100px) {
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .testi-grid { grid-template-columns: 1fr; }
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq { padding: clamp(3rem,5vw,5rem) clamp(1.5rem,5vw,3rem); background: var(--bg-2); }
.faq__list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.faq__item {
  background: var(--surface);
  border: 1px solid var(--border-sub);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq__item[open] { border-color: var(--border); }
.faq__q {
  padding: 1.2rem 1.5rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color .2s;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform .25s;
}
details[open] .faq__q::after { transform: rotate(45deg); }
.faq__q:hover { color: var(--gold); }
.faq__a {
  padding: 0 1.5rem 1.2rem;
  border-top: 1px solid var(--border-sub);
}
.faq__a p {
  font-size: .9rem;
  color: var(--text-2);
  line-height: 1.7;
  padding-top: 1rem;
}

/* ── CTA section ────────────────────────────────────────────── */
.cta { padding: clamp(6rem,12vw,10rem) clamp(1.5rem,5vw,3rem); background: var(--surface); }
.cta__inner {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.cta__lede { font-size: 1rem; color: var(--text-2); line-height: 1.7; max-width: 56ch; }
.cta__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: .5rem;
}
.cta__or { font-size: .8rem; color: var(--text-3); }
.cta__channels {
  display: flex;
  gap: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-sub);
  width: 100%;
  justify-content: center;
}
.cta__channels div { display: flex; flex-direction: column; gap: .25rem; text-align: center; }
.ch__label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}
.cta__channels a, .cta__channels span {
  font-size: .9rem;
  color: var(--text-2);
}
.cta__channels a:hover { color: var(--gold); }

/* ── Footer ─────────────────────────────────────────────────── */
.foot {
  background: var(--bg-2);
  border-top: 1px solid var(--border-sub);
  padding: 4rem clamp(1.5rem, 5vw, 3rem) 2rem;
}
.foot__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.foot__brand { display: flex; flex-direction: column; gap: .75rem; }
.foot__logo  { display: flex; align-items: center; gap: .6rem; }
.foot__logo .logo-mark { width: 44px; height: auto; object-fit: contain; }
.foot__logo .logo-name {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text);
}
.foot__tag  { font-size: .85rem; color: var(--text-3); line-height: 1.65; max-width: 30ch; }
.foot__contact a {
  font-size: .85rem;
  color: var(--text-3);
  transition: color .2s;
}
.foot__contact a:hover { color: var(--gold); }
.foot__nav  { display: flex; flex-direction: column; gap: .6rem; }
.foot__heading {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: .25rem;
}
.foot__nav ul { display: flex; flex-direction: column; gap: .45rem; }
.foot__nav a  { font-size: .85rem; color: var(--text-3); transition: color .2s; }
.foot__nav a:hover { color: var(--gold); }
.foot__cta { display: flex; flex-direction: column; gap: .75rem; }
.foot__cta p { font-size: .85rem; color: var(--text-3); line-height: 1.55; }
.foot__btn {
  display: inline-flex;
  align-items: center;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: .5rem 1rem;
  transition: border-color .2s, background .2s;
  width: fit-content;
}
.foot__btn:hover { border-color: var(--gold); background: rgba(201,146,42,.08); }
.foot__row {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-sub);
  font-size: .78rem;
  color: var(--text-3);
}
.foot__row a:hover { color: var(--gold); }

/* ── Scroll reveal ──────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
[data-reveal].visible { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }
[data-reveal-delay="4"] { transition-delay: .4s; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .proof__inner { grid-template-columns: repeat(2, 1fr); }
  .stats        { grid-template-columns: repeat(2, 1fr); }
  .foot__inner  { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .glimpse__grid { grid-template-columns: 1fr; }
  .glimpse__card--wide { grid-column: auto; }
}
@media (max-width: 860px) {
  .hero__inner     { grid-template-columns: 1fr; }
  .hero__mock      { display: none; }
  .work__grid      { grid-template-columns: 1fr; }
  .feature-case__card { grid-template-columns: 1fr; }
  .feature-case__right { display: none; }
  .more-cases__grid { grid-template-columns: 1fr; }
  .steps           { grid-template-columns: 1fr; }
  .cta__channels   { flex-direction: column; gap: 1.25rem; }
}
@media (max-width: 640px) {
  .proof__inner { grid-template-columns: repeat(2, 1fr); }
  .stats        { grid-template-columns: 1fr 1fr; }
  .foot__inner  { grid-template-columns: 1fr; }
  .foot__row    { flex-direction: column; gap: .75rem; text-align: center; }
  .hero__trust  { gap: 1.25rem; }
}

/* ── 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;
}

/* ── Chart / SVG draw animation ─────────────────────────────── */
[data-draw] {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 1.4s cubic-bezier(.4,0,.2,1);
}
[data-draw].drawn { stroke-dashoffset: 0; }
[data-chart-fill] { opacity: 0; transition: opacity .8s .6s; }
[data-chart-fill].drawn { opacity: 1; }
[data-dot] { opacity: 0; transition: opacity .3s 1.2s; }
[data-dot].drawn { opacity: 1; }

/* ════════════════════════════════════════════════════════════════
   v6 — WOW FACTOR UPGRADES
   Gradient accents · shimmer animations · richer glows · depth
   ════════════════════════════════════════════════════════════════ */

/* Gradient accent text — H1/H2 emphasis spans */
.accent {
  background: linear-gradient(110deg, #CD962E 0%, #E8B850 55%, #F5C842 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.accent-gold2 {
  background: linear-gradient(110deg, #E8B850 0%, #F5D060 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Enhanced hero blobs — more dramatic, slow drift */
.blob--deep  {
  opacity: 0;
  animation: blobFade 1.2s forwards, blobDrift1 18s ease-in-out 1.2s infinite alternate;
}
.blob--amber {
  opacity: 0;
  animation: blobFade 1.2s .3s forwards, blobDrift2 22s ease-in-out 1.5s infinite alternate;
}
.blob--glow  {
  opacity: 0;
  animation: blobFade 1.2s .5s forwards, blobDrift1 26s ease-in-out 1.7s infinite alternate-reverse;
}
@keyframes blobDrift1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, -20px) scale(1.06); }
}
@keyframes blobDrift2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-20px, 15px) scale(1.04); }
}

/* Hero H1 — heavier weight, tighter tracking */
.hero .h1 {
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  letter-spacing: -.035em;
}

/* Eyebrow dot — larger pulse ring */
.eyebrow__dot {
  width: 7px; height: 7px;
  box-shadow: 0 0 0 3px rgba(201,146,42,.2);
  animation: pulse 2s infinite, eyebrowGlow 3s ease-in-out infinite;
}
@keyframes eyebrowGlow {
  0%,100% { box-shadow: 0 0 0 3px rgba(201,146,42,.2); }
  50%      { box-shadow: 0 0 0 6px rgba(201,146,42,.08); }
}

/* Primary button — shimmer sweep on hover */
.btn--primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(110deg, #CD962E 0%, #E8B850 100%);
  color: #2B2926;
}
.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.18) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform .5s ease;
  pointer-events: none;
}
.btn--primary:hover::after { transform: translateX(100%); }
.btn--primary:hover {
  background: linear-gradient(110deg, #D9A030 0%, #F5C840 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201,146,42,.5), 0 0 0 1px rgba(201,146,42,.3);
}

/* Ghost button — cleaner hover */
.btn--ghost:hover {
  background: rgba(201,146,42,.06);
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 0 1px rgba(201,146,42,.2);
  transform: translateY(-1px);
}

/* Proof stats — gradient on numbers */
.proof__num {
  background: linear-gradient(110deg, #CD962E 0%, #E8B850 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
}

/* Kicker — subtle left-border accent on section kickers */
.section-head .kicker {
  position: relative;
  padding-left: .85rem;
}
.section-head .kicker::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 12px;
  background: var(--gold);
  border-radius: 2px;
}

/* Card enhanced hover — gold glow + bigger lift */
.card:hover {
  border-color: rgba(201,146,42,.4);
  transform: translateY(-5px);
  box-shadow: 0 24px 72px rgba(0,0,0,.5), 0 0 32px rgba(201,146,42,.08);
}

/* Featured card — animated shimmer border + glow */
.card--featured {
  border-color: rgba(201,146,42,.5);
  box-shadow: 0 0 0 1px rgba(201,146,42,.15), 0 32px 80px rgba(0,0,0,.4);
  background: linear-gradient(135deg, var(--surface) 0%, #1A140A 60%, var(--surface) 100%);
}
.card--featured::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(ellipse at 20% 0%, rgba(201,146,42,.14) 0%, transparent 55%);
  pointer-events: none;
}
.card--featured:hover {
  box-shadow: 0 0 0 1px rgba(201,146,42,.35), 0 32px 80px rgba(0,0,0,.5), 0 0 60px rgba(201,146,42,.12);
}

/* Card badge — pulse glow */
.card__badge {
  animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,146,42,.3); }
  50%      { box-shadow: 0 0 8px 2px rgba(201,146,42,.2); }
}

/* Card icon — glow on hover */
.card:hover .card__ico {
  background: rgba(201,146,42,.2);
  border-color: rgba(201,146,42,.4);
  box-shadow: 0 0 16px rgba(201,146,42,.15);
}

/* Impact stats — dramatic gold gradient number */
.stat__num {
  background: linear-gradient(110deg, #CD962E 0%, #E8B850 55%, #F5C842 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Stat card — enhanced glow hover */
.stat:hover {
  border-color: rgba(201,146,42,.45);
  background: rgba(201,146,42,.1);
  box-shadow: 0 0 40px rgba(201,146,42,.1);
  transform: translateY(-2px);
}

/* Imgband — more vivid atmospheric line */
.imgband {
  background: linear-gradient(135deg, #2B2926 0%, #332C1F 50%, #2B2926 100%);
  border-top: 1px solid rgba(201,146,42,.12);
  border-bottom: 1px solid rgba(201,146,42,.12);
}
.imgband__overlay {
  background: linear-gradient(135deg, rgba(201,146,42,.12) 0%, rgba(10,10,10,.5) 50%, rgba(201,146,42,.06) 100%);
}
.imgband__kicker {
  opacity: 1;
  letter-spacing: .25em;
  font-size: clamp(.7rem, 1.2vw, .85rem);
  background: linear-gradient(110deg, #CD962E 0%, #E8B850 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glimpse cards — deeper glow */
.glimpse__card:hover {
  border-color: rgba(201,146,42,.35);
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(0,0,0,.55), 0 0 32px rgba(201,146,42,.07);
}

/* Mini case cards */
.mini-case:hover {
  border-color: rgba(201,146,42,.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.45), 0 0 24px rgba(201,146,42,.06);
}

/* Featured case study card */
.feature-case__card:hover {
  border-color: rgba(232,184,80,.5);
  box-shadow: 0 0 60px rgba(201,146,42,.12);
}

/* Process steps */
.step:hover {
  border-color: rgba(201,146,42,.35);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,.45), 0 0 24px rgba(201,146,42,.06);
}

/* ═══════════════════════════════════════════════════════════
   BLOG — Index + Article pages
   ═══════════════════════════════════════════════════════════ */
.blog-hero { padding: 120px clamp(1.5rem,5vw,3rem) 3rem; background: #2B2926; }
.blog-hero__inner { max-width: 1200px; margin: 0 auto; }
.blog-hero h1 { font-size: clamp(2rem,5vw,3rem); font-weight: 800; color: #F5F5F5; margin-bottom: .75rem; }
.blog-hero p { font-size: 1.05rem; color: rgba(245,240,232,.6); max-width: 520px; }
.blog-main { background: #2B2926; padding: 0 clamp(1.5rem,5vw,3rem) 80px; }
.blog-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px) { .blog-grid { grid-template-columns: 1fr; } }
.bcard { background: var(--surface); border: 1px solid var(--border-sub); border-radius: 16px; padding: 1.75rem; display: flex; flex-direction: column; gap: .65rem; text-decoration: none; transition: border-color .25s, transform .25s, box-shadow .25s; }
.bcard:hover { border-color: rgba(201,146,42,.4); transform: translateY(-3px); box-shadow: 0 20px 50px rgba(0,0,0,.4); }
.bcard__tag { font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #CD962E; }
.bcard__title { font-size: 1.05rem; font-weight: 700; color: #F5F5F5; line-height: 1.35; }
.bcard__excerpt { font-size: .875rem; color: rgba(245,240,232,.55); line-height: 1.65; flex: 1; }
.bcard__meta { font-size: .72rem; color: rgba(245,240,232,.35); padding-top: .5rem; border-top: 1px solid rgba(245,240,232,.07); margin-top: auto; display: flex; gap: 1rem; }
.bcard__read { font-size: .82rem; font-weight: 600; color: #CD962E; }

/* Article page */
.article-page { background: #2B2926; min-height: 100vh; padding: 120px clamp(1.5rem,5vw,3rem) 80px; }
.article-wrap { max-width: 740px; margin: 0 auto; }
.article-breadcrumb { font-size: .75rem; color: rgba(245,240,232,.35); margin-bottom: 2rem; display: flex; gap: .4rem; align-items: center; flex-wrap: wrap; }
.article-breadcrumb a { color: rgba(245,240,232,.5); text-decoration: none; transition: color .2s; }
.article-breadcrumb a:hover { color: #CD962E; }
.article-tag { font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #CD962E; display: block; margin-bottom: .75rem; }
.article-title { font-size: clamp(1.75rem,4.5vw,2.5rem); font-weight: 800; color: #F5F5F5; line-height: 1.15; margin-bottom: 1rem; }
.article-meta { font-size: .78rem; color: rgba(245,240,232,.35); padding-bottom: 2rem; border-bottom: 1px solid rgba(245,240,232,.08); display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.article-lede { font-size: 1.05rem; color: rgba(245,240,232,.75); line-height: 1.75; margin-bottom: 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(245,240,232,.06); }
.article-body h2 { font-size: 1.35rem; font-weight: 700; color: #F5F5F5; margin: 2.5rem 0 .75rem; }
.article-body h3 { font-size: 1.05rem; font-weight: 600; color: #F5F5F5; margin: 1.75rem 0 .5rem; }
.article-body p { font-size: .95rem; color: rgba(245,240,232,.7); line-height: 1.8; margin-bottom: 1.25rem; }
.article-body ul,.article-body ol { margin: 0 0 1.25rem 1.5rem; }
.article-body li { font-size: .95rem; color: rgba(245,240,232,.7); line-height: 1.75; margin-bottom: .4rem; }
.article-body ul li { list-style: disc; }
.article-body ol li { list-style: decimal; }
.article-body strong { color: #F5F5F5; font-weight: 600; }
.article-body blockquote { border-left: 3px solid #CD962E; padding: .75rem 1.25rem; margin: 1.5rem 0; background: rgba(201,146,42,.05); border-radius: 0 8px 8px 0; }
.article-body blockquote p { color: rgba(245,240,232,.8); font-style: italic; margin-bottom: 0; }
.article-cta { background: rgba(201,146,42,.07); border: 1px solid rgba(201,146,42,.2); border-radius: 16px; padding: 2.5rem 2rem; margin-top: 3.5rem; text-align: center; }
.article-cta h3 { font-size: 1.35rem; font-weight: 700; color: #F5F5F5; margin-bottom: .5rem; }
.article-cta p { color: rgba(245,240,232,.6); font-size: .9rem; margin-bottom: 1.5rem; }
.article-cta a { display: inline-flex; align-items: center; gap: .5rem; background: linear-gradient(110deg,#CD962E,#E8B850); color: #2B2926; font-weight: 700; font-size: .9rem; font-family: inherit; padding: .8rem 1.8rem; border-radius: 8px; text-decoration: none; transition: opacity .2s; }
.article-cta a:hover { opacity: .88; }

/* ═══════════════════════════════════════════════════════════
   ABOUT page
   ═══════════════════════════════════════════════════════════ */
.about-hero { padding: 120px clamp(1.5rem,5vw,3rem) clamp(3rem,6vw,6rem); background: #2B2926; }
.about-hero__inner { max-width: 900px; margin: 0 auto; }
.about-hero h1 { font-size: clamp(2.2rem,5.5vw,3.5rem); font-weight: 800; color: #F5F5F5; line-height: 1.1; margin-bottom: 1.25rem; }
.about-hero p { font-size: 1.1rem; color: rgba(245,240,232,.65); line-height: 1.75; max-width: 640px; }
.about-section { padding: clamp(3rem,6vw,6rem) clamp(1.5rem,5vw,3rem); }
.about-section__inner { max-width: 900px; margin: 0 auto; }
.about-section--alt { background: #0D0D0D; border-top: 1px solid rgba(245,240,232,.05); border-bottom: 1px solid rgba(245,240,232,.05); }
.about-section h2 { font-size: clamp(1.5rem,3vw,2rem); font-weight: 700; color: #F5F5F5; margin-bottom: 1.25rem; }
.about-section p { font-size: .95rem; color: rgba(245,240,232,.65); line-height: 1.8; margin-bottom: 1rem; }
.about-pillars { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; margin-top: 2rem; }
@media (max-width: 640px) { .about-pillars { grid-template-columns: 1fr; } }
.pillar { background: rgba(201,146,42,.05); border: 1px solid rgba(201,146,42,.15); border-radius: 12px; padding: 1.5rem; }
.pillar h3 { font-size: .95rem; font-weight: 700; color: #F5F5F5; margin-bottom: .4rem; }
.pillar p { font-size: .88rem; color: rgba(245,240,232,.55); line-height: 1.65; margin-bottom: 0; }
.about-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: 2.5rem; }
@media (max-width: 640px) { .about-stats { grid-template-columns: repeat(2,1fr); } }
.about-stat strong { display: block; font-size: 2.2rem; font-weight: 800; background: linear-gradient(110deg,#CD962E,#E8B850); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.1; margin-bottom: .25rem; }
.about-stat span { font-size: .82rem; color: rgba(245,240,232,.45); }

/* FAQ item hover */
.faq__item[open] {
  border-color: rgba(201,146,42,.35);
  box-shadow: 0 0 24px rgba(201,146,42,.06);
}

/* Nav CTA — gradient */
.nav__cta {
  background: linear-gradient(110deg, #CD962E 0%, #E8B850 100%);
}
.nav__cta:hover {
  background: linear-gradient(110deg, #D9A030 0%, #F5C840 100%);
  box-shadow: 0 4px 16px rgba(201,146,42,.4);
}

/* Hero trust stats — bigger, bolder */
.hero__trust strong { font-size: 1.5rem; font-weight: 900; }

/* Hero trust border — gold tint */
.hero__trust { border-top-color: rgba(201,146,42,.2); }

/* Mock — enhanced shadow */
.mock {
  box-shadow: 0 40px 100px rgba(0,0,0,.7), 0 0 0 1px var(--border), 0 0 60px rgba(201,146,42,.06);
}

/* Footer button gradient border */
.foot__btn:hover {
  border-color: var(--gold);
  background: rgba(201,146,42,.1);
  box-shadow: 0 0 16px rgba(201,146,42,.12);
}

/* Scroll reveal — slightly snappier */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s cubic-bezier(.25,0,.2,1), transform .6s cubic-bezier(.25,0,.2,1);
}

/* CTA section — richer background */
.cta {
  background: linear-gradient(135deg, var(--surface) 0%, #120D04 50%, var(--surface) 100%);
  border-top: 1px solid rgba(201,146,42,.12);
  border-bottom: 1px solid rgba(201,146,42,.12);
}

/* Section head H2 — slightly tighter, heavier */
.section-head .h2 {
  letter-spacing: -.028em;
}

/* Kinetic marquee — slightly brighter on row A */
.kinetic__row--a .kinetic__track span { color: rgba(245,245,245,.85); }
.kinetic__row--b .kinetic__track span.is-outline {
  -webkit-text-stroke: 1.5px rgba(201,146,42,.6);
}

/* ── Related Reading component ─────────────────────────────────── */
.related-reading { margin: 3rem 0 0; padding: 2rem; background: rgba(245,240,232,.04); border: 1px solid rgba(245,240,232,.1); border-radius: 12px; }
.related-reading__label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #CD962E; margin-bottom: 1.25rem; }
.related-link { display: flex; flex-direction: column; gap: .25rem; padding: .875rem 1rem; border-radius: 8px; text-decoration: none; transition: background .2s; }
.related-link + .related-link { margin-top: .5rem; }
.related-link:hover { background: rgba(245,240,232,.06); }
.related-link__title { font-size: .9rem; font-weight: 600; color: #F5F5F5; }
.related-link__desc { font-size: .82rem; color: rgba(245,240,232,.5); }

/* ══════════════════════════════════════════════════════════════════
   SERVICE PAGES — visual redesign (svc- prefix)
   ══════════════════════════════════════════════════════════════════ */

/* Hero */
.svc-page { background: #292724; }
.svc-hero { padding: 130px clamp(1.5rem,5vw,3rem) 80px; position: relative; overflow: hidden; }
.svc-hero::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 900px 500px at 65% -5%, rgba(201,146,42,.13) 0%, transparent 68%); pointer-events:none; }
.svc-hero::after  { content:''; position:absolute; bottom:0; left:0; right:0; height:1px; background: linear-gradient(90deg, transparent, rgba(201,146,42,.18), transparent); }
.svc-hero__inner { max-width:1100px; margin:0 auto; display:grid; grid-template-columns:1fr 420px; gap:4rem; align-items:center; position:relative; }
.svc-hero__badge { display:inline-flex; align-items:center; gap:.45rem; background:rgba(201,146,42,.1); border:1px solid rgba(201,146,42,.28); color:#CD962E; font-size:.7rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; padding:.35rem .9rem; border-radius:20px; margin-bottom:1.5rem; }
.svc-hero__title { font-size:clamp(2.1rem,4.5vw,3.1rem); font-weight:900; color:#F5F0E8; line-height:1.08; margin-bottom:1.25rem; letter-spacing:-.02em; }
.svc-hero__title em { font-style:normal; color:#CD962E; }
.svc-hero__lede { font-size:1.05rem; color:rgba(245,240,232,.62); line-height:1.78; margin-bottom:2.25rem; max-width:500px; }
.svc-hero__actions { display:flex; gap:.875rem; flex-wrap:wrap; }
.svc-hero__cta { display:inline-flex; align-items:center; gap:.5rem; background:linear-gradient(110deg,#CD962E,#E8B850); color:#2B2926; font-weight:700; font-size:.9rem; font-family:inherit; padding:.85rem 1.85rem; border-radius:8px; text-decoration:none; transition:opacity .2s; }
.svc-hero__cta:hover { opacity:.88; }
.svc-hero__ghost { display:inline-flex; align-items:center; gap:.5rem; border:1px solid rgba(245,240,232,.18); color:rgba(245,240,232,.65); font-size:.9rem; font-weight:500; padding:.85rem 1.5rem; border-radius:8px; text-decoration:none; transition:all .2s; }
.svc-hero__ghost:hover { border-color:rgba(245,240,232,.38); color:#F5F0E8; }

/* Stat cards in hero */
.svc-stats { display:flex; flex-direction:column; gap:.875rem; }
.svc-stat { background:rgba(245,240,232,.035); border:1px solid rgba(245,240,232,.08); border-radius:14px; padding:1.35rem 1.5rem; }
.svc-stat:first-child { border-color:rgba(201,146,42,.22); background:rgba(201,146,42,.06); }
.svc-stat__num { font-size:1.85rem; font-weight:900; color:#CD962E; line-height:1; margin-bottom:.3rem; letter-spacing:-.03em; }
.svc-stat__label { font-size:.8rem; color:rgba(245,240,232,.5); line-height:1.4; }

/* Features section */
.svc-features { padding:90px clamp(1.5rem,5vw,3rem); background:#0C0D10; }
.svc-features__inner { max-width:1100px; margin:0 auto; }
.svc-label { font-size:.7rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:#CD962E; margin-bottom:.75rem; }
.svc-heading { font-size:clamp(1.6rem,3vw,2.1rem); font-weight:800; color:#F5F0E8; margin-bottom:.75rem; letter-spacing:-.02em; }
.svc-subhead { font-size:.95rem; color:rgba(245,240,232,.5); max-width:560px; line-height:1.7; margin-bottom:3rem; }
.svc-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; }
.svc-card { background:rgba(245,240,232,.03); border:1px solid rgba(245,240,232,.07); border-radius:16px; padding:1.75rem; transition:border-color .25s, background .25s; }
.svc-card:hover { background:rgba(245,240,232,.055); border-color:rgba(201,146,42,.3); }
.svc-card__icon { width:42px; height:42px; background:rgba(201,146,42,.1); border-radius:11px; display:flex; align-items:center; justify-content:center; margin-bottom:1.1rem; color:#CD962E; flex-shrink:0; }
.svc-card__icon svg { width:20px; height:20px; stroke:currentColor; stroke-width:1.75; fill:none; stroke-linecap:round; stroke-linejoin:round; }
.svc-card__title { font-size:.975rem; font-weight:700; color:#F5F0E8; margin-bottom:.5rem; }
.svc-card__desc { font-size:.855rem; color:rgba(245,240,232,.58); line-height:1.72; }

/* Process steps */
.svc-process { padding:90px clamp(1.5rem,5vw,3rem); background:#292724; border-top:1px solid rgba(245,240,232,.05); }
.svc-process__inner { max-width:1100px; margin:0 auto; }
.svc-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:2rem; margin-top:3rem; }
.svc-step { position:relative; }
.svc-step__num { width:38px; height:38px; border-radius:50%; border:1px solid rgba(201,146,42,.35); display:flex; align-items:center; justify-content:center; font-size:.8rem; font-weight:800; color:#CD962E; margin-bottom:1rem; }
.svc-step__title { font-size:.975rem; font-weight:700; color:#F5F0E8; margin-bottom:.5rem; }
.svc-step__desc { font-size:.855rem; color:rgba(245,240,232,.55); line-height:1.68; }

/* Platforms */
.svc-platforms { padding:60px clamp(1.5rem,5vw,3rem); background:#0C0D10; border-top:1px solid rgba(245,240,232,.05); }
.svc-platforms__inner { max-width:1100px; margin:0 auto; display:flex; align-items:center; gap:3rem; flex-wrap:wrap; }
.svc-platforms__left { flex:1; min-width:200px; }
.svc-pills { display:flex; flex-wrap:wrap; gap:.65rem; flex:2; }
.svc-pill { background:rgba(245,240,232,.05); border:1px solid rgba(245,240,232,.1); color:rgba(245,240,232,.72); font-size:.82rem; font-weight:600; padding:.45rem 1.1rem; border-radius:20px; }

/* FAQ */
.svc-faq { padding:90px clamp(1.5rem,5vw,3rem); background:#292724; }
.svc-faq__inner { max-width:780px; margin:0 auto; }
.svc-faq__list { display:flex; flex-direction:column; gap:1rem; margin-top:3rem; }
.svc-faq__item { background:rgba(245,240,232,.03); border:1px solid rgba(245,240,232,.07); border-radius:14px; padding:1.6rem 1.75rem; }
.svc-faq__q { font-size:.975rem; font-weight:700; color:#F5F0E8; margin-bottom:.6rem; }
.svc-faq__a { font-size:.875rem; color:rgba(245,240,232,.58); line-height:1.75; }

/* CTA block */
.svc-cta { padding:100px clamp(1.5rem,5vw,3rem); background:linear-gradient(135deg,rgba(201,146,42,.09) 0%,rgba(201,146,42,.04) 100%); border-top:1px solid rgba(201,146,42,.15); text-align:center; position:relative; overflow:hidden; }
.svc-cta::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 600px 300px at 50% 50%, rgba(201,146,42,.07) 0%, transparent 70%); pointer-events:none; }
.svc-cta__inner { max-width:680px; margin:0 auto; position:relative; }
.svc-cta__kicker { font-size:.72rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:#CD962E; margin-bottom:1.25rem; }
.svc-cta__title { font-size:clamp(1.6rem,3.5vw,2.3rem); font-weight:900; color:#F5F0E8; line-height:1.2; margin-bottom:1rem; letter-spacing:-.02em; }
.svc-cta__sub { font-size:.975rem; color:rgba(245,240,232,.52); margin-bottom:2.25rem; line-height:1.7; }
.svc-cta__btn { display:inline-flex; align-items:center; gap:.6rem; background:linear-gradient(110deg,#CD962E,#E8B850); color:#2B2926; font-weight:700; font-size:.95rem; font-family:inherit; padding:.95rem 2.25rem; border-radius:9px; text-decoration:none; transition:opacity .2s,transform .2s; }
.svc-cta__btn:hover { opacity:.9; transform:translateY(-1px); }

/* Service page footer */
.svc-foot { background:#292724; border-top:1px solid rgba(245,240,232,.07); padding:1.5rem clamp(1.5rem,5vw,3rem); }
.svc-foot__inner { max-width:1100px; margin:0 auto; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:.75rem; font-size:.82rem; color:rgba(245,240,232,.38); }
.svc-foot__inner a { color:rgba(245,240,232,.45); text-decoration:none; transition:color .2s; }
.svc-foot__inner a:hover { color:#CD962E; }

/* Responsive */
@media (max-width:900px) {
  .svc-hero__inner { grid-template-columns:1fr; gap:2.5rem; }
  .svc-stats { flex-direction:row; flex-wrap:wrap; }
  .svc-stat { flex:1; min-width:140px; }
  .svc-grid { grid-template-columns:repeat(2,1fr); }
  .svc-steps { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:600px) {
  .svc-grid { grid-template-columns:1fr; }
  .svc-steps { grid-template-columns:1fr; }
  .svc-platforms__inner { flex-direction:column; align-items:flex-start; gap:1.5rem; }
}

/* ════════════════════════════════════════════════════════════════
   OPERATOR-GRADE GLOBAL LAYER  (v7)
   Promoted from the homepage. Loaded last so it tunes every page —
   core pages, service pages and blog/article pages — to one system.
   ════════════════════════════════════════════════════════════════ */

/* ── Global display type ─────────────────────────────────────────
   Every headline across the site runs Bricolage Grotesque.
   Body copy + UI stays Geist; labels/numbers run Geist Mono. */
h1, h2, h3,
.about-hero h1, .about-section h2,
.cs-hero h1, .cs-title, .cs-cta h2,
.pricing-hero h1, .price-section-title, .bottom-cta h2,
.frontline-h1, .features__title,
.svc-hero__title, .svc-heading, .svc-cta__title,
.article-title, .article-body h2,
.contact-main h1,
.section-head .h2 {
  font-family: var(--font-display);
  letter-spacing: -.03em;
}

/* Numeric / stat / meta voices → mono */
.stat__num, .about-stat strong, .cs-result-num,
.pc-price, .price-big, .svc-stat__num,
.mcard__meta, .step__num, .mock__url {
  font-family: var(--font-mono);
}

/* ── Operator label kit — mono status chips (● SYSTEM ONLINE) ───── */
.op-tag {
  display:inline-flex; align-items:center; gap:.5rem;
  font-family:var(--font-mono); font-size:.62rem; font-weight:500;
  letter-spacing:.22em; text-transform:uppercase;
  color:var(--gold); line-height:1;
}
.op-tag__led {
  width:6px; height:6px; border-radius:50%;
  background:var(--gold-2);
  box-shadow:0 0 0 0 rgba(232,192,112,.5);
  animation:opPulse 2.4s infinite;
}
@keyframes opPulse {
  0%,100%{ box-shadow:0 0 0 0 rgba(232,192,112,.5); }
  50%   { box-shadow:0 0 0 5px rgba(232,192,112,0); }
}

/* ── Signature hairline frame + machined corner ticks ──────────── */
.op-frame {
  position:relative;
  border:1px solid var(--op-line);
  background:linear-gradient(180deg, rgba(20,19,15,.6), rgba(10,10,10,.4));
}
.op-frame::before, .op-frame::after {
  content:""; position:absolute; width:13px; height:13px;
  border:1.5px solid var(--gold); pointer-events:none;
}
.op-frame::before { top:-1px; left:-1px; border-right:0; border-bottom:0; }
.op-frame::after  { bottom:-1px; right:-1px; border-left:0; border-top:0; }
.op-frame__corner { position:absolute; width:13px; height:13px;
  border:1.5px solid var(--gold); pointer-events:none; }
.op-frame__corner--tr { top:-1px; right:-1px; border-left:0; border-bottom:0; }
.op-frame__corner--bl { bottom:-1px; left:-1px; border-right:0; border-top:0; }

/* Machined corner tick that can be dropped on any card */
.op-tick { position:relative; }
.op-tick::after {
  content:""; position:absolute; top:10px; right:10px;
  width:10px; height:10px;
  border-top:1.5px solid var(--op-line);
  border-right:1.5px solid var(--op-line);
  opacity:.7; transition:border-color .25s; pointer-events:none;
}
.op-tick:hover::after { border-color:var(--gold); }

/* ── Buttons — keep solid gold, refine ghost to operator line ──── */
.btn--primary { background:var(--gold); color:#2B2926; }
.btn--primary:hover { background:var(--gold-2); box-shadow:0 8px 24px rgba(200,144,42,.4); }
.btn--ghost { border:1.5px solid var(--op-line); color:var(--text); }
.btn--ghost:hover { border-color:var(--gold); color:var(--gold); }

/* ── Cards across pages → machined corner tick on hover ────────── */
.svc-card, .feature-card, .price-card, .cs-card, .step, .pillar {
  position:relative;
}
.svc-card::after, .feature-card::after, .cs-card::after {
  content:""; position:absolute; top:11px; right:11px;
  width:9px; height:9px;
  border-top:1.5px solid var(--op-line-soft);
  border-right:1.5px solid var(--op-line-soft);
  opacity:.8; transition:border-color .25s; pointer-events:none;
}
.svc-card:hover::after, .feature-card:hover::after, .cs-card:hover::after {
  border-color:var(--gold);
}

/* ── Forms — operator console fields (contact + any form) ──────── */
input, select, textarea {
  font-family:var(--font-body);
}
.form-field label, .contact-main .reply-note {
  font-family:var(--font-mono); letter-spacing:.16em;
}
.form-field input, .form-field select, .form-field textarea {
  background:rgba(245,242,234,.035);
  border:1px solid var(--op-line-soft);
  color:var(--text);
  border-radius:6px;
  transition:border-color .2s, box-shadow .2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color:var(--gold);
  box-shadow:0 0 0 1px rgba(200,144,42,.25);
}
.form-field select option { background:var(--surface); }
.contact-submit {
  background:var(--gold); color:#2B2926;
  font-family:var(--font-body);
}
.contact-submit:hover { background:var(--gold-2); }
.aside-card { border-color:var(--op-line-soft); background:rgba(245,242,234,.03); }
.aside-card .aside-label { font-family:var(--font-mono); letter-spacing:.16em; }

/* ── Navigation polish — keep gradient CTA, mono logo tag ──────── */
.nav { border-bottom:1px solid var(--border-sub); }
.nav__logo .logo-tag { font-family:var(--font-mono); letter-spacing:.12em; }
.nav__cta { background:linear-gradient(110deg, var(--gold) 0%, var(--gold-2) 100%); }

/* ── Footer headings → mono operator labels ────────────────────── */
.foot__heading { font-family:var(--font-mono); letter-spacing:.16em; }

/* ── Article / blog reading typography → operator ──────────────── */
.article-title { font-family:var(--font-display); letter-spacing:-.03em; }
.article-tag, .article-breadcrumb { font-family:var(--font-mono); }
.article-body { font-size:1rem; }
.article-body h2 { font-family:var(--font-display); letter-spacing:-.02em; }
.article-body blockquote { border-left:2px solid var(--gold); }

/* ── Global accessibility: gold focus ring ─────────────────────── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible,
[data-magnetic]:focus-visible {
  outline:2px solid var(--gold-2);
  outline-offset:3px;
  border-radius:4px;
}

/* ── Global reduced-motion ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration:.001ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.001ms !important;
    scroll-behavior:auto !important;
  }
  .op-tag__led, .eyebrow__dot, .pill__dot { animation:none; }
  [data-reveal] { opacity:1 !important; transform:none !important; }
}
