/* ============================================================
   site.css — Travis Cox / Fractional COO
   Shared styles across all pages
   ============================================================ */

/* VARIABLES */
:root {
  --royal-blue: #2B3BAF;
  --soft-violet: #8B5CF6;
  --soft-violet-text: #7C3AED;
  --lavender: #C4B5FD;
  --dark-navy: #1A1A2E;
  --white: #FFFFFF;
  --off-white: #F7F7FB;
  --mid-gray: #6B7280;
  --light-gray: #F0F0F6;
  --text-dark: #1A1A2E;
  --text-body: #374151;
  --nav-height: 80px;
  --nav-height-mobile: 64px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

section[id] { scroll-margin-top: 88px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text-body);
  font-size: 20px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* SCROLL PROGRESS BAR */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--royal-blue), var(--soft-violet));
  z-index: 200;
  transition: width 0.1s linear;
}

/* SCROLL REVEAL */
.sr { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.sr.sr-visible { opacity: 1; transform: translateY(0); }
.sr-delay-1 { transition-delay: 0.1s; }
.sr-delay-2 { transition-delay: 0.2s; }
.sr-delay-3 { transition-delay: 0.3s; }

/* NAV */
body > nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 80px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(26, 26, 46, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 181, 253, 0.1);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #FFFFFF;
  text-decoration: none;
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.nav-logo img {
  height: 28px; width: 28px;
  border-radius: 2px;
  display: block;
  background: transparent;
  box-shadow: none;
  outline: none;
}

.nav-logo span { color: var(--lavender); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active { color: var(--lavender); }

/* Kill the inherited color transition from .nav-links a so theme switches snap instantly */
.nav-links a.nav-cta { transition: transform 0.15s !important; }
.nav-links a.nav-cta:hover { transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s !important; }

.nav-cta {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  background: #8B5CF6 !important;
  border: 1.5px solid #8B5CF6 !important;
  padding: 8px 20px;
  white-space: nowrap;border-radius: 4px;
  transition: transform 0.15s !important;
}

.nav-cta:hover {
  background: #1E1B4B !important;
  border-color: #C4B5FD !important;
  color: #C4B5FD !important;
  transform: translateY(1px);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s !important;
}

[data-theme="light"] .nav-cta:hover {
  background: #EDE9FE !important;
  border-color: #8B5CF6 !important;
  color: #4C1D95 !important;
}

/* HAMBURGER */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
  z-index: 201;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255,255,255,0.7);
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* MOBILE NAV OVERLAY */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  background: #0D0D1A;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  padding: 100px 40px 60px;
  overflow: hidden;
}

/* Subtle radial glow behind the links */
.mobile-nav-overlay::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(139,92,246,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.mobile-nav-overlay.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Close button — top RIGHT */
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(196,181,253,0.08);
  border: 1.5px solid rgba(196,181,253,0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  z-index: 160;
}

.mobile-nav-close:hover {
  background: rgba(196,181,253,0.15);
  border-color: var(--lavender);
  color: var(--lavender);
}

/* Mobile theme toggle — top-LEFT of overlay */
#mobile-theme-toggle {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 44px;
  height: 44px;
  background: rgba(196,181,253,0.08);
  border: 1.5px solid rgba(196,181,253,0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  z-index: 160;
}

#mobile-theme-toggle:hover {
  background: rgba(196,181,253,0.15);
  border-color: var(--lavender);
  color: var(--lavender);
}

#mobile-theme-toggle span { display: none; }

/* Links stagger in */
.mobile-nav-overlay a {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  padding: 14px 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(196, 181, 253, 0.07);
  letter-spacing: -0.5px;
  transition: color 0.2s, transform 0.2s;
  opacity: 0;
  transform: translateY(16px);
}

