/* ============================================================
   INTEGRATED FEDERAL GROUP — dark cinematic build
   GSAP + ScrollTrigger + Lenis. Navy-black, brass glow.
   ============================================================ */

:root {
  --bg:         #060b12;
  --bg-2:       #0a131e;
  --navy:       #0d2236;
  --navy-2:     #14304b;
  --navy-glow:  #1e3f63;
  --surface:    #0e1a28;
  --surface-2:  #122236;
  --line:       rgba(190, 210, 235, 0.10);
  --line-2:     rgba(190, 210, 235, 0.18);
  --steel:      #6c7d90;
  --text:       #e9eef4;
  --text-dim:   #9bacbe;
  --text-faint: #6a7a8c;
  --brass:      #c9a24b;
  --brass-lt:   #e6c479;
  --brass-glow: rgba(201, 162, 75, 0.55);

  --maxw: 1240px;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);

  --serif: "Fraunces", Georgia, serif;
  --sans: "Archivo", system-ui, sans-serif;
  --mono: "IBM Plex Mono", Menlo, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  letter-spacing: 0.004em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; color: inherit; background: none; border: none; }

/* vignette — no blend mode (kept the look, dropped the compositor tax) */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 9990; pointer-events: none;
  background: radial-gradient(120% 100% at 50% 0%, transparent 55%, rgba(0,0,0,0.45) 100%);
}
/* static grain — same texture, no per-frame paint */
.grain {
  position: fixed; inset: 0; z-index: 9991; pointer-events: none; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- custom cursor (no blend-mode; brass-tinted ring) ---------- */
.cursor, .cursor-dot { position: fixed; top: 0; left: 0; z-index: 9995; pointer-events: none; border-radius: 50%; will-change: transform; }
.cursor { width: 34px; height: 34px; border: 1px solid rgba(230,196,121,0.55); transform: translate(-50%,-50%); transition: width .3s var(--ease), height .3s var(--ease), background .3s, border-color .3s; }
.cursor-dot { width: 4px; height: 4px; background: var(--brass-lt); transform: translate(-50%,-50%); }
.cursor.hot { width: 62px; height: 62px; background: rgba(230,196,121,0.14); border-color: rgba(230,196,121,0.8); }
body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: none; }
@media (hover: none), (pointer: coarse) { .cursor, .cursor-dot { display: none; } body.has-cursor, body.has-cursor a { cursor: auto; } }

/* ---------- preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 10000; background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.preloader.done { pointer-events: none; }
.pre-mark { width: 92px; opacity: 0; filter: brightness(0) invert(1); }
.pre-bar { width: min(58vw, 360px); height: 1px; background: var(--line-2); position: relative; overflow: hidden; }
.pre-bar i { position: absolute; inset: 0; right: 100%; background: linear-gradient(90deg, var(--brass), var(--brass-lt)); }
.pre-count { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.3em; color: var(--text-faint); }
.pre-curtain { position: fixed; inset: 0; z-index: 9999; background: var(--bg-2); transform: translateY(100%); pointer-events: none; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
section { position: relative; }

/* (content-visibility was breaking ScrollTrigger position calculations — removed) */

/* ---------- type ---------- */
h1,h2,h3 { font-family: var(--serif); font-weight: 440; line-height: 1.02; letter-spacing: -0.018em; color: var(--text); }
.display { font-size: clamp(2.7rem, 7.4vw, 6.4rem); font-weight: 420; line-height: 0.95; letter-spacing: -0.025em; }
.display em, h1 em, h2 em { font-style: italic; color: var(--brass-lt); font-weight: 420; text-shadow: 0 0 18px rgba(230,196,121,0.28); }
h2.section-title { font-size: clamp(2rem, 4.6vw, 3.6rem); line-height: 1.0; }

