/* ━━━ Bundled CSS — auto-generated. Order: tokens, base, components, pages ━━━ */
/* === tokens.css === */
/* ━━━ BWWL DESIGN TOKENS ━━━ */
:root {
  /* Brand Colors */
  --gold: #C6A44E;
  --gold-light: #E8D5A3;
  --gold-dim: rgba(198, 164, 78, 0.15);
  --gold-faint: rgba(198, 164, 78, 0.08);
  --gold-ghost: rgba(198, 164, 78, 0.03);

  /* Backgrounds */
  --bg: #0A0A0A;
  --bg-elevated: #111111;

  /* Text */
  --text: #F5F0E8;
  --text-soft: #D4CFC0;
  --text-muted: #A09880;
  --text-dim: #706A5A;

  /* Typography */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --mono: 'IBM Plex Mono', 'Courier New', monospace;

  /* Spacing */
  --section-pad: 100px 48px;
  --section-pad-mobile: 60px 24px;
  --max-width: 1100px;
}
/* === base.css === */
/* ━━━ RESET & BASE ━━━ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--mono);
  background-color: var(--bg);
  color: var(--text);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ━━━ SKIP LINK ━━━ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--gold);
  color: var(--bg);
  padding: 8px 16px;
  font-family: var(--mono);
  font-size: 13px;
  z-index: 1000;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* ━━━ TYPOGRAPHY ━━━ */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.15;
}

h1 { font-size: 72px; }
h2 { font-size: 44px; }
h3 { font-size: 28px; font-weight: 400; }

h1 .gold, h2 .gold, h3 .gold {
  color: var(--gold);
  font-weight: 500;
  font-style: italic;
}

/* ━━━ SECTION HELPERS ━━━ */
.section { padding: var(--section-pad); }
.section-inner { max-width: var(--max-width); margin: 0 auto; }

.section-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.divider {
  height: 1px;
  max-width: var(--max-width);
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(198, 164, 78, 0.25), transparent);
}

/* ━━━ ANIMATIONS ━━━ */
@media (prefers-reduced-motion: no-preference) {
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes goldShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
  }
  @keyframes subtlePulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
  }

  .animate-in { opacity: 0; }
  .animate-in.visible { animation: fadeInUp 0.8s ease both; }
  .animate-in.visible.d1 { animation-delay: 0.1s; }
  .animate-in.visible.d2 { animation-delay: 0.2s; }
  .animate-in.visible.d3 { animation-delay: 0.3s; }
  .animate-in.visible.d4 { animation-delay: 0.4s; }

  .gold-shimmer {
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 4s linear infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  .animate-in { opacity: 1; }
  .gold-shimmer {
    color: var(--gold);
    background: none;
    -webkit-text-fill-color: var(--gold);
  }
}

/* ━━━ FOCUS STYLES ━━━ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* ━━━ RESPONSIVE ━━━ */
@media (max-width: 900px) {
  h1 { font-size: 44px; }
  h2 { font-size: 36px; }
  .section { padding: var(--section-pad-mobile); }
}

@media (max-width: 480px) {
  h1 { font-size: 34px; }
  h2 { font-size: 28px; }
  body { font-size: 14px; }
}
/* === components.css === */
/* ━━━ NAVIGATION ━━━ */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  border-bottom: 1px solid var(--gold-faint);
  position: relative;
}

.nav-brand { display: flex; align-items: center; }
.nav-logo { height: 28px; width: auto; }

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-link {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}
.nav-link:hover { color: var(--gold); }

.nav-cta {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bg);
  padding: 10px 24px;
  border: 1px solid var(--gold);
  background: var(--gold);
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}
.nav-cta:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--bg);
}

