/* ========================================
   SpecialistHQ Single-Page Site
   Modern, Trustworthy Design
   HTML5 + CSS3 Only | No JavaScript
   Light mode default + Dark mode support
   ======================================== */

/* CSS Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Root Tokens - Light Theme (Default) - Warm Color Scheme */
:root {
  --bg-primary: #fdf8f3;
  --bg-secondary: #f5efe6;
  --bg-tertiary: #ede3d5;
  --text-primary: #2c1810;
  --text-secondary: #5c3d2e;
  --text-muted: #8b6f5c;
  --accent-primary: #d97706;
  --accent-secondary: #ea580c;
  --accent-tertiary: #b45309;
  --card-bg: #fffbf7;
  --card-border: #e7d4c0;
  --success: #15803d;
  --warning: #f59e0b;

  --space-4: 0.25rem;
  --space-8: 0.5rem;
  --space-12: 0.75rem;
  --space-16: 1rem;
  --space-20: 1.25rem;
  --space-24: 1.5rem;
  --space-32: 2rem;
  --space-40: 2.5rem;
  --space-48: 3rem;
  --space-64: 4rem;
  --space-80: 5rem;
  --space-96: 6rem;

  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px 0 rgba(92, 61, 46, 0.08);
  --shadow-md: 0 4px 6px -1px rgba(92, 61, 46, 0.12), 0 2px 4px -1px rgba(92, 61, 46, 0.08);
  --shadow-lg: 0 10px 15px -3px rgba(92, 61, 46, 0.14), 0 4px 6px -2px rgba(92, 61, 46, 0.08);
  --shadow-xl: 0 20px 25px -5px rgba(92, 61, 46, 0.16), 0 10px 10px -5px rgba(92, 61, 46, 0.08);
}

/* Dark Theme - System Preference */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-primary: #0a0f1e;
    --bg-secondary: #0f172a;
    --bg-tertiary: #1e293b;
    --text-primary: #ffffff;
    --text-secondary: #e2e8f0;
    --text-muted: #94a3b8;
    --card-bg: #1e293b;
    --card-border: #334155;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* Typography */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  background: linear-gradient(to bottom, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  margin-bottom: var(--space-24);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-20);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin-bottom: var(--space-16);
  color: var(--text-primary);
}

h4 {
  font-size: 1.125rem;
  margin-bottom: var(--space-12);
  color: var(--accent-secondary);
}

p {
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: var(--space-16);
  color: var(--text-secondary);
}

.lead {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

a {
  color: var(--accent-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-primary);
}

a:focus {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -999px;
  left: -999px;
  z-index: 9999;
  padding: var(--space-16);
  background: var(--accent-primary);
  color: white;
  font-weight: 600;
  border-radius: var(--radius-md);
}

.skip-link:focus {
  top: var(--space-16);
  left: var(--space-16);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-20);
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-20);
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(253, 248, 243, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--card-border);
  padding: var(--space-20) 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

@media (prefers-color-scheme: dark) {
  .site-header {
    background: rgba(10, 15, 30, 0.95);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-24);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo:hover {
  color: var(--accent-primary);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-32);
  flex-wrap: wrap;
}

.nav a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--text-primary);
}

.nav-cta {
  color: var(--accent-secondary);
  font-weight: 600;
  padding: var(--space-8) var(--space-20);
  border: 2px solid var(--accent-primary);
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: var(--accent-primary);
  color: white;
}

/* Buttons */
.btn,
.btn-outline {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  min-height: 48px;
  line-height: 1.5;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.btn {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-tertiary) 100%);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn-outline {
  border: 2px solid var(--accent-primary);
  color: var(--text-primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--accent-primary);
  color: white;
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.125rem;
}

.cta-row {
  display: flex;
  gap: var(--space-16);
  flex-wrap: wrap;
  margin-bottom: var(--space-32);
}

/* Pills & Badges */
.pill {
  display: inline-block;
  padding: var(--space-8) var(--space-16);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  color: var(--text-secondary);
  background: rgba(217, 119, 6, 0.1);
  font-weight: 500;
}

.trust-pills {
  display: flex;
  gap: var(--space-12);
  flex-wrap: wrap;
  justify-content: center;
  margin: var(--space-32) 0;
}

/* Cards */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: var(--space-32);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-primary);
}

.card-highlight {
  border: 2px solid var(--accent-primary);
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.05) 0%, rgba(234, 88, 12, 0.05) 100%);
}

