/* ============================================================
   RFP RESCUE — one table, both sides.
   ============================================================ */

@font-face { font-family: 'Cormorant'; src: url('../fonts/cormorant-300.woff2') format('woff2'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Cormorant'; src: url('../fonts/cormorant-400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Cormorant'; src: url('../fonts/cormorant-500.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Cormorant'; src: url('../fonts/cormorant-400i.woff2') format('woff2'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'InterVar'; src: url('../fonts/inter-400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'InterVar'; src: url('../fonts/inter-500.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'PlexMono'; src: url('../fonts/plexmono-400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'PlexMono'; src: url('../fonts/plexmono-500.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }

:root {
  --ink: #04070d;
  --navy: #081020;
  --navy-2: #0b1526;
  --bone: #e9e4d8;
  --platinum: #c8cfd9;
  --dim: #7d8794;
  --faint: #46505e;
  --gold: #d9a441;
  --gold-bright: #e9b955;
  --gold-soft: rgba(217, 164, 65, 0.55);
  --serif: 'Cormorant', 'Times New Roman', serif;
  --sans: 'InterVar', -apple-system, 'Segoe UI', sans-serif;
  --mono: 'PlexMono', 'SFMono-Regular', Consolas, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--ink);
  color: var(--platinum);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.no-touch, body.no-touch a, body.no-touch button, body.no-touch input, body.no-touch textarea, body.no-touch label { cursor: none; }

::selection { background: rgba(217, 164, 65, 0.25); color: var(--bone); }

.mono { font-family: var(--mono); font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; }
.wrap { width: min(1240px, calc(100% - 12vw)); margin: 0 auto; }
em { font-style: italic; }

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 1.1s var(--ease), visibility 1.1s;
}
.loader.off { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-emblem { display: block; margin: 0 auto 22px; opacity: 0.95; }
.loader-mark { font-family: var(--mono); font-size: 13px; letter-spacing: 0.55em; color: var(--bone); margin-bottom: 34px; padding-left: 0.55em; }
.loader-bar { width: 180px; height: 1px; background: rgba(200, 207, 217, 0.14); margin: 0 auto 18px; overflow: hidden; }
.loader-bar span { display: block; height: 100%; width: 0%; background: var(--gold); transition: width 0.35s ease-out; }
.loader-label { font-size: 10px; color: var(--dim); }

/* ---------- Cursor ---------- */
.cursor, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 190; border-radius: 50%; will-change: transform; }
.cursor { width: 6px; height: 6px; background: var(--gold); }
.cursor-ring { width: 30px; height: 30px; border: 1px solid rgba(217, 164, 65, 0.35); transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s; }
.cursor-ring.hot { width: 48px; height: 48px; border-color: rgba(217, 164, 65, 0.8); }
body:not(.no-touch) .cursor, body:not(.no-touch) .cursor-ring { display: none; }

/* ---------- Grain ---------- */
.grain { position: fixed; inset: -60px; z-index: 180; pointer-events: none; opacity: 0.055; background-repeat: repeat; }

/* ---------- Cookies ---------- */
.cookies {
  position: fixed; right: 26px; bottom: 26px; z-index: 185;
  width: min(340px, calc(100vw - 40px));
  background: rgba(6, 11, 20, 0.42);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border: 1px solid rgba(200, 207, 217, 0.08);
  padding: 18px 20px 20px;
  opacity: 0; visibility: hidden; transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), visibility 0.7s;
}
.cookies.show { opacity: 1; visibility: visible; transform: none; }
.ck-eyebrow { font-size: 10px; color: var(--gold-bright); margin-bottom: 8px; }
.ck-text { font-size: 13px; color: var(--platinum); line-height: 1.6; margin-bottom: 14px; }
.ck-actions { display: flex; gap: 8px; }
.ck-actions button { font-size: 8.5px; letter-spacing: 0.2em; padding: 10px 18px; cursor: pointer; background: transparent; transition: all 0.35s var(--ease); }
.ck-accept { border: 1px solid rgba(217, 164, 65, 0.55); color: var(--gold); }
.ck-accept:hover { background: rgba(217, 164, 65, 0.12); border-color: var(--gold); }
.ck-decline { border: 1px solid rgba(200, 207, 217, 0.14); color: var(--faint); }
.ck-decline:hover { color: var(--platinum); border-color: rgba(200, 207, 217, 0.35); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 150;
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 4vw 0;
  mix-blend-mode: normal;
  transition: transform 0.6s var(--ease), opacity 0.6s;
}
.nav.hidden { transform: translateY(-110%); opacity: 0; }
.nav a { color: var(--bone); text-decoration: none; font-size: 11px; }
.nav .nav-mark { display: inline-flex; align-items: center; gap: 13px; letter-spacing: 0.5em; font-size: 12px; }
.nav-emblem { width: 32px; height: 32px; display: block; }
.nav-links { display: flex; gap: 40px; }
.nav-links a { position: relative; color: var(--dim); transition: color 0.4s; padding-bottom: 6px; }
.nav-links a:hover { color: var(--bone); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.nav-links a.active { color: var(--bone); }
.nav-links a.active::after { transform: scaleX(1); }
.nav-contact { color: var(--gold) !important; }

/* ---------- Film ---------- */
.film { position: relative; height: 1500vh; }
.film-stage { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; }
#ride { position: absolute; inset: 0; width: 100%; height: 100%; display: block; background: var(--ink); }
.film-shade {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(4,7,13,0.55) 0%, rgba(4,7,13,0) 22%, rgba(4,7,13,0) 68%, rgba(4,7,13,0.6) 100%),
    radial-gradient(120% 90% at 50% 50%, rgba(4,7,13,0) 55%, rgba(4,7,13,0.45) 100%);
}

/* ---------- Overlays (shared) ---------- */
.ov { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; pointer-events: none; opacity: 0; visibility: hidden; transition: opacity 0.8s var(--ease), visibility 0.8s; }
.ov.on { opacity: 1; visibility: visible; }

.eyebrow { font-size: 13px; color: var(--gold-bright); margin-bottom: 28px; opacity: 0; transform: translateY(14px); transition: opacity 0.9s var(--ease) 0.05s, transform 0.9s var(--ease) 0.05s; text-shadow: 0 1px 3px rgba(4,7,13,0.7), 0 2px 12px rgba(4,7,13,0.6); }
.ov.on .eyebrow, .rv.in .eyebrow { opacity: 1; transform: none; }

/* ---------- Legibility: anchored scrims + crisping shadows ----------
   Every text block over footage gets a feathered dark gradient tied to the
   text position (fades with the overlay), plus a soft two-layer shadow.
   Strong enough for WCAG contrast at each clip's brightest frame, soft
   enough to never read as a panel. */
.ov-hero      { background: radial-gradient(85% 92% at 26% 50%, rgba(4,7,13,0.68) 0%, rgba(4,7,13,0.36) 46%, rgba(4,7,13,0) 74%); }
.ov-manifesto { background: radial-gradient(58% 56% at 50% 50%, rgba(4,7,13,0.62) 0%, rgba(4,7,13,0.30) 54%, rgba(4,7,13,0) 78%); }
.ov-buyer     { background: radial-gradient(72% 78% at 22% 48%, rgba(4,7,13,0.72) 0%, rgba(4,7,13,0.40) 48%, rgba(4,7,13,0) 75%); }
.ov-bidder    { background: radial-gradient(72% 78% at 78% 48%, rgba(4,7,13,0.72) 0%, rgba(4,7,13,0.40) 48%, rgba(4,7,13,0) 75%); }
.ov-stats     { background: linear-gradient(180deg, rgba(4,7,13,0) 32%, rgba(4,7,13,0.46) 58%, rgba(4,7,13,0.74) 84%, rgba(4,7,13,0.80) 100%); }

.hero-h, .manifesto-h, .side-h, .svc-h, .stat-n, .stakes-h, .diff-h, .cta-h {
  text-shadow: 0 1px 2px rgba(4,7,13,0.35), 0 2px 18px rgba(4,7,13,0.45);
}
.eyebrow, .hero-sub, .side-b, .svc-b, .svc-no, .stat-l, .stats-foot, .cta-sub, .cta-assure, .cmp-a, .cmp-b {
  text-shadow: 0 1px 2px rgba(4,7,13,0.5), 0 1px 8px rgba(4,7,13,0.5);
}

/* feathered halos anchored to the text itself — the halo holds full strength
   across the whole line and feathers only in the padding beyond it; a blur
   keeps every edge soft. Text blocks shrink to fit so halos hug the words. */
.eyebrow, .svc-h, .svc-b, .side-b { width: fit-content; }
.eyebrow { position: relative; z-index: 0; }
.eyebrow::before {
  content: ''; position: absolute; inset: -18px -56px; z-index: -1;
  background: radial-gradient(closest-side, rgba(4,7,13,0.80) 78%, rgba(4,7,13,0) 100%);
  filter: blur(10px);
}
.svc { z-index: 0; }
.svc::before {
  content: ''; position: absolute; inset: -26px -90px -36px -96px; z-index: -1;
  background: radial-gradient(closest-side, rgba(4,7,13,0.74) 72%, rgba(4,7,13,0) 100%);
  filter: blur(12px);
}
.side-b { position: relative; z-index: 0; }
.side-b::before {
  content: ''; position: absolute; inset: -20px -48px; z-index: -1;
  background: radial-gradient(closest-side, rgba(4,7,13,0.64) 78%, rgba(4,7,13,0) 100%);
  filter: blur(10px);
}

/* masked line reveals */
.line { display: block; overflow: hidden; }
.line > span, .line > em { display: inline-block; transform: translateY(115%); transition: transform 1.2s var(--ease); }
.ov.on .line > span { transform: translateY(0); }
.ov.on .line:nth-child(2) > span { transition-delay: 0.1s; }
.ov.on .line:nth-child(3) > span { transition-delay: 0.2s; }

/* ---------- HERO ---------- */
.ov-hero { padding-left: 8vw; justify-content: center; }
.hero-h {
  font-family: var(--serif); font-weight: 300; color: var(--bone);
  font-size: clamp(44px, 6.4vw, 104px);
  line-height: 1.04; letter-spacing: 0.005em; max-width: 12em;
}
.hero-h em { color: var(--gold); font-weight: 400; }
.hero-sub {
  margin-top: 34px; max-width: 34em; color: var(--platinum); font-size: clamp(15px, 1.15vw, 17px); line-height: 1.75;
  opacity: 0; transform: translateY(16px); transition: opacity 1s var(--ease) 0.55s, transform 1s var(--ease) 0.55s;
}
.ov.on .hero-sub { opacity: 1; transform: none; }

.scroll-cue {
  position: absolute; bottom: 42px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  color: var(--dim); font-size: 10px; letter-spacing: 0.3em;
  opacity: 0; transition: opacity 1.2s ease 1.6s;
}
.scroll-cue.on { opacity: 1; transition: opacity 1.2s ease 1.6s; }
.scroll-cue.off { opacity: 0; transition: opacity 0.5s ease; }
.cue-line { width: 1px; height: 54px; background: linear-gradient(180deg, var(--gold-soft), transparent); animation: cue 2.6s var(--ease) infinite; transform-origin: top; }
@keyframes cue { 0% { transform: scaleY(0); opacity: 0; } 35% { transform: scaleY(1); opacity: 1; } 100% { transform: scaleY(1) translateY(30px); opacity: 0; } }

/* ---------- MANIFESTO ---------- */
.ov-manifesto { align-items: center; text-align: center; }
.manifesto-h { font-family: var(--serif); font-weight: 300; color: var(--bone); font-size: clamp(40px, 5.6vw, 92px); line-height: 1.12; }
.manifesto-h .line-em > span { color: var(--gold); font-style: italic; font-weight: 400; }

/* ---------- BOTH SIDES ---------- */
.ov-side { max-width: 44%; padding-left: 8vw; }
.ov-bidder { align-items: flex-end; text-align: right; padding-left: 0; padding-right: 8vw; margin-left: auto; }
.side-h { font-family: var(--serif); font-weight: 300; color: var(--bone); font-size: clamp(36px, 4.6vw, 74px); line-height: 1.05; opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease) 0.15s, transform 1s var(--ease) 0.15s; }
.side-b { margin-top: 24px; color: var(--platinum); font-size: clamp(15px, 1.2vw, 18px); line-height: 1.8; max-width: 26em; opacity: 0; transform: translateY(22px); transition: opacity 1s var(--ease) 0.32s, transform 1s var(--ease) 0.32s; }
.ov.on .side-h, .ov.on .side-b { opacity: 1; transform: none; }
.ov-bidder .side-h em, .ov-buyer .side-h em { color: var(--gold); }

/* ---------- SERVICES ---------- */
.ov-services { padding-left: 8vw; max-width: none; background: linear-gradient(90deg, rgba(4,7,13,0.84) 0%, rgba(4,7,13,0.66) 30%, rgba(4,7,13,0.30) 52%, rgba(4,7,13,0) 66%); }
.svc-list { max-width: 620px; }
.svc-list { list-style: none; display: flex; flex-direction: column; gap: 4.5vh; }
.svc { position: relative; padding-left: 64px; opacity: 0; transform: translateY(30px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.svc.lit { opacity: 1; transform: none; }
.svc-no { position: absolute; left: 0; top: 6px; color: var(--gold-bright); font-size: 12px; }
.svc-rule { position: absolute; left: 0; bottom: -18px; height: 1px; width: 100%; background: linear-gradient(90deg, var(--gold-soft), rgba(217,164,65,0.05)); transform: scaleX(0); transform-origin: left; transition: transform 1.4s var(--ease) 0.2s; }
.svc.lit .svc-rule { transform: scaleX(1); }
.svc-h { font-family: var(--serif); font-weight: 400; color: var(--bone); font-size: clamp(24px, 2.6vw, 40px); line-height: 1.1; }
.svc-b { margin-top: 10px; color: var(--platinum); font-size: clamp(15px, 1.1vw, 17px); line-height: 1.6; }
.svc.past { opacity: 0.35; }

/* ---------- Services: hover / tap / focus expand ---------- */
.svc { pointer-events: auto; cursor: default; transition: opacity 0.5s var(--ease), transform 0.9s var(--ease); }
.svc:focus-visible { outline: 1px solid rgba(217, 164, 65, 0.55); outline-offset: 10px; }
.svc-detail {
  display: grid; grid-template-rows: 0fr; opacity: 0; margin-top: 0;
  transition: grid-template-rows 0.35s var(--ease), opacity 0.3s var(--ease), margin-top 0.35s var(--ease);
}
.svc-detail > div { overflow: hidden; }
.svc.open .svc-detail { grid-template-rows: 1fr; opacity: 1; margin-top: 16px; }
.svc-d { color: var(--platinum); line-height: 1.6; max-width: 34em; font-style: italic; font-family: var(--serif); font-size: 17px; }
.svc-points { list-style: none; margin-top: 12px; display: flex; flex-direction: column; gap: 7px; padding-bottom: 4px; }
.svc-points li { font-size: 15px; line-height: 1.55; color: var(--platinum); padding-left: 20px; position: relative; }
.svc-points li::before { content: ''; position: absolute; left: 2px; top: 0.62em; width: 8px; height: 1px; background: var(--gold); }
/* focus the open item — the rest recede, matching the site's dim language */
.svc-list.focused .svc.lit:not(.open) { opacity: 0.38; }
.svc-list .svc.open { opacity: 1; }

/* ---------- CREDIBILITY / STATS ---------- */
.ov-stats { padding-left: 8vw; padding-right: 8vw; justify-content: flex-end; padding-bottom: 12vh; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3vw; border-top: 1px solid rgba(200,207,217,0.14); padding-top: 4vh; }
.stat { opacity: 0; transform: translateY(24px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.ov.on .stat { opacity: 1; transform: none; }
.ov.on .stat:nth-child(2) { transition-delay: 0.12s; }
.ov.on .stat:nth-child(3) { transition-delay: 0.24s; }
.ov.on .stat:nth-child(4) { transition-delay: 0.36s; }
.stat-n { display: block; font-family: var(--serif); font-weight: 300; color: var(--bone); font-size: clamp(40px, 4.6vw, 76px); line-height: 1; font-variant-numeric: tabular-nums; }
.stat-n i { font-style: normal; color: var(--gold); }
.stat-n b { font-weight: 300; }
.stat-l { display: block; margin-top: 14px; font-size: 12px; color: var(--platinum); }
.stats-foot { margin-top: 5vh; color: var(--platinum); font-style: italic; font-family: var(--serif); font-size: clamp(16px, 1.4vw, 21px); opacity: 0; transition: opacity 1s var(--ease) 0.5s; }
.ov.on .stats-foot { opacity: 1; }

/* ---------- Reveal-on-scroll primitives (below the film) ---------- */
.rv { opacity: 0; transform: translateY(34px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.rv.in { opacity: 1; transform: none; }

/* ---------- THE DIFFERENCE ---------- */
.difference { position: relative; padding: 22vh 0 24vh; overflow: hidden; }
.diff-bg { position: absolute; inset: 0; background: url('../assets/stills/still-difference.webp') center / cover no-repeat; opacity: 0.5; }
.difference::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, var(--ink) 0%, rgba(4,7,13,0.72) 30%, rgba(4,7,13,0.78) 70%, var(--ink) 100%); }
.difference .wrap { position: relative; z-index: 2; }
.diff-h { font-family: var(--serif); font-weight: 300; color: var(--bone); font-size: clamp(34px, 4.4vw, 68px); line-height: 1.12; margin-bottom: 11vh; }
.diff-h em { color: var(--gold); }
/* why choose us */
.why { border-top: 1px solid rgba(200,207,217,0.14); }
.why-row { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4vw; padding: 34px 0; border-bottom: 1px solid rgba(200,207,217,0.1); transition: transform 0.3s var(--ease); }
.why-row:hover { transform: translateY(-2px); }
.why-h { font-family: var(--serif); font-weight: 400; color: var(--bone); font-size: clamp(20px, 2vw, 30px); line-height: 1.25; }
.why-b { color: var(--platinum); font-size: clamp(15px, 1.1vw, 17px); line-height: 1.75; max-width: 34em; }

.compare { border-top: 1px solid rgba(200,207,217,0.14); }
.cmp-head, .cmp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 4vw; padding: 30px 0; border-bottom: 1px solid rgba(200,207,217,0.1); }
.cmp-head { padding: 22px 0; font-size: 12px; }
.cmp-col-a { color: var(--bone); }
.cmp-col-b { color: var(--gold); }
.cmp-a { color: var(--dim); font-size: clamp(15px, 1.5vw, 22px); font-weight: 400; }
.cmp-b { color: var(--bone); font-family: var(--serif); font-size: clamp(20px, 2vw, 30px); font-weight: 400; }
.cmp-row .cmp-b::before { content: ''; }

/* ---------- THE STAKES ---------- */
.stakes { position: relative; min-height: 130vh; display: flex; align-items: center; justify-content: center; overflow: hidden; text-align: center; }
.stakes-bg { position: absolute; inset: 0; background: url('../assets/stills/still-stakes.webp') center / cover no-repeat; opacity: 0.42; }
.stakes::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, var(--ink) 0%, rgba(4,7,13,0.55) 35%, rgba(4,7,13,0.55) 65%, var(--ink) 100%); }
.stakes-h { position: relative; z-index: 2; font-family: var(--serif); font-weight: 300; color: var(--bone); font-size: clamp(42px, 7vw, 118px); line-height: 1.06; padding: 0 6vw; }
.stakes-h .line { overflow: visible; }
.stakes-h .line > span { transform: none; transition: none; }
.stakes-h .line-em > span { color: var(--gold); font-style: italic; }

/* the gavel: line 1 settles, line 2 falls hard and the whole verdict shudders */
.stakes-h .l1 > span { opacity: 0; transform: translateY(14px); transition: opacity 0.45s var(--ease), transform 0.45s var(--ease); }
.stakes-h.slam .l1 > span { opacity: 1; transform: none; }
.stakes-h .l2 > span { opacity: 0; will-change: transform, filter; }
.stakes-h.slam .l2 > span { animation: gavel-fall 0.5s cubic-bezier(0.6, 0.04, 0.98, 0.34) 0.22s both; }
.stakes-h.slam { animation: gavel-shake 0.5s linear 0.72s both; }
@keyframes gavel-fall {
  0%   { opacity: 0; transform: scale(3.4); filter: blur(14px); }
  35%  { opacity: 0.55; }
  100% { opacity: 1; transform: scale(1); filter: blur(0); }
}
@keyframes gavel-shake {
  0%   { transform: translate(0, 0); }
  12%  { transform: translate(-6px, 5px) rotate(-0.3deg); }
  28%  { transform: translate(5px, -4px) rotate(0.25deg); }
  46%  { transform: translate(-3px, 2px); }
  64%  { transform: translate(2px, -1px); }
  82%  { transform: translate(-1px, 0); }
  100% { transform: translate(0, 0); }
}

/* ---------- CTA ---------- */
.cta { position: relative; padding: 20vh 0 18vh; overflow: hidden; }
.cta-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.cta-shade { position: absolute; inset: 0; background: linear-gradient(180deg, var(--ink) 0%, rgba(4,7,13,0.62) 30%, rgba(4,7,13,0.82) 100%); }
.cta-wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 1fr; gap: 7vw; align-items: start; }
.cta-h { font-family: var(--serif); font-weight: 300; color: var(--bone); font-size: clamp(40px, 5vw, 84px); line-height: 1.05; }
.cta-h em { color: var(--gold); }
.cta-sub { margin-top: 30px; color: var(--platinum); max-width: 26em; font-size: clamp(14px, 1.15vw, 17px); line-height: 1.8; }
.cta-assure { margin-top: 42px; font-size: 12px; color: var(--dim); line-height: 2.2; }

.cta-form { display: flex; flex-direction: column; gap: 30px; padding-top: 12px; }
.field { display: flex; flex-direction: column; gap: 10px; }
.field label { font-size: 12px; color: var(--platinum); }
.field input, .field textarea {
  background: transparent; border: 0; border-bottom: 1px solid rgba(200,207,217,0.22);
  color: var(--bone); font-family: var(--serif); font-size: 22px; font-weight: 400;
  padding: 6px 0 12px; outline: none; border-radius: 0; resize: none;
  transition: border-color 0.5s;
}
.field input:focus, .field textarea:focus { border-color: var(--gold); }
.btn-gold {
  margin-top: 14px; align-self: flex-start; position: relative;
  background: transparent; border: 1px solid var(--gold); color: var(--gold);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  padding: 20px 42px; overflow: hidden; transition: color 0.45s var(--ease);
}
.btn-gold::before { content: ''; position: absolute; inset: 0; background: var(--gold); transform: scaleY(0); transform-origin: bottom; transition: transform 0.45s var(--ease); }
.btn-gold span { position: relative; z-index: 1; }
.btn-gold:hover { color: var(--ink); }
.btn-gold:hover::before { transform: scaleY(1); }
.ck-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-done { display: none; color: var(--gold-bright); font-size: 12px; }
.cta-form.sent .form-done { display: block; }
.cta-form.sent .field, .cta-form.sent .btn-gold { opacity: 0.25; pointer-events: none; }
.form-err { display: none; color: #d59b86; font-size: 12px; line-height: 1.7; }
.form-err a { color: var(--gold-bright); text-decoration: none; border-bottom: 1px solid rgba(217,164,65,0.4); }
.cta-form.error .form-err { display: block; }
.form-hint { display: none; color: var(--gold-bright); font-size: 12px; }
.cta-form.invalid .form-hint { display: block; }
.cta-form.sending .btn-gold { opacity: 0.5; pointer-events: none; }

/* ---------- FOOTER ---------- */
.footer { position: relative; background: var(--ink); border-top: 1px solid rgba(200,207,217,0.08); padding: 12vh 0 6vh; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 5vw; padding-bottom: 10vh; }
.foot-mark { display: inline-flex; align-items: center; gap: 16px; font-size: 11px; letter-spacing: 0.5em; color: var(--bone); }
.foot-emblem { width: 44px; height: 44px; display: block; }
.foot-line { margin-top: 22px; font-family: var(--serif); font-style: italic; color: var(--dim); font-size: 19px; }
.foot-col { display: flex; flex-direction: column; gap: 14px; font-size: 12px; color: var(--platinum); }
.foot-col a { color: var(--platinum); text-decoration: none; transition: color 0.4s; }
.foot-col a:hover { color: var(--gold); }
.foot-h { color: var(--dim); font-size: 11px; margin-bottom: 6px; }
.foot-map { position: relative; margin-bottom: 8vh; border: 1px solid rgba(200,207,217,0.1); }
.foot-map iframe { display: block; width: 100%; height: 340px; border: 0; filter: grayscale(1) invert(0.9) hue-rotate(180deg) contrast(0.88) brightness(0.92); }
@media (max-width: 900px) { .foot-map iframe { height: 260px; } }
.foot-base { display: flex; justify-content: space-between; font-size: 11px; color: var(--dim); border-top: 1px solid rgba(200,207,217,0.07); padding-top: 4vh; }
.foot-legal a { color: var(--dim); text-decoration: none; transition: color 0.4s; }
.foot-legal a:hover { color: var(--gold); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  /* text spans most of the frame on small screens — stronger, wider scrims */
  .ov-hero      { background: radial-gradient(120% 96% at 40% 52%, rgba(4,7,13,0.74) 0%, rgba(4,7,13,0.42) 52%, rgba(4,7,13,0) 80%); }
  .ov-manifesto { background: radial-gradient(95% 62% at 50% 50%, rgba(4,7,13,0.70) 0%, rgba(4,7,13,0.36) 56%, rgba(4,7,13,0) 82%); }
  .ov-buyer, .ov-bidder { background: radial-gradient(120% 84% at 40% 48%, rgba(4,7,13,0.72) 0%, rgba(4,7,13,0.38) 52%, rgba(4,7,13,0) 80%); }
  .ov-services  { background: linear-gradient(90deg, rgba(4,7,13,0.84) 0%, rgba(4,7,13,0.66) 42%, rgba(4,7,13,0.34) 68%, rgba(4,7,13,0.12) 100%); }
  .ov-stats     { background: linear-gradient(180deg, rgba(4,7,13,0.10) 0%, rgba(4,7,13,0.40) 40%, rgba(4,7,13,0.78) 78%, rgba(4,7,13,0.84) 100%); }

  .nav { padding-top: 20px; }
  .nav-links { gap: 22px; }
  .nav-links a[data-nav="approach"], .nav-links a[data-nav="results"] { display: none; }

  .film { height: 1150vh; }
  .ov-hero { padding-left: 7vw; padding-right: 7vw; }
  .hero-h { font-size: clamp(38px, 10.4vw, 60px); }

  .ov-side { max-width: 100%; padding: 0 7vw; text-align: left; align-items: flex-start; }
  .ov-bidder { margin-left: 0; text-align: left; padding-right: 7vw; }

  .ov-services { padding: 0 7vw; }
  .svc-list { gap: 5vh; }
  .svc { padding-left: 46px; }

  .ov-stats { padding: 0 7vw 10vh; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 6vw; row-gap: 5vh; }

  .why-row { grid-template-columns: 1fr; gap: 10px; padding: 26px 0; }
  .why-h { font-size: 20px; }
  .diff-h { margin-bottom: 7vh; }

  .cta-wrap { grid-template-columns: 1fr; gap: 10vh; }
  .foot-grid { grid-template-columns: 1fr; gap: 7vh; }
  .foot-base { flex-direction: column; gap: 10px; }
}

/* ---------- Bubble hover system ----------
   One system everywhere: 300ms, var(--ease), gold light at low opacity.
   Lift + slight swell, with a soft radial bloom forming under the text. */
.bub { position: relative; z-index: 0; display: inline-block; transition: transform 0.3s var(--ease); pointer-events: auto; }
.stat { pointer-events: auto; }
.bub::before {
  content: ''; position: absolute; inset: -12px -24px; z-index: -1; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(217,164,65,0.20) 0%, rgba(217,164,65,0.07) 55%, rgba(217,164,65,0) 100%);
  filter: blur(9px); opacity: 0; transform: scale(0.85);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  pointer-events: none;
}
.bub:hover { transform: translateY(-2px) scale(1.04); }
.bub:hover::before { opacity: 1; transform: scale(1); }

/* nav + footer links: gold underline draws in from the left */
.nav-links a:hover::after { transform: scaleX(1); }
.foot-col a { position: relative; padding-bottom: 3px; }
.foot-col a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.foot-col a:hover::after { transform: scaleX(1); }

/* compare rows: the RFP Rescue answer rises under glass */
.cmp-row { position: relative; z-index: 0; transition: transform 0.3s var(--ease); }
.cmp-row .cmp-b { position: relative; z-index: 0; display: inline-block; transition: transform 0.3s var(--ease); }
.cmp-row .cmp-b::after {
  content: ''; position: absolute; inset: -12px -28px; z-index: -1; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(217,164,65,0.18) 0%, rgba(217,164,65,0.06) 55%, rgba(217,164,65,0) 100%);
  filter: blur(9px); opacity: 0; transform: scale(0.85);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  pointer-events: none;
}
.cmp-row:hover { transform: translateY(-2px); }
.cmp-row:hover .cmp-b { transform: scale(1.03); }
.cmp-row:hover .cmp-b::after { opacity: 1; transform: scale(1); }

