/* ============================================================
   Delta Hub Media — style.css v6
   Palette: gold (#C9922A) + gold-light (#E8B850) on pure dark
   v6: AI agency pivot + wow-factor gradient/glow/shimmer upgrades
   ============================================================ */

/* ── 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: #0A0A0A;
  color: #F5F5F5;
  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 ──────────────────────────────────────────── */
:root {
  --bg:        #0A0A0A;
  --bg-2:      #111111;
  --surface:   #161616;
  --surface-2: #1E1E1E;
  --surface-3: #252525;
  --gold:      #C9922A;
  --gold-2:    #E8B850;
  --gold-dk:   #8B6820;
  --gold-glow: rgba(201,146,42,0.35);
  --text:      #F5F5F5;
  --text-2:    #A0A0A0;
  --text-3:    #666666;
  --border:    rgba(201,146,42,0.18);
  --border-sub:rgba(255,255,255,0.10);
  --nav-h:     68px;
}

/* ── Typography scale ───────────────────────────────────────── */
.h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--text);
}
.h2 {
  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-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  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: #0A0A0A;
}
.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: #0A0A0A;
  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: #0A0A0A;
  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(5rem, 10vw, 9rem) 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: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__stage {
  position: relative;
  width: 100%;
  padding: calc(var(--nav-h) + 4rem) clamp(1.5rem, 5vw, 3rem) 5rem;
}
.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(5rem,10vw,9rem) 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(5rem,10vw,9rem) 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(5rem,10vw,9rem) 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(5rem,10vw,9rem) 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__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(5rem,10vw,9rem) 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(5rem,10vw,9rem) 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; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq { padding: clamp(5rem,10vw,9rem) 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, #C9922A 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, #C9922A 0%, #E8B850 100%);
  color: #0A0A0A;
}
.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, #C9922A 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, #C9922A 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, #0A0A0A 0%, #130E05 50%, #0A0A0A 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, #C9922A 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: #0A0A0A; }
.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: #0A0A0A; 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: #C9922A; }
.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: #C9922A; }

/* Article page */
.article-page { background: #0A0A0A; 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: #C9922A; }
.article-tag { font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #C9922A; 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 #C9922A; 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,#C9922A,#E8B850); color: #0A0A0A; 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: #0A0A0A; }
.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,#C9922A,#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, #C9922A 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);
}
