/* ============================================================
   ClearPath Capital — Gold & Royal Purple Design System
   Primary: Gold #D4AF37 | Secondary: Royal Purple #6B0F9B
   Background: Deep charcoal | Text: Gold on dark
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&family=Syne:wght@400;500;600;700;800&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  /* Brand colors */
  --gold: #D4AF37;
  --gold-light: #e8c76a;
  --gold-dim: rgba(212, 175, 55, 0.15);
  --gold-glow: rgba(212, 175, 55, 0.08);
  --purple: #6B0F9B;
  --purple-light: #8b2fc9;
  --purple-dim: rgba(107, 15, 155, 0.12);
  --purple-glow: rgba(107, 15, 155, 0.06);

  /* Backgrounds */
  --bg: #08080e;
  --bg-2: #0f0f18;
  --bg-3: #141420;
  --bg-card: #0c0c16;
  --bg-card-hover: #101018;

  /* Text */
  --fg: #f0ead8;
  --fg-2: #8a8070;
  --fg-3: #4a4840;

  /* Borders */
  --border: rgba(212, 175, 55, 0.12);
  --border-bright: rgba(212, 175, 55, 0.25);

  /* Typography */
  --font-display: 'Playfair Display', 'Syne', serif;
  --font-heading: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Radius */
  --radius: 4px;
  --radius-lg: 8px;

  /* Shadows */
  --shadow-gold: 0 0 40px rgba(212, 175, 55, 0.08);
  --shadow-purple: 0 0 60px rgba(107, 15, 155, 0.12);
  --shadow-card: 0 2px 20px rgba(0,0,0,0.4);

  /* Motion */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 0.2s;
  --dur-med: 0.35s;
  --dur-slow: 0.6s;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dim) var(--bg);
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }
::selection { background: rgba(212, 175, 55, 0.2); color: var(--fg); }

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

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 64px;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 100;
  background: rgba(8,8,14,0.85);
  backdrop-filter: blur(16px);
}
.nav::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  opacity: 0.5;
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 0.02em;
  transition: color var(--dur-fast) var(--ease-out);
}
.nav-brand:hover { color: var(--gold-light); }

.nav-tag {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 100px 64px 80px;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--purple-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 500;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
  position: relative;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
  display: inline-block;
  position: relative;
}
.hero-headline em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--purple));
  border-radius: 2px;
  opacity: 0.6;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-2);
  max-width: 560px;
  font-weight: 300;
  margin-bottom: 48px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--bg);
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-spring),
              box-shadow var(--dur-fast) var(--ease-out);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  background: transparent;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
}
.btn-outline:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-purple {
  background: var(--purple);
  color: #fff;
}
.btn-purple:hover {
  background: var(--purple-light);
  box-shadow: 0 8px 24px rgba(107, 15, 155, 0.3);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  padding-right: 40px;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}

.hero-stat-label {
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-divider {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, transparent, var(--gold-dim), transparent);
  margin: 0 40px 0 0;
}

/* ============================================================
   APPROACH
   ============================================================ */
.approach {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 100px 64px;
  background: var(--bg-2);
  max-width: 1200px;
  position: relative;
}
.approach::before {
  content: '';
  position: absolute;
  top: 0;
  left: 64px;
  right: 64px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-bright), transparent);
}

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 500;
  display: block;
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}

.section-heading em {
  font-style: italic;
  color: var(--gold);
}

.approach-left .section-heading { color: var(--fg); }

.approach-body {
  color: var(--fg-2);
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 20px;
}

.approach-left {
  border-right: 1px solid var(--border);
  padding-right: 80px;
}

.approach-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.approach-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--dur-med) var(--ease-out);
  cursor: default;
}
.approach-point:hover {
  border-color: var(--gold-dim);
  background: var(--bg-card-hover);
  transform: translateX(4px);
}

.approach-point-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 16px;
}

.approach-point-text {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.6;
  font-weight: 300;
}

.approach-point-text strong {
  color: var(--fg);
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-heading);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   SPECIALIZATION
   ============================================================ */
.specialization {
  padding: 100px 64px;
  max-width: 1200px;
  position: relative;
}

.specialization .section-eyebrow {
  text-align: center;
  display: block;
}

.specialization-header {
  text-align: center;
  margin-bottom: 72px;
}

.specialization .section-heading {
  margin-bottom: 16px;
}

