/* ═══════════════════════════════════════════════════
   PROOFHQ — Canonical Pre-Launch Design System
   Merged: Set B structure + Set A visual depth
   Language: Evidence Grade / Evidence Standard /
             Commit Readiness / Governance Controls
   ═══════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #F6F7FA;
  --bg-raised: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F3F4F6;
  --bg-code: #1B1D24;

  --border: rgba(17,24,39,.08);
  --border-md: rgba(17,24,39,.14);
  --border-accent: rgba(249,115,22,.28);

  --text: #0B1220;
  --text-mid: #4B5563;
  --text-dim: #6B7280;
  --text-faint: #9CA3AF;

  --accent: #EA580C;
  --accent-light: #F97316;
  --accent-glow: rgba(234,88,12,.10);
  --accent-glow-s: rgba(234,88,12,.16);
  --accent-bg: rgba(234,88,12,.06);
  --accent-bg-s: #FFEDD5;
  --accent-text: #9A3412;

  --blue: #1D4ED8;
  --blue-bg: rgba(29,78,216,.06);
  --green: #047857;
  --green-bg: rgba(4,120,87,.06);
  --red: #B91C1C;
  --red-bg: rgba(185,28,28,.06);
  --amber: #B45309;
  --amber-bg: rgba(180,83,9,.06);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, system-ui, Segoe UI, Roboto, sans-serif;
  --max-w: 1120px;
  --section-pad: clamp(40px, 6vw, 72px);
  --r: 16px;
  --sh: 0 1px 3px rgba(0,0,0,.04), 0 4px 12px rgba(0,0,0,.03);
  --sh-h: 0 2px 8px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.05);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pulse-glow {
  0%, 100% { opacity: .4; }
  50% { opacity: 1; }
}
.anim-up { animation: fadeUp .6s ease-out both; }
.anim-d1 { animation: fadeUp .6s ease-out .08s both; }
.anim-d2 { animation: fadeUp .6s ease-out .16s both; }
.anim-d3 { animation: fadeUp .6s ease-out .24s both; }
.anim-d4 { animation: fadeUp .6s ease-out .32s both; }

/* Hero gap sequential reveal */
.hero-gap-1 { animation: fadeIn 1s ease-out 1s both; }
.hero-gap-2 { animation: fadeIn 1s ease-out 2.2s both; }
.hero-gap-3 { animation: fadeIn 1s ease-out 3.5s both; }

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════
   NAVIGATION
   ═══════════════════ */
.nav {
  position: sticky; top: 0; z-index: 100;
  padding: 14px 0;
  background: rgba(246,247,250,.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand {
  display: flex; align-items: baseline; gap: 10px;
  text-decoration: none; color: var(--text);
}
.brand .logo {
  font-family: var(--font-display);
  font-weight: 800; letter-spacing: -.6px; font-size: 20px;
}
.brand .tag {
  font-size: 12px; font-weight: 700; letter-spacing: .9px;
  text-transform: uppercase; color: var(--text-dim);
}
.brand .dot { color: var(--accent); }
.nav-links { display: flex; gap: 0; align-items: center; flex-wrap: wrap; }
/* Navigation pipe separators */
.nav-separator {
  color: #CBD5E1;
  margin: 0 0px;
  font-size: 14px;
  user-select: none;
}

.nav-links a {
  margin: 0 8px; font-size: 15px; font-weight: 700; color: var(--text-mid);
  text-decoration: none; transition: color .2s;
}
.nav-links a:hover { color: var(--text); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 18px; border-radius: 10px; text-decoration: none;
  font-size: 15px; font-weight: 800; border: 1px solid transparent;
  cursor: pointer; transition: all .2s ease; min-height: 44px;
  font-family: var(--font-body);
}
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,.05), 0 10px 24px rgba(234,88,12,.12);
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(234,88,12,.2);
}
.btn-ghost {
  background: transparent; color: var(--text);
  border-color: var(--border-md);
}
.btn-ghost:hover {
  background: rgba(17,24,39,.03);
  box-shadow: var(--sh);
}

/* ═══════════════════
   HERO
   ═══════════════════ */
