/* ============================================================
   ASTRA GO TO MARKET GROUP — SHARED STYLESHEET
   ============================================================ */

:root{
  --bg:#0A0A0B;
  --bg-alt:#0D0D0E;
  --card:#131313;
  --ink:#EFEDE8;
  --muted:#8B8880;
  --muted-2:#5F5D57;
  --gold:#B99752;
  --gold-bright:#D4B472;
  --line:rgba(239,237,232,0.08);
  --line-strong:rgba(239,237,232,0.14);
  --max:1180px;
  --max-narrow:760px;
  --serif:'Cormorant Garamond', Georgia, serif;
  --sans:'Inter', -apple-system, sans-serif;
  --mono:'JetBrains Mono', 'SF Mono', monospace;
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }

body{
  background:var(--bg);
  color:var(--ink);
  font-family:var(--sans);
  font-size:16px;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  letter-spacing:-0.01em;
}

h1,h2,h3{
  font-family:var(--serif);
  font-weight:500;
  line-height:1.12;
  letter-spacing:0.002em;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
ul,ol{ list-style:none; }

.wrap{ max-width:var(--max); margin:0 auto; padding:0 32px; }
.wrap-narrow{ max-width:var(--max-narrow); margin:0 auto; padding:0 32px; }

::selection{ background:var(--gold); color:var(--bg); }

/* ================= NAV ================= */

header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  background:rgba(10,10,11,0.82);
  backdrop-filter:blur(14px) saturate(140%);
  border-bottom:1px solid var(--line);
}

nav.wrap{
  display:flex; align-items:center; justify-content:space-between;
  height:80px;
}

.logo{
  display:flex; align-items:center;
}
.logo img{ height:51px; width:auto; display:block; }

