/* ============================================================
   KING RESEARCH GROUP — DESIGN SYSTEM
   Black is the field. Gold is a line, not a flood.
   ============================================================ */

/* ---------- Fonts (self-hosted) ---------- */
@font-face { font-family: "Cinzel"; src: url("../fonts/cinzel-latin-700-normal.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Cinzel"; src: url("../fonts/cinzel-latin-600-normal.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Inter"; src: url("../fonts/inter-latin-400-normal.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Inter"; src: url("../fonts/inter-latin-500-normal.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Inter"; src: url("../fonts/inter-latin-600-normal.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }

/* ---------- Tokens ---------- */
:root {
  --black: #090A0B;
  --charcoal: #23272B;
  --charcoal-deep: #15181B;
  --gold: #B08D42;
  --gold-bright: #C9A85C;
  --gold-line: rgba(176, 141, 66, 0.35);
  --gold-faint: rgba(176, 141, 66, 0.14);
  --ivory: #F2EBDD;
  --ivory-dim: rgba(242, 235, 221, 0.72);
  --ivory-faint: rgba(242, 235, 221, 0.45);
  --white: #FFFFFF;
  --ink: #131313;
  --ink-soft: #3A3A38;

  --display: "Cinzel", "Times New Roman", serif;
  --body: "Inter", -apple-system, "Segoe UI", sans-serif;

  --w-max: 1180px;
  --w-text: 760px;
  --pad-x: clamp(20px, 5vw, 48px);
  --sec-y: clamp(64px, 10vw, 120px);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
  margin: 0;
  background: var(--black);
  color: var(--ivory);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-bright); text-decoration: none; }
a:hover { color: var(--ivory); }
:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }
::selection { background: var(--gold); color: var(--black); }

h1, h2, h3 { font-family: var(--display); font-weight: 700; line-height: 1.12; letter-spacing: 0.02em; margin: 0 0 0.5em; color: var(--ivory); }
h1 { font-size: clamp(34px, 6vw, 62px); }
h2 { font-size: clamp(26px, 4.2vw, 42px); }
h3 { font-size: clamp(19px, 2.4vw, 24px); font-weight: 600; }
p { margin: 0 0 1.1em; }
.lead { font-size: clamp(17px, 2.2vw, 20px); color: var(--ivory-dim); }
strong { color: var(--ivory); font-weight: 600; }

.container { max-width: var(--w-max); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.container-text { max-width: var(--w-text); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.section { padding-top: var(--sec-y); padding-bottom: var(--sec-y); }
.section-tight { padding-top: clamp(44px, 6vw, 72px); padding-bottom: clamp(44px, 6vw, 72px); }

/* Panels */
.panel-charcoal { background: var(--charcoal-deep); border-top: 1px solid var(--gold-faint); border-bottom: 1px solid var(--gold-faint); }
.panel-ivory { background: var(--ivory); color: var(--ink); }
.panel-ivory h1, .panel-ivory h2, .panel-ivory h3 { color: var(--ink); }
.panel-ivory p, .panel-ivory li { color: var(--ink-soft); }
.panel-ivory strong { color: var(--ink); }
.panel-ivory a { color: #8A6D2E; }
.panel-ivory a:hover { color: var(--ink); }

/* ---------- Signature: the file plate ----------
   Every section is stamped like a page of a private dossier:
   a thin gold rule, a letterspaced classification label, a file index. */
.fileplate {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: clamp(18px, 3vw, 28px);
}
.fileplate::before { content: ""; width: 34px; height: 1px; background: var(--gold); flex: none; }
.fileplate span {
  font-size: 11.5px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-bright); font-weight: 600; white-space: nowrap;
}
.fileplate i {
  font-style: normal; font-size: 11.5px; letter-spacing: 0.22em;
  color: var(--ivory-faint); font-weight: 500;
}
.fileplate::after { content: ""; height: 1px; background: var(--gold-faint); flex: 1; }
.panel-ivory .fileplate span { color: #8A6D2E; }
.panel-ivory .fileplate i { color: rgba(19,19,19,0.4); }
.panel-ivory .fileplate::after { background: rgba(176,141,66,0.3); }
.fileplate-center { justify-content: center; }
.fileplate-center::after { flex: 0 0 34px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--body); font-weight: 600; font-size: 14px;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 16px 30px; text-align: center;
  border: 1px solid var(--gold); border-radius: 2px;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  cursor: pointer; line-height: 1.35;
}
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-bright); color: var(--black); }
.btn-outline { background: transparent; color: var(--gold-bright); }
.btn-outline:hover { background: var(--gold-faint); color: var(--ivory); }
.btn-pending { background: transparent; color: var(--ivory-dim); border-color: var(--gold-line); }
.btn-pending:hover { color: var(--ivory); }
.btn-block { display: block; width: 100%; }
.cta-subnote { font-size: 13.5px; color: var(--ivory-faint); margin-top: 12px; }
.panel-ivory .cta-subnote { color: rgba(19,19,19,0.5); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(9, 10, 11, 0.97);
  /* no backdrop-filter: it creates a containing block that breaks the
     fixed-position mobile nav panel inside the header */
  border-bottom: 1px solid var(--gold-faint);
}
.header-inner {
  max-width: var(--w-max); margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  height: 74px; gap: 20px;
}
.header-logo img { height: 44px; width: auto; }
.header-nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.header-nav a {
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ivory-dim); font-weight: 500;
}
.header-nav a:hover, .header-nav a[aria-current="page"] { color: var(--gold-bright); }
.header-cta { border: 1px solid var(--gold); color: var(--gold-bright) !important; padding: 10px 18px; border-radius: 2px; }
.header-cta:hover { background: var(--gold); color: var(--black) !important; }
.nav-toggle { display: none; background: none; border: 1px solid var(--gold-line); border-radius: 2px; padding: 9px 11px; cursor: pointer; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--gold-bright); margin: 4px 0; transition: transform 0.2s ease, opacity 0.2s ease; }
.mobile-nav {
  display: none; position: fixed; inset: 74px 0 0 0; z-index: 55;
  background: var(--black); padding: 28px var(--pad-x) 40px;
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 17px 4px;
  font-family: var(--display); font-size: 21px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--ivory); border-bottom: 1px solid var(--gold-faint);
}
.mobile-nav a:hover { color: var(--gold-bright); }
.mobile-nav .btn { margin-top: 26px; }

@media (max-width: 900px) {
  .header-nav { display: none; }
  .nav-toggle { display: block; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero-grid {
  max-width: var(--w-max); margin: 0 auto; padding: 0 var(--pad-x);
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 5vw, 64px);
  align-items: center;
  min-height: min(78vh, 760px);
  padding-top: clamp(40px, 6vw, 72px); padding-bottom: clamp(40px, 6vw, 72px);
}
.hero-eyebrow {
  font-size: 12px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--gold-bright); font-weight: 600; margin-bottom: 18px;
  display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); }
