/* ==========================================================================
   Comma Advisory — shared design system
   Tokens + fonts: spec/design-system-handover.md
   Charcoal #2E2E2E (not #2A2A2A) · Paper #F7F4ED · Gold ramp E6C200/C9A800/A68900 · Deep gold #8A6E04
   ========================================================================== */

@font-face {
  font-family: 'Inter';
  src: url('/fonts/InterVariable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Source Serif 4';
  src: url('/fonts/SourceSerif4-Variable.woff2') format('woff2');
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --charcoal: #2E2E2E;
  --charcoal-soft: #383735;
  --charcoal-deep: #222222;
  --charcoal-deeper: #1c1c1c;
  --paper: #F7F4ED;
  --paper-card: #FCFAF4;
  --paper-band: #EFEADF;
  --paper-tint: #F1ECE1;
  --off-white: #F5F5F0;
  --off-white-2: #F7F5EF;
  --gold-light: #E6C200;
  --gold: #C9A800;
  --gold-dark: #A68900;
  --gold-deep: #8A6E04;
  --ink-body: #4a473f;
  --ink-muted: #6b675d;
  --ink-faint: #9a978d;
  --font-sans: 'Inter', -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --font-serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --max-width: 1120px;
  --max-width-wide: 1280px;
  --pad-inline: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--charcoal);
  font-family: var(--font-serif);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--gold-deep); text-decoration: none; }
a:hover { color: var(--charcoal); }
::selection { background: var(--gold); color: var(--charcoal); }
h1, h2, h3, h4 { font-family: var(--font-sans); }
button { font-family: inherit; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--gold); color: var(--charcoal);
  font-family: var(--font-sans); font-weight: 700; font-size: 14px;
  padding: 12px 18px; transition: top .16s ease;
}
.skip-link:focus { top: 12px; }

/* ==========================================================================
   Buttons / links
   ========================================================================== */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--charcoal);
  background: var(--gold);
  padding: 19px 40px;
  border: none;
  cursor: pointer;
  transition: background .16s ease, opacity .16s ease;
  font-size: 15px;
}
.btn:hover, .btn:focus-visible { background: var(--gold-dark); color: var(--charcoal); }

.btn--ghost {
  color: var(--off-white);
  background: transparent;
  border: 1.5px solid var(--gold);
}
.btn--ghost:hover, .btn--ghost:focus-visible { background: var(--gold); color: var(--charcoal); }

.link-underline {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--off-white-2);
  border-bottom: 1px solid rgba(201,168,0,0.6);
  padding-bottom: 3px;
  transition: color .16s ease, border-color .16s ease;
}
.link-underline:hover, .link-underline:focus-visible { color: #ffffff; border-color: var(--gold); }

.link-gold {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--gold-deep);
  border-bottom: 1px solid rgba(138,110,4,0.35);
  padding-bottom: 2px;
  transition: color .16s ease, border-color .16s ease;
}
.link-gold:hover, .link-gold:focus-visible { color: var(--charcoal); border-color: var(--gold); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ==========================================================================
   Nav
   ========================================================================== */
.site-nav {
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  padding: 18px var(--pad-inline);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-sans);
  position: relative;
  z-index: 100;
}
.site-nav__brand {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: var(--off-white);
  flex-shrink: 0;
}
.site-nav__brand .comma { color: var(--gold); }

.site-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: #b8b3a5;
  padding: 6px 0;
}
.nav-link:hover, .nav-link:focus-visible { color: var(--off-white); }
.nav-link[aria-current="page"] { color: var(--off-white); }

.nav-dropdown { position: relative; }
.nav-dropdown__toggle {
  font-size: 14px;
  font-weight: 600;
  color: #b8b3a5;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 0;
}
.nav-dropdown__toggle:hover, .nav-dropdown__toggle:focus-visible { color: var(--off-white); }
.nav-dropdown__toggle .caret { font-size: 9px; color: var(--gold); transition: transform .16s ease; }
.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 14px);
  left: -16px;
  min-width: 230px;
  background: var(--charcoal-soft);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 44px rgba(0,0,0,0.4);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.nav-dropdown__eyebrow {
  padding: 6px 14px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8f8b80;
}
.nav-dropdown__item {
  display: block;
  padding: 11px 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: #d8d5cc;
}
.nav-dropdown__item:hover, .nav-dropdown__item:focus-visible { background: var(--charcoal); color: var(--gold); }