.eyebrow { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--brass); font-weight: 500; display: inline-flex; align-items: center; gap: 0.8rem; }
.eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--brass); display: inline-block; box-shadow: 0 0 10px var(--brass-glow); animation: brassPulse 3.4s ease-in-out infinite; will-change: opacity; }
@keyframes brassPulse {
  0%, 100% { opacity: 0.75; }
  50%      { opacity: 1; }
}
.lead { font-size: clamp(1.05rem, 1.7vw, 1.3rem); color: var(--text-dim); line-height: 1.55; max-width: 56ch; }
.muted { color: var(--text-dim); }

/* word/char split helpers */
.split-line { display: block; overflow: hidden; }
.word { display: inline-block; will-change: transform; }
.line-mask { display: block; overflow: hidden; padding-bottom: 0.08em; }

/* ---------- buttons (magnetic) ---------- */
.btn { position: relative; display: inline-flex; align-items: center; gap: 0.7rem; padding: 1rem 1.7rem; font-family: var(--mono); font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bg); background: var(--brass); overflow: hidden; transition: color .4s var(--ease); }
.btn span.lbl, .btn span.arr { position: relative; z-index: 2; transition: transform .4s var(--ease); }
.btn::before { content: ""; position: absolute; inset: 0; background: var(--brass-lt); transform: translateY(101%); transition: transform .5s var(--ease); z-index: 1; }
.btn:hover::before { transform: translateY(0); }
.btn:hover .arr { transform: translateX(5px); }
.btn--ghost { background: transparent; color: var(--text); border: 1px solid var(--line-2); }
.btn--ghost::before { background: rgba(230,196,121,0.12); }
.btn--ghost:hover { color: var(--brass-lt); border-color: var(--brass); }