.specialization-sub {
  font-size: 16px;
  color: var(--fg-2);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.spec-card {
  background: var(--bg-card);
  padding: 48px 44px;
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--gold), var(--purple)) 1;
  position: relative;
  overflow: hidden;
  transition: all var(--dur-med) var(--ease-out);
}
.spec-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--gold-glow), transparent 60%);
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease-out);
}
.spec-card:hover::before { opacity: 1; }
.spec-card:hover { background: var(--bg-card-hover); transform: translateY(-4px); box-shadow: var(--shadow-gold); }

.spec-card-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: rgba(212, 175, 55, 0.12);
  margin-bottom: 16px;
  letter-spacing: -0.04em;
  position: relative;
  z-index: 1;
}

.spec-card-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 14px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.spec-card-desc {
  color: var(--fg-2);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.spec-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.spec-card-list li {
  font-size: 13px;
  color: var(--fg-2);
  padding-left: 20px;
  position: relative;
  font-weight: 300;
  transition: color var(--dur-fast) var(--ease-out);
}
.spec-card-list li:hover { color: var(--fg); }

.spec-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
  transition: width var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}
.spec-card-list li:hover::before { width: 14px; opacity: 1; }

/* ============================================================
   OUTCOMES
   ============================================================ */
.outcomes {
  padding: 100px 64px;
  background: var(--bg-2);
  max-width: 1200px;
  position: relative;
}
.outcomes::before {
  content: '';
  position: absolute;
  top: 0;
  left: 64px;
  right: 64px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-bright), transparent);
}

.outcomes-header {
  text-align: center;
  margin-bottom: 64px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.outcome-block {
  padding: 32px 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--dur-med) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.outcome-block::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--purple));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-med) var(--ease-out);
}
.outcome-block:hover::after { transform: scaleX(1); }
.outcome-block:hover {
  border-color: var(--gold-dim);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.outcome-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 18px;
  position: relative;
  z-index: 1;
}

.outcome-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.outcome-desc {
  color: var(--fg-2);
  font-size: 14px;
  line-height: 1.75;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

/* ============================================================
   PHILOSOPHY
   ============================================================ */
.philosophy {
  padding: 100px 64px;
  max-width: 1200px;
  position: relative;
}

.philosophy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 64px;
  right: 64px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-bright), transparent);
}

.philosophy-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.45;
  border-left: 3px solid var(--gold);
  padding-left: 40px;
  margin-bottom: 24px;
  font-style: normal;
  position: relative;
}

.philosophy-quote::before {
  content: '\u201C';
  position: absolute;
  left: 28px;
  top: -12px;
  font-size: 80px;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
  font-family: var(--font-display);
}

.philosophy-attribution {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  padding-left: 40px;
  margin-bottom: 56px;
  font-weight: 500;
}

.philosophy-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 900px;
  margin-left: 40px;
}

.philosophy-body p {
  color: var(--fg-2);
  font-size: 15px;
  line-height: 1.85;
  font-weight: 300;
}

/* ============================================================
   CLOSING
   ============================================================ */
.closing {
  padding: 100px 64px;
  background: var(--bg-2);
  max-width: 1200px;
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 64px;
  right: 64px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-bright), transparent);
}
.closing::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.closing-content { max-width: 700px; position: relative; z-index: 1; }

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.closing-headline em {
  font-style: italic;
  color: var(--gold);
}

.closing-sub {
  color: var(--fg-2);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 560px;
}

.closing-tag {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-3);
  display: flex;
  align-items: center;
  gap: 12px;
}
.closing-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

/* ============================================================
   REVENUE / UPSELL BANNER (shared component)
   ============================================================ */
.upsell-banner {
  padding: 48px 64px;
  background: linear-gradient(135deg, var(--bg-2) 0%, #0a0510 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 1200px;
  margin: 0 64px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.upsell-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--gold-dim), var(--purple-glow), transparent);
  opacity: 0.3;
}
.upsell-banner-content { position: relative; z-index: 1; }
.upsell-banner-tag {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  font-family: var(--font-body);
  margin-bottom: 8px;
}
.upsell-banner-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
  line-height: 1.2;
}
.upsell-banner-desc {
  font-size: 14px;
  color: var(--fg-2);
  font-weight: 300;
  max-width: 460px;
}
.upsell-banner-actions { position: relative; z-index: 1; flex-shrink: 0; }
.upsell-price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.upsell-price-sub {
  font-size: 12px;
  color: var(--fg-3);
  display: block;
  margin-bottom: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 56px 64px;
  border-top: 1px solid var(--border);
  max-width: 1200px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  opacity: 0.5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--fg-3);
  font-weight: 300;
  line-height: 1.6;
  max-width: 260px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  font-size: 13px;
  color: var(--fg-3);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links li a:hover { color: var(--gold); }