.mobile-nav-overlay.visible a {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger each link — links start at nth-child(3) after close + theme buttons */
.mobile-nav-overlay.visible a:nth-child(3) { transition-delay: 0.05s; }
.mobile-nav-overlay.visible a:nth-child(4) { transition-delay: 0.10s; }
.mobile-nav-overlay.visible a:nth-child(5) { transition-delay: 0.15s; }
.mobile-nav-overlay.visible a:nth-child(6) { transition-delay: 0.20s; }
.mobile-nav-overlay.visible a:nth-child(7) { transition-delay: 0.25s; }
.mobile-nav-overlay.visible a:nth-child(8) { transition-delay: 0.30s; }

.mobile-nav-overlay a { transition: color 0.2s, transform 0.4s ease, opacity 0.4s ease; }

.mobile-nav-overlay a:hover {
  color: var(--lavender);
  transform: translateX(4px);
}

.mobile-nav-overlay a.mobile-cta {
  margin-top: 28px;
  background: #8B5CF6;
  color: #FFFFFF;
  border-radius: 6px;
  border: 1.5px solid #8B5CF6;
  font-size: 16px;
  padding: 16px 0;
  transition: background 0.2s, border-color 0.2s, color 0.2s, opacity 0.4s ease, transform 0.4s ease;
  transition-delay: 0s !important;
}

.mobile-nav-overlay a.mobile-cta:hover {
  background: #1E1B4B;
  border-color: #C4B5FD;
  color: #C4B5FD;
  transform: none;
}

/* BACK TO TOP */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--royal-blue);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s;
  z-index: 90;
  pointer-events: none;
}

#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#back-to-top:hover { background: var(--soft-violet); }
#back-to-top svg { transition: transform 0.2s ease; }
#back-to-top:hover svg { transform: translateY(-3px); }



/* FOOTER */
footer {
  background: var(--dark-navy);
  padding: 32px 40px;
  text-align: center;
  border-top: 1px solid rgba(196, 181, 253, 0.08);
}

footer p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

footer span { color: var(--lavender); }

.footer-link {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
  .footer-link:hover { color: var(--lavender); transition: color 0.2s; }
}

/* SHARED TYPOGRAPHY */
h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 4.2vw, 54px);
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: var(--text-dark);
  margin-bottom: 24px;
}

h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.3px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

/* SECTION BASE */
section { padding: 80px 52px; }

.section-inner {
  max-width: 1020px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--soft-violet-text);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 18px; height: 1px;
  background: var(--soft-violet);
}

/* SHARED BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--royal-blue);
  color: #FFFFFF;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  border: 1.5px solid var(--royal-blue);
  transition: all 0.2s;
  letter-spacing: 0.1px;
}

.btn-primary:hover {
  background: transparent;
  border-color: var(--lavender);
  color: var(--lavender);
}

.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-primary--down:hover svg { transform: translateY(3px); }

/* HERO SHARED */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(43, 59, 175, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 59, 175, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.14) 0%, transparent 70%);
  pointer-events: none;
  animation: glowDrift1 12s ease-in-out infinite;
  will-change: transform;
}

.hero-glow-2 {
  position: absolute;
  bottom: -100px; left: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(43, 59, 175, 0.18) 0%, transparent 70%);
  pointer-events: none;
  animation: glowDrift2 16s ease-in-out infinite;
  will-change: transform;
}

/* 2. Hero grid parallax — controlled via JS, CSS just sets the property */
.hero-grid-overlay {
  transition: transform 0.05s linear;
  will-change: transform;
}