/* Mobile Menu Toggle */
.mobile-menu {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.mobile-menu span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  margin: 6px 0;
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-menu[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-menu[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 24px 48px;
  gap: 20px;
  border-bottom: 1px solid var(--gold-faint);
  background: var(--bg);
}
.mobile-nav.open { display: flex; }

/* ━━━ BUTTONS ━━━ */
.btn-primary {
  display: inline-block;
  padding: 18px 48px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
  will-change: transform;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(198, 164, 78, 0.3);
}

.btn-secondary {
  display: inline-block;
  padding: 16px 40px;
  background: transparent;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(198, 164, 78, 0.4);
  cursor: pointer;
  transition: background-color 0.4s ease, border-color 0.4s ease, color 0.4s ease;
}
.btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(198, 164, 78, 0.08);
}

/* ━━━ CARDS ━━━ */
.card {
  border: 1px solid var(--gold-dim);
  background: var(--gold-ghost);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(198, 164, 78, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
}
.card:hover {
  border-color: rgba(198, 164, 78, 0.5);
  transform: translateY(-4px);
}
.card:hover::before { opacity: 1; }
.card > * { position: relative; z-index: 1; }

.card-tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* ━━━ FOOTER ━━━ */
.footer {
  padding: 80px 48px 40px;
  border-top: 1px solid var(--gold-faint);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-brand .reg { color: var(--gold); font-size: 13px; }
.footer-tagline {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 8px;
}
.footer-links {
  display: flex;
  gap: 32px;
}
.footer-linkedin {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
  margin-top: 12px;
  display: inline-block;
}
.footer-linkedin:hover { color: var(--gold); }
.footer-link {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-link:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--gold-faint);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 1px;
}
.footer-trademarks {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-dim);
  max-width: 600px;
  line-height: 1.6;
}

/* ━━━ RESPONSIVE ━━━ */
@media (max-width: 900px) {
  .nav { padding: 20px 24px; }
  .nav-links { display: none; }
  .mobile-menu { display: block; }
  .mobile-nav { padding: 24px; }

  .footer { padding: 60px 24px 32px; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
  .footer-bottom { flex-direction: column; }

  .btn-primary, .btn-secondary { width: 100%; text-align: center; }
}
/* === pages.css === */
/* ━━━ HOME PAGE ━━━ */
.hero {
  padding: 120px 48px 100px;
  position: relative;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero h1 { margin-bottom: 32px; max-width: 900px; }
.hero .subtitle {
  font-family: var(--mono);
  font-size: 17px;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 48px;
}
.hero-orb {
  position: absolute;
  top: 60px;
  right: -20px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(198, 164, 78, 0.05);
  border-radius: 50%;
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-orb { animation: subtlePulse 6s ease infinite; }
}

/* Stats */
.stats {
  padding: 80px 48px;
  border-top: 1px solid var(--gold-faint);
}
.stats-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
.stat-item { flex: 1; text-align: center; }
.stat-number {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 56px;
  line-height: 1;
}
.stat-label {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.6;
  font-weight: 300;
}

/* Methodology Grid */
.method-grid {
  display: flex;
  gap: 1px;
}

/* Case File */
.case-file {
  border: 1px solid var(--gold-dim);
  background: var(--bg-elevated);
  padding: 48px;
  max-width: 800px;
  margin: 0 auto;
}
.case-file-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-dim);
  margin-bottom: 24px;
}
.case-file-header {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gold-dim);
  margin-bottom: 32px;
}
.case-file-stat {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(198, 164, 78, 0.08);
}
.case-file-stat .label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.case-file-stat .value {
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 500;
  color: var(--gold);
}
.case-file-body {
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.8;
}