.footer-links li a .tag {
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 3px;
  background: var(--gold-dim);
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-legal {
  font-size: 11px;
  color: rgba(138, 128, 112, 0.5);
  max-width: 480px;
  line-height: 1.6;
}

.footer-contact {
  font-size: 13px;
  color: var(--fg-3);
}
.footer-contact a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}
.footer-contact a:hover { color: var(--gold-light); }

/* ============================================================
   CONSULTING PAGE STYLES
   ============================================================ */

.nav-link {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--fg-2);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color var(--dur-fast) var(--ease-out);
}
.nav-link:hover { color: var(--gold); }

.tagline-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 64px;
  display: flex;
  justify-content: center;
}
.tagline-text {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-transform: uppercase;
  position: relative;
}
.tagline-text::before,
.tagline-text::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.3;
}
.tagline-text::before { right: calc(100% + 16px); }
.tagline-text::after { left: calc(100% + 16px); }

/* Intro */
.consult-intro {
  padding: 80px 64px 64px;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.consult-intro .section-eyebrow { margin-bottom: 16px; }
.consult-intro h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 24px;
}
.consult-intro p {
  font-size: 18px;
  color: var(--fg-2);
  line-height: 1.75;
  font-weight: 300;
  max-width: 640px;
  margin: 0 auto 56px;
}

/* Three pillars */
.pillars {
  padding: 0 64px 96px;
  max-width: 1200px;
  margin: 0 auto;
}
.pillars-header { text-align: center; margin-bottom: 56px; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.pillar-card {
  background: var(--bg-card);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-top: 2px solid var(--gold-dim);
  transition: all var(--dur-med) var(--ease-out);
}
.pillar-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-top-color: var(--gold);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  color: var(--gold);
}
.pillar-tag {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  font-family: var(--font-body);
  margin-bottom: 12px;
}
.pillar-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 14px;
  line-height: 1.3;
}
.pillar-desc {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.7;
  font-weight: 300;
  flex: 1;
  margin-bottom: 24px;
}
.pillar-detail {
  font-size: 12px;
  color: var(--fg-3);
  line-height: 1.6;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  width: 100%;
}

/* Tiers */
.tiers-section {
  padding: 96px 64px;
  background: var(--bg-2);
}
.tiers-inner { max-width: 1200px; margin: 0 auto; }
.tiers-header { text-align: center; margin-bottom: 64px; }
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.tier-card {
  background: var(--bg-card);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--dur-med) var(--ease-out);
}
.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--border-bright);
}
.tier-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.tier-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--gold);
  color: var(--bg);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  font-family: var(--font-heading);
}
.tier-tier {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  font-family: var(--font-body);
  margin-bottom: 12px;
}
.tier-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.tier-price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 2px;
  letter-spacing: -0.02em;
}
.tier-price-sub {
  font-size: 12px;
  color: var(--fg-3);
  margin-bottom: 28px;
}
.tier-divider {
  width: 32px;
  height: 1px;
  background: var(--border-bright);
  margin-bottom: 24px;
}
.tier-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  margin-bottom: 32px;
}
.tier-includes li {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
  font-weight: 300;
}
.tier-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.tier-cta {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--bg);
  text-decoration: none;
  text-align: center;
  border-radius: var(--radius);
  transition: all var(--dur-fast) var(--ease-out);
}
.tier-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}
.tier-cta.outline {
  background: transparent;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
}
.tier-cta.outline:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}

/* Edge section */
.edge-section {
  padding: 96px 64px;
  max-width: 1200px;
  margin: 0 auto;
}
.edge-header { text-align: center; margin-bottom: 64px; }
.edge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.edge-card {
  background: var(--bg-card);
  padding: 40px 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--dur-med) var(--ease-out);
}
.edge-card:hover {
  border-color: var(--purple-dim);
  transform: translateY(-2px);
  box-shadow: var(--shadow-purple);
}
.edge-card-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  font-family: var(--font-body);
  margin-bottom: 12px;
}
.edge-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1.3;
}
.edge-card-body {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.7;
  font-weight: 300;
}