/* ============================================================ NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; transition: background .5s var(--ease), backdrop-filter .5s, border-color .5s; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(6, 11, 18, 0.88); backdrop-filter: saturate(140%) blur(8px); -webkit-backdrop-filter: saturate(140%) blur(8px); border-bottom-color: var(--line); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 82px; }
.brand { display: flex; align-items: center; gap: 0.85rem; }
.brand img { height: 32px; filter: brightness(0) invert(1); }
.brand__name { font-family: var(--serif); font-size: 1.14rem; color: var(--text); line-height: 1; }
.brand__name span { display: block; font-family: var(--mono); font-size: 0.55rem; letter-spacing: 0.34em; color: var(--steel); text-transform: uppercase; margin-top: 5px; }
.nav__links { display: flex; align-items: center; gap: 2.4rem; }
.nav__links a:not(.btn) { font-family: var(--mono); font-size: 0.73rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); position: relative; padding-block: 0.4rem; transition: color .3s; }
.nav__links a:not(.btn)::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: var(--brass); box-shadow: 0 0 8px var(--brass-glow); transition: width .4s var(--ease); }
.nav__links a:not(.btn):hover, .nav__links a.active { color: var(--text); }
.nav__links a:not(.btn):hover::after, .nav__links a.active::after { width: 100%; }
.nav__cta { padding: 0.7rem 1.25rem; font-size: 0.7rem; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav__toggle span { width: 26px; height: 2px; background: var(--text); transition: .3s; }

/* ============================================================ HERO */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; padding-top: 82px; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg .spot { position: absolute; inset: 0; background: radial-gradient(60% 55% at 72% 28%, rgba(30,63,99,0.9) 0%, transparent 60%), radial-gradient(50% 60% at 18% 100%, rgba(201,162,75,0.14) 0%, transparent 55%), linear-gradient(165deg, #0a141f 0%, #060b12 60%, #04080d 100%); }
.hero__bg .grid { position: absolute; inset: 0; opacity: 0.6; background-image: linear-gradient(rgba(108,125,144,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(108,125,144,0.08) 1px, transparent 1px); background-size: 70px 70px; mask-image: radial-gradient(120% 100% at 70% 35%, #000 25%, transparent 78%); }
.hero__hex { position: absolute; right: -8%; top: 50%; width: min(52vw, 720px); z-index: 1; opacity: 0.10; filter: brightness(0) invert(1); will-change: transform; }

/* hero ambient breath — a soft secondary spotlight that drifts position over ~30s */
.hero__breath { position: absolute; inset: -20%; background: radial-gradient(40% 35% at 50% 50%, rgba(201,162,75,0.10) 0%, transparent 70%); pointer-events: none; will-change: transform; animation: breathDrift 28s cubic-bezier(.55,.05,.45,.95) infinite; opacity: 0.85; }
@keyframes breathDrift {
  0%   { transform: translate3d(-12%, -8%, 0) scale(1); }
  33%  { transform: translate3d(14%, 6%, 0) scale(1.15); }
  66%  { transform: translate3d(-6%, 12%, 0) scale(0.95); }
  100% { transform: translate3d(-12%, -8%, 0) scale(1); }
}

/* hero ambient particles — sparse brass embers drifting up (GPU-only) */
.hero__particles { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.hero__particles i { position: absolute; bottom: -10px; width: 3px; height: 3px; border-radius: 50%; background: var(--brass-lt); opacity: 0; will-change: transform, opacity; animation: emberRise 22s linear infinite; }
/* drop half of them entirely — fewer paints, same vibe */
.hero__particles i:nth-child(2n) { display: none; }
.hero__particles i:nth-child(1)  { left:  6%; animation-delay:  0s; animation-duration: 19s; width: 2px; height: 2px; }
.hero__particles i:nth-child(2)  { left: 14%; animation-delay:  4s; animation-duration: 24s; }
.hero__particles i:nth-child(3)  { left: 22%; animation-delay:  9s; animation-duration: 16s; width: 2px; height: 2px; }
.hero__particles i:nth-child(4)  { left: 31%; animation-delay:  2s; animation-duration: 22s; }
.hero__particles i:nth-child(5)  { left: 38%; animation-delay: 12s; animation-duration: 20s; width: 2px; height: 2px; }
.hero__particles i:nth-child(6)  { left: 47%; animation-delay:  6s; animation-duration: 17s; }
.hero__particles i:nth-child(7)  { left: 55%; animation-delay: 14s; animation-duration: 23s; width: 2px; height: 2px; }
.hero__particles i:nth-child(8)  { left: 63%; animation-delay:  1s; animation-duration: 19s; }
.hero__particles i:nth-child(9)  { left: 71%; animation-delay: 10s; animation-duration: 21s; width: 2px; height: 2px; }
.hero__particles i:nth-child(10) { left: 78%; animation-delay:  5s; animation-duration: 25s; }
.hero__particles i:nth-child(11) { left: 85%; animation-delay: 16s; animation-duration: 18s; width: 2px; height: 2px; }
.hero__particles i:nth-child(12) { left: 91%; animation-delay:  8s; animation-duration: 22s; }
.hero__particles i:nth-child(13) { left: 42%; animation-delay: 18s; animation-duration: 26s; width: 2px; height: 2px; opacity: 0; }
.hero__particles i:nth-child(14) { left: 67%; animation-delay: 11s; animation-duration: 28s; }
@keyframes emberRise {
  0%   { transform: translate3d(0, 0, 0); opacity: 0; }
  10%  { opacity: 0.45; }
  50%  { transform: translate3d(15px, -50vh, 0); opacity: 0.55; }
  90%  { opacity: 0.35; }
  100% { transform: translate3d(-10px, -110vh, 0); opacity: 0; }
}
.hero .wrap { position: relative; z-index: 3; width: 100%; }
.hero__eyebrow { color: var(--brass); }
.hero h1 { margin-top: 1.8rem; max-width: 16ch; }
.hero__sub { margin-top: 2.1rem; color: var(--text-dim); max-width: 50ch; font-size: clamp(1.05rem, 1.5vw, 1.26rem); line-height: 1.55; }
.hero__actions { margin-top: 2.8rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__direct { margin-top: 1.6rem; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-faint); }
.hero__direct a { color: var(--brass-lt); position: relative; padding-bottom: 2px; border-bottom: 1px solid rgba(201,162,75,0.35); transition: color .25s, border-color .25s; white-space: nowrap; display: inline-block; }
.hero__direct a:hover { color: var(--brass-lt); border-color: var(--brass-lt); }
.hero__cue { position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%); z-index: 3; font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-faint); display: flex; flex-direction: column; align-items: center; gap: 0.8rem; }
.hero__cue i { width: 1px; height: 46px; background: linear-gradient(var(--brass), transparent); display: block; }

/* ledger */
.ledger { position: relative; z-index: 3; margin-top: clamp(2.8rem, 5vw, 4.4rem); border-top: 1px solid var(--line); padding-top: 1.8rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.ledger__k { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-faint); }
.ledger__v { font-family: var(--mono); font-size: 0.94rem; color: var(--text); margin-top: 0.55rem; letter-spacing: 0.03em; }
.ledger__v .dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--brass); box-shadow: 0 0 10px var(--brass-glow); margin-right: 8px; vertical-align: middle; animation: dotPulse 3s ease-in-out infinite; will-change: transform, opacity; }
.ledger__v:nth-child(2) .dot { animation-delay: 0.7s; }
.ledger__v:nth-child(3) .dot { animation-delay: 1.4s; }
.ledger__v:nth-child(4) .dot { animation-delay: 2.1s; }
.ledger__v.pending .dot { background: var(--steel); box-shadow: none; animation: dotPulseDim 3.2s ease-in-out infinite; }
@keyframes dotPulse {
  0%, 100% { transform: scale(0.9); opacity: 0.75; }
  50%      { transform: scale(1.1); opacity: 1; }
}
@keyframes dotPulseDim {
  0%, 100% { opacity: 0.55; }
  50%      { opacity: 1; }
}

/* ============================================================ MARQUEE */
.marquee { border-block: 1px solid var(--line); background: var(--bg-2); overflow: hidden; padding-block: 1.5rem; }
.marquee__track { display: flex; gap: 3.5rem; white-space: nowrap; width: max-content; will-change: transform; }
.marquee__track span { font-family: var(--serif); font-style: italic; font-size: clamp(1.5rem, 3vw, 2.4rem); color: var(--text-faint); display: inline-flex; align-items: center; gap: 3.5rem; }
.marquee__track span::after { content: "✦"; font-style: normal; font-size: 0.8em; color: var(--brass); }

/* agency marquee — mono, smaller, scope-statement band under the landscape */
.marquee--agencies { background: transparent; border-block: 1px solid var(--line); padding-block: 1.1rem; }
.marquee--agencies .marquee__track { gap: 2.5rem; }
.marquee--agencies .marquee__track span { font-family: var(--mono); font-style: normal; font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-dim); gap: 2.5rem; }
.marquee--agencies .marquee__track span::after { content: "·"; font-size: 1.4em; color: var(--brass); line-height: 0.4; }

/* ============================================================ LANDSCAPE */
.landscape { position: relative; padding-block: clamp(5rem, 9vw, 8rem) 0; overflow: hidden; background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.landscape__intro { max-width: 64ch; }
.landscape__intro .section-title { margin-top: 1.2rem; max-width: 22ch; }
.landscape__intro .lead { margin-top: 1.4rem; }
.landscape__stage { position: relative; margin-top: clamp(2.5rem, 5vw, 4.5rem); width: 100%; overflow: hidden; mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%); -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%); }
/* slow drifting "sky" — atmospheric gradient behind silhouettes */
.landscape__stage::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 80% at 30% 70%, rgba(30,63,99,0.45) 0%, transparent 60%), radial-gradient(40% 70% at 80% 60%, rgba(201,162,75,0.10) 0%, transparent 65%); animation: skyDrift 52s ease-in-out infinite; will-change: transform; pointer-events: none; }
@keyframes skyDrift {
  0%, 100% { transform: translate3d(-3%, 0, 0); }
  50%      { transform: translate3d(3%, 0, 0); }
}
.landscape__svg { display: block; width: 100%; height: auto; color: var(--brass-lt); filter: drop-shadow(0 0 14px rgba(201,162,75,0.18)); will-change: transform; }
.landscape__svg .lm { opacity: 0.92; }
.landscape__svg .lm * { stroke: currentColor; }