@media (hover: hover) {
  .nav-dropdown:hover .nav-dropdown__menu,
  .nav-dropdown:focus-within .nav-dropdown__menu {
    opacity: 1; visibility: visible; transform: translateY(0);
  }
}
.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown.is-open .nav-dropdown__toggle .caret { transform: rotate(180deg); }

.nav-cta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--charcoal);
  background: var(--gold);
  padding: 11px 18px;
}
.nav-cta:hover, .nav-cta:focus-visible { background: var(--gold-dark); color: var(--charcoal); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--off-white);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-drawer { display: none; }

/* Mobile nav breakpoint */
@media (max-width: 860px) {
  .site-nav__links.desktop-links { display: none; }
  .nav-hamburger { display: flex; }

  .mobile-drawer {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 90;
    background: var(--charcoal);
    padding: 90px 28px 40px;
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .24s ease;
  }
  .mobile-drawer.is-open { transform: translateX(0); }

  .mobile-drawer .nav-link,
  .mobile-drawer .nav-dropdown__toggle {
    font-size: 20px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    width: 100%;
    justify-content: space-between;
    color: var(--off-white);
  }
  .mobile-drawer .nav-dropdown__menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,0.03);
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height .22s ease;
  }
  .mobile-drawer .nav-dropdown.is-open .nav-dropdown__menu {
    max-height: 400px;
    padding: 4px 0 12px 16px;
  }
  .mobile-drawer .nav-dropdown__item { font-size: 16px; padding: 12px 8px; }
  .mobile-drawer .nav-cta {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    padding: 16px 24px;
  }
  body.nav-open { overflow: hidden; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 74px);
  overflow: hidden;
  background: var(--charcoal-deeper);
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('/assets/Comma-Advisory-hero-image2.webp');
  background-size: cover;
  background-position: 60% center;
  filter: grayscale(100%) contrast(1.1);
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(20,20,20,0.94) 0%, rgba(24,24,24,0.72) 32%, rgba(28,28,28,0.12) 58%, rgba(28,28,28,0.4) 100%),
    linear-gradient(to top, rgba(18,18,18,0.7) 0%, rgba(28,28,28,0) 42%);
}
.hero__inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: clamp(64px,8vw,120px) clamp(28px,6vw,104px);
}
.hero__content { max-width: 660px; }
.hero__eyebrow {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: clamp(40px,5vw,60px);
}
.hero__eyebrow-rule { width: 52px; height: 2px; background: var(--gold); flex-shrink: 0; margin-top: 9px; }
.hero__eyebrow-text {
  font-family: var(--font-sans);
  font-size: 14px; font-weight: 600; line-height: 1.6;
  color: #c8c3b6; max-width: 400px;
}
.hero__title {
  font-family: var(--font-sans);
  font-size: clamp(56px,8.4vw,128px);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -3.5px;
  color: var(--off-white-2);
  margin: 0 0 clamp(30px,3.4vw,44px);
  max-width: 13ch;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}
.hero__sub {
  font-family: var(--font-serif);
  font-size: clamp(19px,1.9vw,25px);
  line-height: 1.6;
  color: #e2ded4;
  max-width: 540px;
  margin: 0 0 clamp(44px,5vw,60px);
  text-wrap: pretty;
  text-shadow: 0 1px 20px rgba(0,0,0,0.55);
}
.hero__ctas {
  display: flex;
  align-items: center;
  gap: clamp(24px,3vw,40px);
  flex-wrap: wrap;
  font-family: var(--font-sans);
}
.hero__ctas .btn { padding: 19px 40px; font-size: 15px; }
.hero__tagline {
  position: absolute;
  bottom: 28px;
  right: clamp(20px,5vw,48px);
  z-index: 2;
  font-family: var(--font-serif);
  font-size: 16px; line-height: 1.45;
  color: rgba(245,245,240,0.6);
}
@media (max-width: 640px) {
  .hero__tagline { display: none; }
}

/* ==========================================================================
   Journey / stage router
   ========================================================================== */
.journey {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(44px,6vw,88px) var(--pad-inline) clamp(56px,8vw,104px);
  scroll-margin-top: 24px;
}
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 20px;
}
.journey__intro { max-width: 820px; margin-bottom: clamp(36px,4vw,52px); }
.journey__title {
  font-family: var(--font-sans);
  font-size: clamp(38px,5vw,68px);
  font-weight: 800; line-height: 0.98; letter-spacing: -2px;
  color: var(--charcoal);
  margin: 0 0 22px;
  text-wrap: balance;
}
.journey__sub {
  font-family: var(--font-serif);
  font-size: clamp(18px,1.9vw,23px); line-height: 1.5;
  color: var(--ink-body);
  margin: 0 0 18px; max-width: 660px;
  text-wrap: pretty;
}
.journey__note { font-size: 15px; line-height: 1.6; color: var(--ink-muted); margin: 0; max-width: 600px; }