/* Final CTA */
.final-cta {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.final-cta h2 { margin-bottom: 24px; }
.final-cta p {
  color: var(--text-muted);
  margin-bottom: 40px;
  font-size: 16px;
}

/* ━━━ VALUE AUDIT PAGE ━━━ */
.va-hero {
  padding: 120px 48px 100px;
  text-align: center;
  position: relative;
}
.va-hero-inner { max-width: 800px; margin: 0 auto; }
.va-price {
  font-family: var(--mono);
  font-size: 64px;
  font-weight: 300;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.va-hero .tagline {
  font-family: var(--mono);
  font-size: 15px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.va-hero .subtitle {
  font-family: var(--mono);
  font-size: 16px;
  color: var(--text-soft);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.8;
}
.va-hero-orb {
  position: absolute;
  top: 40px;
  right: -100px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(198, 164, 78, 0.05);
  border-radius: 50%;
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .va-hero-orb { animation: subtlePulse 6s ease infinite; }
}

/* Extraction Receipt */
.fury-box {
  border: 1px solid var(--gold-dim);
  background: var(--bg-elevated);
  padding: 48px;
  max-width: 700px;
  margin: 0 auto;
}
.fury-box h3 {
  font-family: var(--serif);
  font-size: 28px;
  margin-bottom: 24px;
}
.fury-box p {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* What This Is */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 800px;
  margin: 0 auto;
}
.compare-col h3 {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.compare-col.is h3 { color: var(--gold); }
.compare-col.isnt h3 { color: var(--text-dim); }
.compare-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.compare-col li {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--text-soft);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}
.compare-col.is li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}
.compare-col.isnt li::before {
  content: '\2013';
  position: absolute;
  left: 0;
  color: var(--text-dim);
}

/* Deliverable Grid */
.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-dim);
  max-width: 900px;
  margin: 0 auto;
}
.deliverable-item {
  background: var(--bg);
  padding: 32px;
}
.deliverable-item .num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.deliverable-item h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
}
.deliverable-item p {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Process Steps */
.process-steps {
  display: flex;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}
.process-step { flex: 1; text-align: center; }
.process-step .num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.process-step h3 {
  font-family: var(--serif);
  font-size: 24px;
  margin-bottom: 12px;
}
.process-step p {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Payment Section */
.payment-section {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.payment-section .price-display {
  font-family: var(--mono);
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 24px;
}
.payment-section .includes {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.8;
}
.payment-note {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 24px;
}

/* ━━━ ABOUT PAGE ━━━ */
.about-hero {
  padding: 120px 48px 80px;
}
.about-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}
.about-hero h1 { margin-bottom: 32px; }
.about-hero p {
  font-family: var(--mono);
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Founder Section */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto;
}
.founder-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border: 1px solid var(--gold-dim);
}
.founder-info h3 {
  font-family: var(--serif);
  font-size: 36px;
  margin-bottom: 8px;
}
.founder-title {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.founder-bio {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 32px;
}
.credentials {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.credentials li {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}
.credentials li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ━━━ CONTACT PAGE ━━━ */
.contact-hero {
  padding: 120px 48px 80px;
  text-align: center;
}
.contact-hero h1 { margin-bottom: 16px; }
.contact-hero p {
  font-family: var(--mono);
  font-size: 15px;
  color: var(--text-muted);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 24px;
}
.form-label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--gold-dim);
  color: var(--text);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 300;
  transition: border-color 0.3s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  outline: none;
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C6A44E' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-select option {
  background: var(--bg-elevated);
  color: var(--text);
}
.form-textarea {
  min-height: 160px;
  resize: vertical;
}
.form-note {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 24px;
  text-align: center;
}
.hidden { display: none; }

/* ━━━ LEAD MAGNET FORM ━━━ */
.lead-magnet {
  max-width: 600px;
  margin: 0 auto;
  padding: 48px;
  border: 1px solid var(--gold-dim);
  background: var(--bg-elevated);
  text-align: center;
}
.lead-magnet h3 {
  font-family: var(--serif);
  font-size: 28px;
  margin-bottom: 8px;
}
.lead-magnet .lead-magnet-sub {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}
.lead-magnet-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.lead-magnet-fields .form-input {
  text-align: left;
}

/* ━━━ SOCIAL PROOF BAR ━━━ */
.proof-bar {
  padding: 48px;
  border-top: 1px solid var(--gold-faint);
  border-bottom: 1px solid var(--gold-faint);
}
.proof-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.proof-bar-item {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ━━━ FAQ SECTION ━━━ */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--gold-faint);
  padding: 24px 0;
}
.faq-question {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
  line-height: 1.6;
}
.faq-question::after {
  content: '+';
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s;
}
.faq-item.open .faq-question::after {
  content: '\2013';
}
.faq-answer {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding-top: 0;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-top: 16px;
}

/* ━━━ PUBLIC RECORD PAGE ━━━ */
.pr-hero {
  padding: 120px 48px 80px;
  text-align: center;
}
.pr-hero h1 { margin-bottom: 16px; }
.pr-hero p {
  font-family: var(--mono);
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}
.case-file-cta {
  text-align: center;
  margin-top: 32px;
}