.nav-links{ display:flex; gap:36px; }
.nav-links a{
  font-size:13.5px; color:var(--muted); font-weight:500;
  letter-spacing:0.02em;
  position:relative; padding-bottom:4px;
  transition:color .25s ease;
}
.nav-links a::after{
  content:''; position:absolute; left:0; right:100%; bottom:0; height:1px;
  background:var(--gold); transition:right .3s cubic-bezier(.4,0,.2,1);
}
.nav-links a:hover, .nav-links a.active{ color:var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after{ right:0; }

.nav-cta{
  font-size:13px; padding:11px 22px; font-family:var(--sans);
  border:1px solid var(--line-strong); color:var(--ink);
  letter-spacing:0.02em; font-weight:500;
  transition:all .25s ease; white-space:nowrap;
}
.nav-cta:hover{ border-color:var(--gold); background:var(--gold); color:var(--bg); }

.menu-btn{ display:none; background:none; border:none; color:var(--ink); font-size:22px; cursor:pointer; }

/* ================= PAGE HEADER (non-home pages) ================= */

.page-header{
  padding:160px 0 80px;
  border-bottom:1px solid var(--line);
}

.page-eyebrow{
  font-family:var(--mono); font-size:11.5px; letter-spacing:0.16em;
  text-transform:uppercase; color:var(--gold); margin-bottom:22px;
  display:flex; align-items:center; gap:10px;
}
.page-eyebrow::before{ content:''; width:24px; height:1px; background:var(--gold); }

.page-header h1{ font-size:clamp(34px, 4.6vw, 56px); max-width:820px; margin-bottom:20px; }
.page-header .sub{ font-size:18px; color:var(--muted); max-width:640px; }

/* ================= COMMON SECTION ================= */

section{ padding:120px 0; border-top:1px solid var(--line); position:relative; }
section.no-border{ border-top:none; }
section.tight{ padding:80px 0; }

.section-head{
  display:grid; grid-template-columns:260px minmax(0,1fr); gap:56px;
  margin-bottom:56px;
}
.section-head.center{ display:block; text-align:center; }
.section-head.center .section-label{ justify-content:center; }
.section-head.center .section-label::before{ display:none; }
.section-head.center h2, .section-head.center .lede{ margin-left:auto; margin-right:auto; }

.section-label{
  font-family:var(--mono); font-size:11.5px; letter-spacing:0.14em;
  text-transform:uppercase; color:var(--gold);
  display:flex; align-items:center; gap:10px; height:fit-content;
}
.section-label::before{ content:''; width:24px; height:1px; background:var(--gold); }

section h2{ font-size:clamp(30px, 3.4vw, 46px); position:relative; display:inline-block; }
section h2::after{
  content:''; position:absolute; left:0; right:100%; bottom:-6px; height:1px;
  background:var(--gold); transition:right .45s cubic-bezier(.4,0,.2,1);
}
section h2:hover::after{ right:0; }

.lede{ font-size:18px; color:var(--muted); max-width:620px; margin-top:18px; }

/* ================= BUTTONS ================= */

.cta-row{ display:flex; gap:14px; flex-wrap:wrap; }

.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding:16px 26px; font-size:13.5px; font-weight:500;
  letter-spacing:0.02em;
  transition:all .25s cubic-bezier(.4,0,.2,1);
  cursor:pointer; border:1px solid transparent;
}
.btn-primary{ background:var(--gold); color:#0A0A0B; }
.btn-primary:hover{ background:var(--gold-bright); transform:translateY(-1px); }
.btn-secondary{ border:1px solid var(--line-strong); color:var(--ink); }
.btn-secondary:hover{ border-color:var(--gold); color:var(--gold); }
.btn-secondary .arrow{ transition:transform .25s ease; }
.btn-secondary:hover .arrow{ transform:translateX(3px); }

/* ================= RESEARCH LEDGER ================= */

.ledger{
  border-left:2px solid var(--line-strong);
  padding:8px 0 8px 28px;
}

.ledger-head{
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:24px; padding-bottom:20px; border-bottom:1px solid var(--line);
}
.ledger-title{ font-family:var(--mono); font-size:13px; letter-spacing:0.1em; text-transform:uppercase; color:var(--muted); }
.ledger-pulse{
  width:6px; height:6px; border-radius:50%; background:var(--gold);
  opacity:0.7;
}
.ledger-row{
  display:flex; align-items:baseline; justify-content:space-between;
  padding:13px 0; border-bottom:1px solid var(--line);
  font-family:var(--mono);
}
.ledger-row:last-child{ border-bottom:none; padding-bottom:0; }
.ledger-label{ font-size:14.5px; color:var(--muted); }
.ledger-value{ font-size:18px; color:var(--ink); font-weight:500; }
.ledger-value.gold{ color:var(--gold); }
.ledger-foot{
  margin-top:22px; padding-top:18px; border-top:1px solid var(--line-strong);
  font-size:13.5px; color:var(--muted-2); line-height:1.65;
}

/* ================= NUMBERED EDITORIAL LIST ================= */

.num-list{ counter-reset:item; }
.num-item{
  counter-increment:item;
  display:grid; grid-template-columns:60px minmax(0,1fr); gap:10px 32px;
  padding:36px 0 36px 20px; margin-left:-20px; border-bottom:1px solid var(--line);
  border-left:1px solid transparent;
  transition:border-left-color .3s ease, background .3s ease, padding-left .3s ease;
}
.num-item:hover{
  border-left-color:var(--gold);
  background:rgba(185,151,82,0.025);
}
.num-item:first-child{ border-top:1px solid var(--line); }
.num-item::before{
  content:counter(item, decimal-leading-zero);
  grid-column:1; grid-row:1 / span 2;
  font-family:var(--mono); font-size:14px; color:var(--muted-2);
  padding-top:4px;
  transition:color .3s ease;
}
.num-item:hover::before{ color:var(--gold); }
.num-item h3{ grid-column:2; grid-row:1; font-size:23px; margin-bottom:10px; font-weight:500; }
.num-item p{ grid-column:2; grid-row:2; color:var(--muted); font-size:16px; max-width:560px; }
.num-item.emphasis h3{ color:var(--gold); }

/* ================= CREDIBILITY STRIP ================= */

.credibility{ background:var(--bg-alt); }
.cred-strip{ display:flex; border-top:1px solid var(--line-strong); border-bottom:1px solid var(--line-strong); flex-wrap:wrap; }
.cred-item{ flex:1; padding:34px 26px; border-right:1px solid var(--line); transition:background .3s ease; min-width:150px; }
.cred-item:last-child{ border-right:none; }
.cred-item:hover{ background:rgba(185,151,82,0.03); }
.cred-item .num{ font-family:var(--serif); font-style:italic; font-size:40px; color:var(--gold); margin-bottom:10px; line-height:1; }
.cred-item .label{ font-size:13.5px; color:var(--muted); line-height:1.5; }

/* ================= ROW LIST (who we help / practices index) ================= */

.row-list{ display:flex; flex-direction:column; }
.row-item{
  display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1.6fr); gap:40px;
  padding:32px 0; border-bottom:1px solid var(--line);
  align-items:baseline;
  transition:padding-left .3s ease;
}
.row-item:first-child{ border-top:1px solid var(--line); }
.row-item:hover{ padding-left:14px; }
.row-item h3{ font-size:22px; display:flex; align-items:center; gap:14px; }
.row-item h3 .mark{ color:var(--gold); font-family:var(--mono); font-size:13px; font-weight:400; }
.row-item p{ color:var(--muted); font-size:15.5px; }