.hero h1 { margin-bottom: 20px; }
.hero .lead { max-width: 30em; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 18px; }
.hero-support { font-size: 13.5px; letter-spacing: 0.04em; color: var(--ivory-faint); }
.hero-art { position: relative; display: flex; justify-content: center; }
.hero-art img {
  width: min(100%, 470px);
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
}
.hero-art::after {
  content: ""; position: absolute; inset: auto 8% -6% 8%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
}

@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; min-height: 0; text-align: left; }
  .hero-art { order: -1; }
  .hero-art img { width: min(72vw, 340px); }
}

/* ---------- Category strip ---------- */
.cat-strip { border-top: 1px solid var(--gold-faint); border-bottom: 1px solid var(--gold-faint); background: var(--charcoal-deep); }
.cat-strip-inner {
  max-width: var(--w-max); margin: 0 auto; padding: 18px var(--pad-x);
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 12px 0;
}
.cat-strip-inner span {
  font-size: 11.5px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ivory-dim); font-weight: 500; white-space: nowrap;
}
.cat-strip-inner span + span::before { content: ""; display: inline-block; width: 4px; height: 4px; background: var(--gold); transform: rotate(45deg); margin: 0 clamp(10px, 2vw, 22px); vertical-align: middle; }

/* ---------- Cards ---------- */
.card-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.card {
  background: var(--charcoal-deep);
  border: 1px solid var(--gold-faint); border-radius: 3px;
  padding: 30px 26px;
  transition: border-color 0.18s ease, transform 0.18s ease;
  display: flex; flex-direction: column;
}
.card:hover { border-color: var(--gold-line); transform: translateY(-2px); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ivory-dim); font-size: 15.5px; margin-bottom: 0; }
.card .desk-tag {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-bright); font-weight: 600; margin-bottom: 14px;
}
.card-foot { margin-top: auto; padding-top: 16px; }

/* ---------- Report cover framing ---------- */
.cover-frame {
  position: relative; padding: 16px;
  border: 1px solid var(--gold-line);
  background: linear-gradient(160deg, rgba(176,141,66,0.07), transparent 55%);
  max-width: 420px; margin: 0 auto;
}
.cover-frame::before, .cover-frame::after {
  content: ""; position: absolute; width: 22px; height: 22px; border-color: var(--gold); border-style: solid;
}
.cover-frame::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.cover-frame::after { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
.cover-frame img { width: 100%; }

/* ---------- Checklist / bullets ---------- */
.gold-list { list-style: none; padding: 0; margin: 0 0 1.4em; }
.gold-list li { position: relative; padding-left: 30px; margin-bottom: 13px; color: var(--ivory-dim); }
.gold-list li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 14px; height: 1px; background: var(--gold);
}
.panel-ivory .gold-list li { color: var(--ink-soft); }

/* ---------- Process (methodology) ---------- */
.process { counter-reset: step; display: grid; gap: 0; max-width: 780px; margin: 0 auto; }
.process-step {
  counter-increment: step;
  display: grid; grid-template-columns: 76px 1fr; gap: 22px;
  padding: 26px 0; border-bottom: 1px solid var(--gold-faint);
}
.process-step:last-child { border-bottom: none; }
.process-step::before {
  content: "0" counter(step);
  font-family: var(--display); font-size: 30px; font-weight: 600; color: var(--gold);
  line-height: 1;
}
.process-step h3 { margin-bottom: 6px; }
.process-step p { color: var(--ivory-dim); margin: 0; font-size: 15.5px; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); align-items: stretch; max-width: 980px; margin: 0 auto; }
.price-card {
  background: var(--charcoal-deep); border: 1px solid var(--gold-faint); border-radius: 3px;
  padding: 34px 30px; display: flex; flex-direction: column; position: relative;
}
.price-card.featured { border-color: var(--gold); background: linear-gradient(175deg, rgba(176,141,66,0.10), var(--charcoal-deep) 45%); }
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--black);
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 2px; white-space: nowrap;
}
.price-name { font-family: var(--display); font-size: 20px; font-weight: 600; letter-spacing: 0.05em; margin-bottom: 4px; }
.price-amount { font-family: var(--display); font-size: 44px; font-weight: 700; color: var(--ivory); line-height: 1.1; }
.price-amount small { font-family: var(--body); font-size: 15px; font-weight: 500; color: var(--ivory-faint); letter-spacing: 0.02em; }
.price-terms { font-size: 13px; color: var(--ivory-faint); margin: 6px 0 20px; }
.price-card .gold-list { flex: 1; }
.price-card .gold-list li { font-size: 15px; margin-bottom: 11px; }