@keyframes glowDrift1 {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(-40px, 30px) scale(1.05); }
  66%  { transform: translate(20px, -50px) scale(0.97); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes glowDrift2 {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(50px, -30px) scale(1.08); }
  66%  { transform: translate(-30px, 40px) scale(0.95); }
  100% { transform: translate(0, 0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-glow, .hero-glow-2 { animation: none; }
  /* Disable all fade/slide animations for motion-sensitive users */
  .sr { opacity: 1; transform: none; }
  .sr.sr-visible { opacity: 1; transform: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.1s;
}

.hero-label::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--soft-violet);
}

h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(50px, 6.5vw, 80px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: #FFFFFF;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.2s;
}

h1 em {
  font-style: normal;
  color: var(--lavender);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal { opacity: 1; }

/* SHARED RESPONSIVE */
@media (max-width: 1120px) {
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 13px; }
  section { padding: 72px 40px; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  body > nav { padding: 0 24px; }
  #theme-toggle { display: none !important; }
}

@media (max-width: 768px) {
  body > nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo { font-size: 14px; gap: 8px; white-space: nowrap; }
  section { padding: 60px 20px; }
  footer { padding: 28px 20px 28px 20px; }
  footer p { padding-right: 0; text-align: center; }
  #back-to-top { width: 36px; height: 36px; bottom: 16px; right: 16px; border-radius: 5px; }
}

/* DARK MODE */
[data-theme="dark"] {
  --white: #131320;
  --off-white: #1A1A2E;
  --light-gray: #252540;
  --text-dark: #F0F0FA;
  --text-body: #C0C0D8;
  --mid-gray: #9090B8;
  --dark-navy: #0D0D1A;
}

[data-theme="dark"] body {
  background: var(--white);
  color: var(--text-body);
}

[data-theme="dark"] .problem-callout,
[data-theme="dark"] .why-callout {
  background: #1A1A2E;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

[data-theme="dark"] .service-card,
[data-theme="dark"] .result-item,
[data-theme="dark"] .about-sidebar,
[data-theme="dark"] .contact-action {
  background: #1A1A2E;
  border-color: #252540;
}

[data-theme="dark"] .contact-field input,
[data-theme="dark"] .contact-field textarea {
  background: #131320;
  border-color: #252540;
  color: var(--text-dark);
}

[data-theme="dark"] .contact-field input:focus,
[data-theme="dark"] .contact-field textarea:focus {
  border-color: var(--soft-violet);
}

[data-theme="dark"] .contact-email-link {
  background: #1A1A2E;
  border-color: #252540;
  color: var(--lavender);
}

[data-theme="dark"] .contact-email-link svg path {
  stroke: var(--lavender);
}

[data-theme="dark"] .contact-email-link:hover {
  background: var(--lavender) !important;
  border-color: var(--lavender) !important;
  box-shadow: 0 4px 20px rgba(196, 181, 253, 0.3) !important;
  color: var(--dark-navy) !important;
}

[data-theme="dark"] .contact-email-link:hover svg path {
  stroke: var(--dark-navy);
}

[data-theme="dark"] body > nav {
  background: rgba(13, 13, 26, 0.97);
}

/* DARK MODE: section separation — off-white and white remap to near-identical
   dark values, so alternating sections lose their visual boundary.
   Re-establish contrast with explicit backgrounds and subtle top borders. */
[data-theme="dark"] #problem,
[data-theme="dark"] #results,
[data-theme="dark"] #why,
[data-theme="dark"] #sections {
  background: #12121F;
  border-top: 1px solid rgba(196, 181, 253, 0.07);
}

[data-theme="dark"] #services,
[data-theme="dark"] #about,
[data-theme="dark"] #contact {
  background: #1A1A2E;
  border-top: 1px solid rgba(196, 181, 253, 0.07);
}

/* Ensure h1/h2/h3 are always readable in dark mode — !important beats inline style blocks */
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3 {
  color: #F0F0FA !important;
}

/* Section labels need higher contrast in dark mode — #7C3AED fails on dark backgrounds */
[data-theme="dark"] .section-label {
  color: var(--lavender);
}

/* Ensure h2/h3 use the correct token in light mode — counteracts the dark rule above.
   h1 excluded: only appears in dark hero sections and should always stay white.
   Dark-background sections are explicitly carved out below so their headings stay white. */
[data-theme="light"] h2,
[data-theme="light"] h3 {
  color: var(--text-dark) !important;
}

/* Sections with hardcoded dark backgrounds — headings must stay white in both themes */
[data-theme="light"] #hero h1,
[data-theme="light"] #hero h2,
[data-theme="light"] #hero h3,
[data-theme="light"] #diagnostic h2,
[data-theme="light"] #diagnostic h3,
[data-theme="light"] #get-it h2,
[data-theme="light"] #get-it h3,
[data-theme="light"] #case-cta h2,
[data-theme="light"] #case-cta h3,
[data-theme="light"] #cta-strip h2,
[data-theme="light"] #cta-strip h3 {
  color: #FFFFFF !important;
}

/* Callout blocks need a visible background in dark mode */
[data-theme="dark"] .why-callout,
[data-theme="dark"] .problem-callout {
  background: #1A1A2E;
  border-left-color: var(--soft-violet);
}