/* ================= ACCORDION ================= */

.accordion{ border-top:1px solid var(--line); }
.acc-item{ border-bottom:1px solid var(--line); }
.acc-trigger{
  width:100%; display:flex; align-items:center; justify-content:space-between;
  padding:28px 0; background:none; border:none; color:var(--ink); cursor:pointer;
  text-align:left; font-family:var(--serif); font-size:23px; font-weight:500;
  transition:color .25s ease;
}
.acc-trigger:hover{ color:var(--gold); }
.acc-trigger .plus{ font-family:var(--mono); font-size:19px; color:var(--gold); transition:transform .3s ease; flex-shrink:0; margin-left:24px; }
.acc-item.open .plus{ transform:rotate(45deg); }
.acc-panel{ max-height:0; overflow:hidden; transition:max-height .4s cubic-bezier(.4,0,.2,1); }
.acc-panel-inner{ padding-bottom:28px; color:var(--muted); font-size:15.5px; max-width:640px; }

/* ================= TOC LIST (cases / studies index) ================= */

.toc-list{ border-top:1px solid var(--line); }
.toc-row{
  display:grid; grid-template-columns:100px minmax(0,1fr) 140px; gap:32px;
  align-items:center; padding:30px 0 30px 20px; margin-left:-20px; border-bottom:1px solid var(--line);
  position:relative; overflow:hidden;
  transition:background .25s ease;
}
.toc-row::before{
  content:''; position:absolute; left:0; top:0; bottom:0; width:2px;
  background:var(--gold); transform:scaleY(0); transform-origin:top;
  transition:transform .35s cubic-bezier(.4,0,.2,1);
}
.toc-row:hover::before{ transform:scaleY(1); }
.toc-row:hover{ background:rgba(185,151,82,0.03); }
.toc-tag{ font-family:var(--mono); font-size:13px; color:var(--muted-2); }
.toc-title h3{ font-size:20px; font-weight:500; margin-bottom:8px; }
.toc-title p{ color:var(--muted); font-size:14.5px; max-width:520px; }
.toc-status{
  font-family:var(--mono); font-size:11px; letter-spacing:0.06em;
  text-transform:uppercase; color:var(--gold); text-align:right;
  border:1px solid var(--line-strong); padding:6px 12px;
}

/* ================= PROSE (studies, cases, findings body copy) ================= */