/* ---------- Email capture ---------- */
.lead-form { max-width: 560px; margin: 0 auto; }
.lead-form .fields { display: grid; grid-template-columns: 1fr 1.4fr; gap: 12px; margin-bottom: 12px; }
.lead-form input {
  width: 100%; background: var(--black); border: 1px solid var(--gold-line); border-radius: 2px;
  color: var(--ivory); font-family: var(--body); font-size: 16px; padding: 15px 16px;
}
.lead-form input::placeholder { color: var(--ivory-faint); }
.lead-form input:focus { outline: 2px solid var(--gold-bright); outline-offset: 1px; }
.form-msg { min-height: 24px; font-size: 14.5px; margin-top: 12px; }
.form-msg.success { color: var(--gold-bright); }
.form-msg.error { color: #D98A6A; }
.consent { font-size: 12.5px; color: var(--ivory-faint); margin-top: 14px; line-height: 1.6; }
@media (max-width: 560px) { .lead-form .fields { grid-template-columns: 1fr; } }

/* ---------- Two-column feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--gold-faint); }
.faq summary {
  cursor: pointer; list-style: none; padding: 20px 36px 20px 4px;
  font-weight: 600; color: var(--ivory); font-size: 16.5px; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  color: var(--gold-bright); font-size: 22px; font-weight: 400;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--ivory-dim); padding: 0 4px 20px; margin: 0; font-size: 15.5px; }

/* ---------- Tables (TOC) ---------- */
.toc { max-width: 780px; margin: 0 auto; border: 1px solid var(--gold-faint); border-radius: 3px; overflow: hidden; }
.toc-row { display: grid; grid-template-columns: 64px 1fr; border-bottom: 1px solid var(--gold-faint); }
.toc-row:last-child { border-bottom: none; }
.toc-row > span:first-child {
  font-family: var(--display); font-weight: 600; color: var(--gold);
  padding: 17px 0 17px 20px; font-size: 16px;
}
.toc-row > span:last-child { padding: 17px 20px 17px 0; color: var(--ivory-dim); font-size: 15.5px; }

/* ---------- Disclosure box ---------- */
.disclosure-box {
  border: 1px solid var(--gold-faint); border-left: 2px solid var(--gold);
  background: rgba(176,141,66,0.05);
  padding: 18px 22px; border-radius: 2px;
  font-size: 13.5px; color: var(--ivory-faint); line-height: 1.6;
}
.panel-ivory .disclosure-box { background: rgba(176,141,66,0.08); color: rgba(19,19,19,0.6); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--gold-faint); background: var(--black); padding: clamp(48px, 7vw, 80px) 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 44px; }
.footer-brand img { height: 88px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: 13.5px; color: var(--ivory-faint); max-width: 26em; }
.footer-col h4 {
  font-size: 11.5px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold-bright); font-weight: 600; margin: 0 0 16px;
}
.footer-col a { display: block; font-size: 14.5px; color: var(--ivory-dim); padding: 5px 0; }
.footer-col a:hover { color: var(--ivory); }
.footer-legal { border-top: 1px solid var(--gold-faint); padding-top: 26px; }
.footer-legal p { font-size: 12.5px; color: var(--ivory-faint); line-height: 1.7; }
.footer-social { display: flex; gap: 18px; margin-top: 14px; }
.footer-social a { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ivory-dim); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Page header (interior pages) ---------- */
.page-head { padding: clamp(52px, 8vw, 96px) 0 clamp(36px, 5vw, 64px); }
.page-head .lead { max-width: 42em; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Legal prose ---------- */
.legal h2 { font-size: 22px; margin-top: 2em; }
.legal h3 { font-size: 17px; margin-top: 1.6em; }
.legal p, .legal li { font-size: 15.5px; }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.max-text { max-width: var(--w-text); margin-left: auto; margin-right: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--gold); color: var(--black); padding: 10px 16px; z-index: 100; font-weight: 600; }
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Fix pass 1 ---------- */
/* Process copy must stay legible on ivory panels (overrides later .process-step p) */
.panel-ivory .process-step p { color: var(--ink-soft); }
.panel-ivory .process-step h3 { color: var(--ink); }

/* Blend the lion artwork's own near-pure-black field into the page black:
   fade the outer 8% of the image on every side so the plate edge disappears */
.hero-art img {
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent),
                      linear-gradient(to bottom, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent),
              linear-gradient(to bottom, transparent, #000 8%, #000 92%, transparent);
  mask-composite: intersect;
}

/* Five desk cards break 3 + 2 on wide screens instead of orphaning one */
.card-grid-desks { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

/* Footer avatar reads as a deliberate plate, not a stray box */
.footer-brand img { border: 1px solid var(--gold-faint); }

/* ---------- Fix pass 2 ---------- */
/* Center the last two desk cards under the first three on wide screens */
@media (min-width: 1000px) {
  .card-grid-desks { grid-template-columns: repeat(6, 1fr); }
  .card-grid-desks .card { grid-column: span 2; }
  .card-grid-desks .card:nth-child(4) { grid-column: 2 / span 2; }
}

/* Reveal animation only when JS is running — content always visible without it */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(14px); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* ============ V3 product-focus revision ============ */
/* Wordmark safety: the horizontal logo must NEVER crop at narrow widths */
.header-logo img { height: 44px; width: auto; max-width: min(64vw, 340px); object-fit: contain; object-position: left center; }
@media (max-width: 360px) { .header-logo img { height: 38px; } }
.header-minimal .header-inner { justify-content: center; }
.header-minimal .header-logo img { object-position: center; }

/* Two-column sector list on wider screens */
.gold-list-2col { columns: 2; column-gap: 40px; }
.gold-list-2col li { break-inside: avoid; }
@media (max-width: 560px) { .gold-list-2col { columns: 1; } }

/* Cover caption under the framed brand cover */
.cover-caption { margin-top: 12px; font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ivory-faint); text-align: center; }

