﻿/* ─────────────────────────────────────────
   WhiteLabelSEO — Shared Brand Styles
   DM Sans · #111111 · #3D5A3E · #F4F3F0
   ───────────────────────────────────────── */

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

:root {
  --black:  #111111;
  --char:   #1A1A1A;
  --gold:   #3D5A3E;
  --gold-d: #2E4530;
  --olive:  #3D5A3E;
  --sage:   #6B6B6B;
  --white:  #FFFFFF;
  --off:    #F4F3F0;
  --border: rgba(0,0,0,0.09);
  --bdark:  rgba(61,90,62,0.18);
  --ink-1:  #111111;
  --ink-2:  #555555;
  --ink-3:  #6B6B6B;
  --ink-4:  #888888;
  --ink-5:  #aaaaaa;
}

html { scroll-behavior: smooth; overflow-anchor: none; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

/* ─── Type system ─── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--olive); margin-bottom: 20px;
}
.eyebrow.gold { color: var(--gold); }
/* Eyebrow on dark backgrounds — --gold (#3D5A3E) is near-invisible on near-black; override to white */
.sec.dark .eyebrow.gold,
.nda-section .eyebrow.gold { color: rgba(255,255,255,0.65); }

.h-display { font-family: 'DM Sans', sans-serif; font-weight: 900; line-height: 1.0; letter-spacing: -1.5px; color: var(--black); }
.h-section { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 52px; line-height: 1.1; letter-spacing: -0.8px; color: var(--black); }
.h-section.on-dark { color: var(--white); }
.h-page { font-family: 'DM Sans', sans-serif; font-weight: 900; font-size: 80px; line-height: 1.0; letter-spacing: -1.5px; color: var(--black); }
.h-page.on-dark { color: var(--white); }

.lead { font-size: 19px; font-weight: 300; color: var(--ink-2); line-height: 1.8; max-width: 640px; }
.lead.on-dark { color: rgba(255,255,255,0.55); }
.lead.on-dark b { color: rgba(255,255,255,0.85); font-weight: 500; }

/* ─── Buttons ─── */
.btn-primary { background: var(--black); color: var(--white); padding: 16px 32px; border-radius: 6px; font-size: 15px; font-weight: 500; letter-spacing: 0.3px; display: inline-flex; align-items: center; gap: 10px; transition: transform .2s, box-shadow .2s, background .2s; }
.btn-primary:hover { background: var(--gold); transform: translateY(-1px); box-shadow: 0 12px 24px -12px rgba(61,90,62,0.4); }
.btn-gold { background: var(--gold); color: var(--white); padding: 16px 32px; border-radius: 6px; font-size: 15px; font-weight: 500; letter-spacing: 0.3px; display: inline-flex; align-items: center; gap: 10px; transition: transform .2s, box-shadow .2s, background .2s; }
.btn-gold:hover { background: var(--gold-d); transform: translateY(-1px); box-shadow: 0 12px 24px -12px rgba(61,90,62,0.4); }
.btn-outline { border: 1px solid rgba(0,0,0,0.2); color: var(--black); padding: 15px 30px; border-radius: 6px; font-size: 15px; font-weight: 400; display: inline-flex; align-items: center; gap: 10px; transition: background .15s, border-color .15s; background: transparent; }
.btn-outline:hover { background: var(--off); border-color: rgba(0,0,0,0.3); }
.btn-ghost-w { border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.85); padding: 15px 30px; border-radius: 6px; font-size: 15px; display: inline-flex; align-items: center; gap: 10px; transition: border-color .15s, color .15s, background .15s; background: transparent; }
.btn-ghost-w:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,0.08); }
.btn-link { color: var(--olive); font-size: 14px; font-weight: 500; letter-spacing: 0.3px; border-bottom: 1px solid rgba(61,90,62,0.35); padding-bottom: 2px; transition: color .15s; }
.btn-link:hover { color: var(--ink-1); border-bottom-color: var(--olive); }
.btn-link-w { color: rgba(255,255,255,0.65); font-size: 14px; border-bottom: 0.5px solid rgba(255,255,255,0.2); padding-bottom: 2px; transition: color .15s; }
.btn-link-w:hover { color: var(--white); border-bottom-color: var(--white); }