[data-theme="dark"] .why-callout p,
[data-theme="dark"] .problem-callout p {
  color: #D0D0F0;
}

/* DARK MODE TOGGLE BUTTON */
#theme-toggle {
  background: none;
  border: 1.5px solid rgba(196, 181, 253, 0.2);
  border-radius: 6px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.5);
  transition: border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}

#theme-toggle:hover {
  border-color: var(--lavender);
  color: var(--lavender);
}

#theme-toggle svg { pointer-events: none; }

/* CTA BUTTON — lavender, always on dark bg (hero/CTA sections) */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #7C3AED;
  color: #FFFFFF;
  border: 1.5px solid #7C3AED;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}

.btn-cta:hover {
  background: #1E1B4B;
  border-color: #C4B5FD;
  color: #C4B5FD;
  transform: translateY(1px);
}

[data-theme="light"] .btn-cta:hover {
  background: #EDE9FE;
  border-color: #8B5CF6;
  color: #4C1D95;
}

.btn-cta svg { transition: transform 0.2s; }
.btn-cta:hover svg { transform: translateX(3px); }

/* ── FOCUS STATES (WCAG 2.2 AA) ─────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--lavender);
  outline-offset: 3px;
}

/* Lavender is invisible on white — use violet-text in light mode */
[data-theme="light"] :focus-visible {
  outline-color: var(--soft-violet-text);
}

/* Suppress focus ring for mouse users; preserve for keyboard */
:focus:not(:focus-visible) {
  outline: none;
}

/* Form fields get a slightly different treatment — inset ring */
.contact-form-field input:focus-visible,
.contact-form-field textarea:focus-visible {
  outline: 2px solid var(--lavender);
  outline-offset: 0;
}

/* ── MOBILE NAV OVERLAY — LIGHT MODE ────────────────────────────────────── */
[data-theme="light"] .mobile-nav-overlay {
  background: #1E1B3A;
}

[data-theme="light"] .mobile-nav-overlay::before {
  background: radial-gradient(circle, rgba(139,92,246,0.14) 0%, transparent 65%);
}

[data-theme="light"] .mobile-nav-close,
[data-theme="light"] #mobile-theme-toggle {
  background: rgba(196,181,253,0.1);
  border-color: rgba(196,181,253,0.2);
  color: rgba(255,255,255,0.65);
}

[data-theme="light"] .mobile-nav-close:hover,
[data-theme="light"] #mobile-theme-toggle:hover {
  background: rgba(196,181,253,0.18);
  border-color: var(--lavender);
  color: var(--lavender);
}

[data-theme="light"] .mobile-nav-overlay a {
  color: rgba(255,255,255,0.5);
  border-bottom-color: rgba(196,181,253,0.08);
}

[data-theme="light"] .mobile-nav-overlay a:hover {
  color: var(--lavender);
}

[data-theme="light"] .mobile-nav-overlay a.mobile-cta {
  background: #8B5CF6;
  border-color: #8B5CF6;
  color: #FFFFFF;
}

[data-theme="light"] .mobile-nav-overlay a.mobile-cta:hover {
  background: #EDE9FE;
  border-color: #8B5CF6;
  color: #4C1D95;
}


/* ── SKIP TO MAIN CONTENT (accessibility) ───────────────────
   Hidden until focused via keyboard — WCAG 2.1 AA requirement */
.skip-link {
  position: fixed;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--soft-violet);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s ease;
  white-space: nowrap;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid var(--lavender);
  outline-offset: 2px;
}

/* ── PRINT ────────────────────────────────────────────────────
   Strip dark backgrounds, hide chrome, make everything readable. */
@media print {
  body, section, div { background: #fff !important; color: #000 !important; }
  nav, footer, #back-to-top, #scroll-progress, .mobile-nav-overlay,
  .hero-grid-overlay, .hero-glow, .hero-glow-2, .btn-primary, .btn-cta,
  .nav-cta { display: none !important; }
  a { color: #000 !important; text-decoration: underline !important; }
  h1, h2, h3 { color: #000 !important; }
  .section-label, .hero-label { color: #555 !important; }
  .problem-callout, .why-callout { border-left-color: #555 !important; background: #f5f5f5 !important; }
  * { box-shadow: none !important; }
}