/* Landing hero: cover on the right instead of the lion */
.hero-landing .hero-art { flex-direction: column; align-items: center; }
.hero-landing .hero-art .cover-frame { max-width: 340px; }
.hero-landing .hero-art::after { display: none; }
@media (max-width: 820px) { .hero-landing .hero-art .cover-frame { max-width: min(60vw, 280px); } }

/* Report specification table */
.spec-table { margin-top: 30px; border: 1px solid var(--gold-faint); border-radius: 2px; }
.spec-row { display: grid; grid-template-columns: 150px 1fr; border-bottom: 1px solid var(--gold-faint); }
.spec-row:last-child { border-bottom: none; }
.spec-row > span:first-child { padding: 14px 18px; font-family: "Cinzel", serif; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-bright); border-right: 1px solid var(--gold-faint); }
.spec-row > span:last-child { padding: 14px 18px; color: var(--ivory-dim); font-size: 15px; }
.panel-ivory .spec-row > span:last-child { color: var(--charcoal); }
@media (max-width: 480px) { .spec-row { grid-template-columns: 112px 1fr; } .spec-row > span { padding: 12px 13px; } }

/* Bull / base / bear scenario cards */
.scenario-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); margin-top: 22px; }
.scenario-card { border: 1px solid var(--gold-faint); border-top: 2px solid var(--gold); padding: 20px 20px 16px; background: rgba(255,255,255,0.015); }
.scenario-card h3 { font-family: "Cinzel", serif; font-size: 15px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-bright); margin: 0 0 8px; }
.scenario-card p { font-size: 14.5px; color: var(--ivory-dim); margin: 0; }
.scenario-base { background: rgba(176,141,66,0.07); }

/* Editorial accountability + inline disclosures */
.editorial-box { border: 1px solid var(--gold-faint); border-left: 3px solid var(--gold); padding: 18px 20px; margin-top: 26px; background: rgba(255,255,255,0.02); }
.editorial-box p { margin: 0 0 8px; font-size: 15px; }
.editorial-box p:last-child { margin-bottom: 0; }
.disclosure-inline { font-size: 13.5px; color: var(--ivory-faint); margin-top: 14px; }

/* Preview gallery (renders only with real page images from config) */
.preview-track { display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); margin-top: 30px; }
.preview-thumb { border: 1px solid var(--gold-faint); background: #000; padding: 0; cursor: zoom-in; border-radius: 2px; overflow: hidden; }
.preview-thumb img { width: 100%; display: block; }
.preview-thumb:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 2px; }
.preview-dialog { border: 1px solid var(--gold); background: #0b0c0d; padding: 14px; max-width: min(92vw, 760px); }
.preview-dialog::backdrop { background: rgba(0,0,0,0.82); }
.preview-dialog img { width: 100%; display: block; }
.preview-close { margin-top: 12px; background: none; border: 1px solid var(--gold); color: var(--gold-bright); padding: 9px 20px; letter-spacing: 0.1em; text-transform: uppercase; font-size: 12px; cursor: pointer; }

/* Minimal footer for the landing route */
.footer-minimal .footer-legal { border-top: none; padding-top: 0; }

/* Narrow-width fixes (V3 QA): long fileplate labels wrap instead of overflowing;
   adjacent CTA buttons wrap with breathing room */
@media (max-width: 540px) {
  .fileplate span { white-space: normal; line-height: 1.7; }
}
.center .btn + .btn, p .btn + .btn { margin-left: 10px; }
p > .btn { margin-bottom: 10px; }

/* The hidden attribute must always win, even over display:grid/flex rules */
[hidden] { display: none !important; }

/* ================= V3.2 CONVERSION + CREDIBILITY ================= */

/* --- Mobile-first hero: copy and price BEFORE the cover image --- */
.hero-product .hero-copy { order: 1; }
.hero-product .hero-art { order: 2; }
@media (max-width: 820px) {
  .hero-product .hero-art { order: 2; margin-top: 26px; }
  .hero-product .hero-art .cover-frame { max-width: min(52vw, 240px); margin: 0 auto; }
  .hero-product h1 { font-size: clamp(27px, 7.4vw, 40px); line-height: 1.14; }
  .hero-product .lead { font-size: 15.5px; }
}
.hero-product .price-amount { margin-top: 20px; }
.hero-secondary { margin-top: 14px; font-size: 15px; }
.proof-line {
  margin-top: 16px; font-family: "Cinzel", serif; font-size: 12.5px;
  letter-spacing: 0.17em; text-transform: uppercase; color: var(--gold-bright);
  border-top: 1px solid var(--gold-faint); border-bottom: 1px solid var(--gold-faint);
  padding: 11px 0; display: inline-block;
}
.launch-price {
  margin-top: 10px; font-size: 13.5px; color: var(--gold-bright);
  border-left: 2px solid var(--gold); padding-left: 12px;
}

/* --- Credibility band --- */
.cred-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); text-align: center; }
.cred-stat { border: 1px solid var(--gold-faint); padding: 20px 16px; }
.cred-stat-label {
  display: block; font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--ivory-faint); margin-bottom: 8px;
}
.cred-stat-value { font-family: "Cinzel", serif; font-size: clamp(17px, 2.4vw, 23px); color: var(--gold-bright); line-height: 1.25; }
.cred-basis { text-align: center; margin-top: 16px; font-family: "Cinzel", serif; letter-spacing: 0.14em; text-transform: uppercase; font-size: 13px; color: var(--ivory-dim); }
.cred-lineage { text-align: center; max-width: 62ch; margin: 18px auto 0; color: var(--ivory-dim); font-size: 15px; }