/* ============================================================ JET FLYBY */
.jet-flyby { position: fixed; top: 0; left: 0; z-index: 6; pointer-events: none; width: 168px; height: 48px; opacity: 0; color: var(--brass-lt); filter: drop-shadow(0 0 10px rgba(201,162,75,0.55)); will-change: transform, opacity; }
.jet-flyby svg { width: 100%; height: 100%; display: block; }
.jet-trail { position: absolute; top: 50%; right: 96%; width: 320px; height: 1px; background: linear-gradient(90deg, transparent, var(--brass-lt)); opacity: 0.6; transform: translateY(-50%); }
.jet-trail::after { content: ""; position: absolute; right: 0; top: -1px; width: 60px; height: 3px; background: linear-gradient(90deg, transparent, rgba(230,196,121,0.55)); filter: blur(2px); }
@media (prefers-reduced-motion: reduce) { .jet-flyby { display: none; } }

/* ============================================================ BANDS */
.band { padding-block: clamp(5rem, 11vw, 9rem); position: relative; }
.section-head { max-width: 62ch; margin-bottom: clamp(2.8rem, 5vw, 4rem); }
.section-head .lead { margin-top: 1.3rem; }

/* scrub statement — words light up on scroll */
.scrub-wrap { max-width: 22ch; }
.statement { font-family: var(--serif); font-size: clamp(1.9rem, 4.6vw, 3.7rem); line-height: 1.12; letter-spacing: -0.018em; }
.statement .sw { color: rgba(155,172,190,0.22); transition: color .25s; }
.statement em { font-style: italic; }