.rhythm-band {
  background: var(--charcoal);
  color: var(--off-white);
  padding: clamp(20px,2.6vw,28px) clamp(24px,4vw,44px);
  margin-bottom: clamp(28px,3vw,40px);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
  align-items: baseline;
}
.rhythm-band span {
  font-family: var(--font-sans);
  font-size: clamp(16px,2vw,23px);
  font-weight: 800;
  letter-spacing: -0.3px;
}
.rhythm-band .is-gold { color: var(--gold); }

.stage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
@media (max-width: 640px) {
  .stage-grid { grid-template-columns: 1fr; }
}

.stage-card {
  position: relative;
  background: var(--paper-card);
  border: 1px solid rgba(46,46,46,0.12);
  border-top: 3px solid var(--gold);
  box-shadow: 0 6px 20px rgba(46,46,46,0.08);
  padding: 32px 30px 28px;
  display: flex;
  flex-direction: column;
  color: var(--charcoal);
  cursor: pointer;
  outline: none;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.stage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 46px rgba(46,46,46,0.15);
  border-color: var(--gold);
}
.stage-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 0 0 3px rgba(201,168,0,0.5);
  border-color: var(--gold);
  outline: none;
}
.stage-card__kicker {
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
}
.stage-card__title {
  font-family: var(--font-sans);
  font-size: clamp(23px,2.4vw,28px); font-weight: 800; line-height: 1.08; letter-spacing: -0.6px;
  color: var(--charcoal);
  margin: 0 0 16px;
}
.stage-card__body { font-size: 16px; line-height: 1.55; color: var(--ink-body); margin: 0 0 22px; flex: 1; text-wrap: pretty; }
.stage-card__tagline { font-family: var(--font-sans); font-size: 16.5px; font-weight: 700; line-height: 1.3; color: var(--charcoal); margin-bottom: 18px; }
.stage-card__route {
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 14px;
}
.stage-btn {
  display: block;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 14px; font-weight: 700; letter-spacing: 0.3px;
  color: var(--gold-deep);
  background: transparent;
  border: 1.5px solid var(--gold);
  padding: 14px 18px;
  transition: background .16s ease, color .16s ease;
}
.stage-card:hover .stage-btn,
.stage-card:focus-visible .stage-btn {
  background: var(--gold);
  color: var(--charcoal);
}

.journey__footnote { font-size: 15px; line-height: 1.6; color: var(--ink-muted); margin: 28px 0 0; max-width: 620px; }
.journey__footnote a { color: var(--gold-deep); border-bottom: 1px solid rgba(138,110,4,0.35); }
.journey__footnote a:hover { color: var(--charcoal); border-color: var(--gold); }

/* ==========================================================================
   The real problem (dark band)
   ========================================================================== */
.problem-band {
  position: relative;
  background: var(--charcoal);
  color: var(--off-white);
  overflow: hidden;
}
.problem-band__photo {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 38%; min-width: 300px;
  background-image: url('/assets/pexels-karola-g-6334193.webp');
  background-size: cover;
  background-position: 60% 40%;
  filter: grayscale(100%) contrast(1.1);
  transform: scaleX(-1);
}
.problem-band__scrim {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 48%; min-width: 360px;
  background: linear-gradient(to right, var(--charcoal) 0%, rgba(46,46,46,0.7) 40%, rgba(46,46,46,0) 100%);
}
.problem-band__inner {
  position: relative; z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(64px,9vw,128px) clamp(24px,5vw,64px);
}
.problem-band__content { max-width: 660px; }
.problem-band__title {
  font-family: var(--font-sans);
  font-size: clamp(28px,3.6vw,46px); font-weight: 800; line-height: 1.08; letter-spacing: -1px;
  color: var(--off-white);
  margin: 0 0 40px;
  text-wrap: balance;
}
.problem-band__body {
  font-size: clamp(17px,1.7vw,20px); line-height: 1.75; color: #d8d5cc;
  display: flex; flex-direction: column; gap: 24px;
}
.problem-band__body p { margin: 0; }
.problem-band__punch {
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: clamp(16px,1.6vw,19px);
  font-weight: 600;
}