/* Sections */
section {
  padding: var(--space-80) 0;
  position: relative;
}

section:nth-child(even) {
  background: var(--bg-secondary);
}

@media (prefers-color-scheme: dark) {
  section:nth-child(even) {
    background: rgba(30, 41, 59, 0.3);
  }
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-48);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  margin: var(--space-24) auto 0;
  border-radius: var(--radius-full);
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-48);
  font-size: 1.125rem;
  color: var(--text-secondary);
}

/* Hero Section */
.hero {
  padding: var(--space-48) 0 var(--space-80);
  text-align: center;
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.05) 0%, rgba(234, 88, 12, 0.02) 100%);
  position: relative;
}

/* Social Proof Badge */
.social-proof-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-12);
  padding: var(--space-8) var(--space-20) var(--space-8) var(--space-12);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-24);
  box-shadow: var(--shadow-sm);
}

.avatar-group {
  display: flex;
  align-items: center;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--card-bg);
  margin-left: -8px;
  position: relative;
}

.avatar:first-child {
  margin-left: 0;
  background: linear-gradient(135deg, #d97706, #ea580c);
}

.avatar:nth-child(2) {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.avatar:nth-child(3) {
  background: linear-gradient(135deg, #0891b2, #0e7490);
}

.social-proof-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
}

.hero h1 {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .lead {
  max-width: 800px;
  margin: 0 auto var(--space-40);
  font-size: 1.25rem;
}

.hero img {
  margin: var(--space-64) auto var(--space-32);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--card-border);
}

/* Video Wrapper - Responsive YouTube Embed */
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: var(--space-64) auto var(--space-32);
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--card-border);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: var(--space-40);
  align-items: start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: var(--space-32);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: var(--space-24);
}

/* Feature Cards */
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: var(--space-32);
  text-align: left;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-primary);
}

.feature-card h3 {
  color: var(--accent-secondary);
  margin-bottom: var(--space-16);
}

.feature-card p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Problem-Promise */
.problem-promise .grid-2 {
  max-width: 900px;
  margin: 0 auto;
}

.problem-list,
.promise-list {
  list-style: none;
  padding: 0;
}

.problem-list li,
.promise-list li {
  padding-left: var(--space-32);
  margin-bottom: var(--space-16);
  position: relative;
  color: var(--text-secondary);
}

.problem-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-weight: 700;
}

.promise-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* Step Process */
.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: var(--space-40);
  margin-top: var(--space-48);
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-tertiary));
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: var(--space-20);
  box-shadow: var(--shadow-md);
}

.step h3 {
  margin-bottom: var(--space-12);
}

.step p {
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* Roles Pills */
.roles-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-12);
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

/* Design Gallery */
.design-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: var(--space-24);
  margin: var(--space-48) 0;
}

.design-gallery img {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
  transition: all 0.3s ease;
}

.design-gallery img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-primary);
}

/* Pricing Card */
.pricing-section {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.05) 0%, rgba(234, 88, 12, 0.02) 100%);
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(450px, 100%), 1fr));
  gap: var(--space-32);
  margin: var(--space-48) auto;
  max-width: 1200px;
}

.pricing-card {
  background: var(--card-bg);
  border: 2px solid var(--accent-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-48);
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.pricing-card-coming-soon {
  position: relative;
  opacity: 0.65;
  filter: grayscale(30%);
  border-style: dashed;
  border-color: var(--card-border);
}

.pricing-card-coming-soon:hover {
  transform: none;
  box-shadow: var(--shadow-xl);
  border-color: var(--card-border);
}

.pricing-card-coming-soon .btn {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

.coming-soon-overlay {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--warning);
  color: white;
  padding: var(--space-8) var(--space-24);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: var(--shadow-lg);
  z-index: 10;
  white-space: nowrap;
}

.discount-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-12);
  margin-top: var(--space-16);
  margin-bottom: -var(--space-8);
}

.original-price {
  font-size: 1.125rem;
  font-weight: 500;
  color: #dc2626;
  text-decoration: line-through;
  opacity: 0.8;
}

@media (prefers-color-scheme: dark) {
  .original-price {
    color: #ef4444;
  }
}