/* stat numbers: same bubble, hover-lifted; pulses once when counting lands */
.stat .stat-n { position: relative; z-index: 0; transition: transform 0.3s var(--ease); }
.stat .stat-n::before {
  content: ''; position: absolute; inset: -14px -26px; z-index: -1; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(217,164,65,0.20) 0%, rgba(217,164,65,0.07) 55%, rgba(217,164,65,0) 100%);
  filter: blur(10px); opacity: 0; transform: scale(0.85);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  pointer-events: none;
}
.stat:hover .stat-n { transform: translateY(-3px) scale(1.04); }
.stat:hover .stat-n::before { opacity: 1; transform: scale(1); }
.ov-stats.counted .stat:nth-child(1) .stat-n::before { animation: bub-pulse 1.1s var(--ease) 0s 1; }
.ov-stats.counted .stat:nth-child(2) .stat-n::before { animation: bub-pulse 1.1s var(--ease) 0.12s 1; }
.ov-stats.counted .stat:nth-child(3) .stat-n::before { animation: bub-pulse 1.1s var(--ease) 0.24s 1; }
.ov-stats.counted .stat:nth-child(4) .stat-n::before { animation: bub-pulse 1.1s var(--ease) 0.36s 1; }
@keyframes bub-pulse {
  0% { opacity: 0; transform: scale(0.8); }
  40% { opacity: 0.85; transform: scale(1.05); }
  100% { opacity: 0; transform: scale(1.14); }
}