.prose{ max-width:720px; }
.prose h2{ font-size:30px; margin:56px 0 18px; position:relative; display:inline-block; }
.prose h2:first-child{ margin-top:0; }
.prose h2::after{
  content:''; position:absolute; left:0; right:100%; bottom:-4px; height:1px;
  background:var(--gold); transition:right .4s cubic-bezier(.4,0,.2,1);
}
.prose h2:hover::after{ right:0; }
.prose h3{ font-size:22px; margin:34px 0 12px; color:var(--gold); font-family:var(--sans); font-weight:600; letter-spacing:0.01em; }
.prose p{ color:var(--muted); font-size:17px; margin-bottom:16px; }
.prose p.lead{ color:var(--ink); font-size:19px; }
.prose blockquote{
  border-left:2px solid var(--gold); padding:4px 0 4px 24px; margin:28px 0;
  font-family:var(--serif); font-style:italic; font-size:22px; color:var(--ink);
}
.prose ul{ margin:16px 0 20px 0; }
.prose ul li{ color:var(--muted); font-size:16px; padding-left:20px; position:relative; margin-bottom:8px; }
.prose ul li::before{ content:'—'; position:absolute; left:0; color:var(--gold); }
.prose hr{ border:none; border-top:1px solid var(--line); margin:44px 0; }
.prose strong{ color:var(--ink); font-weight:600; }

/* ---- status box used in Cases/Findings for research status ---- */

.status-box{
  border:1px solid var(--line-strong);
  background:var(--card);
  padding:28px 30px;
  margin:32px 0;
  transition:border-color .35s ease, box-shadow .35s ease;
}
.status-box:hover{
  border-color:rgba(185,151,82,0.35);
  box-shadow:0 0 0 1px rgba(185,151,82,0.08), 0 8px 24px rgba(0,0,0,0.2);
}
.status-box h4{
  font-family:var(--mono); font-size:12px; letter-spacing:0.08em;
  text-transform:uppercase; color:var(--gold); margin-bottom:16px;
}
.status-grid{ display:grid; grid-template-columns:1fr 1fr; gap:12px 24px; }
.status-grid .k{ font-family:var(--mono); font-size:12.5px; color:var(--muted); }
.status-grid .v{ font-family:var(--mono); font-size:13.5px; color:var(--ink); font-weight:500; }
.status-grid .v.gold{ color:var(--gold); }

/* ================= CONTACT FORM ================= */

.form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-top:12px; }
.form-grid .full{ grid-column:1 / -1; }
.field label{
  display:block; font-family:var(--mono); font-size:11.5px; letter-spacing:0.06em;
  text-transform:uppercase; color:var(--muted); margin-bottom:10px;
}
.field input, .field select, .field textarea{
  width:100%; background:var(--card); border:1px solid var(--line-strong);
  color:var(--ink); padding:14px 16px; font-family:var(--sans); font-size:15px;
  transition:border-color .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color:var(--gold);
}
.field textarea{ resize:vertical; min-height:110px; }
.form-submit{ margin-top:8px; }

/* ================= FOOTER ================= */

footer{ border-top:1px solid var(--line); padding:72px 0 40px; }
.footer-top{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:48px; margin-bottom:56px; }
.footer-logo{ margin-bottom:16px; }
.footer-logo img{ height:45px; width:auto; display:block; }
.footer-tag{ color:var(--muted); font-size:14px; max-width:280px; }
.footer-cols{ display:flex; gap:64px; flex-wrap:wrap; }
.footer-col h4{
  font-family:var(--mono); font-size:11px; letter-spacing:0.1em;
  text-transform:uppercase; color:var(--gold); margin-bottom:18px; font-weight:500;
}
.footer-col a{ display:block; font-size:14px; color:var(--muted); margin-bottom:12px; transition:color .2s ease; }
.footer-col a:hover{ color:var(--ink); }
.footer-bottom{
  border-top:1px solid var(--line); padding-top:28px;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px;
  font-family:var(--mono); font-size:12px; color:var(--muted-2);
}

/* ================= TRUST PYRAMID ================= */