/* CTA section */
.consult-cta {
  padding: 96px 64px;
  background: var(--bg-2);
  text-align: center;
}
.consult-cta-inner { max-width: 720px; margin: 0 auto; }
.consult-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 20px;
}
.consult-cta p {
  font-size: 16px;
  color: var(--fg-2);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 40px;
}

/* ============================================================
   PRODUCT STOREFRONT — EBOOK, PRICING, DEAL NETWORK PAGES
   ============================================================ */

/* --- Ebook page --- */
.ebook-hero {
  padding: 80px 64px;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
}
.ebook-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.ebook-hero-inner { position: relative; z-index: 1; }
.ebook-badge { display: flex; gap: 16px; align-items: center; margin-bottom: 20px; }
.ebook-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 20px;
}
.ebook-subtitle {
  font-size: 18px;
  color: var(--fg-2);
  max-width: 560px;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 36px;
}
.ebook-cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.ebook-contents { padding: 80px 64px; max-width: 1200px; }
.ebook-contents-inner { max-width: 1200px; margin: 0 auto; }
.contents-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.contents-card {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--bg-card); padding: 28px 28px;
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: all var(--dur-med) var(--ease-out);
}
.contents-card:hover { border-color: var(--gold-dim); transform: translateY(-2px); }
.contents-num {
  font-family: var(--font-display); font-size: 28px; font-weight: 800;
  color: rgba(212,175,55,0.15); flex-shrink: 0; line-height: 1;
  min-width: 40px;
}
.contents-body h3 {
  font-family: var(--font-display); font-size: 16px; font-weight: 700;
  color: var(--fg); margin-bottom: 8px;
}
.contents-body p { font-size: 13px; color: var(--fg-2); font-weight: 300; line-height: 1.7; }

.ebook-who { padding: 80px 64px; background: var(--bg-2); }
.ebook-who-inner { max-width: 1200px; margin: 0 auto; }
.who-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2px; margin-top: 32px; }
.who-card { background: var(--bg-card); padding: 32px 28px; border: 1px solid var(--border); border-radius: var(--radius); }
.who-icon { font-size: 20px; color: var(--gold); margin-bottom: 12px; }
.who-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--fg); margin-bottom: 8px; }
.who-card p { font-size: 13px; color: var(--fg-2); font-weight: 300; line-height: 1.7; }

.ebook-proof { padding: 80px 64px; }
.ebook-proof-inner { max-width: 1200px; margin: 0 auto; }
.proof-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2px; margin-top: 32px; }
.proof-card { background: var(--bg-card); padding: 28px; border: 1px solid var(--border); border-radius: var(--radius); display: flex; flex-direction: column; gap: 12px; }
.proof-stars { font-size: 14px; color: var(--gold); }
.proof-text { font-size: 14px; color: var(--fg-2); font-weight: 300; line-height: 1.75; font-style: italic; }
.proof-attr { font-size: 12px; color: var(--fg-3); font-weight: 500; }

.ebook-buy { padding: 80px 64px; background: var(--bg-2); }
.ebook-buy-inner { max-width: 1200px; margin: 0 auto; }
.ebook-buy-card {
  display: grid; grid-template-columns: 1fr 380px; gap: 48px;
  background: var(--bg-card); border: 1px solid var(--border-bright); border-radius: var(--radius);
  padding: 56px 48px;
}
.ebook-buy-left, .ebook-buy-right { }
.ebook-price-block {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 28px; text-align: center;
}
.stripe-btn {
  display: block; width: 100%; text-align: center;
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 16px; background: var(--gold); color: var(--bg);
  border-radius: 4px; cursor: pointer; border: none;
  transition: background 0.2s;
}
.stripe-btn:hover { background: var(--gold-light); }

/* --- Pricing comparison table --- */
.pricing-hero {
  padding: 80px 64px 40px; max-width: 1200px; margin: 0 auto; text-align: center;
}
.section-display {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.025em; color: var(--fg); margin-bottom: 16px;
}
.section-sub { font-size: 16px; color: var(--fg-2); font-weight: 300; max-width: 520px; margin: 0 auto; line-height: 1.7; }