/* the gold button rises with the same weight */
.btn-gold { transition: color 0.45s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(217,164,65,0.16); }

/* cursor softens and widens over bubble elements */
.cursor-ring.bub-hot {
  width: 56px; height: 56px;
  border-color: rgba(217, 164, 65, 0.45);
  background: radial-gradient(closest-side, rgba(217,164,65,0.10), rgba(217,164,65,0) 75%);
}

/* ---------- Small phones ---------- */
@media (max-width: 420px) {
  .wrap { width: calc(100% - 40px); }
  .nav { padding: 16px 20px 0; }
  .nav-links { gap: 18px; }
  .hero-h { font-size: clamp(30px, 11vw, 42px); }
  .hero-sub { font-size: 15px; }
  .manifesto-h { font-size: clamp(30px, 10.5vw, 40px); }
  .side-h { font-size: clamp(26px, 9.5vw, 36px); }
  .svc { padding-left: 38px; }
  .svc-h { font-size: 20px; }
  .stats-grid { gap: 20px; row-gap: 30px; }
  .stat-n { font-size: 34px; }
  .stats-foot { font-size: 15px; }
  .diff-h { font-size: 28px; margin-bottom: 8vh; }
  .stakes-h { font-size: clamp(32px, 11vw, 44px); }
  .cta-h { font-size: 34px; }
  .field input, .field textarea { font-size: 18px; }
  .foot-map { margin-bottom: 6vh; }
  .foot-map iframe { height: 220px; }
  .cookies { left: 14px; right: 14px; bottom: 14px; width: auto; padding: 18px 18px 20px; }
}