/* ─── Header Stack ─── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  /* Promote to GPU compositing layer — eliminates layout-triggered jitter */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Top utility bar (dark thin strip above the main nav) */
.util-bar {
  background: var(--black);
  color: rgba(255,255,255,0.65);
  padding: 0 60px;
  height: 42px;
  overflow: hidden; /* clip without causing layout reflow */
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.3px;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
  transition: height .28s cubic-bezier(.4,0,.2,1), opacity .2s ease;
}
.util-left, .util-right { display: flex; align-items: center; gap: 28px; }
.util-item { display: inline-flex; align-items: center; gap: 8px; }
.util-item.gold { color: rgba(255,255,255,0.9); font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; font-size: 11px; }
.util-item.gold::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); display: inline-block;
}
.util-item a { color: inherit; transition: color .15s; }
.util-item a:hover { color: rgba(255,255,255,1); }
.util-sep { width: 1px; height: 14px; background: rgba(255,255,255,0.12); }

/* Main nav */
nav.site-nav {
  background: rgba(255,255,255,0.97); backdrop-filter: blur(14px);
  border-bottom: 0.5px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: 108px;
  transition: height .25s, background .25s, box-shadow .25s;
  position: relative;
}
.site-header.scrolled .util-bar { height: 0; opacity: 0; pointer-events: none; border-bottom-width: 0; }
.site-header.scrolled nav.site-nav { height: 80px; background: rgba(255,255,255,0.98); box-shadow: 0 12px 30px -22px rgba(0,0,0,0.18); }

.nav-brand { display: flex; align-items: center; height: 100%; flex-shrink: 0; padding-right: 32px; border-right: 0.5px solid var(--border); margin-right: 32px; }
.nav-brand img { height: 52px; width: auto; transition: height .25s; }
.site-header.scrolled .nav-brand img { height: 38px; }
.site-header.scrolled .nav-brand { padding-right: 28px; margin-right: 28px; }

/* Menu links */
.nav-links { display: flex; gap: 4px; align-items: center; flex: 1; }
.nav-links > a, .nav-dropdown > button {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 500; color: var(--ink-2);
  background: transparent; border: none; cursor: pointer;
  transition: color .15s;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  position: relative;
  letter-spacing: 0.1px;
}
.nav-links > a::after, .nav-dropdown > button::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 1.5px;
  background: var(--olive);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s cubic-bezier(.2,.65,.3,1);
}
.nav-links > a:hover::after, .nav-dropdown:hover > button::after { transform: scaleX(1); }
.nav-links > a.active { color: var(--black); }
.nav-links > a.active::after { transform: scaleX(1); }
.nav-links > a:hover, .nav-dropdown:hover > button { color: var(--black); }

/* Dropdown caret (replaces ::after; restructured via inner span) */
.nav-dropdown { position: relative; }
.nav-dropdown > button { padding-right: 24px; }
.nav-dropdown > button > .caret { width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); margin-top: -3px; transition: transform .2s; display: inline-block; }
.nav-dropdown:hover > button > .caret { transform: rotate(225deg); margin-top: 3px; }

/* Mega dropdown */
.nav-menu {
  position: absolute; top: calc(100% + 4px); left: -10px;
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  min-width: 340px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.18);
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .2s, transform .2s;
}
.nav-dropdown:hover .nav-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-menu::before {
  content: ''; position: absolute; top: -6px; left: 40px;
  width: 12px; height: 12px; background: var(--white);
  border-top: 0.5px solid var(--border); border-left: 0.5px solid var(--border);
  transform: rotate(45deg);
}
.nav-menu a {
  display: block;
  padding: 10px 14px; border-radius: 6px;
  color: var(--ink-1);
  transition: background .15s;
}
.nav-menu a:hover { background: var(--off); }
.nav-menu a + a { margin-top: 2px; }
.nav-menu a .copy { display: flex; flex-direction: column; gap: 2px; }
.nav-menu a b { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500; color: var(--ink-1); letter-spacing: 0.1px; }
.nav-menu a span { font-size: 12px; color: var(--ink-4); font-weight: 300; line-height: 1.4; }
.nav-menu .menu-foot {
  margin-top: 8px; padding-top: 14px; border-top: 0.5px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
}
.nav-menu .menu-foot a { padding: 6px 10px; display: inline-flex; gap: 4px; }
.nav-menu .menu-foot a:hover { transform: none; }
.nav-menu .menu-foot a b { color: var(--olive); }