.discount-badge {
  display: inline-block;
  padding: var(--space-4) var(--space-12);
  background: var(--success);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.price {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: var(--space-24) 0;
  line-height: 1;
}

.price-subtext {
  color: var(--text-muted);
  margin-bottom: var(--space-32);
  font-size: 1rem;
}

.pricing-details {
  text-align: left;
  margin-top: var(--space-32);
  padding-top: var(--space-32);
  border-top: 1px solid var(--card-border);
}

.pricing-details p {
  margin-bottom: var(--space-12);
  font-size: 1rem;
  display: flex;
  align-items: baseline;
  gap: var(--space-8);
}

.pricing-details strong {
  color: var(--text-primary);
}

/* Case Studies */
.case-study {
  margin-bottom: var(--space-64);
  padding: var(--space-40);
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  border: 1px solid var(--card-border);
}

.case-study:last-child {
  margin-bottom: 0;
}

.case-study img {
  margin: var(--space-32) 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: var(--space-24);
  margin-top: var(--space-32);
}

.metric {
  background: rgba(217, 119, 6, 0.1);
  border: 1px solid var(--accent-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-24);
  text-align: center;
}

.metric-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-secondary);
  display: block;
  margin-bottom: var(--space-8);
  line-height: 1;
}

.metric-label {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: var(--space-32);
  padding: var(--space-32);
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-md);
}

.faq-question {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: var(--space-12);
}

.faq-answer {
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Contact Section */
.contact-info {
  max-width: 700px;
  margin: 0 auto;
}

.contact-item {
  margin-bottom: var(--space-40);
  padding: var(--space-32);
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
}

.contact-item h3 {
  color: var(--accent-secondary);
  margin-bottom: var(--space-16);
}

/* CTA Band */
.cta-band {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.15) 0%, rgba(234, 88, 12, 0.1) 100%);
  border: 1px solid var(--accent-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-64) var(--space-32);
  text-align: center;
  margin: var(--space-64) 0;
  box-shadow: var(--shadow-lg);
}

.cta-band h2 {
  margin-bottom: var(--space-32);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--card-border);
  padding: var(--space-64) 0 var(--space-32);
  margin-top: var(--space-96);
  background: var(--bg-secondary);
}

@media (prefers-color-scheme: dark) {
  .site-footer {
    background: rgba(10, 15, 30, 0.5);
  }
}

.footer-content {
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--space-32);
  flex-wrap: wrap;
  margin-bottom: var(--space-32);
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-legal {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.copyright {
  display: block;
  margin-bottom: var(--space-12);
}

.fine-print {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: var(--space-24);
}

/* 404 Page */
.error-page {
  text-align: center;
  padding: var(--space-96) 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-content h1 {
  font-size: clamp(4rem, 12vw, 8rem);
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-24);
}

/* Legal Pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-80) var(--space-20);
}

.legal-content h1 {
  margin-bottom: var(--space-40);
}

.legal-content h2 {
  margin-top: var(--space-48);
  margin-bottom: var(--space-24);
  color: var(--accent-secondary);
}

.legal-content p {
  margin-bottom: var(--space-24);
}

.legal-content ul {
  list-style: disc;
  padding-left: var(--space-32);
  margin-bottom: var(--space-24);
}

.legal-content li {
  margin-bottom: var(--space-12);
  color: var(--text-secondary);
  padding-left: var(--space-8);
}

/* Responsive Design */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 70px;
  }

  .site-header {
    padding: var(--space-16) 0;
  }

  .header-inner {
    flex-direction: column;
    gap: var(--space-16);
  }

  .nav {
    width: 100%;
    justify-content: center;
    gap: var(--space-16);
    font-size: 0.875rem;
  }

  .hero {
    padding: var(--space-64) 0 var(--space-48);
  }

  section {
    padding: var(--space-48) 0;
  }

  .cta-band {
    padding: var(--space-48) var(--space-24);
  }

  .pricing-card {
    padding: var(--space-32);
  }

  .case-study {
    padding: var(--space-24);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 var(--space-32);
  }
}

/* Focus Styles for Accessibility */
*:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --text-secondary: #1e293b;
    --text-muted: #475569;
  }

  @media (prefers-color-scheme: dark) {
    :root {
      --text-secondary: #f1f5f9;
      --text-muted: #cbd5e1;
    }
  }
}

/* Print Styles */
@media print {
  .site-header,
  .site-footer,
  .btn,
  .btn-outline,
  .cta-band,
  .nav {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  section {
    page-break-inside: avoid;
  }
}