/* ==========================================================================
   How Comma helps
   ========================================================================== */
.helps-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(56px,8vw,110px) var(--pad-inline);
}
.helps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(40px,6vw,72px);
  align-items: center;
}
.helps-lede { font-size: clamp(18px,1.9vw,23px); line-height: 1.55; color: var(--charcoal); margin: 0 0 20px; text-wrap: pretty; }
.helps-body { font-size: 16px; line-height: 1.7; color: var(--ink-body); margin: 0; }
.helps-photo {
  position: relative;
  margin-top: clamp(28px,3vw,40px);
  aspect-ratio: 16/10;
  background-image: url('/assets/abt-img-scaled.webp');
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) contrast(1.1);
}
.helps-list-label { font-family: var(--font-sans); font-size: 13px; font-weight: 600; color: var(--ink-muted); margin-bottom: 20px; }
.helps-list { display: flex; flex-direction: column; }
.helps-list-item {
  display: flex; gap: 16px; padding: 18px 0;
  border-top: 1px solid rgba(46,46,46,0.12);
}
.helps-list-item:last-child { border-bottom: 1px solid rgba(46,46,46,0.12); }
.helps-list-item__dot { flex-shrink: 0; width: 8px; height: 8px; background: var(--gold); margin-top: 8px; }
.helps-list-item p { margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--ink-body); }
.helps-list-item b { font-family: var(--font-sans); font-weight: 700; color: var(--charcoal); }
.helps-footnote { font-size: 15px; line-height: 1.6; color: var(--ink-muted); margin: 24px 0 0; }

/* ==========================================================================
   Report preview
   ========================================================================== */
.report-section {
  background: var(--paper-band);
  border-top: 1px solid rgba(46,46,46,0.08);
  border-bottom: 1px solid rgba(46,46,46,0.08);
}
.report-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(56px,8vw,110px) var(--pad-inline);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(40px,5vw,64px);
  align-items: center;
}
.report-lede { font-size: clamp(18px,1.9vw,23px); line-height: 1.5; color: var(--charcoal); margin: 0 0 18px; text-wrap: pretty; }
.report-body { font-size: 16px; line-height: 1.7; color: var(--ink-body); margin: 0; }