/* --- Proof banner: never cropped, never distorted --- */
.proof-banner { margin-top: 28px; }
.proof-banner img {
  display: block; width: 100%; height: auto; max-width: 1100px; margin: 0 auto;
  object-fit: contain;
}
.proof-caption { text-align: center; margin-top: 12px; font-size: 12.5px; color: var(--ivory-faint); }
/* Below 620px the 3:1 banner would render its type too small to read, so the
   same approved portraits and text are stacked instead — nothing is cropped. */
.proof-stack { display: none; }
@media (max-width: 619px) {
  .proof-banner picture { display: none; }
  .proof-stack { display: block; text-align: center; }
  .proof-stack-row { display: flex; justify-content: center; gap: 10px; flex-wrap: nowrap; }
  .proof-stack-row img {
    width: 21vw; max-width: 84px; height: auto; aspect-ratio: 1 / 1;
    border-radius: 50%; object-fit: contain;
  }
  .proof-stack-count {
    font-family: "Cinzel", serif; font-size: clamp(24px, 8vw, 34px);
    color: var(--ivory); margin-top: 20px; letter-spacing: 0.02em;
  }
  .proof-stack-founded {
    font-family: "Cinzel", serif; font-size: clamp(13px, 4vw, 16px);
    letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-bright);
    margin-top: 8px; padding-top: 12px; border-top: 1px solid var(--gold-faint);
    display: inline-block;
  }
}

/* --- Testimonials --- */
.testimonial-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); margin-top: 30px; }
.testimonial-card {
  border: 1px solid var(--gold-faint); border-top: 2px solid var(--gold);
  padding: 22px; margin: 0; background: rgba(255,255,255,0.018);
}
.testimonial-head { display: flex; align-items: center; gap: 13px; }
.testimonial-photo { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 1px solid var(--gold-faint); flex: none; }
.testimonial-monogram {
  width: 56px; height: 56px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold-faint); font-family: "Cinzel", serif;
  color: var(--gold-bright); font-size: 21px;
}
.testimonial-who { display: flex; flex-direction: column; }
.testimonial-who strong { color: var(--ivory); font-size: 15.5px; }
.testimonial-meta { font-size: 12.5px; color: var(--ivory-faint); margin-top: 2px; }
.testimonial-quote { margin: 16px 0 0; padding: 0; border: none; }
.testimonial-quote p { color: var(--ivory-dim); font-size: 15.5px; margin: 0; }
.testimonial-quote p::before { content: "\\201C"; } .testimonial-quote p::after { content: "\\201D"; }
.testimonial-foot { margin-top: 16px; padding-top: 13px; border-top: 1px solid var(--gold-faint); display: flex; flex-direction: column; gap: 5px; }
.testimonial-product { font-size: 12px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--gold-bright); }
.testimonial-result { font-size: 13.5px; color: var(--ivory-dim); }
.testimonial-qualifier { font-size: 11.5px; color: var(--ivory-faint); line-height: 1.5; }
.testimonial-note { margin-top: 22px; font-size: 12.5px; color: var(--ivory-faint); max-width: 70ch; }

/* --- Founder --- */
.founder-grid { display: grid; gap: 30px; grid-template-columns: 260px 1fr; align-items: start; }
@media (max-width: 760px) { .founder-grid { grid-template-columns: 1fr; } }
.founder-photo img { width: 100%; height: auto; border: 1px solid var(--gold-faint); display: block; }
.founder-title { font-family: "Cinzel", serif; letter-spacing: 0.15em; text-transform: uppercase; font-size: 12.5px; color: var(--gold-bright); margin-top: -8px; }
.founder-expertise { margin-top: 18px; }
.founder-philosophy { margin-top: 18px; color: var(--ivory-dim); font-style: italic; }

/* --- Sample thesis --- */
.thesis-table { margin-top: 26px; border: 1px solid var(--gold-faint); }
.thesis-row { display: grid; grid-template-columns: 190px 1fr; border-bottom: 1px solid var(--gold-faint); }
.thesis-row:last-child { border-bottom: none; }
.thesis-row > span:first-child {
  padding: 15px 18px; font-family: "Cinzel", serif; font-size: 11.5px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-bright);
  border-right: 1px solid var(--gold-faint);
}
.thesis-row > span:last-child { padding: 15px 18px; color: var(--ivory-dim); font-size: 15px; }
@media (max-width: 560px) { .thesis-row { grid-template-columns: 1fr; } .thesis-row > span:first-child { border-right: none; border-bottom: 1px solid var(--gold-faint); padding-bottom: 8px; } }

/* --- Contrast (action vs inaction) --- */
.contrast-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); margin-top: 32px; }
.contrast-card { border: 1px solid var(--gold-faint); padding: 24px; }
.contrast-card h3 { font-family: "Cinzel", serif; font-size: 14px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ivory-faint); margin: 0 0 14px; }
.contrast-card ul { list-style: none; padding: 0; margin: 0; }
.contrast-card li { padding: 7px 0 7px 22px; position: relative; color: var(--ivory-dim); font-size: 15px; }
.contrast-card li::before { content: "—"; position: absolute; left: 0; color: var(--ivory-faint); }
.contrast-with { border-color: var(--gold); background: rgba(176,141,66,0.06); }
.contrast-with h3 { color: var(--gold-bright); }
.contrast-with li::before { content: "\\2713"; color: var(--gold-bright); }