.pyramid{ max-width:640px; margin:40px 0 56px; }
.pyramid-level{
  position:relative; display:flex; align-items:center; gap:20px;
  padding:18px 24px; margin-bottom:2px;
  border-left:3px solid var(--gold);
  transition:padding-left .3s ease, background .3s ease;
}
.pyramid-level:hover{ padding-left:32px; background:rgba(185,151,82,0.04); }
.pyramid-level-1{ background:rgba(185,151,82,0.03); width:100%; }
.pyramid-level-2{ background:rgba(185,151,82,0.05); width:92%; }
.pyramid-level-3{ background:rgba(185,151,82,0.08); width:84%; }
.pyramid-level-4{ background:rgba(185,151,82,0.12); width:76%; }
.pyramid-level-5{ background:rgba(185,151,82,0.18); width:68%; }
.pyramid-num{
  font-family:var(--mono); font-size:12px; color:var(--gold); flex-shrink:0;
  width:24px;
}
.pyramid-text strong{ display:block; font-family:var(--serif); font-size:19px; color:var(--ink); font-weight:500; margin-bottom:4px; }
.pyramid-text span{ font-size:14px; color:var(--muted); }
@media (max-width:600px){
  .pyramid-level-1, .pyramid-level-2, .pyramid-level-3, .pyramid-level-4, .pyramid-level-5{ width:100%; }
}

/* ================= FLOW DIAGRAM ================= */

.flow-diagram{ display:flex; align-items:stretch; gap:0; margin:40px 0 56px; flex-wrap:wrap; }
.flow-step{
  flex:1; min-width:140px; text-align:center; padding:24px 16px;
  border:1px solid var(--line-strong); position:relative;
  transition:border-color .3s ease, background .3s ease;
}
.flow-step:hover{ border-color:var(--gold); background:rgba(185,151,82,0.03); }
.flow-step-1{ opacity:0.55; }
.flow-step-2{ opacity:0.7; }
.flow-step-3{ opacity:0.85; }
.flow-step-4{ opacity:1; border-color:var(--gold); }
.flow-step-num{ font-family:var(--mono); font-size:11px; color:var(--gold); letter-spacing:0.08em; text-transform:uppercase; margin-bottom:10px; display:block; }
.flow-step-label{ font-family:var(--serif); font-size:20px; color:var(--ink); }
.flow-arrow{
  display:flex; align-items:center; justify-content:center;
  color:var(--gold); font-size:18px; padding:0 8px; flex-shrink:0;
}
@media (max-width:700px){
  .flow-diagram{ flex-direction:column; }
  .flow-arrow{ transform:rotate(90deg); padding:6px 0; }
}

/* ================= CONFIDENCE METER ================= */

.meter-row{ display:flex; align-items:center; gap:16px; margin:14px 0; }
@media (max-width:560px){
  .meter-row{ flex-wrap:wrap; gap:8px 12px; }
  .meter-label{ width:100%; order:1; }
  .meter-track{ order:3; flex-basis:100%; }
  .meter-pct{ order:2; width:auto; margin-left:auto; }
}
.meter-label{ font-family:var(--mono); font-size:12.5px; color:var(--muted); width:180px; flex-shrink:0; }
.meter-track{ flex:1; height:6px; background:var(--line); border-radius:3px; overflow:hidden; position:relative; }
.meter-fill{
  height:100%; background:linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius:3px; width:0; transition:width 1.1s cubic-bezier(.4,0,.2,1);
}
.meter-fill.in-view{ }
.meter-pct{ font-family:var(--mono); font-size:12px; color:var(--gold); width:60px; text-align:right; flex-shrink:0; }

/* ================= EVIDENCE MARKERS ================= */

.evidence-mark{
  display:inline-flex; align-items:center; gap:8px; margin:2px 0 18px;
  font-family:var(--mono); font-size:11.5px; color:var(--muted);
}
.evidence-dot{
  width:10px; height:10px; border-radius:50%; border:1.5px solid var(--gold); flex-shrink:0;
  position:relative; overflow:hidden;
}
.evidence-dot::after{
  content:''; position:absolute; left:0; bottom:0; width:100%; background:var(--gold);
}
.evidence-dot.full::after{ height:100%; }
.evidence-dot.high::after{ height:70%; }
.evidence-dot.partial::after{ height:45%; }
.evidence-dot.none::after{ height:0%; }

/* ================= PULL QUOTE ================= */