/* ---------- Short viewports (landscape phones, small windows) ---------- */
@media (max-height: 580px) {
  .hero-h { font-size: clamp(26px, 9vh, 60px); }
  .hero-sub { margin-top: 14px; font-size: 14px; }
  .manifesto-h { font-size: clamp(26px, 9.5vh, 60px); }
  .side-h { font-size: clamp(22px, 8.5vh, 48px); }
  .side-b { margin-top: 10px; font-size: 14px; }
  .eyebrow { margin-bottom: 12px; }
  .svc-list { gap: 3vh; }
  .svc { padding-left: 42px; }
  .svc-h { font-size: clamp(16px, 5vh, 26px); }
  .svc-b { font-size: 14px; margin-top: 4px; }
  .svc-d { font-size: 15px; }
  .svc-points li { font-size: 13px; }
  .svc.open .svc-detail { margin-top: 8px; }
  .svc-rule { bottom: -10px; }
  .ov-stats { padding-bottom: 5vh; }
  .stats-grid { padding-top: 2vh; }
  .stat-n { font-size: clamp(24px, 8vh, 44px); }
  .stat-l { margin-top: 6px; }
  .stats-foot { margin-top: 2.5vh; font-size: 14px; }
  .stakes-h { font-size: clamp(28px, 11vh, 72px); }
  .scroll-cue { bottom: 16px; gap: 8px; }
  .cue-line { height: 28px; }
  .cookies { padding: 14px 18px 16px; }
  .ck-text { margin-bottom: 10px; }
}