/* --- Offer summary --- */
.offer-list { margin-top: 20px; }

/* --- Sticky mobile CTA --- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: rgba(9,10,11,0.97); border-top: 1px solid var(--gold);
  transform: translateY(110%); transition: transform 0.25s ease;
  padding-bottom: env(safe-area-inset-bottom, 0);
  backdrop-filter: blur(6px);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-inner { display: flex; align-items: center; gap: 12px; padding: 11px 14px; max-width: 700px; margin: 0 auto; }
.sticky-cta-text { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.sticky-cta-text strong { font-family: "Cinzel", serif; font-size: 13px; color: var(--ivory); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-cta-text span { font-size: 12px; color: var(--gold-bright); }
.sticky-cta-btn { margin-left: auto; padding: 12px 16px; font-size: 12.5px; white-space: nowrap; }
.sticky-cta-btn .cta-subnote, .sticky-cta .cta-subnote { display: none; }
.sticky-cta-close {
  background: none; border: none; color: var(--ivory-faint); font-size: 24px;
  line-height: 1; padding: 6px 4px; cursor: pointer; flex: none;
}
.sticky-cta-close:focus-visible { outline: 2px solid var(--gold-bright); }
body.has-sticky-cta { padding-bottom: 74px; }
@media (min-width: 900px) { .sticky-cta { display: none; } body.has-sticky-cta { padding-bottom: 0; } }

/* --- Capture invitation --- */
.capture-invite { border: 1px solid var(--gold); background: #0b0c0d; padding: 0; max-width: min(94vw, 460px); color: var(--ivory); }
.capture-invite::backdrop { background: rgba(0,0,0,0.8); }
.capture-invite-inner { padding: 30px 26px 26px; position: relative; }
.capture-invite h2 { font-size: clamp(22px, 5vw, 28px); margin: 6px 0 12px; }
.capture-eyebrow { font-size: 11.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-bright); }
.capture-invite-close { position: absolute; top: 8px; right: 10px; background: none; border: none; color: var(--ivory-faint); font-size: 26px; line-height: 1; cursor: pointer; padding: 4px 8px; }
.capture-invite-close:focus-visible { outline: 2px solid var(--gold-bright); }

.upgrade-decline { font-size: 14px; color: var(--ivory-faint); text-decoration: underline; }
/* Zero-height markers cannot be observed reliably */
[data-hero-end] { height: 1px; }
.testimonial-context { text-transform: none; letter-spacing: 0.01em; font-size: 12.5px; color: var(--ivory-faint); font-style: italic; }
/* Cover caption belongs beneath the cover, not beside it */
.hero-product .hero-art { flex-direction: column; align-items: center; }
.hero-product .hero-art::after { display: none; }
.hero-product .cover-caption { max-width: 320px; }
/* Below 620px the stacked treatment carries the proof on its own — the stat
   cards would otherwise repeat the same two numbers a second time. */
@media (max-width: 619px) {
  .credibility .cred-grid, .credibility .cred-basis { display: none; }
  .proof-stack-history {
    font-family: "Cinzel", serif; font-size: clamp(13px, 3.9vw, 16px);
    color: var(--ivory-dim); margin-top: 14px; line-height: 1.4;
  }
}
@media (min-width: 620px) { .proof-stack-history { display: none; } }
/* Conditional hero lines: hidden by default, revealed by a class set in <head>
   before first paint. Prevents the post-load reflow that produced CLS. */
.cond { display: none; }
html.krg-cred .proof-line.cond { display: inline-block; }
html.krg-launch .launch-price.cond { display: block; }
/* Sticky bar: the product name and price must stay fully readable next to the
   button, so the text block gets a floor and the price never wraps. */
.sticky-cta-text { flex: 1 1 auto; min-width: 118px; }
.sticky-cta-text strong { font-size: 12.5px; }
.sticky-cta-text span { white-space: nowrap; }
.sticky-cta-btn { flex: 0 0 auto; margin-left: 8px; }
@media (max-width: 359px) {
  .sticky-cta-text strong { font-size: 11.5px; }
  .sticky-cta-btn { padding: 11px 12px; font-size: 11.5px; }
}

/* ================= V3.3 ================= */

/* Credibility hierarchy: ESTABLISHED 2011 → members served → kicker */
.cred-eyebrow {
  text-align: center; font-family: "Cinzel", serif; font-size: 12px;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-bright);
}
.cred-headline {
  text-align: center; margin-top: 10px; font-size: clamp(26px, 5.6vw, 44px); line-height: 1.15;
}
.cred-kicker {
  text-align: center; max-width: 60ch; margin: 16px auto 0;
  color: var(--ivory-dim); font-size: 16px;
}
.cred-statement {
  text-align: center; max-width: 66ch; margin: 20px auto 0;
  color: var(--ivory-dim); font-size: 15px; line-height: 1.7;
}
.credibility .cred-grid { margin-top: 30px; }

/* Proof portraits: complete circles, correct proportions, never stretched.
   Square source crops each contain one whole circle, so cover and contain
   render identically — the circle can never be clipped. */
.proof-stack-row img {
  object-fit: cover; object-position: center center; aspect-ratio: 1 / 1;
  border-radius: 50%;
}