/* Actions */
.nav-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; padding-left: 24px; margin-left: 24px; border-left: 0.5px solid var(--border); }
.nav-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--ink-2);
  padding: 12px 18px; border: 1px solid var(--border); border-radius: 6px;
  letter-spacing: 0.3px;
  transition: border-color .15s, color .15s, background .15s;
}
.nav-btn-ghost:hover { border-color: var(--olive); color: var(--olive); background: rgba(61,90,62,0.04); }
.nav-btn {
  background: var(--gold); color: var(--white);
  padding: 13px 22px; border-radius: 6px;
  font-size: 14px; font-weight: 500; letter-spacing: 0.3px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.nav-btn:hover { background: var(--gold-d); transform: translateY(-1px); box-shadow: 0 10px 20px -10px rgba(61,90,62,0.4); }
.nav-btn .arrow { transition: transform .2s; }
.nav-btn:hover .arrow { transform: translateX(3px); }

/* nda-badge */
.nda-badge {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--olive); font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
}
.nda-badge::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--olive); display: inline-block;
}

/* Mobile menu toggle */
.nav-burger { display: none; width: 44px; height: 44px; flex-direction: column; gap: 6px; justify-content: center; align-items: center; cursor: pointer; background: transparent; border: 0.5px solid var(--border); border-radius: 6px; flex-shrink: 0; }
.nav-burger span { display: block; width: 20px; height: 1.5px; background: var(--black); transition: transform .25s, opacity .25s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile slide-out menu */
.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 88vw);
  background: var(--white); z-index: 200;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.2,.65,.3,1);
  display: flex; flex-direction: column;
  box-shadow: -30px 0 60px -20px rgba(0,0,0,0.25);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-head { padding: 26px 28px; display: flex; justify-content: space-between; align-items: center; border-bottom: 0.5px solid var(--border); }
.mobile-menu-head img { height: 40px; }
.mobile-menu-close { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 0.5px solid var(--border); border-radius: 6px; background: transparent; font-size: 24px; line-height: 1; color: var(--ink-2); cursor: pointer; }
.mobile-menu-body { flex: 1; overflow-y: auto; padding: 20px 28px; }
.mobile-menu-section { margin-bottom: 24px; }
.mobile-menu-section h5 { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--olive); margin-bottom: 14px; font-weight: 500; }
.mobile-menu-section a { display: block; padding: 12px 0; font-size: 17px; color: var(--ink-1); font-weight: 500; border-bottom: 0.5px solid var(--border); transition: color .15s, padding-left .15s; }
.mobile-menu-section a:hover { color: var(--olive); padding-left: 4px; }
.mobile-menu-section a span { display: block; font-size: 12px; color: var(--ink-4); font-weight: 300; margin-top: 2px; }
.mobile-menu-foot { padding: 24px 28px; border-top: 0.5px solid var(--border); background: var(--off); display: flex; flex-direction: column; gap: 12px; }
.mobile-menu-foot .btn-primary, .mobile-menu-foot .nav-btn-ghost { justify-content: center; width: 100%; }
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 199; opacity: 0; pointer-events: none; transition: opacity .35s; backdrop-filter: blur(2px); }
.mobile-overlay.open { opacity: 1; pointer-events: auto; }
body.mobile-open { overflow: hidden; }

/* ─── Footer ─── */
footer.site-foot { background: var(--char); padding: 0 60px 40px; }

/* Logo tab — floats down from the section above, 3-sided border, open top */
.foot-logo-bar { display: flex; justify-content: center; }
.foot-logo-card {
  background: var(--off);
  border-left: 0.5px solid var(--border);
  border-right: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 26px 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.foot-logo-card img { height: 48px; width: auto; display: block; }

/* Nav columns — 4 equal columns */
.foot-brand { display: none; }
.foot-top { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; padding: 60px 0 52px; border-bottom: 0.5px solid rgba(255,255,255,0.07); align-items: start; }
.foot-col h5 { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 22px; font-weight: 500; }
.foot-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.45); margin-bottom: 12px; transition: color .15s; font-weight: 300; }
.foot-col a:hover { color: rgba(255,255,255,0.85); }
.foot-bot { padding-top: 32px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.25); }
.foot-bot .legal { display: flex; gap: 24px; }
.foot-bot .legal a { color: rgba(255,255,255,0.25); transition: color .15s; }
.foot-bot .legal a:hover { color: rgba(255,255,255,0.7); }

/* ─── Page hero (sub-pages) ─── */
.page-hero {
  padding: 120px 60px 100px;
  background: var(--white);
  border-bottom: 0.5px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero.on-off { background: var(--off); }
.page-hero.on-dark { background: var(--black); border-bottom: none; }
.page-hero .crumbs {
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink-4); margin-bottom: 28px;
  display: inline-flex; align-items: center; gap: 10px;
}
.page-hero.on-dark .crumbs { color: rgba(255,255,255,0.4); }
.page-hero .crumbs a { color: var(--olive); }
.page-hero.on-dark .crumbs a { color: var(--gold); }
.page-hero .crumbs .sep { color: var(--ink-5); }
.page-hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 80px; align-items: end; }