.report-card-wrap { position: relative; }
.report-card-wrap::before {
  content: "";
  position: absolute; top: -14px; left: -14px; width: 80px; height: 80px;
  background: var(--gold); z-index: -1;
}
.report-card {
  background: var(--paper-card);
  border-top: 4px solid var(--gold);
  box-shadow: 0 24px 60px rgba(46,46,46,0.16);
  font-family: var(--font-sans);
}
.report-card__head {
  padding: 22px 26px;
  border-bottom: 1px solid rgba(46,46,46,0.10);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.report-card__brand { font-size: 15px; font-weight: 800; color: var(--charcoal); }
.report-card__brand .comma { color: var(--gold); }
.report-card__kind { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-muted); margin-top: 2px; }
.report-card__badge {
  font-size: 9px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-deep);
  border: 1px solid rgba(138,110,4,0.4);
  padding: 5px 9px;
}
.report-card__body { padding: 26px 26px 28px; }
.report-card__label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 16px; }
.report-card__rows { display: flex; flex-direction: column; gap: 15px; margin-bottom: 28px; }
.report-card__rows:last-of-type { margin-bottom: 0; }
.report-row { display: flex; align-items: center; gap: 14px; }
.report-row__dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.report-row__dot--up { background: #4f8a3a; }
.report-row__dot--down-a { background: #c25b2e; }
.report-row__dot--down-b { background: #d8a72b; }
.report-row__text { font-size: 15.5px; color: var(--charcoal); flex: 1; line-height: 1.35; }
.report-row__value { font-size: 15.5px; font-weight: 800; }
.report-row__value--up { color: #3f6f30; }
.report-row__value--down-a { color: #a8461f; }
.report-row__value--down-b { color: #93701a; }
.report-card__foot {
  padding: 16px 26px;
  background: var(--paper-tint);
  border-top: 1px solid rgba(46,46,46,0.08);
  display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: center; justify-content: space-between;
}
.report-card__score { display: flex; align-items: baseline; gap: 8px; }
.report-card__score-label { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-muted); }
.report-card__score-value { font-size: 15px; font-weight: 800; color: var(--charcoal); }
.report-card__score-value span { font-size: 11px; font-weight: 600; color: var(--ink-muted); }
.report-card__range { text-align: right; }
.report-card__range-label { font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 2px; }
.report-card__range-value { font-size: 18px; font-weight: 900; color: var(--charcoal); letter-spacing: -0.3px; }
.report-card__range-value .to { color: var(--ink-muted); font-weight: 600; }
.report-card__disclaimer { padding: 14px 26px 18px; }
.report-card__disclaimer p { margin: 0 0 8px; font-family: var(--font-serif); font-size: 12px; line-height: 1.5; color: var(--ink-muted); }
.report-card__disclaimer p:last-child { margin: 0; font-size: 11px; color: var(--ink-muted); }

/* ==========================================================================
   Founder
   ========================================================================== */
.founder-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(56px,8vw,110px) var(--pad-inline);
  scroll-margin-top: 24px;
}
.founder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(36px,5vw,64px);
  align-items: center;
}
.founder-photo-wrap { position: relative; max-width: 300px; }
.founder-photo-wrap::before {
  content: "";
  position: absolute; top: -10px; left: -10px; width: 64px; height: 64px;
  background: var(--gold); z-index: -1;
}
.founder-photo {
  aspect-ratio: 1/1;
  background-image: url('/assets/Hetas-Website-pic.webp');
  background-size: cover;
  background-position: center top;
  filter: grayscale(100%) contrast(1.05);
}
.founder-copy { grid-column: span 2; min-width: 280px; }
.founder-lede { font-size: clamp(18px,1.9vw,23px); line-height: 1.55; color: var(--charcoal); margin: 0 0 24px; text-wrap: pretty; }
@media (max-width: 640px) {
  .founder-copy { grid-column: span 1; }
}

/* ==========================================================================
   Bootcamps strip
   ========================================================================== */
.bootcamps-strip {
  background: var(--paper-band);
  border-top: 1px solid rgba(46,46,46,0.08);
  border-bottom: 1px solid rgba(46,46,46,0.08);
}
.bootcamps-strip__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(40px,5vw,64px) clamp(24px,5vw,64px);
  display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between;
}
.bootcamps-strip__copy { max-width: 640px; }
.bootcamps-strip__eyebrow {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
}
.bootcamps-strip__text { font-size: clamp(16px,1.7vw,20px); line-height: 1.55; color: var(--ink-body); margin: 0; }
.bootcamps-strip__cta {
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  padding: 16px 28px;
  transition: background .16s ease, color .16s ease;
}
.bootcamps-strip__cta:hover, .bootcamps-strip__cta:focus-visible { background: var(--gold-deep); color: var(--paper); }

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta {
  background: var(--charcoal);
  color: var(--off-white);
  border-top: 1px solid rgba(255,255,255,0.08);
  scroll-margin-top: 24px;
}
.final-cta__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(64px,9vw,128px) clamp(24px,5vw,64px);
  text-align: center;
}
.final-cta__title {
  font-family: var(--font-sans);
  font-size: clamp(28px,3.6vw,46px); font-weight: 800; line-height: 1.1; letter-spacing: -1px;
  color: var(--off-white);
  margin: 0 0 36px;
  text-wrap: balance;
}
.final-cta__actions {
  display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; align-items: center;
  font-family: var(--font-sans);
}
.final-cta__actions .btn { font-size: 14px; padding: 17px 34px; letter-spacing: 0.5px; }
.final-cta__actions .btn:hover { opacity: 0.88; background: var(--gold); }
.final-cta__link {
  font-size: 14px; font-weight: 600; color: var(--gold);
  border-bottom: 1px solid rgba(201,168,0,0.4); padding-bottom: 2px;
  transition: color .16s ease, border-color .16s ease;
}
.final-cta__link:hover, .final-cta__link:focus-visible { color: var(--off-white); border-color: var(--off-white); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--charcoal-deep);
  color: #cfcdc6;
  font-family: var(--font-sans);
}
.site-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(44px,6vw,72px) clamp(24px,5vw,64px) 40px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 36px 40px;
  margin-bottom: 40px;
}
.site-footer__brand { font-size: 16px; font-weight: 800; letter-spacing: 0.5px; color: var(--off-white); margin-bottom: 16px; }
.site-footer__brand .comma { color: var(--gold); }
.site-footer__lede { font-size: 13px; line-height: 1.65; color: var(--ink-faint); margin: 0 0 10px; max-width: 340px; font-family: var(--font-serif); }
.site-footer__lede:last-of-type { margin-bottom: 20px; }
.site-footer__socials { display: flex; gap: 12px; }
.social-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.16);
  color: #cfcdc6;
  transition: color .16s ease, background .16s ease, border-color .16s ease;
}
.social-icon:hover, .social-icon:focus-visible { color: var(--charcoal); background: var(--gold); border-color: var(--gold); }