/* Consent bar */
.consent-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: rgba(9,10,11,0.985); border-top: 1px solid var(--gold);
  padding: 16px 18px calc(16px + env(safe-area-inset-bottom, 0px));
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  justify-content: center;
}
.consent-text { margin: 0; font-size: 14px; color: var(--ivory-dim); max-width: 62ch; }
.consent-text a { color: var(--gold-bright); }
.consent-actions { display: flex; gap: 10px; flex: none; }
/* Equal visual weight — neither choice is disguised or de-emphasised. */
.consent-btn { padding: 11px 18px; font-size: 12.5px; min-width: 150px; }
body.has-consent-bar { padding-bottom: 120px; }
@media (max-width: 620px) {
  .consent-bar { flex-direction: column; align-items: stretch; text-align: center; }
  .consent-actions { flex-direction: column; }
  .consent-btn { width: 100%; }
  body.has-consent-bar { padding-bottom: 210px; }
}

/* Form states use the same class names in JS and CSS */
.form-msg[aria-live] { display: block; }
input[aria-invalid="true"] { border-color: #D98A6A; }
button[aria-busy="true"] { opacity: 0.72; cursor: progress; }
/* The section already carries the eyebrow and headline above the portraits, so
   the stacked mobile treatment shows only the photographs — the repeated
   "17,000 members / Established 2011" beneath them is redundant. */
@media (max-width: 619px) {
  .proof-stack-count, .proof-stack-founded, .proof-stack-history { display: none; }
  .proof-stack-row { margin-top: 4px; }
}

/* ================= V2 — THE AI POWER 7 ================= */

.hero-subhead {
  font-family: "Cinzel", serif; font-size: clamp(16px, 2.4vw, 21px);
  line-height: 1.35; color: var(--gold-bright); margin-top: 14px; max-width: 22em;
}
.hero-product .lead { margin-top: 16px; }

/* Trust strip */
.trust-strip {
  list-style: none; padding: 14px 0; margin: 20px 0 0;
  display: flex; flex-wrap: wrap; gap: 8px 22px;
  border-top: 1px solid var(--gold-faint); border-bottom: 1px solid var(--gold-faint);
}
.trust-strip li {
  font-family: "Cinzel", serif; font-size: 11.5px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--ivory-dim); position: relative;
}
.trust-strip li::before { content: "\2022"; color: var(--gold); margin-right: 9px; }
@media (max-width: 480px) { .trust-strip { gap: 6px 16px; } .trust-strip li { font-size: 10.5px; } }

.risk-line { font-size: 12.5px; color: var(--ivory-faint); margin-top: 12px; max-width: 40em; line-height: 1.6; }

/* Control-point and challenger chips */
.chip-list { list-style: none; padding: 0; margin: 22px 0; display: flex; flex-wrap: wrap; gap: 9px; }
.chip-list li {
  border: 1px solid var(--gold-faint); padding: 8px 14px; font-size: 13px;
  letter-spacing: 0.06em; color: var(--ivory-dim); border-radius: 2px;
}
.chip-list-wide li { border-left: 2px solid var(--gold); }

/* What you receive */
.receive-list li { margin-bottom: 12px; }
.receive-list strong { color: var(--gold-bright); display: block; margin-bottom: 2px; }

/* King's Ranking */
.rank-table { margin-top: 28px; border: 1px solid var(--gold-faint); }
.rank-row {
  display: grid; grid-template-columns: 54px 1fr 1.25fr; align-items: center;
  border-bottom: 1px solid var(--gold-faint);
}
.rank-row:last-child { border-bottom: none; }
.rank-n {
  font-family: "Cinzel", serif; font-size: 20px; color: var(--gold-bright);
  text-align: center; padding: 16px 0; border-right: 1px solid var(--gold-faint); align-self: stretch;
  display: flex; align-items: center; justify-content: center;
}
.rank-t { padding: 15px 16px; font-family: "Cinzel", serif; font-size: 16px; color: var(--ivory); }
.rank-t em { display: block; font-style: normal; font-family: "Inter", sans-serif;
  font-size: 12.5px; letter-spacing: 0.04em; color: var(--ivory-faint); margin-top: 3px; }
.rank-w { padding: 15px 16px; font-size: 14px; color: var(--ivory-dim);
  border-left: 1px solid var(--gold-faint); align-self: stretch; display: flex; align-items: center; }
@media (max-width: 700px) {
  .rank-row { grid-template-columns: 44px 1fr; }
  .rank-w { grid-column: 1 / -1; border-left: none; border-top: 1px solid var(--gold-faint);
    padding: 11px 16px; font-size: 13.5px; }
}
.rank-note { margin-top: 16px; font-size: 13.5px; color: var(--ivory-faint); }

.pull-callout {
  font-family: "Cinzel", serif; font-size: clamp(19px, 3.4vw, 28px); line-height: 1.3;
  color: var(--gold-bright); border-left: 3px solid var(--gold);
  padding: 4px 0 4px 20px; margin-top: 28px;
}

/* Offer cards */
.offer-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  margin-top: 34px; align-items: start; }
.offer-card { border: 1px solid var(--gold-faint); padding: 28px 24px; position: relative; }
.offer-best { border-color: var(--gold); background: rgba(176,141,66,0.06); }
.offer-flag {
  position: absolute; top: -11px; left: 24px; background: var(--gold); color: var(--black);
  font-family: "Cinzel", serif; font-size: 10.5px; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 4px 12px;
}
.offer-card h3 { font-family: "Cinzel", serif; font-size: 20px; margin: 0 0 10px; color: var(--ivory); }
.offer-price { font-family: "Cinzel", serif; font-size: 34px; color: var(--gold-bright); margin: 0 0 16px; }
.offer-price small { font-size: 13px; color: var(--ivory-faint); font-family: "Inter", sans-serif; letter-spacing: 0.06em; }
.offer-points { list-style: none; padding: 0; margin: 0 0 22px; }
.offer-points li { padding: 6px 0 6px 20px; position: relative; font-size: 14.5px; color: var(--ivory-dim); }
.offer-points li::before { content: "\2014"; position: absolute; left: 0; color: var(--gold); }
.offer-saving { margin-top: 12px; font-size: 13px; color: var(--ivory-faint); }
.bump-note { margin-top: 24px; text-align: center; font-size: 13.5px; color: var(--ivory-faint); }