/* ─── Generic section ─── */
.sec { padding: 140px 60px; background: var(--white); }
.sec.off { background: var(--off); }
.sec.dark { background: var(--black); background-image: radial-gradient(rgba(255,255,255,0.055) 1px, transparent 1px); background-size: 22px 22px; }
.sec-head { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 80px; align-items: end; margin-bottom: 64px; }
.sec-head h2 { max-width: 640px; }
.sec-head .lead { max-width: 480px; }
.sec-narrow { max-width: 1280px; margin: 0 auto; padding: 0 60px; }

/* ─── Trust strip ─── */
.trust-strip { background: var(--off); padding: 26px 60px; display: flex; align-items: center; border-bottom: 0.5px solid var(--border); flex-wrap: wrap; gap: 16px; }
.ts-label { font-size: 11px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-5); white-space: nowrap; padding-right: 36px; border-right: 0.5px solid var(--border); margin-right: 36px; }
.ts-items { display: flex; gap: 36px; flex-wrap: wrap; }
.ts-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-2); }
.ts-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--olive); flex-shrink: 0; }
.trust-strip.dark { background: var(--char); border-bottom: 0.5px solid rgba(255,255,255,0.06); }
.trust-strip.dark .ts-label { color: rgba(255,255,255,0.35); border-color: rgba(255,255,255,0.1); }
.trust-strip.dark .ts-item { color: rgba(255,255,255,0.6); }
.trust-strip.dark .ts-dot { background: var(--gold); }

/* ─── Generic CTA (light) ─── */
.cta-section { background: var(--off); padding: 140px 60px; text-align: center; display: flex; flex-direction: column; align-items: center; border-top: 0.5px solid var(--border); }
.cta-section h2 { font-family: 'DM Sans', sans-serif; font-size: 56px; font-weight: 900; color: var(--black); line-height: 1.08; letter-spacing: -1px; margin-bottom: 26px; max-width: 800px; }
.cta-section p { font-size: 18px; font-weight: 300; color: var(--ink-2); line-height: 1.8; max-width: 560px; margin-bottom: 48px; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.cta-fineprint { margin-top: 32px; font-size: 12px; color: var(--ink-4); letter-spacing: 1px; text-transform: uppercase; display: flex; gap: 20px; align-items: center; flex-wrap: wrap; justify-content: center; }
.cta-fineprint .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-4); display: inline-block; }

/* ─── Scroll fade-in ─── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s cubic-bezier(.2,.65,.3,1), transform .8s cubic-bezier(.2,.65,.3,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d-1 { transition-delay: .08s; }
.reveal.d-2 { transition-delay: .16s; }
.reveal.d-3 { transition-delay: .24s; }
.reveal.d-4 { transition-delay: .32s; }
.reveal.d-5 { transition-delay: .40s; }

/* ─── Cards (reusable) ─── */
.card { background: var(--white); border: 0.5px solid var(--border); border-radius: 12px; padding: 32px; transition: transform .25s, box-shadow .25s, border-color .25s; }
.card:hover { transform: translateY(-2px); border-color: var(--olive); box-shadow: 0 20px 40px -30px rgba(0,0,0,0.2); }
.card.dark { background: var(--char); border-color: var(--bdark); color: rgba(255,255,255,0.7); }
.card.dark:hover { border-color: var(--gold); }

/* ─── Misc small ─── */
.kbd { display: inline-block; font-family: monospace; font-size: 12px; padding: 2px 6px; border-radius: 6px; background: rgba(0,0,0,0.06); color: var(--ink-2); }