.tier-compare-section { padding: 40px 64px 80px; max-width: 1200px; margin: 0 auto; }
.tier-compare-wrap { overflow-x: auto; }
.tier-compare-table { min-width: 700px; }
.tier-compare-header {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2px;
  margin-bottom: 24px; align-items: end;
}
.tier-compare-feature-col {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-3); font-weight: 600; padding-bottom: 12px;
}
.tier-compare-col { text-align: center; padding: 20px 16px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius) var(--radius) 0 0; }
.tier-compare-col:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
.compare-plan-name { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg); margin-bottom: 4px; }
.compare-price { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--gold); letter-spacing: -0.02em; margin-bottom: 16px; }
.compare-price span { font-size: 16px; font-weight: 400; color: var(--fg-2); }
.compare-cta {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 10px 20px; background: var(--gold); color: var(--bg);
  text-decoration: none; border-radius: var(--radius); transition: background 0.2s;
  border: none; cursor: pointer;
}
.compare-cta:hover { background: var(--gold-light); }
.compare-cta.outline { background: transparent; border: 1px solid var(--border-bright); color: var(--fg); }
.compare-cta.outline:hover { border-color: var(--gold); color: var(--gold); }

.tier-compare-section-label {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; padding: 12px 16px;
  background: var(--bg-2); border: 1px solid var(--border); border-bottom: none;
  font-family: var(--font-body);
}
.tier-compare-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2px;
  background: var(--bg-card); border: 1px solid var(--border); border-top: none;
}
.tier-compare-row-footer { background: var(--bg-2); }
.tier-compare-feature { font-size: 13px; color: var(--fg-2); font-weight: 300; padding: 14px 16px; }
.tier-compare-cell { padding: 14px; text-align: center; font-size: 14px; display: flex; align-items: center; justify-content: center; }
.tier-compare-cell.check { color: var(--gold); }
.tier-compare-cell.no { color: var(--fg-3); }

/* --- Deal Network tier pages --- */
.tier-hero {
  padding: 80px 64px 60px; max-width: 1200px; margin: 0 auto; text-align: center;
  background: var(--bg);
  position: relative;
}
.tier-hero .section-eyebrow { margin-bottom: 12px; }
.tier-hero .section-display { margin-bottom: 16px; }
.tier-hero .section-sub { font-size: 16px; color: var(--fg-2); font-weight: 300; max-width: 560px; margin: 0 auto 32px; line-height: 1.7; }
.tier-price-badge { display: flex; align-items: baseline; justify-content: center; gap: 4px; margin-bottom: 24px; }
.tier-price-lg { font-family: var(--font-display); font-size: 56px; font-weight: 800; color: var(--gold); letter-spacing: -0.03em; }
.tier-price-period { font-size: 20px; color: var(--fg-2); font-weight: 300; }

.tier-features { padding: 64px; }
.tier-features-inner { max-width: 1200px; margin: 0 auto; }
.tier-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 32px; }
.tier-feature-card {
  background: var(--bg-card); padding: 32px 24px;
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: all var(--dur-med) var(--ease-out);
  display: flex; flex-direction: column;
}
.tier-feature-card:hover { border-color: var(--gold-dim); transform: translateY(-2px); }
.tier-feature-icon { font-size: 18px; color: var(--gold); margin-bottom: 12px; }
.tier-feature-name { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--fg); margin-bottom: 8px; }
.tier-feature-desc { font-size: 13px; color: var(--fg-2); font-weight: 300; line-height: 1.7; }