/* ---------- Ultrawide ---------- */
@media (min-width: 2000px) {
  .wrap { width: min(1560px, calc(100% - 10vw)); }
  .ov-hero, .ov-services { padding-left: 11vw; }
  .ov-side { padding-left: 11vw; }
  .ov-bidder { padding-right: 11vw; padding-left: 0; }
  .ov-stats { padding-left: 11vw; padding-right: 11vw; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .line > span, .line > em, .rv, .eyebrow, .side-h, .side-b, .svc, .stat, .hero-sub, .stats-foot { transition: none !important; transform: none !important; opacity: 1 !important; }
  .cue-line { animation: none; }
  .stakes-h, .stakes-h .l2 > span { animation: none !important; }
  .stakes-h .l1 > span, .stakes-h .l2 > span { opacity: 1 !important; }
  .svc-detail { transition: none !important; }
  /* bubble hovers: keep the glow state, drop all motion */
  .bub, .bub::before, .cmp-row, .cmp-row .cmp-b, .cmp-row .cmp-b::after,
  .stat .stat-n, .stat .stat-n::before, .btn-gold, .nav-links a::after, .foot-col a::after { transition: none !important; }
  .bub:hover, .cmp-row:hover, .cmp-row:hover .cmp-b, .stat:hover .stat-n, .btn-gold:hover { transform: none !important; }
  .bub:hover::before, .cmp-row:hover .cmp-b::after, .stat:hover .stat-n::before { transform: none !important; }
  .ov-stats.counted .stat .stat-n::before { animation: none !important; }
}