.pull-quote{
  font-family:var(--serif); font-style:italic; font-weight:500;
  font-size:clamp(26px, 3.4vw, 38px); line-height:1.35; color:var(--ink);
  max-width:680px; margin:64px auto; padding:0 20px; text-align:center;
  position:relative;
}
.pull-quote::before{
  content:''; display:block; width:40px; height:2px; background:var(--gold);
  margin:0 auto 28px;
}

/* ================= CONNECTION MAP ================= */

.connection-map{
  position:relative; max-width:640px; margin:48px auto; padding:60px 20px;
  display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:16px;
}
.connection-center{
  font-family:var(--serif); font-style:italic; font-size:22px; color:var(--gold);
  border:1.5px solid var(--gold); border-radius:50%;
  width:110px; height:110px; display:flex; align-items:center; justify-content:center;
  flex-shrink:0; text-align:center; position:relative; z-index:2;
}
.connection-nodes{ display:flex; flex-wrap:wrap; gap:12px; justify-content:center; max-width:460px; }
.connection-node{
  font-family:var(--mono); font-size:11.5px; color:var(--muted);
  border:1px solid var(--line-strong); padding:10px 16px;
  transition:border-color .3s ease, color .3s ease;
}
.connection-node:hover{ border-color:var(--gold); color:var(--ink); }

/* ================= REVEAL ================= */