/* ---------- capability cards ---------- */
.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); perspective: 1200px; }
.cap { background: var(--surface); padding: 2.4rem 2.1rem 2.6rem; position: relative; overflow: hidden; min-height: 300px; display: flex; flex-direction: column; transition: background .5s var(--ease); transform-style: preserve-3d; will-change: transform; }
.cap > * { transform: translateZ(0); }
.cap h3, .cap p, .cap__no, .cap__codes { transition: transform .4s var(--ease); }
.cap:hover h3 { transform: translateZ(24px); }
.cap:hover p { transform: translateZ(14px); }
.cap:hover .cap__no { transform: translateZ(20px); }
.cap::before { content: ""; position: absolute; left: 0; top: 0; height: 2px; width: 0; background: linear-gradient(90deg, var(--brass), var(--brass-lt)); box-shadow: 0 0 12px var(--brass-glow); transition: width .6s var(--ease); }
.cap:hover { background: var(--surface-2); }
.cap:hover::before { width: 100%; }
.cap__glow { position: absolute; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(201,162,75,0.16), transparent 65%); pointer-events: none; opacity: 0; transition: opacity .4s; transform: translate(-50%,-50%); }
.cap:hover .cap__glow { opacity: 1; }
.cap__no { font-family: var(--mono); font-size: 0.72rem; color: var(--brass); letter-spacing: 0.2em; position: relative; z-index: 2; }
.cap h3 { font-size: 1.55rem; margin-top: 1.1rem; position: relative; z-index: 2; }
.cap p { color: var(--text-dim); font-size: 0.97rem; margin-top: 0.9rem; flex: 1; position: relative; z-index: 2; }
.cap__codes { font-family: var(--mono); font-size: 0.66rem; color: var(--text-faint); letter-spacing: 0.07em; margin-top: 1.5rem; padding-top: 1.1rem; border-top: 1px solid var(--line); position: relative; z-index: 2; }
.cap__codes b { color: var(--text-dim); font-weight: 500; }