.hero {
  padding: calc(var(--section-pad) + 12px) 0 var(--section-pad);
  position: relative;
  border-bottom: 1px solid var(--border);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1200px 560px at 50% -220px, rgba(234,88,12,.07), transparent 70%),
    linear-gradient(to bottom, rgba(17,24,39,.02), transparent 40%);
}
.hero-inner { position: relative; z-index: 1; max-width: 1000px; }
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 12px;
  border: 1px solid var(--border-accent);
  border-radius: 999px;
  background: var(--accent-bg);
  color: var(--accent);
  font-size: 12px; font-weight: 900; letter-spacing: .6px;
  text-transform: uppercase;
}
.kicker .pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: pulse-glow 2.5s infinite;
}
.h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -1.1px;
  margin: 16px 0 14px;
}
.h1 .hl {
  background: linear-gradient(135deg, #EA580C, #F97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sub {
  font-size: clamp(16px, 1.9vw, 19px);
  color: var(--text-mid);
  max-width: 740px;
}
.sub strong { color: var(--text); font-weight: 600; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }

.meta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.meta {
  display: flex; flex-direction: column;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-card);
  box-shadow: var(--sh);
}
.meta b { font-family: var(--font-display); font-size: 20px; letter-spacing: -.4px; }
.meta span { font-size: 12px; color: var(--text-dim); margin-top: 2px; }

/* ═══════════════════
   SECTIONS
   ═══════════════════ */
.section { padding: var(--section-pad) 0; border-bottom: 1px solid var(--border); }
.section-raised { background: var(--bg-raised); }


.title {
  font-family: var(--font-display);  /* Fraunces serif */
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;                  /* Consistent weight */
  line-height: 1.15;
  letter-spacing: -.8px;
  margin-bottom: 14px;
  max-width: 820px;
}

/* Ensure h1 and h2 elements with .title class use correct weight */
h1.title,
h2.title,
h3.title {
  font-family: var(--font-display);
  font-weight: 800 !important;
}
.desc {
  font-size: 16px; color: var(--text-mid);
  max-width: 820px; line-height: 1.75;
  margin-bottom: 26px;
}
.small { font-size: 13px; color: var(--text-dim); }

/* ── Cards ── */
.grid { display: grid; gap: 14px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }

.card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--bg-card);
  box-shadow: var(--sh);
  transition: all .25s;
}
.card:hover { background: var(--bg-card-hover); border-color: var(--border-md); box-shadow: var(--sh-h); }
.card h3 { font-size: 15px; font-weight: 900; margin-bottom: 8px; }
.card p { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 18px; align-items: start; }

.list {
  margin-top: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.li { display: flex; gap: 0; align-items: flex-start; padding: 12px 0; border-top: 1px solid var(--border); }

/* Two-column layout for list items */
.li .content-wrapper {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  align-items: start;
}

.li .content-wrapper strong {
  font-weight: 700;
}
.li:first-child { border-top: none; }
.check {
  width: 32px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 900;
  background: var(--accent-glow); color: var(--accent);
  flex: 0 0 auto; margin-top: 2px;
}


.check-b { background: var(--blue-bg); color: var(--blue); }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 900; letter-spacing: .6px;
  text-transform: uppercase; border: 1px solid var(--border);
  color: var(--text-mid);
}
.pill.live { border-color: rgba(4,120,87,.25); background: var(--green-bg); color: var(--green); }
.pill.soon { border-color: rgba(29,78,216,.25); background: var(--blue-bg); color: var(--blue); }

.quote {
  padding: 18px; border-left: 4px solid var(--accent);
  background: var(--accent-bg); border-radius: 14px; color: var(--text);
}
.quote p { font-size: 14px; color: var(--text-mid); margin-top: 8px; }

.callout-strong {
  padding: 20px;
  border: 1px solid var(--border-accent);
  background: rgba(234,88,12,.08);
  border-radius: 18px;
}
.callout-strong strong { display: block; font-size: 14px; letter-spacing: .6px; text-transform: uppercase; }
.callout-strong p { font-size: 18px; line-height: 1.45; color: var(--text); margin-top: 8px; font-weight: 700; }

