  :root {    --navy:       #14213D;    --navy-mid:   #1a2a47;    --gold:       #C8A951;    --gold-light: #d4ba6a;    --gold-pale:  #fdf8ec;    --gold-dark:  #8a6a1a;    --charcoal:   #2E2E2E;    --offwhite:   #F8F9FA;    --sage:       #BFD8B8;    --white:      #FFFFFF;    --text-dark:  #14213D;    --text-body:  #4a5568;    --text-muted: #7a8898;    --border-lt:  #dde2e8;    --shadow-sm:  0 2px 12px rgba(20,33,61,0.07);    --shadow-md:  0 8px 32px rgba(20,33,61,0.12);  }   * { box-sizing: border-box; margin: 0; padding: 0; }  html { scroll-behavior: smooth; }  body { background: var(--white); color: rgba(255,255,255,0.75); font-family: 'Jost', -apple-system, sans-serif; font-weight: 300; overflow-x: hidden; }   /* NAV */  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 14px 56px; background: rgba(20,33,61,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(200,169,81,0.15); box-shadow: 0 1px 16px rgba(0,0,0,0.2); }   /* HERO */  .hero { background: var(--navy); min-height: 72vh; display: flex; flex-direction: column; justify-content: flex-end; padding: 130px 56px 0; position: relative; overflow: hidden; }  .hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 85% 30%, rgba(200,169,81,0.12) 0%, transparent 60%), radial-gradient(ellipse 40% 40% at 10% 80%, rgba(200,169,81,0.06) 0%, transparent 55%); }  .hero-ghost { position: absolute; right: -20px; top: 50%; transform: translateY(-55%); font-family: 'Playfair Display', Georgia, serif; font-size: clamp(200px, 28vw, 380px); font-weight: 800; line-height: 1; color: rgba(200,169,81,0.07); letter-spacing: -0.04em; pointer-events: none; user-select: none; }  .hero-inner { max-width: 1100px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 400px; gap: 64px; align-items: flex-end; position: relative; z-index: 1; }  .hero-left { padding-bottom: 72px; }  .tier-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; background: rgba(200,169,81,0.15); border: 1px solid rgba(200,169,81,0.4); color: var(--gold); border-radius: 50px; padding: 7px 16px; margin-bottom: 28px; width: fit-content; }  .tier-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }  .hero-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; color: rgba(200,169,81,0.5); text-transform: uppercase; margin-bottom: 12px; }  .hero-headline { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(36px, 4.5vw, 60px); font-weight: 800; line-height: 1.08; color: var(--white); margin-bottom: 28px; max-width: 620px; }  .hero-headline em { font-style: italic; color: var(--gold); }  .hero-sub { font-size: 17px; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.6); max-width: 520px; margin-bottom: 40px; }  .hero-cta-row { display: flex; align-items: center; gap: 24px; }  .btn-gold { background: var(--gold); color: var(--navy); padding: 14px 30px; border-radius: 50px; font-family: 'Jost', sans-serif; font-size: 14px; font-weight: 600; text-decoration: none; display: inline-block; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 16px rgba(200,169,81,0.4); }  .btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(200,169,81,0.5); }  .btn-ghost { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }  .btn-ghost:hover { color: var(--gold); }  .hero-right { padding-bottom: 72px; display: flex; flex-direction: column; gap: 16px; }  .hero-stat-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(200,169,81,0.25); border-radius: 16px; padding: 20px 24px; backdrop-filter: blur(8px); transition: background 0.2s, border-color 0.2s; }  .hero-stat-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(200,169,81,0.45); }  .hero-stat-num { font-family: 'Playfair Display', Georgia, serif; font-size: 30px; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 4px; }  .hero-stat-text { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.65); line-height: 1.5; }  .hero-stat-source { font-size: 10px; font-weight: 300; color: rgba(255,255,255,0.35); margin-top: 4px; }  .hero-rule { height: 4px; background: var(--gold); }   /* SHARED */  .section-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 14px; }  .section-heading { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(28px, 3.2vw, 44px); font-weight: 800; color: var(--text-dark); line-height: 1.1; margin-bottom: 14px; }  .gold-rule { width: 40px; height: 2px; background: var(--gold); margin-bottom: 26px; }  .body-text { font-size: 16px; font-weight: 300; line-height: 1.9; color: var(--text-body); margin-bottom: 20px; }  .body-text:last-child { margin-bottom: 0; }   /* DISTINCTION */  .distinction-section { background: var(--offwhite); padding: 100px 56px; }  .distinction-inner { max-width: 1100px; margin: 0 auto; }  .distinction-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }  .distinction-header .section-heading { margin-bottom: 14px; }  .distinction-header p { font-size: 17px; font-weight: 300; color: var(--text-body); line-height: 1.8; }  .distinction-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }  .distinction-card { background: var(--white); border-radius: 20px; border: 1px solid var(--border-lt); padding: 40px; position: relative; overflow: hidden; transition: box-shadow 0.25s, transform 0.25s; }  .distinction-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }  .distinction-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }  .dc-compliance::before { background: #BFD8B8; }  .dc-care::before { background: var(--gold); }  .distinction-card-label { font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; border-radius: 50px; padding: 4px 14px; margin-bottom: 16px; display: inline-block; }  .lbl-compliance { color: #4a7a45; background: rgba(191,216,184,0.2); border: 1px solid rgba(191,216,184,0.6); }  .lbl-care { color: var(--gold-dark); background: rgba(200,169,81,0.12); border: 1px solid rgba(200,169,81,0.45); }  .distinction-card-title { font-family: 'Playfair Display', Georgia, serif; font-size: 28px; font-weight: 800; margin-bottom: 12px; }  .dt-compliance { color: #4a7a45; }  .dt-care { color: var(--gold-dark); }  .distinction-card-body { font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--text-body); }   /* STAT BAND */  .stat-band { background: var(--gold); padding: 72px 56px; }  .stat-band-inner { max-width: 1100px; margin: 0 auto; }  .stat-band-label { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(20,33,61,0.55); margin-bottom: 48px; text-align: center; }  .stat-band-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }  .stat-item { text-align: center; padding: 0 32px; position: relative; }  .stat-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 10%; bottom: 10%; width: 1px; background: rgba(20,33,61,0.15); }  .stat-num { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(30px, 3.5vw, 46px); font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 10px; }  .stat-desc { font-size: 13px; font-weight: 400; line-height: 1.55; color: rgba(20,33,61,0.7); margin-bottom: 6px; }  .stat-source { font-size: 11px; font-weight: 300; color: rgba(20,33,61,0.45); }   /* WHAT CARE INVOLVES */  .involves-section { background: var(--white); padding: 100px 56px; }   /* PROSUPPORT */  .prosupport-section { background: var(--navy); padding: 100px 56px; position: relative; overflow: hidden; }  .prosupport-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 60% at 90% 50%, rgba(200,169,81,0.09) 0%, transparent 60%), radial-gradient(ellipse 30% 30% at 10% 20%, rgba(200,169,81,0.05) 0%, transparent 55%); }  .prosupport-inner { max-width: 1100px; margin: 0 auto; position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }  .prosupport-text .section-eyebrow { color: var(--gold); }  .prosupport-text .section-heading { color: var(--white); }  .prosupport-body { font-size: 16px; font-weight: 300; line-height: 1.85; color: rgba(255,255,255,0.62); margin-bottom: 20px; }  .prosupport-body:last-of-type { margin-bottom: 0; }  .prosupport-features { display: flex; flex-direction: column; gap: 14px; }  .prosupport-feature { display: flex; align-items: center; gap: 14px; padding: 18px 22px; background: rgba(255,255,255,0.06); border: 1px solid rgba(200,169,81,0.2); border-radius: 14px; transition: background 0.2s, border-color 0.2s; }  .prosupport-feature:hover { background: rgba(255,255,255,0.1); border-color: rgba(200,169,81,0.4); }  .prosupport-feature-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(200,169,81,0.15); border: 1px solid rgba(200,169,81,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }  .prosupport-feature-text { font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.8); line-height: 1.5; }  .prosupport-feature-text strong { font-weight: 600; color: var(--white); display: block; margin-bottom: 2px; }   /* QUOTE */  .quote-band { background: var(--gold-pale); padding: 72px 56px; text-align: center; border-top: 1px solid rgba(200,169,81,0.2); border-bottom: 1px solid rgba(200,169,81,0.2); }  .quote-mark { font-family: 'Playfair Display', Georgia, serif; font-size: 80px; line-height: 0.5; color: var(--gold); opacity: 0.4; display: block; margin-bottom: 16px; }  .quote-text { font-family: 'Cormorant Garamond', serif; font-size: clamp(20px, 2.8vw, 30px); font-style: italic; font-weight: 400; line-height: 1.6; color: var(--text-dark); max-width: 720px; margin: 0 auto 20px; }  .quote-source { font-size: 13px; font-weight: 400; color: var(--gold-dark); letter-spacing: 0.06em; }   /* BRIDGE */  .bridge-section { background: var(--offwhite); padding: 90px 56px; }  .bridge-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }  .bridge-text .section-heading { margin-bottom: 14px; }  .bridge-card { background: var(--white); border-radius: 20px; border: 1px solid rgba(200,169,81,0.2); padding: 40px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 20px; }  .bridge-tier { display: flex; align-items: center; gap: 14px; padding: 18px 20px; border-radius: 12px; background: var(--offwhite); border: 1px solid var(--border-lt); text-decoration: none; transition: box-shadow 0.2s, transform 0.2s; cursor: default; }  .bridge-tier.clickable { cursor: pointer; }  .bridge-tier.clickable:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }  .bridge-tier-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }  .dot-compliance { background: #4a7a45; }  .dot-care { background: var(--gold); }  .dot-confidence { background: var(--navy); }  .bridge-tier-name { font-family: 'Playfair Display', Georgia, serif; font-size: 18px; font-weight: 700; color: var(--text-dark); }  .bridge-tier-desc { font-size: 12px; font-weight: 300; color: var(--text-muted); margin-top: 2px; }  .bridge-tier-arrow { margin-left: auto; font-size: 16px; color: var(--text-muted); }  .bridge-tier.done-tier { background: rgba(74,122,69,0.06); border-color: rgba(74,122,69,0.2); }  .bridge-tier.active-tier { background: rgba(200,169,81,0.08); border-color: rgba(200,169,81,0.35); }  .bridge-tier.active-tier .bridge-tier-name { color: var(--gold-dark); }  .bridge-tier.next-tier { border-color: rgba(20,33,61,0.25); background: rgba(20,33,61,0.04); }   /* TESTIMONIAL */  .testi-section { background: var(--white); padding: 100px 56px; text-align: center; }  .testi-section .section-eyebrow { color: var(--gold-dark); }  .testi-section .section-heading { color: var(--text-dark); margin-bottom: 8px; }  .testi-rule { width: 40px; height: 2px; background: var(--gold); margin: 12px auto 48px; }  .testi-card { background: var(--offwhite); border: 1px solid var(--border-lt); border-radius: 16px; padding: 52px; text-align: left; max-width: 720px; margin: 0 auto; box-shadow: var(--shadow-sm); }  .testi-mark { font-family: 'Playfair Display', Georgia, serif; font-size: 56px; line-height: 0.6; color: var(--gold); opacity: 0.4; margin-bottom: 14px; display: block; }  .testi-quote { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-style: italic; font-weight: 400; line-height: 1.7; color: var(--text-dark); margin-bottom: 26px; }  .testi-name { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }  .testi-role { font-size: 13px; font-weight: 300; color: var(--text-muted); }   /* CTA */  .cta-section { background: var(--navy); padding: 120px 56px; text-align: center; position: relative; overflow: hidden; }  .cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(200,169,81,0.08) 0%, transparent 70%); }  .cta-section > * { position: relative; }  .cta-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }  .cta-heading { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(28px, 4vw, 50px); font-weight: 800; color: var(--white); line-height: 1.12; max-width: 640px; margin: 0 auto 14px; }  .cta-heading em { font-style: italic; color: var(--gold); }  .cta-sub { font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.55); max-width: 420px; margin: 0 auto 42px; line-height: 1.75; }  .btn-primary { background: var(--gold); color: var(--navy); padding: 15px 34px; border-radius: 50px; font-family: 'Jost', sans-serif; font-size: 15px; font-weight: 600; text-decoration: none; display: inline-block; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 20px rgba(200,169,81,0.3); }  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,169,81,0.45); }   /* FOOTER */  footer { background: var(--charcoal); padding: 64px 56px 40px; }  .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 52px; max-width: 1100px; margin: 0 auto 48px; }  .footer-brand-text { font-size: 13px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.4); margin: 14px 0 22px; max-width: 210px; }  .footer-socials { display: flex; gap: 10px; }  .footer-socials a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); text-decoration: none; font-size: 12px; transition: border-color 0.2s, color 0.2s; }  .footer-socials a:hover { border-color: var(--gold); color: var(--gold); }  .footer-col h4 { font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }  .footer-col ul a { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }  .footer-col ul a:hover { color: var(--white); }  .footer-bottom { max-width: 1100px; margin: 0 auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; }  .footer-bottom p { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.3); }  .footer-bottom-links { display: flex; gap: 22px; }  .footer-bottom-links a { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }  .footer-bottom-links a:hover { color: var(--white); }   /* ANIMATIONS */  .reveal { opacity: 1; transform: none; transition: opacity 0.7s ease, transform 0.7s ease; }  .js-loaded .reveal { opacity: 0; transform: translateY(26px); }  .js-loaded .reveal.visible { opacity: 1; transform: translateY(0); }  .d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; }  .d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }
/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr !important; min-height: auto !important; }
  .hero-content { padding: 60px 24px !important; }
  .hero-visual, .hero-right { padding: 40px 24px !important; }
  .distinction-section, .prosupport-section, .bridge-section, .testi-section, .stat-band, .cta-section, .assess-section, .support-section { padding: 60px 24px !important; }
  .distinction-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .prosupport-inner { grid-template-columns: 1fr !important; gap: 40px !important; }
  .bridge-inner { grid-template-columns: 1fr !important; gap: 40px !important; }
  .stat-band-grid { grid-template-columns: 1fr 1fr !important; gap: 24px !important; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  div[style*="grid-template-columns: 1fr 400px"] { grid-template-columns: 1fr !important; }
  div[style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .stat-band-grid { grid-template-columns: 1fr !important; }
  .stat-item:not(:last-child)::after { display: none; }
  .hero-content { padding: 40px 16px !important; }
}