.tier-compare-inline { padding: 0 64px 64px; max-width: 1200px; margin: 0 auto; }
.tier-compare-inline-inner { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.compare-inline-row {
  display: grid; grid-template-columns: 1fr auto; gap: 24px;
  padding: 14px 20px; border-bottom: 1px solid var(--border);
  align-items: center;
}
.compare-inline-row:last-child { border-bottom: none; }
.compare-inline-item { font-size: 13px; color: var(--fg-2); font-weight: 300; }
.compare-inline-check { font-size: 16px; color: var(--gold); width: 32px; text-align: center; }
.compare-inline-no { font-size: 14px; color: var(--fg-3); width: 32px; text-align: center; }

.tier-upgrade-strip { padding: 40px 64px; background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.tier-cta-section { padding: 64px; }
.tier-cta-inner { max-width: 800px; margin: 0 auto; }

/* --- Lead capture forms --- */
.lead-form-card {
  background: var(--bg-card); border: 1px solid var(--border-bright);
  border-radius: var(--radius); padding: 28px 24px;
}
.lead-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.lead-form-field { }
.lead-compact-row { display: flex; gap: 10px; align-items: flex-end; flex-wrap: wrap; }
.lead-consent-row { margin-top: 8px; }
.lead-consent-full { margin: 12px 0; }
.lead-success { background: rgba(212,168,83,0.1); border: 1px solid var(--accent); border-radius: 4px; color: var(--gold); }
.lead-error { background: rgba(217,123,74,0.1); border: 1px solid #d97b4a; border-radius: 4px; color: #d97b4a; }

/* --- CTA button (shared) --- */
.cta-btn {
  display: inline-block; font-family: var(--font-heading); font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 14px 28px;
  background: var(--gold); color: var(--bg); border: none; border-radius: var(--radius);
  cursor: pointer; transition: all var(--dur-fast) var(--ease-out);
  text-decoration: none;
}
.cta-btn:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(212,175,55,0.2); }
.cta-btn.outline { background: transparent; border: 1px solid var(--border-bright); color: var(--gold); }
.cta-btn.outline:hover { background: var(--gold-dim); border-color: var(--gold); transform: translateY(-1px); }

/* --- FAQ --- */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--fg);
  padding: 20px 0 12px; cursor: pointer; list-style: none;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-a { font-size: 14px; color: var(--fg-2); font-weight: 300; line-height: 1.75; padding-bottom: 20px; }

/* --- Contact / Submit Deal / Partner forms --- */
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 11px; color: var(--fg-2); letter-spacing: 0.06em;
  text-transform: uppercase; font-weight: 500;
}
.form-input {
  background: var(--bg-3); border: 1px solid rgba(212,168,83,0.2);
  border-radius: 4px; color: var(--fg); font-family: var(--font-body);
  font-size: 15px; padding: 13px 14px; outline: none; width: 100%;
  transition: border-color 0.2s; box-sizing: border-box;
}
.form-input:focus { border-color: var(--accent); }

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .nav { padding: 20px 28px; }
  .hero { padding: 72px 28px 60px; }
  .approach { grid-template-columns: 1fr; gap: 40px; padding: 72px 28px; }
  .approach-left { border-right: none; padding-right: 0; border-bottom: 1px solid var(--border); padding-bottom: 40px; }
  .approach-right { gap: 16px; }
  .specialization { padding: 72px 28px; }
  .spec-grid { grid-template-columns: 1fr; }
  .spec-card { padding: 36px 28px; }
  .outcomes { padding: 72px 28px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .philosophy { padding: 72px 28px; }
  .philosophy-body { grid-template-columns: 1fr; margin-left: 0; }
  .closing { padding: 72px 28px; }
  .footer { padding: 40px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .upsell-banner { flex-direction: column; margin: 0 28px 40px; padding: 32px 28px; }
  .hero-aside { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero-stat { padding: 0; }
  .hero-divider { width: 40px; height: 1px; margin: 0; }

  /* Product storefront responsive */
  .ebook-hero { padding: 56px 28px 40px; }
  .ebook-contents { padding: 56px 28px; }
  .ebook-contents-inner { max-width: 100%; }
  .contents-grid { grid-template-columns: 1fr; }
  .ebook-who { padding: 56px 28px; }
  .who-grid { grid-template-columns: 1fr; }
  .ebook-proof { padding: 56px 28px; }
  .proof-grid { grid-template-columns: 1fr; }
  .ebook-buy { padding: 56px 28px; }
  .ebook-buy-card { grid-template-columns: 1fr; padding: 32px 24px; }
  .pricing-hero { padding: 56px 28px 32px; }
  .tier-compare-section { padding: 32px 28px 56px; }
  .tier-hero { padding: 56px 28px 40px; }
  .tier-features { padding: 40px 28px; }
  .tier-features-grid { grid-template-columns: 1fr 1fr; }
  .tier-compare-inline { padding: 0 28px 48px; }
  .tier-upgrade-strip { padding: 32px 28px; }
  .tier-cta-section { padding: 48px 28px; }
  .lead-form-grid { grid-template-columns: 1fr; }
  .lead-compact-row { flex-direction: column; }

  /* Consulting responsive */
  .tagline-bar { padding: 16px 28px; }
  .consult-intro { padding: 56px 28px 48px; }
  .consult-intro h1 { font-size: 36px; }
  .pillars { padding: 0 28px 72px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .tiers-section { padding: 72px 28px; }
  .tiers-grid { grid-template-columns: 1fr; }
  .edge-section { padding: 72px 28px; }
  .edge-grid { grid-template-columns: 1fr; }
  .consult-cta { padding: 72px 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .hero-stats { flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-outline { text-align: center; justify-content: center; }
  .tier-price { font-size: 32px; }
}