/* Preview thumbs carry a label */
.preview-thumb { position: relative; display: block; }
.preview-label {
  display: block; padding: 9px 6px; font-family: "Cinzel", serif; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-bright);
  background: rgba(9,10,11,0.9); text-align: center;
}
/* The interior previews are the strongest proof the report is real, so give
   them real size: four across on desktop, two on phones, never a thin strip. */
[data-preview-flagship] .preview-track {
  grid-template-columns: repeat(2, 1fr);
  gap: 18px; max-width: 1040px; margin-left: auto; margin-right: auto;
}
@media (min-width: 760px) {
  [data-preview-flagship] .preview-track { grid-template-columns: repeat(4, 1fr); }
}
[data-preview-flagship] .preview-thumb img { width: 100%; height: auto; }

/* ============ FINAL PASS: bundle-dominant hero, bridge, guarantee ============ */
.hero-offer-flag {
  display: inline-block; margin-top: 22px; font-family: "Cinzel", serif;
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--black); background: var(--gold); padding: 4px 12px;
}
.hero-value-line { margin-top: 12px; font-size: 13.5px; color: var(--ivory-dim); max-width: 40em; line-height: 1.6; }
.hero-secondary-offer { margin-top: 14px; }
.hero-secondary-offer a {
  font-size: 14.5px; color: var(--ivory-dim); text-decoration: underline;
  text-underline-offset: 3px;
}
.hero-secondary-offer a:hover { color: var(--gold-bright); }

/* Conversion bridge under the previews */
.conversion-bridge {
  margin-top: 34px; border-top: 1px solid var(--gold-faint); padding-top: 26px;
  display: flex; gap: 24px; align-items: center; flex-wrap: wrap;
  justify-content: space-between;
}
.conversion-bridge > p { margin: 0; max-width: 42em; color: var(--ivory-dim); font-size: 15.5px; }
.bridge-actions { flex: none; }
.bridge-secondary { margin-top: 10px; text-align: center; }
.bridge-secondary a { font-size: 14px; color: var(--ivory-dim); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 720px) {
  .conversion-bridge { flex-direction: column; align-items: stretch; }
  .bridge-actions .btn { width: 100%; }
}

.guarantee-note {
  margin-top: 20px; text-align: center; font-size: 14px; color: var(--gold-bright);
  border: 1px solid var(--gold-faint); padding: 14px 18px;
}
.form-pending { color: var(--ivory-dim); font-size: 15px; margin: 0 0 18px; }

/* ============ LIVE PASS: brand line, lion break, audience ============ */
/* Hero eyebrow carries the brand line — visible, gold, widely tracked, and
   deliberately subordinate to the product H1. */
.hero-eyebrow-brand {
  font-family: "Cinzel", serif; font-size: clamp(11px, 1.6vw, 13px);
  letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold-bright);
}
.trust-footnote { margin-top: 10px; font-size: 12.5px; color: var(--ivory-faint); max-width: 42em; }
.audience-counter { margin-top: 20px; font-size: 14.5px; color: var(--ivory-faint); border-left: 2px solid var(--gold-faint); padding-left: 14px; }

/* The single additional lion moment. One optimized asset, responsive sources,
   heavy black overlay in CSS, fixed aspect ratio so nothing shifts. */
.lion-break {
  position: relative; overflow: hidden;
  padding: clamp(72px, 12vw, 132px) 0;
  background: var(--black);
  contain: layout paint;
}
.lion-break-media {
  position: absolute; inset: 0;
  background-image: url("../assets/web/lion-hero-560.webp");
  background-image: image-set(url("../assets/web/lion-hero-560.webp") 1x);
  background-repeat: no-repeat; background-position: center 38%;
  background-size: cover;
  opacity: 0.62;
}
@media (min-width: 900px) {
  .lion-break-media {
    background-image: url("../assets/web/lion-hero-900.webp");
    background-image: image-set(url("../assets/web/lion-hero-900.webp") 1x);
    background-position: center 40%;
  }
}
/* Heavy black overlay keeps the lion dark and restrained, and keeps the copy
   well above contrast minimums. */
.lion-break::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(9,10,11,0.10) 0%, rgba(9,10,11,0.62) 52%, rgba(9,10,11,0.95) 100%),
    linear-gradient(to bottom, rgba(9,10,11,0.88) 0%, rgba(9,10,11,0.30) 34%, rgba(9,10,11,0.30) 62%, rgba(9,10,11,0.93) 100%);
}
.lion-break-copy { position: relative; z-index: 2; }
.lion-break-copy h2, .lion-break-kicker, .lion-break-line {
  text-shadow: 0 2px 18px rgba(9,10,11,0.95), 0 1px 4px rgba(9,10,11,0.9);
}
.lion-break-kicker {
  font-family: "Cinzel", serif; font-size: clamp(11px, 1.7vw, 13px);
  letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold-bright);
  margin-bottom: 16px;
}
.lion-break h2 { font-size: clamp(26px, 5vw, 46px); line-height: 1.16; }
.lion-break-line {
  margin: 20px auto 0; max-width: 44ch; color: var(--ivory-dim);
  font-size: clamp(15px, 2vw, 17px); line-height: 1.65;
}
@media (prefers-reduced-motion: reduce) { .lion-break-media { transition: none; } }