/* ━━━ METHODOLOGY PAGE ━━━ */
.meth-hero {
  padding: 120px 48px 80px;
}
.meth-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}
.meth-hero h1 { margin-bottom: 32px; }
.meth-hero p {
  font-family: var(--mono);
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 16px;
}

.motion-grid {
  display: flex;
  gap: 1px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-dim);
  max-width: 900px;
  margin: 0 auto;
}
.motion-item {
  flex: 1;
  background: var(--bg);
  padding: 36px 28px;
  text-align: center;
}
.motion-item .num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.motion-item h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 12px;
}
.motion-item p {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.ip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}
.ip-item h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 8px;
}
.ip-item .ip-tm {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.ip-item p {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.econ-context {
  max-width: 700px;
  margin: 0 auto;
}
.econ-stat {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--gold-faint);
  align-items: baseline;
}
.econ-stat .label {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-muted);
  flex: 1;
}
.econ-stat .value {
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 500;
  color: var(--gold);
}

/* ━━━ DEBRIEF PAGE ━━━ */
.debrief-hero {
  padding: 120px 48px 80px;
  text-align: center;
}
.debrief-hero h1 { margin-bottom: 16px; }
.debrief-hero p {
  font-family: var(--mono);
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.debrief-detail {
  max-width: 700px;
  margin: 0 auto;
}
.debrief-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 800px;
  margin: 0 auto;
}
.debrief-col h3 {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.debrief-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.debrief-col li {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--text-soft);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}
.debrief-col li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

.debrief-price {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.debrief-price .price-display {
  font-family: var(--mono);
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 24px;
}
.debrief-price p {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.8;
}

/* ━━━ TERMS PAGE ━━━ */
.terms-hero {
  padding: 120px 48px 80px;
  text-align: center;
}
.terms-hero h1 { margin-bottom: 16px; }
.terms-content {
  max-width: 700px;
  margin: 0 auto;
}
.terms-content h2 {
  font-size: 28px;
  margin-bottom: 24px;
  margin-top: 60px;
}
.terms-content h2:first-child { margin-top: 0; }
.terms-content h3 {
  font-size: 20px;
  margin-bottom: 16px;
  margin-top: 32px;
}
.terms-content p,
.terms-content li {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 16px;
}
.terms-content ul {
  list-style: none;
  padding: 0;
}
.terms-content li {
  padding-left: 20px;
  position: relative;
}
.terms-content li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ━━━ EXIT INTENT OVERLAY ━━━ */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.92);
  z-index: 999;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 24px;
}
.exit-overlay.active { display: flex; }
.exit-modal {
  background: var(--bg-elevated);
  border: 1px solid var(--gold-dim);
  padding: 48px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  position: relative;
}
.exit-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}
.exit-close:hover { color: var(--text); }
.exit-modal h3 {
  font-family: var(--serif);
  font-size: 28px;
  margin-bottom: 12px;
}
.exit-modal p {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* ━━━ RESPONSIVE ━━━ */
@media (max-width: 900px) {
  .hero, .va-hero, .about-hero, .contact-hero,
  .pr-hero, .meth-hero, .debrief-hero, .terms-hero { padding: 80px 24px 60px; }
  .stats { padding: 60px 24px; }
  .stats-grid { flex-direction: column; gap: 40px; }
  .stat-number { font-size: 40px; }
  .method-grid { flex-direction: column; }
  .compare-grid { grid-template-columns: 1fr; gap: 40px; }
  .deliverable-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 40px; }
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }
  .va-price { font-size: 48px; }
  .case-file { padding: 32px 24px; }
  .fury-box { padding: 32px 24px; }
  .proof-bar { padding: 32px 24px; }
  .proof-bar-inner { gap: 24px; }
  .motion-grid { flex-direction: column; }
  .ip-grid { grid-template-columns: 1fr; gap: 24px; }
  .debrief-grid { grid-template-columns: 1fr; gap: 32px; }
  .lead-magnet { padding: 32px 24px; }
  .econ-stat { flex-direction: column; gap: 4px; }
  .exit-modal { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero h1, .va-price { font-size: 36px; }
  .payment-section .price-display { font-size: 36px; }
  .debrief-price .price-display { font-size: 36px; }
}