/* ─── Responsive ─── */
@media (max-width: 1280px) {
  .util-bar { padding: 0 28px; }
  nav.site-nav { padding: 0 28px; }
  .nav-brand { padding-right: 22px; margin-right: 22px; }
  .nav-brand img { height: 44px; }
  .nav-links > a, .nav-dropdown > button { padding: 10px 10px; font-size: 14px; }
  .nav-actions { padding-left: 18px; margin-left: 18px; gap: 10px; }
  .nav-btn-ghost { display: none; }
}
@media (max-width: 1024px) {
  .util-bar { height: 36px; font-size: 11px; padding: 0 20px; }
  .util-left, .util-right { gap: 18px; }
  .util-item:nth-child(n+3) { display: none; }
  nav.site-nav { padding: 0 20px; height: 88px; }
  .nav-links, .nav-actions { display: none; }
  .nav-brand { border-right: none; padding-right: 0; margin-right: 0; }
  .nav-brand img { height: 44px; }
  .site-header.scrolled nav.site-nav { height: 72px; }
  .site-header.scrolled .nav-brand img { height: 36px; }
  .nav-burger { display: flex; }
  .page-hero, .sec, footer.site-foot, .cta-section { padding-left: 24px; padding-right: 24px; }
  .trust-strip { padding: 22px 24px; }
  .sec-head, .page-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .foot-logo-card { padding: 22px 40px; }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .h-page { font-size: 54px; letter-spacing: -0.8px; }
  .h-section { font-size: 40px; letter-spacing: -0.4px; }
  .cta-section h2 { font-size: 40px; letter-spacing: -0.5px; color: var(--black); }
  .lead { font-size: 17px; }
  .cta-section { padding-top: 100px; padding-bottom: 100px; }
  .cta-btns { gap: 14px; }
  .sec-narrow { padding: 0 24px; }
}
@media (max-width: 768px) {
  .h-page { font-size: 44px; letter-spacing: -0.6px; }
  .h-section { font-size: 34px; letter-spacing: -0.3px; }
  .cta-section h2 { font-size: 34px; letter-spacing: -0.3px; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .foot-bot { flex-direction: column; gap: 14px; text-align: center; }
  .foot-bot .legal { justify-content: center; }
  .cta-btns { flex-direction: column; align-items: stretch; gap: 12px; }
  .cta-btns a { justify-content: center; text-align: center; }
  .trust-strip { flex-wrap: wrap; row-gap: 10px; }
}
@media (max-width: 600px) {
  /* Navigation */
  .util-bar { display: none; }
  nav.site-nav { padding: 0 16px; height: 72px; }
  .nav-brand img { height: 34px; }
  .site-header.scrolled nav.site-nav { height: 62px; }
  .site-header.scrolled .nav-brand img { height: 28px; }

  /* Typography */
  .h-page { font-size: 36px; letter-spacing: -0.3px; line-height: 1.1; }
  .h-section { font-size: 26px; letter-spacing: -0.2px; line-height: 1.15; }
  .lead { font-size: 16px; line-height: 1.75; }
  .eyebrow { font-size: 11px; }

  /* Spacing */
  .sec { padding: 64px 20px; }
  footer.site-foot { padding: 0 20px 32px; }
  .page-hero { padding: 56px 20px 48px; }
  .cta-section { padding: 72px 20px; }
  .cta-section h2 { font-size: 28px; letter-spacing: -0.3px; }
  .cta-section p { font-size: 16px; margin-bottom: 28px; max-width: 100%; }
  .cta-btns { flex-direction: column; align-items: stretch; gap: 12px; }
  .cta-btns a { justify-content: center; text-align: center; }
  .cta-fineprint { flex-direction: column; gap: 6px; text-align: center; align-items: center; }

  /* Trust strip */
  .trust-strip { padding: 16px 20px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .ts-label { border-right: none; padding-right: 0; margin-right: 0; white-space: normal; }
  .ts-items { gap: 10px; flex-direction: column; }

  /* Footer */
  footer.site-foot { padding: 0 20px 32px; }
  .foot-logo-card { padding: 20px 32px; border-color: var(--off); }
  .foot-logo-card img { height: 38px; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 20px; padding: 44px 0 40px; }
  .foot-bot { flex-direction: column; gap: 12px; text-align: center; }
  .foot-bot .legal { justify-content: center; gap: 16px; }

  /* Sections */
  .sec-head { gap: 20px; margin-bottom: 40px; }
  .sec-head h2 { max-width: 100%; }
  .sec-narrow { padding: 0 20px; }
  .card { padding: 24px 20px; }
  .page-hero-grid { gap: 28px; }
  .page-hero .crumbs { margin-bottom: 18px; }

  /* Buttons in hero-style CTAs */
  .hero-cta, .nda-actions { flex-wrap: wrap; gap: 12px; }
}

/* ── Report iframe embed ── */
.report-iframe-wrap {
  position: relative;
  overflow: hidden;
  background: none;
  border-radius: 14px;
}
.report-iframe-wrap iframe {
  display: block;
  border: none;
  transform-origin: top left;
}
