  :root {    --navy:        #14213D;    --navy-mid:    #1a2a47;    --navy-light:  #243050;    --navy-pale:   #edf0f5;    --gold:        #C8A951;    --gold-light:  #d4ba6a;    --gold-dark:   #8a6a1a;    --charcoal:    #2E2E2E;    --offwhite:    #F8F9FA;    --sage:        #BFD8B8;    --sage-dark:   #4a7a45;    --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);    --shadow-navy: 0 8px 32px rgba(20,33,61,0.28);  }   * { 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 { display: grid; grid-template-columns: 1fr 520px; min-height: 78vh; padding-top: 80px; position: relative; overflow: hidden; }  .hero-content { background: var(--navy); display: flex; flex-direction: column; justify-content: center; padding: 80px 64px 80px 56px; position: relative; overflow: hidden; }  .hero-content::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 0% 60%, rgba(200,169,81,0.07) 0%, transparent 60%); }  .hero-content > * { position: relative; }  .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(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.75); border-radius: 50px; padding: 7px 16px; margin-bottom: 28px; width: fit-content; }  .tier-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--white); flex-shrink: 0; }  .hero-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; color: rgba(255,255,255,0.35); text-transform: uppercase; margin-bottom: 12px; }  .hero-headline { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(34px, 4vw, 56px); font-weight: 800; line-height: 1.08; color: var(--white); margin-bottom: 28px; max-width: 560px; }  .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.58); max-width: 500px; 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.35); }  .btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }  .btn-ghost-light { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }  .btn-ghost-light:hover { color: rgba(255,255,255,0.8); }  .hero-visual { background: var(--navy-mid); display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 64px 48px; position: relative; overflow: hidden; border-left: 1px solid rgba(255,255,255,0.06); }  .hero-visual::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 70% at 60% 40%, rgba(200,169,81,0.06) 0%, transparent 65%); }  .hero-ghost-num { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); font-family: 'Playfair Display', Georgia, serif; font-size: 260px; font-weight: 800; line-height: 1; color: rgba(255,255,255,0.035); letter-spacing: -0.06em; pointer-events: none; user-select: none; white-space: nowrap; }  .hero-outcomes { display: flex; flex-direction: column; gap: 14px; width: 100%; max-width: 340px; position: relative; z-index: 1; }  .outcome-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 18px 20px; display: flex; align-items: center; gap: 14px; transition: background 0.2s, border-color 0.2s; }  .outcome-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }  .outcome-icon { width: 38px; height: 38px; border-radius: 9px; flex-shrink: 0; background: rgba(200,169,81,0.15); border: 1px solid rgba(200,169,81,0.25); display: flex; align-items: center; justify-content: center; }  .outcome-label { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 3px; }  .outcome-text { font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.82); line-height: 1.4; }   /* SHARED */  .section-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--navy); 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; }  .navy-rule { width: 40px; height: 2px; background: var(--navy); 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 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-care::before { background: var(--gold); }  .dc-confidence::before { background: var(--navy); }  .distinction-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-care { color: var(--gold-dark); background: rgba(200,169,81,0.12); border: 1px solid rgba(200,169,81,0.45); }  .lbl-confidence { color: var(--navy); background: rgba(20,33,61,0.07); border: 1px solid rgba(20,33,61,0.2); }  .distinction-title { font-family: 'Playfair Display', Georgia, serif; font-size: 28px; font-weight: 800; margin-bottom: 12px; }  .dt-care { color: var(--gold-dark); }  .dt-confidence { color: var(--navy); }  .distinction-body { font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--text-body); }   /* RESEARCH */  .research-section { background: var(--navy); padding: 100px 56px; position: relative; overflow: hidden; }  .research-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 55% 55% at 90% 20%, rgba(200,169,81,0.08) 0%, transparent 60%), radial-gradient(ellipse 40% 40% at 5% 80%, rgba(200,169,81,0.05) 0%, transparent 55%); }  .research-inner { max-width: 1100px; margin: 0 auto; position: relative; }  .research-header { text-align: center; max-width: 700px; margin: 0 auto 72px; }  .research-header .section-eyebrow { color: var(--gold); }  .research-header .section-heading { color: var(--white); }  .research-header p { font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.58); line-height: 1.8; }  .cqu-callout { background: rgba(255,255,255,0.05); border: 1px solid rgba(200,169,81,0.2); border-radius: 20px; padding: 36px 40px; display: flex; align-items: center; gap: 32px; margin-bottom: 56px; }  .cqu-logo-block { flex-shrink: 0; text-align: center; padding: 20px 28px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; }  .cqu-logo-sub { font-size: 10px; font-weight: 400; color: rgba(255,255,255,0.45); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 4px; }  .cqu-callout-text h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 8px; }  .cqu-callout-text p { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.6); line-height: 1.75; }  .research-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }  .research-stat { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 18px; padding: 32px 28px; position: relative; overflow: hidden; transition: background 0.2s, border-color 0.2s, transform 0.25s; }  .research-stat:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); transform: translateY(-3px); }  .research-stat::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); }  .research-stat-num { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(36px, 4vw, 52px); font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 12px; }  .research-stat-label { font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.78); line-height: 1.55; margin-bottom: 10px; }  .research-stat-source { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.38); }   /* WHAT YOU BUILD */  .builds-section { background: var(--white); padding: 100px 56px; }  .builds-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }  .builds-text .section-heading { margin-bottom: 14px; }  .pillars { display: flex; flex-direction: column; gap: 0; }  .pillar { display: flex; align-items: flex-start; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--border-lt); transition: transform 0.2s; }  .pillar:first-child { padding-top: 0; }  .pillar:last-child { border-bottom: none; padding-bottom: 0; }  .pillar:hover { transform: translateX(4px); }  .pillar-icon { width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0; background: var(--navy-pale); border: 1px solid rgba(20,33,61,0.1); display: flex; align-items: center; justify-content: center; }  .pillar-title { font-family: 'Playfair Display', Georgia, serif; font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 5px; }  .pillar-body { font-size: 14px; font-weight: 300; color: var(--text-body); line-height: 1.7; }   /* STAT BAND */  .stat-band { background: var(--navy-mid); padding: 72px 56px; }  .stat-band-inner { max-width: 1100px; margin: 0 auto; }  .stat-band-label { font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); 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(255,255,255,0.1); }  .stat-num { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(30px, 3.5vw, 46px); font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 10px; }  .stat-desc { font-size: 13px; font-weight: 400; line-height: 1.55; color: rgba(255,255,255,0.62); margin-bottom: 6px; }  .stat-source { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.32); }   /* WHAT CONFIDENCE LOOKS LIKE */  .programme-section { background: var(--offwhite); padding: 100px 56px; }  .programme-inner { max-width: 1100px; margin: 0 auto; }  .programme-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }  .programme-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }  .programme-card { background: var(--white); border-radius: 20px; border: 1px solid var(--border-lt); padding: 36px 32px; position: relative; overflow: hidden; transition: box-shadow 0.25s, transform 0.25s; }  .programme-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }  .programme-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--navy); }  .programme-num { font-family: 'Playfair Display', Georgia, serif; font-size: 56px; font-weight: 800; color: var(--navy); opacity: 0.08; line-height: 1; margin-bottom: -12px; }  .programme-icon { width: 44px; height: 44px; border-radius: 11px; background: var(--navy-pale); border: 1px solid rgba(20,33,61,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }  .programme-title { font-family: 'Playfair Display', Georgia, serif; font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }  .programme-body { font-size: 14px; font-weight: 300; line-height: 1.75; color: var(--text-body); }   /* QUOTE */  .quote-band { background: var(--navy-pale); padding: 72px 56px; text-align: center; border-top: 1px solid rgba(20,33,61,0.08); border-bottom: 1px solid rgba(20,33,61,0.08); }  .quote-mark { font-family: 'Playfair Display', Georgia, serif; font-size: 80px; line-height: 0.5; color: var(--navy); opacity: 0.2; 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(--navy); letter-spacing: 0.06em; opacity: 0.6; }   /* BRIDGE */  .bridge-section { background: var(--white); 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(--offwhite); border-radius: 20px; border: 1px solid var(--border-lt); padding: 40px; display: flex; flex-direction: column; gap: 20px; }  .bridge-tier { display: flex; align-items: center; gap: 14px; padding: 18px 20px; border-radius: 12px; background: var(--white); border: 1px solid var(--border-lt); cursor: default; }  .bridge-tier-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }  .dot-compliance { background: var(--sage-dark); }  .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: var(--offwhite); border-color: var(--border-lt); opacity: 0.7; }  .bridge-tier.active-tier { background: rgba(20,33,61,0.06); border-color: rgba(20,33,61,0.25); }  .bridge-tier.active-tier .bridge-tier-name { color: var(--navy); }   /* TESTIMONIAL */  .testi-section { background: var(--offwhite); padding: 100px 56px; text-align: center; }  .testi-section .section-eyebrow { color: var(--navy); }  .testi-section .section-heading { color: var(--text-dark); margin-bottom: 8px; }  .testi-rule { width: 40px; height: 2px; background: var(--navy); margin: 12px auto 48px; }  .testi-card { background: var(--white); 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(--navy); opacity: 0.2; 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% 70% at 50% 50%, rgba(200,169,81,0.07) 0%, transparent 70%); }  .cta-section > * { position: relative; }  .cta-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.45); 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.52); 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 { 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, .builds-section, .programme-section, .research-section, .bridge-section, .testi-section, .stat-band, .cta-section { padding: 60px 24px !important; }
  .distinction-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .builds-inner { grid-template-columns: 1fr !important; gap: 40px !important; }
  .programme-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .research-stats { grid-template-columns: 1fr 1fr !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 520px"] { grid-template-columns: 1fr !important; }
  div[style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .stat-band-grid, .research-stats { grid-template-columns: 1fr !important; }
  .stat-item:not(:last-child)::after { display: none; }
  .hero-content { padding: 40px 16px !important; }
}