/* ---------- pinned delivery sequence ---------- */
.pinwrap { height: 400vh; position: relative; }
.pinstage { position: sticky; top: 0; height: 100svh; overflow: hidden; display: flex; align-items: center; }
.pinhead { position: absolute; top: clamp(5rem,12vh,8rem); left: 0; right: 0; z-index: 5; }
.pinprog { position: absolute; bottom: clamp(3rem,8vh,5rem); left: var(--gutter); right: var(--gutter); z-index: 5; height: 1px; background: var(--line); }
.pinprog i { position: absolute; inset: 0; right: 100%; background: linear-gradient(90deg,var(--brass),var(--brass-lt)); box-shadow: 0 0 10px var(--brass-glow); }
.pintrack { display: flex; width: max-content; will-change: transform; padding-inline: var(--gutter); gap: clamp(2rem, 6vw, 7rem); }
.pinpanel { width: min(76vw, 620px); flex-shrink: 0; }
.pinpanel .num { font-family: var(--mono); font-size: clamp(4rem, 12vw, 9rem); color: transparent; -webkit-text-stroke: 1px var(--line-2); line-height: 1; letter-spacing: -0.02em; }
.pinpanel h3 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-top: 0.5rem; }
.pinpanel p { color: var(--text-dim); font-size: clamp(1.05rem,1.5vw,1.25rem); margin-top: 1.3rem; max-width: 42ch; }
.pinpanel .tag { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass); margin-top: 1.6rem; display: inline-block; }

/* ---------- stat counters ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
.stat-cell { background: var(--bg); padding: clamp(2.2rem,4vw,3.4rem) 1.6rem; text-align: center; }
.stat-cell .n { font-family: var(--serif); font-size: clamp(2.6rem, 5.5vw, 4.2rem); color: var(--text); line-height: 1; letter-spacing: -0.02em; }
.stat-cell .n em { color: var(--brass-lt); font-style: normal; }
.stat-cell .l { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-faint); margin-top: 1rem; }

/* ---------- split feature ---------- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.split--rev { direction: rtl; } .split--rev > * { direction: ltr; }
.panel { background: var(--surface); border: 1px solid var(--line); padding: clamp(2.2rem,4vw,3.4rem); position: relative; overflow: hidden; }
.panel::after { content: ""; position: absolute; inset: 0; opacity: 0.5; background-image: linear-gradient(rgba(108,125,144,0.08) 1px,transparent 1px), linear-gradient(90deg,rgba(108,125,144,0.08) 1px,transparent 1px); background-size: 42px 42px; mask-image: radial-gradient(120% 120% at 80% 0%, #000, transparent 72%); }
.panel__inner { position: relative; z-index: 1; }
.panel .big { font-family: var(--serif); font-size: clamp(2.4rem,5vw,3.6rem); color: var(--text); line-height: 1; }
.panel .big em { color: var(--brass-lt); font-style: normal; }
.panel .big + p { color: var(--text-dim); margin-top: 0.6rem; font-size: 0.95rem; }
.panel hr { border: none; border-top: 1px solid var(--line); margin: 1.9rem 0; }

/* feature list */
.flist li { display: grid; grid-template-columns: auto 1fr; gap: 1.3rem; padding: 1.4rem 0; border-bottom: 1px solid var(--line); align-items: start; }
.flist li:first-child { border-top: 1px solid var(--line); }
.flist .mk { font-family: var(--mono); font-size: 0.72rem; color: var(--brass); letter-spacing: 0.1em; padding-top: 0.2rem; }
.flist h3 { font-size: 1.18rem; }
.flist p { color: var(--text-dim); font-size: 0.95rem; margin-top: 0.3rem; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; position: relative; overflow: hidden; padding-block: clamp(6rem,12vw,10rem); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 110% at 50% 100%, rgba(201,162,75,0.16), transparent 60%); }
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(2.4rem, 6vw, 5rem); max-width: 16ch; margin-inline: auto; }
.cta-band p { color: var(--text-dim); margin: 1.4rem auto 2.6rem; max-width: 46ch; }
.cta-band .hero__actions { justify-content: center; }