/* ── Tools ── */
.tools-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.tool-out {
  margin-top: 12px; padding: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-code);
  font-size: 13px; color: #E5E7EB;
}
.tool-row { display: flex; justify-content: space-between; gap: 10px; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.tool-row:last-child { border-bottom: none; }
.tool-row span:first-child { color: #9CA3AF; font-size: 12px; }
.tool-row span:last-child { font-weight: 800; font-size: 13px; }
.vr { color: #F87171; }
.vg { color: #34D399; }

/* Contrast cards (AI page) */
.contrast-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contrast-card { padding: 28px 24px; border-radius: var(--r); }
.contrast-card.them { background: var(--bg-card); border: 1px solid var(--border); }
.contrast-card.us { background: var(--accent-bg); border: 1px solid var(--border-accent); }
.contrast-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 800; margin-bottom: 14px; }
.contrast-list { list-style: none; padding: 0; }
.contrast-list li { padding: 7px 0; border-top: 1px solid var(--border); font-size: 14px; color: var(--text-mid); line-height: 1.5; display: flex; gap: 10px; }
.contrast-card.us .contrast-list li { color: var(--text); }
.x-mark { color: var(--red); font-weight: 900; flex-shrink: 0; }
.check-mark { color: var(--green); font-weight: 900; flex-shrink: 0; }

/* Market stat cards (Why page) */
.m-stat { padding: 22px; border: 1px solid var(--border); border-radius: var(--r); background: var(--bg-card); text-align: center; box-shadow: var(--sh); }
.m-stat-num { font-family: var(--font-display); font-size: 30px; font-weight: 800; color: var(--accent); letter-spacing: -1px; }
.m-stat-label { font-size: 13px; color: var(--text-mid); margin-top: 6px; line-height: 1.5; }

/* VS cards (Why page) */
.vs-card { padding: 24px; border: 1px solid var(--border); border-radius: var(--r); background: var(--bg-card); box-shadow: var(--sh); }
.vs-card h3 { font-size: 15px; font-weight: 900; margin-bottom: 12px; }
.vs-label { font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 3px; }
.vs-label.them { color: var(--text-faint); }
.vs-label.us { color: var(--accent); }
.vs-row { margin-bottom: 10px; font-size: 14px; line-height: 1.5; color: var(--text-mid); }

/* Commitment block (AI page) */
.commitment {
  max-width: 640px; margin: 0 auto; text-align: center;
  padding: 48px 36px;
  border: 1px solid var(--border); border-radius: 20px;
  background: var(--bg-card); box-shadow: var(--sh);
}
.commitment h2 { font-family: var(--font-display); font-size: clamp(24px,3vw,32px); font-weight: 800; margin-bottom: 12px; }
.commitment p { font-size: 16px; color: var(--text-mid); line-height: 1.7; margin-bottom: 8px; }
.commitment .sig { font-family: var(--font-display); font-style: italic; font-size: 15px; color: var(--text-dim); margin-top: 18px; }

/* ═══════════════════
   CTA / WAITLIST
   ═══════════════════ */
.cta {
  padding: 54px 0;
  background: radial-gradient(900px 360px at 50% 0%, rgba(234,88,12,.10), transparent 70%);
}
.cta-box {
  border: 1px solid var(--border-accent);
  background: var(--bg-card);
  border-radius: 20px;
  padding: 34px 24px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: var(--sh);
}
.form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 18px; }
.input {
  min-width: 260px;
  padding: 12px 14px; border-radius: 12px;
  border: 1px solid var(--border-md);
  background: #fff; font-size: 14px;
  font-family: var(--font-body);
  transition: border-color .2s;
}
.input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(234,88,12,.08); }

/* ═══════════════════
   FOOTER (Polished)
   ═══════════════════ */
.footer{
  padding: 44px 24px;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(900px 280px at 50% 0%, rgba(234,88,12,.06), transparent 70%),
    #fff;
}
.footer-inner{
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.footer-left{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: .15px;
}
.footer-left .dot{ color: var(--accent); }
.footer-left .sep{ opacity: .55; }

.footer-right{
  display:flex;
  gap: 22px;
  align-items:center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer a{
  font-size: 13px;
  color: var(--text-mid);
  text-decoration: none;
  transition: color .2s, transform .2s;
  font-weight: 700;
  letter-spacing: .15px;
}
.footer a:hover{
  color: var(--accent);
  transform: translateY(-1px);
}

/* Footer responsiveness */
@media (max-width: 720px){
  .footer-inner{
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-right{
    width: 100%;
    justify-content: flex-start;
    gap: 16px;
  }
}

/* Optional: use <span class="footer-legal">…</span> for a crisp legal line */
.footer-legal{ opacity: .85; }


/* ═══════════════════
   RESPONSIVE
   ═══════════════════ */
@media (max-width: 920px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-2, .split, .contrast-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 480px) {
  .hero { padding: 72px 0 64px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .meta-row { gap: 10px; }
  .form { flex-direction: column; }
  .input { min-width: 100%; }
}


/* ─────────────────────────────────────────────
   V4 polish: lighter comparison, stronger CTAs
   ───────────────────────────────────────────── */
.btn-primary{ color:#fff !important; font-weight:800; }
.btn-primary:hover{ color:#fff !important; }

.compare-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 22px; }
@media (max-width: 860px){ .compare-grid{ grid-template-columns:1fr; } }

.compare-panel{
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--sh);
  padding: 18px;
}
.compare-panel h3{ margin:0 0 8px; font-size: 16px; font-weight: 900; }
.compare-panel p{ margin:0 0 12px; color: var(--text-mid); }

.compare-metrics{
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow:hidden;
  background: #fbfbfc;
}
.compare-row{
  display:flex; align-items:center; justify-content:space-between;
  padding: 10px 12px;
  font-size: 13px;
  border-top: 1px solid var(--border);
}
.compare-row:first-child{ border-top:none; }
.compare-row span:first-child{ color: var(--text-dim); font-weight:700; }
.compare-row b{ font-weight: 900; }

.pill{ display:inline-flex; align-items:center; gap:8px; padding:8px 12px; border-radius: 999px; border:1px solid var(--border); background:#fff; font-size: 13px; font-weight: 800; }
.pill:hover{ background:#f7f7f8; }
.pill .dot{ width:8px; height:8px; border-radius:99px; background: var(--accent); }

/* Make details summary feel clickable */
details.accordion summary{
  display:flex; align-items:center; justify-content:space-between;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background:#fff;
}
details.accordion summary:hover{ background:#f7f7f8; }
details.accordion summary::after{
  content:"Click to open";
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
}
details[open].accordion summary::after{ content:"Close"; }

/* CTA copy block tighter */
.cta-title{ margin: 8px 0 0; }

/* ─────────────────────────────────────────────
   Option B Nav polish: make brand feel bolder
   ───────────────────────────────────────────── */
.brand .logo{ font-size: 24px; }
@media (max-width: 480px){ .brand .logo{ font-size: 22px; } }

/* Support SVG logo in nav */
.brand .logo-img{
  height: 90px; /* increased 20% from 75px - weight 800 for maximum authority */
  width: auto;
  display: block;
}
@media (max-width: 480px){
  .brand .logo-img{
  height: 90px; /* increased 20% from 75px - weight 800 for maximum authority */
  width: auto;
  display: block;
}

.gov-grid{ stroke: var(--border); stroke-width: 1; opacity: .18; }
.gov-arrow{ fill: var(--text-dim); opacity: .55; }

.gov-title{ font-family: var(--font-display); font-weight: 800; font-size: 18px; fill: var(--text); opacity: .9; }

.gov-rail{ stroke: var(--border-md); stroke-width: 6; stroke-linecap: round; opacity: .75; }
.gov-dot{ fill: #fff; stroke: var(--border-md); stroke-width: 4; }
.gov-label{ font-weight: 900; font-size: 16px; fill: var(--text); }
.gov-micro{ font-size: 12px; fill: var(--text-dim); opacity: .92; }

.gov-box{ fill: #fff; stroke: var(--border); stroke-width: 2; }
.gov-box-title{ font-weight: 900; font-size: 16px; fill: var(--text); }
.gov-box-micro{ font-size: 12px; fill: var(--text-dim); opacity: .92; }

.gov-gate{ fill: rgba(234,88,12,.08); stroke: var(--accent); stroke-width: 3; }
.gov-output-box{ fill: #fff; stroke: var(--border); stroke-width: 2; }
.gov-output-title{ font-weight: 900; font-size: 14px; fill: var(--text); }

.gov-line{ fill:none; stroke: var(--text-dim); stroke-width: 3; opacity: .35; stroke-linecap: round; }

.gov-pulse{
  fill: var(--accent);
  opacity: .95;
  filter: drop-shadow(0 0 10px rgba(234,88,12,.55));
}

/* B-mode: dramatic (but premium) pulse on the gate */
.gov-gate{ animation: govGatePulse 4.8s ease-in-out infinite; }
@keyframes govGatePulse{
  0%, 40% { opacity: .75; }
  55% { opacity: 1; }
  70% { opacity: .86; }
  100% { opacity: .75; }
}

/* Keep layout tidy on smaller screens */
@media (max-width: 720px){
  .gov-diagram-head{ flex-direction: column; align-items: flex-start; }
}

/* ─────────────────────────────────────────────
   Index polish overrides (v3.1) — appended
   Purpose: tighten hero, scale section labels/headlines,
            standardize card heights, and refine governance diagram.
   Safe: overrides only (last-wins), no deletions.
   ───────────────────────────────────────────── */

/* HERO kicker (less shouty than orange pill) */
.hero-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.65);
  color: var(--text-mid);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .4px;
  text-transform: uppercase;
}
.hero-kicker-dot{
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(234,88,12,.10);
}
.hero-kicker-sep{ opacity:.55; }

.hero-lines{ margin-top: 18px; }
.hero-contrast{ margin-top: 10px; color: var(--text); }
.hero-micro{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}



/* Larger section titles where you opt-in via class */
.title-xl{
  font-size: clamp(30px, 3.9vw, 48px);
  letter-spacing: -1px;
  max-width: 820px;
}

/* Equal-height cards (opt-in wrapper) */
.cards-equal{ align-items: stretch; }
.cards-equal .card,
.cards-equal .compare-panel{ height: 100%; }
.card-tall{ display:flex; flex-direction: column; }

/* Callout: slightly tighter so it reads more “system” than “banner” */
.callout-compact{
  padding: 16px;
  border-radius: 16px;
}
.callout-compact p{ font-size: 16px; }

/* Nav logo slightly prouder */
.brand .logo-img{
  height: 90px; /* increased 20% from 75px - weight 800 for maximum authority */
  width: auto;
  display: block;
}
}


/* ─────────────────────────────────────────────
   What You Get — typography consistency + closing punch
   ───────────────────────────────────────────── */

}
/* Removed .what-you-get title override - now uses standard .title styles */

/* Closing punch (bigger + bolder) */
.closing-punch{
  margin-top: 40px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.22;
  letter-spacing: -.6px;
  color: var(--text);
}
.closing-punch::after{
  content:"";
  display:block;
  width: 92px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: rgba(234,88,12,.55);
}

/* ─────────────────────────────────────────────
   Enforcement card (enterprise credible, rep-friendly)
   ───────────────────────────────────────────── */
.enforcement-card{
  border-color: var(--border-accent);
  background: linear-gradient(to bottom, rgba(234,88,12,.045), #fff 55%);
}

.enf-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.enf-status{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--red-bg);
  color: var(--red);
  border: 1px solid rgba(185,28,28,.25);
}

.enf-grid{
  display:grid;
  grid-template-columns: 1fr 1.15fr 1.15fr;
  gap: 18px;
}

.enf-col h3{
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--text-dim);
  margin-bottom: 10px;
}

.enf-list{
  list-style: none;
  display:flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--text-mid);
}

.enf-list li{
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.enf-list li:first-child{
  border-top: none;
  padding-top: 0;
}

.enf-risk{
  font-size: 16px;
  color: var(--text);
  margin-top: 2px;
}

.enf-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.enf-foot{
  margin-top: 10px;
  opacity: .78;
}

@media (max-width: 920px){
  .enf-grid{ grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   PROOF Logo — Scaled for Authority (override)
   Put at end of file so it overrides earlier rules.
   ───────────────────────────────────────────── */

.brand{
  align-items: center;
}

.brand .logo-img{
  height: 90px; /* increased 20% from 75px - weight 800 for maximum authority */
  width: auto;
  display: block;
}

@media (max-width: 900px){
  .brand .logo-img{ height: 74px; }
}

@media (max-width: 480px){
  .brand .logo-img{ height: 62px; }
}

/* ========================================
   SECTION LABELS - ORANGE HEADERS
   ======================================== */
.label {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #EA580C;
  margin-bottom: 16px;
  display: block;
}

@media (min-width: 900px){
  .label { 
    font-size: 18px; 
  }
}

/* Override for specific sections if needed */
.what-you-get .label,
.section .label,
.section-raised .label {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1.2px;
  color: #EA580C;
  text-transform: uppercase;
}

@media (min-width: 900px){
  .what-you-get .label,
  .section .label,
  .section-raised .label {
    font-size: 18px;
  }
}




/* Bullet points for problem lists */
.bullet {
  width: 32px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 20px;
  font-weight: 900;
  color: #EA580C;
  flex-shrink: 0;
}


/* ========================================
   MOBILE HAMBURGER MENU
   ======================================== */

/* Hamburger button - hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: #0B1220;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger animation when open */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: -4px 0 12px rgba(0,0,0,0.1);
  z-index: 1000;
  padding: 80px 32px 32px;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu a {
  font-size: 18px;
  font-weight: 600;
  color: #0B1220;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid rgba(17,24,39,0.08);
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: #EA580C;
}

.mobile-menu a.active {
  color: #EA580C;
  font-weight: 700;
}

.mobile-menu .btn {
  margin-top: 16px;
}

/* Overlay backdrop */
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
}

/* Show hamburger on mobile, hide desktop nav */
@media (max-width: 920px) {
  .hamburger {
    display: flex;
  }
  
  .mobile-menu,
  .mobile-overlay {
    display: block;
  }
  
  .nav-links {
    display: none !important;
  }
  
  .nav .btn-primary {
    display: none; /* Hide desktop CTA, show in mobile menu instead */
  }
}