.reveal{ opacity:0; transform:translateY(16px); transition:opacity .8s ease, transform .8s ease; }
.reveal.in{ opacity:1; transform:none; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{ outline:2px solid var(--gold); outline-offset:3px; }

/* ================= RESPONSIVE ================= */

@media (max-width:1000px){
  .section-head{ grid-template-columns:1fr; gap:18px; }
  .cred-strip{ flex-wrap:wrap; }
  .cred-item{ flex:1 1 50%; border-bottom:1px solid var(--line); }
  .row-item{ grid-template-columns:1fr; gap:8px; }
  .toc-row{ grid-template-columns:1fr; gap:12px; text-align:left; }
  .toc-status{ text-align:left; width:fit-content; }
  .status-grid{ grid-template-columns:1fr; }
  .form-grid{ grid-template-columns:1fr; }
}

@media (max-width:760px){
  .nav-links{
    position:fixed; top:80px; left:0; right:0; background:var(--bg);
    flex-direction:column; padding:28px 32px; border-bottom:1px solid var(--line);
    gap:22px; transform:translateY(-120%); transition:transform .3s ease;
    display:flex;
  }
  .nav-links.open{ transform:translateY(0); }
  .nav-cta{ display:none; }
  .menu-btn{ display:block; }
  section{ padding:80px 0; }
  .page-header{ padding:140px 0 60px; }
  .cred-item{ flex:1 1 100%; border-right:none; }
  .acc-trigger{ font-size:19px; }
}

@media (prefers-reduced-motion:reduce){
  .reveal{ transition:none; opacity:1; transform:none; }
  .ledger-pulse{ animation:none; }
  html{ scroll-behavior:auto; }
}

@media (max-width:420px){
  .wrap{ padding:0 20px; }
  .hero h1{ font-size:clamp(34px, 9vw, 48px); }
  .btn{ padding:14px 20px; font-size:13px; }
  .cred-item .num{ font-size:32px; }
  .ledger{ padding-left:20px; }
  .acc-trigger{ font-size:18px; }
}

/* ================= STICKY MOBILE CTA ================= */

.sticky-cta{
  display:none;
  position:fixed; left:0; right:0; bottom:0; z-index:90;
  padding:14px 20px;
  background:rgba(10,10,11,0.92);
  backdrop-filter:blur(14px) saturate(140%);
  border-top:1px solid var(--line-strong);
  transform:translateY(100%);
  transition:transform .35s cubic-bezier(.4,0,.2,1);
}
.sticky-cta.visible{ transform:translateY(0); }
.sticky-cta-btn{
  display:block; width:100%; text-align:center;
  background:var(--gold); color:#0A0A0B;
  padding:15px 0; font-size:14px; font-weight:600;
  letter-spacing:0.02em;
}

@media (max-width:760px){
  .sticky-cta{ display:block; }
  body{ padding-bottom:0; }
}

/* ============================================================
   PRINT STYLESHEET
   Produces a clean, forwardable black-on-white document.
   ============================================================ */

@media print{

  @page{ margin:2cm; }

  *{
    background:transparent !important;
    box-shadow:none !important;
    text-shadow:none !important;
  }

  html, body{
    background:#FFFFFF !important;
    color:#1A1A1A !important;
    font-size:11.5pt;
    line-height:1.5;
  }

  /* Hide everything that only makes sense on screen */
  header, footer, .sticky-cta, .menu-btn,
  .cta-row, .nav-links, .nav-cta,
  .ledger, .hero-proof,
  .btn, a.btn-primary, a.btn-secondary{
    display:none !important;
  }

  /* Remove fixed positioning and full-height hero behavior for print */
  .hero{
    min-height:0 !important;
    height:auto !important;
    padding:0 0 20px 0 !important;
  }
  .hero::before{ display:none !important; }
  .hero-layout{ display:block !important; }

  section{
    padding:16px 0 !important;
    border-top:1px solid #CCCCCC !important;
    page-break-inside:avoid;
  }
  section.no-border{ border-top:none !important; }

  .wrap{ max-width:100% !important; padding:0 !important; }

  h1, h2, h3{
    color:#000000 !important;
    page-break-after:avoid;
  }

  h1{ font-size:22pt; }
  h2{ font-size:16pt; }
  h3{ font-size:13pt; }

  p, li{ color:#2A2A2A !important; orphans:3; widows:3; }

  a{
    color:#000000 !important;
    text-decoration:underline !important;
  }
  a[href^="http"]::after, a[href^="mailto"]::after{
    content:" (" attr(href) ")";
    font-size:9pt;
    color:#555555 !important;
  }

  /* Page-header eyebrow becomes a plain small caption in print */
  .page-eyebrow{
    color:#555555 !important;
    font-size:9pt;
  }
  .page-eyebrow::before{ background:#999999 !important; }

  .section-label{ color:#555555 !important; }
  .section-label::before{ background:#999999 !important; }

  /* Prose, quotes, and evidence elements */
  .prose blockquote, .pull-quote{
    color:#000000 !important;
    border-left:2px solid #999999 !important;
  }

  .status-box{
    border:1px solid #999999 !important;
    background:#F7F7F7 !important;
    page-break-inside:avoid;
  }
  .status-box:hover{ box-shadow:none !important; border-color:#999999 !important; }

  .status-grid .k, .status-grid .v,
  .meter-label, .meter-pct,
  .ledger-label, .ledger-value{
    color:#1A1A1A !important;
  }

  .meter-track{ background:#DDDDDD !important; border:1px solid #999999; }
  .meter-fill{ background:#666666 !important; }

  .evidence-dot{ border-color:#333333 !important; }
  .evidence-dot::after{ background:#333333 !important; }

  /* Pyramid and flow diagram: simplify to flat bordered blocks */
  .pyramid-level, .flow-step{
    background:transparent !important;
    border:1px solid #CCCCCC !important;
    opacity:1 !important;
    page-break-inside:avoid;
  }
  .pyramid-level-1, .pyramid-level-2, .pyramid-level-3, .pyramid-level-4, .pyramid-level-5{
    width:100% !important;
  }
  .flow-diagram{ display:block !important; }
  .flow-arrow{ display:none !important; }
  .flow-step{ margin-bottom:8px; }

  .connection-map{ display:none !important; }

  .num-item{
    border-bottom:1px solid #DDDDDD !important;
    page-break-inside:avoid;
  }
  .num-item::before{ color:#999999 !important; }

  .toc-row{ border-bottom:1px solid #DDDDDD !important; }
  .toc-status{ border-color:#999999 !important; color:#333333 !important; }

  /* Print-only source line, added explicitly per page rather than inferred */
  .print-footer{
    display:block !important;
    margin-top:40px; padding-top:16px;
    border-top:1px solid #CCCCCC;
    font-size:9pt; color:#777777;
  }
}

.print-footer{ display:none; }