.site-footer__col { display: flex; flex-direction: column; gap: 12px; }
.site-footer__col-label {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: #77746c; margin-bottom: 2px;
}
.site-footer__col a { font-size: 13px; font-weight: 600; color: #cfcdc6; }
.site-footer__col a:hover, .site-footer__col a:focus-visible { color: var(--gold); }

.site-footer__legal {
  font-size: 11.5px; line-height: 1.7; color: #77746c; margin: 0;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  max-width: 720px; font-family: var(--font-serif);
}

/* ==========================================================================
   Loader
   ========================================================================== */
.loader {
  position: fixed; inset: 0; z-index: 300;
  background: var(--charcoal);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 22px;
  transition: opacity .5s ease, visibility .5s ease;
}
.loader[data-state="out"] { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__mark {
  font-family: var(--font-sans);
  font-weight: 800; letter-spacing: -1px;
  font-size: clamp(34px,7vw,68px);
  color: var(--off-white);
  display: flex; align-items: baseline; gap: 2px;
  opacity: 0; transform: translateY(14px);
  animation: loaderRiseIn .7s cubic-bezier(.2,.7,.2,1) .1s forwards;
}
.loader__mark .comma {
  color: var(--gold);
  display: inline-block;
  opacity: 0; transform: scale(.4) translateY(6px);
  animation: loaderCommaPop .5s cubic-bezier(.2,.8,.2,1) .5s forwards;
}
.loader__rule {
  width: 0; height: 2px; background: var(--gold);
  animation: loaderRuleGrow .6s ease .75s forwards;
}
.loader__tagline {
  font-family: var(--font-serif);
  font-size: clamp(14px,1.8vw,19px);
  color: #c8c3b6; letter-spacing: .3px;
  opacity: 0; transform: translateY(8px);
  animation: loaderRiseIn .7s ease .95s forwards;
}
@keyframes loaderRiseIn { to { opacity: 1; transform: translateY(0); } }
@keyframes loaderCommaPop { to { opacity: 1; transform: scale(1) translateY(0); } }
@keyframes loaderRuleGrow { to { width: clamp(60px,10vw,120px); } }

@media (prefers-reduced-motion: reduce) {
  .loader__mark, .loader__mark .comma, .loader__tagline { animation: none; opacity: 1; transform: none; }
  .loader__rule { animation: none; width: clamp(60px,10vw,120px); }
  .loader { transition: opacity .3s ease, visibility .3s ease; }
}

/* ==========================================================================
   Simple pages (thank-you, 404) — minimal header/footer, centred confirmation
   ========================================================================== */
.simple-page {
  min-height: 100vh; display: flex; flex-direction: column;
  background: var(--charcoal); color: var(--off-white);
}
.simple-header {
  padding: 22px var(--pad-inline);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.simple-page main {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: clamp(56px,10vw,120px) clamp(24px,6vw,64px);
}
.simple-page .mark { width: 56px; height: 2px; background: var(--gold); margin-bottom: 36px; }
.simple-page h1 {
  font-family: var(--font-sans);
  font-size: clamp(44px,7vw,88px); font-weight: 800; line-height: 0.95; letter-spacing: -2.5px;
  color: var(--off-white-2); margin: 0 0 26px;
}
.simple-page .lead { font-family: var(--font-serif); font-size: clamp(19px,2vw,25px); line-height: 1.55; color: #e2ded4; max-width: 520px; margin: 0 auto 18px; }
.simple-page .sub { font-size: 16px; line-height: 1.7; color: #b8b3a5; max-width: 480px; margin: 0 auto 44px; }
.simple-page .actions {
  display: flex; gap: clamp(20px,3vw,32px); flex-wrap: wrap; align-items: center; justify-content: center;
  font-family: var(--font-sans);
}
.simple-footer {
  padding: 22px var(--pad-inline) 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.simple-footer p { font-size: 11.5px; line-height: 1.7; color: #77746c; max-width: 640px; margin: 0 auto; font-family: var(--font-serif); }

/* 404 specifics */
.error-page h1 {
  font-family: var(--font-sans);
  font-size: clamp(64px,10vw,140px); font-weight: 800; line-height: 0.9; letter-spacing: -3px;
  color: var(--off-white-2); margin: 0 0 20px;
}