/* ============================================================ PAGE HEAD (interior) */
.pagehead { position: relative; overflow: hidden; padding-top: calc(82px + clamp(4rem,9vw,7rem)); padding-bottom: clamp(3.5rem,7vw,5.5rem); }
.pagehead h1 { font-size: clamp(2.6rem, 7vw, 5.4rem); margin-top: 1.5rem; max-width: 17ch; }
.pagehead p { color: var(--text-dim); margin-top: 1.5rem; max-width: 56ch; font-size: 1.12rem; }
.pagehead .eyebrow { color: var(--brass); }

/* ============================================================ CONTACT */
.contact-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(2.5rem,6vw,5rem); }
.info-block { padding: 1.7rem 0; border-bottom: 1px solid var(--line); }
.info-block:first-child { padding-top: 0; }
.info-block .k { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass); }
.info-block .v { margin-top: 0.6rem; font-size: 1.05rem; color: var(--text); }
.info-block .v a:hover { color: var(--brass-lt); }
.info-block .v.mono { font-family: var(--mono); font-size: 0.9rem; letter-spacing: 0.03em; color: var(--text-dim); }

form.lead-form { display: grid; gap: 1.5rem; }
.field { display: grid; gap: 0.55rem; }
.field label { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-dim); }
.field input, .field select, .field textarea { font-family: var(--sans); font-size: 1rem; color: var(--text); background: var(--surface); border: 1px solid var(--line); padding: 0.95rem 1.1rem; transition: border .3s, box-shadow .3s; width: 100%; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(201,162,75,0.14); }
.field select { appearance: none; cursor: pointer; }
.field textarea { resize: vertical; min-height: 140px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-note { font-family: var(--mono); font-size: 0.78rem; color: var(--text-faint); letter-spacing: 0.02em; }

/* ============================================================ FOOTER */
.footer { padding-block: clamp(4rem,7vw,6rem) 2.5rem; border-top: 1px solid var(--line); background: var(--bg-2); position: relative; overflow: hidden; }
.footer__big { font-family: var(--serif); font-size: clamp(3rem, 13vw, 11rem); line-height: 0.9; letter-spacing: -0.03em; color: transparent; -webkit-text-stroke: 1px var(--line-2); margin-bottom: clamp(2.5rem,6vw,4.5rem); white-space: nowrap; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line); }
.footer__brand img { height: 72px; width: auto; max-width: 260px; margin-bottom: 1.4rem; opacity: 0.94; }
.footer__brand p { color: var(--text-dim); font-size: 0.92rem; max-width: 34ch; }
.footer h4 { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass); margin-bottom: 1.2rem; }
.footer__col a, .footer__col p { display: block; color: var(--text-dim); font-size: 0.92rem; margin-bottom: 0.7rem; transition: color .3s; }
.footer__col a:hover { color: var(--text); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; flex-wrap: wrap; gap: 1rem; }
.footer__bottom p, .footer__bottom span { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.08em; color: var(--text-faint); }
.footer__codes { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ============================================================ REVEAL DEFAULTS (pre-JS, no-flash) */
.reveal { opacity: 0; }
.no-js .reveal, .ready .reveal { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .grain { display: none; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ============================================================ RESPONSIVE */
@media (max-width: 960px) {
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .ledger { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split--rev { direction: ltr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  /* ---------- nav ---------- */
  .nav__inner { height: 68px; }
  .brand img { height: 26px; }
  .brand__name { font-size: 0.96rem; line-height: 1.05; }
  .brand__name span { display: none; } /* tagline eats space on phones */
  .nav__links { position: fixed; inset: 68px 0 auto 0; flex-direction: column; align-items: flex-start; gap: 1.4rem; background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 1.6rem var(--gutter); transform: translateY(-130%); transition: transform .5s var(--ease); }
  .nav__links.open { transform: translateY(0); }
  .nav__toggle { display: flex; }
  .nav__cta { padding: 0.7rem 1.1rem; }

  /* ---------- hero ---------- */
  .hero { padding-top: 68px; min-height: auto; padding-block: 7rem 4.5rem; }
  .hero h1 { margin-top: 1.4rem; }
  .hero__sub { margin-top: 1.6rem; }
  .hero__actions { margin-top: 2.2rem; flex-direction: column; align-items: stretch; gap: 0.85rem; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__cue { display: none; } /* overlapped the ledger; the scroll affordance is implicit on touch */
  .hero__hex { right: 6%; top: auto; bottom: 6%; width: min(38vw, 220px); opacity: 0.07; }
  .ledger { margin-top: 2.6rem; gap: 1.4rem 1rem; }
  .ledger__v { font-size: 0.86rem; }

  /* ---------- form/grid layouts ---------- */
  .cap-grid { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
  .contact-grid { gap: 2.5rem; }

  /* ---------- bands: tighter vertical rhythm on phones ---------- */
  .band { padding-block: 4.5rem; }
  .cta-band { padding-block: 5rem; }
  .pagehead { padding-bottom: 3rem; padding-top: calc(68px + 4rem); }
  .section-head { margin-bottom: 2.2rem; }

  /* ---------- pinned sequence → stacked ---------- */
  .pinwrap { height: auto; }
  .pinstage { position: static; height: auto; display: block; padding-block: 3rem; }
  .pintrack { flex-direction: column; transform: none !important; gap: 2.6rem; padding-inline: var(--gutter); }
  .pinpanel { width: 100%; }
  .pinpanel p { margin-top: 0.9rem; }
  .pinhead { position: static; margin-bottom: 1.6rem; }
  .pinprog { display: none; }

  /* ---------- panels & stats ---------- */
  .stats { grid-template-columns: 1fr 1fr; }
  .stat-cell { padding: 1.8rem 1rem; }
  .panel { padding: 1.6rem 1.4rem; }

  /* ---------- footer ---------- */
  .footer__big { font-size: clamp(2rem, 9vw, 3.4rem); margin-bottom: 2.5rem; text-align: center; transform: none !important; }
  .footer__top { grid-template-columns: 1fr; gap: 2.2rem; padding-bottom: 2.2rem; text-align: center; }
  .footer__brand { grid-column: auto; }
  .footer__brand img { margin-inline: auto; }
  .footer__brand p { margin-inline: auto; }
  .footer__col h4 { text-align: center; }
  .footer__col a, .footer__col p { text-align: center; }
  .footer__bottom { gap: 1.2rem; justify-content: center; text-align: center; }
  .footer__bottom p, .footer__bottom span, .footer__codes { font-size: 0.62rem; }
  .footer__codes { justify-content: center; }

  /* ---------- hero direct-call line — keep phone number together, tighten letter-spacing so it fits ---------- */
  .hero__direct { font-size: 0.66rem; letter-spacing: 0.13em; }

  /* ---------- form input sized to avoid iOS auto-zoom ---------- */
  .field input, .field select, .field textarea { font-size: 16px; }

  /* ---------- landscape on phones ---------- */
  .landscape { padding-top: 3.5rem; }
  .landscape__stage { margin-top: 2.2rem; }
  .marquee--agencies { padding-block: 0.85rem; }
  .marquee--agencies .marquee__track span { font-size: 0.62rem; letter-spacing: 0.18em; gap: 1.8rem; }
  .marquee--agencies .marquee__track { gap: 1.8rem; }

  /* jet on phones — smaller silhouette, lighter glow */
  .jet-flyby { width: 120px; height: 34px; filter: drop-shadow(0 0 6px rgba(201,162,75,0.4)); }
  .jet-trail { width: 200px; }

  /* perf-trim ambience on phones — keep the essentials, kill the expensive */
  .hero__particles i:nth-child(n+8) { display: none; } /* halve particle count */
  .hero__breath { animation-duration: 40s; opacity: 0.55; } /* slower, fainter */
  .display em, h1 em, h2 em { animation: none; text-shadow: 0 0 14px rgba(230,196,121,0.22); } /* static glow, no shimmer paint */
  .landscape__stage::before { animation-duration: 50s; } /* slower */
}
