/* ============================================================
   HRound Design System — light edition
   White / soft-blue surfaces, dark-navy text, rust accents.
   Footer is the only dark zone. Wordmark + table icon keep
   gold-with-rust-shadow as the brand stamp.
   ============================================================ */
:root {
  /* Surfaces */
  --bg:        #FFFFFF;
  --bg-soft:   #F4F7FB;       /* very light cool tint for section accents */
  --bg-tint:   #D8E6F0;       /* Blue Light — cards / chips */
  --bg-amber:  #FEF3DC;       /* soft amber — only for the programs banner */

  /* Accent — rust on buttons & general accents (unchanged) */
  --rust:      #C0522A;
  --rust-hi:   #D66640;       /* hover */
  --rust-deep: #9A4221;       /* shadow / press */

  /* Heading rust — slightly deeper, used only on h1/h2 main headings */
  --rust-heading: #B5451B;

  /* Text on light */
  --text:      #1A2535;       /* dark navy — primary text */
  --text-2:    #2E5070;       /* steel-dark — secondary */
  --text-3:    #4A7FA5;       /* steel-blue — tertiary / cert-page headings */
  --muted:     #7A90A8;       /* cool-gray — captions */

  /* Brand mark accent (used only on wordmark + table icon) */
  --warm-gold: #E8B84B;

  /* Footer (only dark zone) */
  --footer-bg:       #1A2535;
  --footer-text:     #D8E6F0;
  --footer-muted:    #7A90A8;
  --footer-hairline: #3A5068;

  /* Lines & elevation */
  --hairline:          rgba(46, 80, 112, 0.15);
  --hairline-2:        rgba(46, 80, 112, 0.25);
  --card-shadow:       0 6px 24px rgba(15, 26, 40, 0.08);
  --card-shadow-hover: 0 10px 30px rgba(15, 26, 40, 0.14);

  /* Fonts */
  --font-display: 'Big Shoulders Display', 'Arial Narrow', sans-serif;
  --font-body:    'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:    ui-monospace, 'SF Mono', Menlo, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; }
html, body { background: var(--bg); scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); }

::-webkit-scrollbar       { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: var(--text-3); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-2); }

a { color: inherit; }

/* ===== Global headings ============================================
   All main page headings (h1, h2 + their display-styled siblings)
   render in --rust-heading, with NO text-shadow / outline / stroke.
   Cert pages override this to steel blue further down. */
h1, h2,
.hero__h1,
.page-header__h1,
.section__h,
.values__h,
.join__h,
.founder__name,
.mv__h,
.program-card__title {
  text-shadow: none !important;
  -webkit-text-stroke: 0;
}

/* Home page hero — explicit shadow exception (Blue Light shadow under rust). */
.hero__h1 { text-shadow: 0.04em 0.04em 0 var(--bg-tint) !important; }

/* Inline override that keeps a span out of uppercasing (used for "PHRi"). */
.no-upper { text-transform: none !important; }

/* Rust accent for inline spans inside headings */
.accent-rust { color: var(--rust); }

/* ===== Brand wordmark — gold + rust shadow on every surface ===== */
.wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--warm-gold);
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-shadow: 0.04em 0.04em 0 var(--rust);
  line-height: 0.9;
}
.wordmark--27 { font-size: 27px; }
.wordmark--26 { font-size: 26px; }

/* ===== Buttons (unchanged per spec) ===== */
.btn {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 15px;
  cursor: pointer;
  padding: 15px 28px;
  border-radius: 11px;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  transition: transform .12s, box-shadow .12s, background .12s, color .12s, border-color .12s;
}
.btn--sm { font-size: 13px; padding: 10px 18px; }

.btn--primary {
  background: var(--rust);
  color: #FFFFFF;
  box-shadow: 4px 4px 0 var(--rust-deep);
}
.btn--primary:hover {
  background: var(--rust-hi);
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 var(--rust-deep);
}
.btn--primary:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--rust-deep);
}

.btn--ghost {
  background: transparent;
  color: var(--rust);
  border: 1.5px solid var(--rust);
}
.btn--ghost:hover {
  background: var(--rust);
  color: #FFFFFF;
  transform: translateY(-1px);
}

.btn--blue {
  background: var(--text-2);
  color: #FFFFFF;
  box-shadow: 4px 4px 0 var(--text);
}
.btn--blue:hover {
  background: var(--text-3);
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 var(--text);
}
.btn--blue:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--text);
}

.btn--white {
  background: #FFFFFF;
  color: var(--text);
  border: 1.5px solid var(--text);
  box-shadow: 4px 4px 0 rgba(26,37,53,0.18);
}
.btn--white:hover {
  background: var(--bg-soft);
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 rgba(26,37,53,0.18);
}
.btn--white:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 rgba(26,37,53,0.18);
}

/* ===== Nav ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 16px 56px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.nav__brand { text-decoration: none; display: flex; align-items: center; }
.nav__links { display: flex; gap: 26px; margin-left: 14px; }
.nav__links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color .15s;
}
.nav__links a:hover,
.nav__links a.is-active { color: var(--rust); }
.nav__right { margin-left: auto; display: flex; align-items: center; gap: 14px; }

/* Hamburger toggle — hidden on desktop, shown on mobile via media query */
.nav__toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--text);
}
.nav__toggle svg { display: block; }

.cta-short { display: none; }
.cta-long  { display: inline; }

/* ===== Social icons (light-surface default) ===== */
.social-icon {
  display: inline-flex;
  padding: 6px;
  line-height: 0;
  transition: transform .15s;
}
.social-icon:hover { transform: translateY(-1px); }
.social-icon svg {
  display: block;
  fill: var(--rust);
  transition: fill .15s;
}
.social-icon:hover svg { fill: var(--rust-hi); }
/* Footer is dark, so flip to gold there */
.footer .social-icon svg { fill: var(--warm-gold); }
.footer .social-icon:hover svg { fill: #F2CD6E; }
/* Founder section social icons — rust on hover per spec */
.founder__socials .social-icon svg { fill: var(--text-2); }
.founder__socials .social-icon:hover svg { fill: var(--rust-heading); }

/* ===== Hero ===== */
header#top {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding: 96px 56px 0;
}
.hero__decor-ring {
  position: absolute;
  top: -150px;
  right: -110px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  border: 1.5px solid rgba(192, 82, 42, 0.14);
  pointer-events: none;
}
.hero__decor-blob {
  position: absolute;
  top: 40px;
  right: 30px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(74, 127, 165, 0.10);
  filter: blur(8px);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(30px, 4vw, 64px);
  align-items: end;
  padding-bottom: clamp(48px, 6vw, 72px);
}
.hero__h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(52px, 7.4vw, 104px);
  line-height: 0.9;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.005em;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 18px;
}
.hero__eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.hero__sub p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
  color: var(--text-2);
  margin: 0 0 30px;
}
.hero__ctas { display: flex; gap: 13px; flex-wrap: wrap; }

/* ===== Pillars ===== */
.pillars-band {
  position: relative;
  z-index: 1;
  background: var(--bg-soft);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  margin-left: -56px;
  margin-right: -56px;
}
.pillars {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.pillar {
  padding: clamp(26px, 3vw, 38px) clamp(20px, 2.4vw, 34px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.pillar:first-child { border-left: 1px solid var(--hairline); }
.pillar + .pillar { border-left: 1px solid var(--hairline); }
.pillar:last-child { border-right: 1px solid var(--hairline); }
.pillar__num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);              /* steel blue — small accent variation */
  padding-top: 3px;
}
.pillar__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.pillar__desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-2);
}

/* ===== Sub-page header ===== */
.page-header {
  padding: 96px 56px clamp(36px, 5vw, 56px);
  background: var(--bg);
}
.page-header__inner { max-width: 1180px; margin: 0 auto; }
.page-header__eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust-heading);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.page-header__eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
}
.page-header__h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--rust-heading);
  letter-spacing: 0.005em;
  margin: 16px 0 0;
}

/* Programs hero two-color heading + italic tagline + dark ghost CTA */
.page-header__h1 .text-rust { color: var(--rust-heading); display: block; }
.page-header__h1 .text-dark { color: #1E1E30; display: block; }
.page-header__h1 .text-blue { color: var(--text-3); display: block; }
.page-header__tag {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--text-2);
  margin: 18px 0 0;
}
.page-header__cta { margin-top: clamp(22px, 3vw, 30px); }

.btn--ghost-dark {
  background: transparent;
  color: #1E1E30;
  border: 1.5px solid #1E1E30;
}
.btn--ghost-dark:hover {
  background: #1E1E30;
  color: #FFFFFF;
  transform: translateY(-1px);
}
.page-header__sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  color: var(--text-2);
  margin: 18px 0 0;
  max-width: 680px;
}

/* ===== Sections ===== */
.section { padding: clamp(64px, 7vw, 96px) 56px; }
.section--soft { background: var(--bg-soft); }
.section__inner { max-width: 1180px; margin: 0 auto; }

.section__eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);              /* steel blue — small accent variation */
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.section__eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
}
.section__h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 0.95;
  color: var(--rust-heading);
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin: 0 0 clamp(28px, 4vw, 44px);
}

/* ===== Cert-page heading override (steel blue) ===== */
body.cert-page .page-header__eyebrow,
body.cert-page .page-header__h1,
body.cert-page .section__eyebrow,
body.cert-page .section__h,
body.cert-page h1,
body.cert-page h2 {
  color: var(--text-3) !important;   /* Steel Blue #4A7FA5 */
}

/* ===== About-page heading override (steel blue — varies from rust) ===== */
body.about-page .page-header__h1,
body.about-page .page-header__eyebrow,
body.about-page #kristina .section__h {     /* "Founder" word — non-rust per request */
  color: var(--text-3) !important;
}

/* ===== Mission/Vision cards (about page) ===== */
.mv__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.mv__card {
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: clamp(30px, 3.4vw, 48px);
  scroll-margin-top: 80px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}
.mv__num {
  position: absolute;
  top: 22px;
  right: 26px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
}
.mv__eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.mv__eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
}
.mv__h {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--rust-heading);
}
.mv__body {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
  color: var(--text);
  margin: 0;
}

/* ===== Values list (about page) ===== */
.values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 48px;
  margin-top: clamp(20px, 3vw, 32px);
}
.value-item {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--hairline);
}
.value-item__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--text-3);              /* steel blue — small accent variation */
  min-width: 44px;
}
.value-item__text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(20px, 2.3vw, 28px);
  letter-spacing: -0.005em;
  color: var(--text);
  line-height: 1.25;
}

/* ===== Founder (about page — Kristina) ===== */
.founder {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}
.founder__media {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.founder__text { min-width: 0; }
.founder__photo--img {
  width: 280px;
  height: 320px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid var(--hairline);
  box-shadow: var(--card-shadow);
  display: block;
}

/* Welcoming video block — vertical 9:16 portrait (YouTube Short) */
.founder-video {
  margin-top: clamp(40px, 5vw, 56px);
  max-width: 320px;                /* portrait video — narrow column so it doesn't dominate */
}
.founder-video__eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.founder-video__eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
}
.founder-video__embed {
  position: relative;
  aspect-ratio: 9 / 16;            /* vertical/portrait */
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--hairline);
  box-shadow: var(--card-shadow);
}
.founder-video__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.founder-video__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
  background:
    repeating-linear-gradient(45deg,
      rgba(74, 127, 165, 0.04) 0 12px,
      transparent 12px 24px);
}
.founder__name {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.15;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--rust-heading);
  margin: 0 0 8px;
}
.founder__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 22px;
}
.founder__bio {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.75;
  color: var(--text);
  margin: 0 0 24px;
  max-width: 640px;
}
.founder__socials { display: flex; gap: 12px; align-items: center; }

/* ===== HRCI credibility block (programs page) ===== */
.hrci-logo {
  display: block;
  max-width: 180px;
  width: 100%;
  height: auto;
  margin: 0 auto clamp(22px, 3vw, 30px);
}
.hrci-intro {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.7;
  color: var(--text);
  text-align: center;
  max-width: 820px;
  margin: 0 auto clamp(36px, 5vw, 48px);
}
.hrci-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));   /* equal columns even when content wraps */
  gap: 18px;
  max-width: 820px;
  margin: 0 auto clamp(40px, 5vw, 56px);
}
.hrci-stat {
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 28px 18px;
  text-align: center;
  box-shadow: var(--card-shadow);
}
.hrci-stat__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1;
  color: var(--rust-heading);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.hrci-stat__label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-2);
}

/* Responsive 16:9 video — outer cap + inner padding-bottom trick.
   (padding-bottom % resolves against the parent's width, so the
   max-width has to live on a separate wrapper for the 56.25% to
   actually produce a 16:9 box.) */
.video-frame {
  max-width: 720px;
  margin: 0 auto clamp(48px, 6vw, 64px);
}
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 14px;
  background: var(--bg);
  box-shadow: var(--card-shadow);
}
.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 14px;
}

/* Stats stack 2×2 on mobile */
@media (max-width: 720px) {
  .hrci-stats { grid-template-columns: 1fr; gap: 14px; }     /* 3 stats → stack on mobile */
  .hrci-stat { padding: 22px 14px; }
}

/* ===== Programs page — banner / badge / cert path ===== */
.banner-amber {
  background: var(--bg-amber);
  color: var(--rust-heading);
  padding: 18px 24px;
  border-radius: 14px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.5;
  text-align: center;
  border: 1px solid rgba(181, 69, 27, 0.16);
}

/* High-end official-partner banner — dark navy panel with gold seal,
   gold eyebrow, and rust-gradient top trim. Replaces the amber callout. */
.banner-official {
  position: relative;
  margin: clamp(28px, 4vw, 40px) auto 0;
  max-width: 920px;
  padding: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 56px);
  background: var(--text);                         /* dark navy panel */
  border-radius: 18px;
  border: 1px solid rgba(232, 184, 75, 0.28);      /* faint gold rim */
  box-shadow: 0 18px 48px rgba(15, 26, 40, 0.22);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.banner-official::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    var(--warm-gold) 0%,
    var(--rust) 50%,
    var(--warm-gold) 100%);
}
.banner-official::after {
  /* Subtle gold radial glow behind the seal — adds the "premium" feel. */
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(232, 184, 75, 0.10) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.banner-official > * { position: relative; z-index: 1; }

.banner-official__seal {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(232, 184, 75, 0.10);
  border: 1.5px solid var(--warm-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-gold);
  box-shadow: 0 6px 22px rgba(232, 184, 75, 0.18);
}
.banner-official__eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--warm-gold);
  margin-bottom: 14px;
}
.banner-official__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.18;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  max-width: 740px;
  margin: 0 auto;
}
.banner-official__title em {
  font-style: normal;
  color: var(--warm-gold);
  text-shadow: 0.03em 0.03em 0 var(--rust);
}

/* Partnership statement — Work Sans, centered, two-accent-color */
.partnership {
  max-width: 980px;
  margin: clamp(28px, 4vw, 40px) auto 0;
  padding: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 36px);
  text-align: center;
}
.partnership__eyebrow {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-3);                /* steel blue */
  margin-bottom: clamp(20px, 3vw, 32px);
}
.partnership__title {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4.4vw, 56px);
  line-height: 1.18;
  letter-spacing: -0.018em;
  color: var(--text);
  margin: 0;
  text-transform: none;
  text-shadow: none;
  text-wrap: balance;
}
.partnership__accent-rust { color: var(--rust); }
.partnership__accent-blue { color: var(--text-3); }   /* matches eyebrow */

/* HRCI badge placeholder pill — star icon + label + divider + status */
#hrci-badge-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 24px);
  margin: clamp(8px, 1.5vw, 16px) auto 0;
  padding: 16px clamp(20px, 3vw, 28px);
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(15, 26, 40, 0.06);
  max-width: 680px;
  font-family: 'Work Sans', sans-serif;
}
/* The container is also a positioning context for the layout block below. */
.section--soft .section__inner > #hrci-badge-placeholder {
  display: flex;
  width: max-content;
  max-width: 100%;
}
.hrci-badge__icon {
  color: var(--text-3);
  display: inline-flex;
  flex-shrink: 0;
  line-height: 0;
}
.hrci-badge__label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
}
.hrci-badge__divider {
  width: 1px;
  align-self: stretch;
  background: var(--hairline);
  flex-shrink: 0;
}
.hrci-badge__status {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
}
@media (max-width: 560px) {
  #hrci-badge-placeholder,
  .section--soft .section__inner > #hrci-badge-placeholder {
    flex-direction: column;
    gap: 12px;
    padding: 20px 24px;
    text-align: center;
    width: 100%;
  }
  .hrci-badge__divider { display: none; }
}

.cert-path {
  margin: clamp(28px, 4vw, 40px) 0 clamp(36px, 5vw, 56px);
  padding: clamp(22px, 3vw, 30px);
  background: var(--bg-soft);
  border-radius: 14px;
  border: 1px solid var(--hairline);
}
.cert-path__text {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.65;
  color: var(--text);
  margin: 0 auto 22px;
  max-width: 820px;
  text-align: center;
}
.cert-path__flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cert-path__step {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 2.5vw, 32px);
  color: var(--rust-heading);
  text-transform: none;
  letter-spacing: 0.01em;
  padding: 8px 22px;
  background: var(--bg);
  border-radius: 12px;
  border: 1px solid var(--hairline);
}
.cert-path__arrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--text-3);
}

/* ===== Program cards ===== */
.programs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.program-card {
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  position: relative;
  min-height: 320px;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
a.program-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--rust);
}
.program-card__seal {
  width: 88px;
  height: 88px;
  object-fit: contain;
  margin-bottom: 4px;
}
.program-card__num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.06em;
}
.program-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 3.5vw, 48px);
  line-height: 0.95;
  text-transform: none;          /* keep aPHRi / PHRi / SPHRi exact capitalization */
  color: var(--rust-heading);
  letter-spacing: 0.005em;
}
.program-card__desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0;
  flex: 1;
}
.program-card__cta {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--rust);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.program-card--soon { cursor: not-allowed; }
.program-card--soon .program-card__title { color: var(--text-2); }
.program-card__chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rust);
  background: rgba(192, 82, 42, 0.10);
  padding: 6px 11px;
  border-radius: 999px;
  align-self: flex-start;
}

/* Top-right "Available Now" badge — filled rust, sits like a sticker. */
.program-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--rust);
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 3px 10px rgba(192, 82, 42, 0.28);
  z-index: 1;
}

/* ===== PHRi page — new design matching Programs page ============
   Hero: text + ghost-dark CTA on the left, seal floating on the right.
   Body sections use Work Sans titles for better readability. */
.phri-hero {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: clamp(24px, 3vw, 48px);
}
.phri-hero__text { min-width: 0; flex: 0 1 auto; }
.phri-hero__seal {
  width: clamp(140px, 14vw, 180px);
  height: auto;
  display: block;
  flex: 0 0 auto;
  margin-top: clamp(4px, 0.6vw, 8px);
}

.phri-block { margin-top: clamp(48px, 6vw, 72px); text-align: center; }
.phri-block:first-child { margin-top: 0; }
.phri-block__h {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
  text-transform: none;
  text-shadow: none;
  margin: 0 0 clamp(18px, 2.5vw, 26px);
  text-align: center;
}
.phri-block__lead {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.65;
  color: var(--text-2);
  margin: 0 auto clamp(20px, 3vw, 28px);
  max-width: 720px;
  text-align: center;
}

/* Eligibility: stacked list with indigo left accent */
.elig-list {
  max-width: 680px;
  margin: 0 auto;
}
.elig-item {
  border-left: 3px solid #6B6BAE;
  padding: 22px 28px;
  border-bottom: 1px solid var(--hairline);
  text-align: left;
}
.elig-item:last-child { border-bottom: none; }
.elig-item__text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.3;
  color: var(--text);
}
.elig-op { color: var(--rust); font-weight: 800; padding: 0 2px; }

/* Overview: text on the left, chart (bigger) on the right */
.phri-overview {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--card-shadow);
  text-align: left;
}
.phri-overview__text { min-width: 0; }
.phri-overview__lead {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.45;
  color: var(--text);
  margin: 0 0 14px;
}
.phri-overview__body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-2);
  margin: 0 0 22px;
}
.phri-overview__figure { margin: 0; text-align: center; }
.phri-overview__chart {
  width: 100%;
  max-width: 640px;            /* bigger so the percentages are legible */
  height: auto;
  display: block;
  margin: 0 auto;
}
.phri-overview__figure figcaption {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-3);
  margin-top: 12px;
  font-style: italic;
}

/* Inline PDF link with arrow icon */
.phri-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--rust);
  text-decoration: none;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 2px;
  transition: color .15s;
}
.phri-link:hover { color: var(--rust-hi); }

.phri-ctas {
  margin-top: clamp(40px, 5vw, 56px);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* "Program details TBA" callout — sits before the CTA */
.phri-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: clamp(40px, 5vw, 56px) 0 clamp(28px, 4vw, 36px);
  padding: 18px 22px;
  background: rgba(74, 127, 165, 0.08);
  border-left: 3px solid var(--text-3);
  border-radius: 10px;
  max-width: 760px;
}
.phri-note__icon {
  color: var(--text-3);
  flex-shrink: 0;
  display: inline-flex;
}
.phri-note__text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-2);
}

/* Colorful "Ready to start" launch callout — rust-tinted card with
   a bold date and supporting body line. Replaces the old plain text. */
.phri-launch {
  position: relative;
  margin: 0 0 clamp(24px, 3vw, 32px);
  padding: clamp(26px, 3.5vw, 36px) clamp(24px, 3vw, 36px);
  background: #FFFFFF;
  border: 1px solid rgba(192, 82, 42, 0.22);
  border-radius: 14px;
  text-align: center;
  overflow: hidden;
}
.phri-launch__date {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}
.phri-launch__label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rust);
}
.phri-launch__month {
  font-family: 'Work Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.05;
  color: var(--rust-heading);
  letter-spacing: -0.015em;
}
.phri-launch__body {
  position: relative;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}

/* Full Package — restructured: stat cards on top, feature pills below */
.phri-package-block { text-align: center; }

/* Header: eyebrow + headline + Full Package pill */
.phri-package-header {
  text-align: center;
  margin: 0 0 clamp(24px, 3vw, 36px);
}
.phri-package-header__eyebrow {
  display: inline-block;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 14px;
}
.phri-package-header__h {
  font-family: 'Work Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0 0 18px;
}
.phri-package-header__accent { color: var(--rust); }
.phri-package-header__tag {
  display: inline-block;
  font-family: 'Work Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(13px, 1.3vw, 15px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--rust);
  padding: 9px 22px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(192, 82, 42, 0.25);
  white-space: nowrap;
}

/* Top row: 4 big-number stat cards */
.phri-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 0 16px;
}
.phri-stat {
  position: relative;
  padding: clamp(24px, 3vw, 32px) 16px;
  background: #FFFFFF;
  border: 1px solid var(--hairline, rgba(26, 37, 53, 0.10));
  border-radius: 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 180px;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.phri-stat:hover {
  border-color: rgba(192, 82, 42, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 37, 53, 0.06);
}
.phri-stat__num {
  font-family: 'Work Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1;
  color: var(--rust);
  letter-spacing: -0.02em;
}
.phri-stat__label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--text-2);
  letter-spacing: 0.005em;
}
.phri-stat__pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  padding: 6px 12px;
  background: rgba(74, 127, 165, 0.12);
  border-radius: 999px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* Bottom rows: feature checkmark items, 2-column */
.phri-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.phri-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: #FFFFFF;
  border: 1px solid var(--hairline, rgba(26, 37, 53, 0.10));
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(15px, 1.45vw, 17px);
  color: var(--text);
  text-align: left;
}
.phri-features__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(74, 127, 165, 0.12);
  color: var(--text-3);
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .phri-stats { grid-template-columns: repeat(2, 1fr); }
  .phri-features { grid-template-columns: 1fr; }
  .phri-stat { min-height: 160px; }
}
@media (max-width: 480px) {
  .phri-stats { grid-template-columns: 1fr; }
  .phri-stat { min-height: 140px; padding: 22px 16px; }
}

/* Note line under the Full Package list — bold Work Sans, rust accent */
.phri-package__note {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: clamp(20px, 3vw, 28px) auto 0;
  padding: 14px 22px;
  background: var(--bg-amber);
  border: 1.5px solid var(--rust);
  border-radius: 999px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.45vw, 16px);
  line-height: 1.4;
  color: var(--rust-deep);
  letter-spacing: 0.005em;
}
.phri-package__note-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--rust);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}


/* Muted "program details TBA" line inside the launch callout */
.phri-launch__note {
  position: relative;
  font-family: var(--font-body);
  font-size: clamp(13px, 1.3vw, 15px);
  font-style: italic;
  line-height: 1.5;
  color: var(--text-3);
  margin: 14px 0 0;
}

/* PHRi page bottom contact CTA — two cards (Call + Telegram) */
.phri-contact__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: clamp(20px, 3vw, 28px);
}
.phri-contact-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: clamp(20px, 2.6vw, 26px);
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  box-shadow: var(--card-shadow);
  text-decoration: none;
  color: inherit;
  transition: transform .15s, box-shadow .15s, border-color .15s, background .15s;
}
.phri-contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--rust);
  background: rgba(192, 82, 42, 0.04);
}
.phri-contact-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(192, 82, 42, 0.10);
  color: var(--rust);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.phri-contact-card__label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--text);
  letter-spacing: -0.005em;
}
.phri-contact-card { position: relative; }

/* Desktop-only tooltip — shows the phone number on hover/focus.
   Hidden on touch devices (mobile carrier dialer opens directly on tap). */
@media (hover: hover) and (pointer: fine) {
  .phri-contact-card[data-phone]::after {
    content: attr(data-phone);
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    background: var(--text);
    color: #FFFFFF;
    padding: 8px 14px;
    border-radius: 8px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(15, 26, 40, 0.18);
    opacity: 0;
    pointer-events: none;
    transition: opacity .15s, transform .15s;
    z-index: 5;
  }
  .phri-contact-card[data-phone]::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(2px);
    border: 6px solid transparent;
    border-bottom-color: var(--text);
    opacity: 0;
    pointer-events: none;
    transition: opacity .15s;
    z-index: 5;
  }
  .phri-contact-card[data-phone]:hover::after,
  .phri-contact-card[data-phone]:focus-visible::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  .phri-contact-card[data-phone]:hover::before,
  .phri-contact-card[data-phone]:focus-visible::before {
    opacity: 1;
  }
}
.phri-contact__back {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-3);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .15s, border-color .15s;
}
.phri-contact__back:hover {
  color: var(--rust);
  border-bottom-color: currentColor;
}

@media (max-width: 720px) {
  .phri-contact__row { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .phri-hero { flex-direction: column; align-items: flex-start; gap: 14px; }
  .phri-hero__text { text-align: left; }
  .phri-hero__seal { width: 80px; margin-top: 0; }
  .phri-overview { grid-template-columns: 1fr; padding: 18px 12px; }
  .phri-overview__chart { max-width: 100%; }
  .phri-overview__text { text-align: center; }
  .phri-overview__text .phri-link { justify-content: center; }
}

/* ===== Individual cert-page header (seal + h1 side by side) ===== */
.cert-header {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 32px);
  flex-wrap: wrap;
}
.cert-header__seal {
  width: 132px;
  height: 132px;
  object-fit: contain;
  flex-shrink: 0;
}
.cert-header__text { flex: 1; min-width: 240px; }

/* ===== Cert-page content blocks (PHRi overview, exam format, weighting) ===== */
.cert-block {
  margin: clamp(36px, 5vw, 56px) 0;
}
.cert-block__h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0 0 clamp(16px, 2vw, 22px);
  color: var(--text-3);                     /* steel blue on cert pages */
}
.cert-block__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 44px);
  align-items: center;
}
.cert-block__body {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.75;
  color: var(--text);
  margin: 0;
}
.cert-block__figure {
  margin: 0;
  text-align: center;
}
.cert-block__chart {
  display: block;
  width: 100%;
  height: auto;
  max-width: 460px;
  margin: 0 auto;
  border-radius: 14px;
  background: var(--bg-soft);                /* shows even if image missing */
  border: 1px solid var(--hairline);
  padding: 12px;
}
.cert-block__figure figcaption {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-style: italic;
  color: var(--text-3);
  margin-top: 10px;
}

/* Exam format & length — labeled list */
.cert-stat-list {
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(20px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cert-stat-list li {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: clamp(14px, 2vw, 22px);
  padding: 16px 18px;
  background: var(--bg-soft);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  align-items: baseline;
}
.cert-stat-list__label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
}
.cert-stat-list__value {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.55;
  color: var(--text);
}
.cert-stat-list__value em {
  font-style: normal;
  color: var(--text-2);
  font-weight: 500;
}

.cert-block__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--rust);
  text-decoration: none;
  border-bottom: 1.5px solid var(--rust);
  padding-bottom: 2px;
  transition: color .15s, border-color .15s;
}
.cert-block__link:hover {
  color: var(--rust-hi);
  border-color: var(--rust-hi);
}

/* Weighting list (horizontal bars) */
.weighting-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.weighting-row {
  display: grid;
  grid-template-columns: 36px 1fr 220px 56px;
  align-items: center;
  gap: clamp(12px, 2vw, 20px);
  padding: 14px 18px;
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  transition: border-color .15s, transform .15s;
}
.weighting-row:hover {
  border-color: var(--text-3);
  transform: translateY(-1px);
}
.weighting-row__num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.06em;
}
.weighting-row__name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}
.weighting-row__bar {
  position: relative;
  height: 10px;
  border-radius: 999px;
  background: var(--bg-soft);
  overflow: hidden;
}
.weighting-row__fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, var(--rust) 0%, var(--rust-hi) 100%);
  border-radius: 999px;
}
.weighting-row__pct {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--rust-heading);
  text-align: right;
}

@media (max-width: 720px) {
  .cert-block__grid { grid-template-columns: 1fr; }
  .cert-stat-list li { grid-template-columns: 1fr; gap: 6px; }
  .weighting-row {
    grid-template-columns: 28px 1fr 60px;
    grid-template-areas:
      "num name  pct"
      "bar bar   bar";
    row-gap: 8px;
  }
  .weighting-row__num  { grid-area: num; }
  .weighting-row__name { grid-area: name; font-size: 14px; }
  .weighting-row__bar  { grid-area: bar; }
  .weighting-row__pct  { grid-area: pct; }
}

/* ===== Eligibility section ===== */
.eligibility {
  margin: clamp(28px, 4vw, 40px) 0;
  padding: clamp(24px, 3vw, 32px);
  background: var(--bg-soft);
  border-radius: 14px;
  border: 1px solid var(--hairline);
}
.eligibility__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 18px;
}
.eligibility__intro {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0 0 14px;
}
.eligibility ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.eligibility li {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.55;
  color: var(--text);
  padding-left: 28px;
  position: relative;
}
.eligibility li::before {
  content: "✓";
  color: var(--text-3);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  font-size: 17px;
}

/* ===== Newsletter / Pull up a chair (home) ===== */
.join {
  text-align: center;
  padding: clamp(58px, 7vw, 92px) 56px clamp(40px, 5vw, 64px);
  scroll-margin-top: 80px;
  background: var(--bg-soft);
}
.join__inner { max-width: 720px; margin: 0 auto; }
.join__table-wrap { display: flex; justify-content: center; }
.join__h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 52px;
  line-height: 0.95;
  color: var(--rust-heading);
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin: 24px 0 14px;
}
.join__sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
  color: var(--text-2);
  max-width: 520px;
  margin: 0 auto clamp(26px, 3vw, 34px);
}
.join__card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: clamp(22px, 3vw, 30px);
  box-shadow: var(--card-shadow);
}
.join__disclaimer {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-3);
  margin-top: 18px;
  text-align: left;
}

/* ===== Animated table SVG ===== */
.hr-table { display: block; overflow: visible; cursor: pointer; }
.hr-table .hr-table-float,
.hr-table .hr-leg,
.hr-table .hr-top {
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes hrLegRise { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes hrTopDrop { from { opacity: 0; transform: translateY(-26px); } to { opacity: 1; transform: translateY(0); } }
@keyframes hrFloat   { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

@media (prefers-reduced-motion: no-preference) {
  .hr-table[data-anim="build"] .hr-leg { opacity: 0; animation: hrLegRise .62s cubic-bezier(.2, .7, .25, 1) forwards; }
  .hr-table[data-anim="build"] .hr-leg-3 { animation-delay: .06s; }
  .hr-table[data-anim="build"] .hr-leg-1 { animation-delay: .18s; }
  .hr-table[data-anim="build"] .hr-leg-2 { animation-delay: .30s; }
  .hr-table[data-anim="build"] .hr-top   { opacity: 0; animation: hrTopDrop .58s cubic-bezier(.2, .7, .25, 1) forwards; animation-delay: .52s; }
  .hr-table[data-anim="build"] .hr-table-float { animation: hrFloat 3.2s ease-in-out 1.3s infinite; }
}

/* ===== Brevo form overrides ===== */
.sib-form,
.sib-form-container,
#sib-container,
#sib-form,
#sib-form .sib-input,
#sib-form .sib-form-block,
#sib-form .form__entry,
#sib-form .entry_block,
#sib-form .form__label-row,
#sib-form .entry__field {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
:where(.sib-form-message-panel) { display: none; }
:where(.sib-form-message-panel .sib-notification__icon) { width: 20px; height: 20px; }
.input--hidden { display: none !important; }

#sib-form {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
}
#sib-form .entry__field {
  display: flex !important;
  gap: 10px !important;
}

#EMAIL {
  flex: 1;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text) !important;
  background: var(--bg-soft) !important;
  border: 1px solid var(--hairline) !important;
  border-radius: 11px;
  padding: 14px 16px;
  outline: none;
  box-sizing: border-box;
  min-width: 0;
}
#EMAIL:focus { border-color: var(--rust) !important; }
#EMAIL::placeholder { color: var(--muted); }

button.subscribe {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 15px;
  cursor: pointer;
  padding: 15px 28px;
  border-radius: 11px;
  border: none;
  background: var(--rust);
  color: #FFFFFF;
  box-shadow: 4px 4px 0 var(--rust-deep);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  transition: transform .12s, box-shadow .12s, background .12s;
}
button.subscribe:hover {
  background: var(--rust-hi);
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 var(--rust-deep);
}
button.subscribe:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--rust-deep);
}
button.subscribe svg { width: 16px; height: 16px; fill: #FFFFFF; }

.sib-form-message-panel {
  font-family: var(--font-body);
  font-size: 14px;
  text-align: left;
  border-radius: 11px;
  padding: 12px 14px !important;
  margin-bottom: 12px !important;
}
.sib-form-message-panel__text {
  display: flex;
  align-items: center;
  gap: 10px;
}
#error-message {
  color: var(--rust-deep);
  background: rgba(192, 82, 42, 0.10) !important;
  border: 1px solid var(--rust) !important;
}
#error-message .sib-notification__icon { fill: var(--rust); flex-shrink: 0; }
#success-message {
  color: var(--text);
  background: rgba(74, 127, 165, 0.10) !important;
  border: 1px solid var(--text-3) !important;
}
#success-message .sib-notification__icon { fill: var(--text-3); flex-shrink: 0; }

/* ===== Footer (only dark zone) ===== */
.footer {
  background: var(--footer-bg);
  padding: clamp(36px, 5vw, 56px) clamp(20px, 3vw, 32px);   /* tighter side padding pulls logo closer to the left edge */
  color: var(--footer-text);
  border-top: 4px solid var(--rust);
}
.footer__row {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 48px);
}
/* Shared footer body text — one size, one rhythm across both columns. */
.footer__partner,
.footer__contact-line,
.footer__contact-link,
.footer__copyright {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--footer-text);
  letter-spacing: 0;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.footer__socials {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: -6px;     /* visually align icon edges with the wordmark */
}
/* Footer social icons — WHITE per spec, gold on hover. */
.footer .social-icon svg { fill: #FFFFFF; }
.footer .social-icon:hover svg { fill: var(--warm-gold); }

.footer__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  text-align: right;
}
.footer__contact-link {
  text-decoration: underline;
  text-decoration-color: rgba(216, 230, 240, 0.5);
  text-underline-offset: 3px;
  transition: color .15s, text-decoration-color .15s;
}
.footer__contact-link:hover {
  color: var(--warm-gold);
  text-decoration-color: var(--warm-gold);
}

/* Trademark disclaimer — sits ABOVE the dark footer, on the light page bg */
.trademark-disclaimer {
  background: var(--bg);
  border-top: 1px solid var(--hairline);
  padding: clamp(22px, 2.8vw, 28px) clamp(20px, 3vw, 32px);
}
.trademark-disclaimer p {
  max-width: 1240px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 720px) {
  .footer__row { flex-direction: column; align-items: flex-start; gap: 32px; }
  .footer__contacts { align-items: flex-start; text-align: left; }
  .trademark-disclaimer p { text-align: left; }
}

/* ===== Generic prose ===== */
.prose {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.7;
  color: var(--text);
  max-width: 720px;
}
.prose + .prose { margin-top: 18px; }

/* ===== Programs dropdown (desktop) ============================
   Hover (or keyboard focus) on the Programs link in the nav reveals
   a small menu of sub-sections. Pure CSS — no JS required. */
.nav__dropdown { position: relative; display: inline-flex; }
.nav__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav__dropdown-caret {
  font-size: 10px;
  line-height: 1;
  transition: transform .15s;
}
.nav__dropdown:hover .nav__dropdown-caret,
.nav__dropdown:focus-within .nav__dropdown-caret { transform: translateY(1px); }
.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: -14px;
  margin-top: 14px;
  display: none;
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 8px;
  box-shadow: var(--card-shadow);
  min-width: 280px;
  z-index: 31;
}
.nav__dropdown:hover > .nav__dropdown-menu,
.nav__dropdown:focus-within > .nav__dropdown-menu { display: block; }
/* Invisible hover-bridge so the menu doesn't close as the cursor
   moves from the trigger to the menu items. */
.nav__dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 18px;
}
.nav__dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background .12s, color .12s;
}
.nav__dropdown-menu a:hover {
  background: var(--bg-soft);
  color: var(--rust);
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero__grid    { grid-template-columns: 1fr; align-items: start; }
  .pillars       { grid-template-columns: 1fr; }
  .pillar:first-child { border-left: none; border-right: none; }
  .pillar + .pillar { border-left: none; border-top: 1px solid var(--hairline); }
  .pillar:last-child { border-left: none; border-right: none; }
  .programs__grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  nav { padding: 14px 22px; gap: 14px; flex-wrap: wrap; }
  .nav__toggle { display: inline-flex; }
  /* Mobile menu: collapsed by default, expands to a full-width panel when body.nav-open */
  .nav__links {
    order: 10;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-left: 0;
    width: 100%;
    display: none;
    padding: 8px 0 4px;
    border-top: 1px solid var(--hairline);
  }
  body.nav-open .nav__links { display: flex !important; }
  .nav__links > a,
  .nav__dropdown,
  .nav__dropdown-trigger {
    width: 100%;
    padding: 12px 4px;
    font-size: 16px;
  }
  .nav__dropdown { display: block; }
  .nav__dropdown-menu {
    position: static;
    display: block;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 6px 14px;
    min-width: 0;
  }
  .nav__dropdown::after { display: none; }
  .nav__dropdown-menu a {
    padding: 8px 4px;
    font-size: 15px;
    color: var(--text-2);
  }
  header#top, .section, .page-header, .join, .footer { padding-left: 24px; padding-right: 24px; }
  .pillars-band { margin-left: -24px; margin-right: -24px; }
  .mv__grid     { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr; }
  .founder      { grid-template-columns: 1fr; gap: 28px; }
  .founder__photo--img { width: 100%; max-width: 360px; height: auto; aspect-ratio: 7/8; }
  .cert-header { gap: 18px; }
  .cert-header__seal { width: 100px; height: 100px; }
  .cert-path__flow { flex-direction: column; gap: 8px; }
  .cert-path__arrow { transform: rotate(90deg); }
  .cert-path__step { width: 100%; max-width: 240px; text-align: center; }
}
@media (max-width: 560px) {
  nav { padding: 12px 18px; gap: 10px; }
  .cta-long  { display: none; }
  .cta-short { display: inline; }
  header#top { padding-top: 80px; padding-left: 20px; padding-right: 20px; }
  .pillars-band { margin-left: -20px; margin-right: -20px; }
  .section, .page-header, .join { padding-left: 20px; padding-right: 20px; }
  .mv__card, .join__card { padding: 22px; }
  .pillar { padding: 22px 20px; }
  .value-item { padding: 18px 0; gap: 14px; }
  #sib-form .entry__field { flex-direction: column !important; gap: 10px !important; }
  #sib-form .entry__field > button { width: 100% !important; justify-content: center !important; }
  .hero__ctas > a { flex: 1 1 100%; justify-content: center; }
  .program-card__title { font-size: 36px; }
  .banner-amber { font-size: 14px; padding: 16px 20px; }
}
@media (max-width: 380px) {
  nav { padding: 10px 14px; }
}

/* ===== PHRi hero — webinar CTA + quiz text link ===== */
.phri-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* PHRi hero — custom button overrides */
.phri-hero__ctas .btn--primary {
  background: #1E1E30;
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  padding: 13px 24px;
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
  box-shadow: none;
  letter-spacing: 0.02em;
}
.phri-hero__ctas .btn--primary:hover {
  background: #2a2a45;
  transform: translateY(-1px);
  box-shadow: none;
}
.phri-hero__ctas .btn--ghost-dark {
  background: transparent;
  color: #B5451B;
  border: 1.5px solid #B5451B;
  border-radius: 6px;
  padding: 13px 24px;
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
  box-shadow: none;
  letter-spacing: 0.02em;
}
.phri-hero__ctas .btn--ghost-dark:hover {
  background: rgba(181, 69, 27, 0.06);
  transform: translateY(-1px);
  box-shadow: none;
}

.phri-hero__quiz-link {
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-2);
}
.phri-hero__quiz-link a {
  color: #6B6BAE;
  font-weight: 400;
  text-decoration: underline;
  text-decoration-color: rgba(107, 107, 174, 0.5);
  text-underline-offset: 3px;
  transition: color .15s;
}
.phri-hero__quiz-link a:hover { color: #5555a0; }

/* Value statement paragraph in hero */
.phri-hero__value {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.65;
  color: var(--text-2);
  margin: 16px 0 24px;
  max-width: 540px;
}

/* ===== Who this program is for ===== */
.phri-who-block {
  background: #F4F4F8;
  border-radius: 16px;
  padding: clamp(32px, 4vw, 52px) clamp(24px, 3.5vw, 48px);
}
.phri-who__h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0 0 14px;
  text-align: center;
}
.phri-who__lead {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.6;
  color: var(--text-2);
  margin: 0 auto 28px;
  max-width: 560px;
  text-align: center;
}
.phri-who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.phri-who-card {
  background: #FFFFFF;
  border: 0.5px solid #DCDCE4;
  border-radius: 10px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.phri-who-card__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: #1E1E30;
  margin: 0 0 8px;
}
.phri-who-card__desc {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: #888;
  margin: 0;
}
@media (max-width: 480px) {
  .phri-who-grid { grid-template-columns: 1fr; }
  .phri-who__h { font-size: clamp(28px, 8vw, 40px); }
}

/* ===== Final CTA block ===== */
.phri-final-block { text-align: center; }
.phri-final-card {
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: clamp(36px, 5vw, 60px) clamp(28px, 4vw, 52px);
  text-align: center;
  box-shadow: var(--card-shadow);
  max-width: 760px;
  margin: 0 auto 32px;
}
.phri-final-card__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}
.phri-final-card__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}
.phri-final-card__date {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--rust);
}
.phri-final-card__h {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.25;
  color: var(--text);
  margin: 0 0 16px;
  text-transform: none;
  text-shadow: none !important;
}
.phri-final-card__body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.65;
  color: var(--text-2);
  margin: 0 0 28px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 560px) {
  .phri-final-card { padding: 28px 20px; }
  .phri-final-card .btn { white-space: normal; width: 100%; box-sizing: border-box; text-align: center; }
  .phri-final-card__body { text-align: left; }
}

.phri-contact-fallback__label {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-3);
  margin: 0 0 16px;
  text-align: center;
}

/* ===== Package description paragraph ===== */
.phri-package__desc {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.35vw, 15px);
  line-height: 1.65;
  color: var(--text-3);
  margin: 16px auto 0;
  max-width: 680px;
  text-align: center;
}

/* ===== Free Webinar block ===== */
.phri-webinar-block { text-align: left; }
.phri-webinar-card {
  background: var(--bg);
  border: 1px solid rgba(192, 82, 42, 0.15);
  border-top: 4px solid var(--rust);
  border-radius: 16px;
  padding: clamp(24px, 3.5vw, 40px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
}
.phri-webinar-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rust);
  background: var(--bg-amber);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.phri-webinar-card__badge::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--warm-gold);
  flex-shrink: 0;
}
.phri-webinar-card__h {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.25;
  color: var(--text);
  margin: 0 0 10px;
  text-transform: none;
  text-shadow: none !important;
}
.phri-webinar-card__body {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.35vw, 15.5px);
  line-height: 1.65;
  color: var(--text-2);
  margin: 0 0 18px;
  max-width: 560px;
}
.phri-webinar-card__details {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.phri-webinar-detail {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.phri-webinar-detail__label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-3);
}
.phri-webinar-detail__val {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--text);
}
.phri-webinar-card__cta { flex-shrink: 0; }

@media (max-width: 720px) {
  .phri-webinar-card { grid-template-columns: 1fr; }
  .phri-webinar-card__cta { text-align: left; }
}
@media (max-width: 480px) {
  .phri-webinar-card__details { gap: 16px; }
}

/* ===== Readiness Quiz — full-bleed band ===== */
.phri-quiz-band {
  background: rgba(74, 127, 165, 0.06);
  border-top: 1px solid rgba(74, 127, 165, 0.15);
  border-bottom: 1px solid rgba(74, 127, 165, 0.15);
  margin-left: -56px;
  margin-right: -56px;
  margin-top: clamp(48px, 6vw, 72px);
  padding: clamp(44px, 5.5vw, 68px) 56px;
  text-align: center;
}
.phri-quiz__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6B6BAE;
  margin-bottom: 16px;
}
.phri-quiz__h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.05;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0 auto 18px;
  max-width: 780px;
  text-shadow: none !important;
}
.phri-quiz__body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.65;
  color: var(--text-2);
  margin: 0 auto 28px;
  max-width: 560px;
}
.phri-quiz__btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 600;
  color: var(--rust);
  background: var(--bg);
  border: 1.5px solid var(--rust);
  border-radius: 8px;
  padding: 16px clamp(32px, 4vw, 56px);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background .15s, transform .1s, box-shadow .1s;
}
.phri-quiz__btn:hover {
  background: rgba(192, 82, 42, 0.04);
  transform: translateY(-1px);
}

@media (max-width: 860px) {
  .phri-quiz-band { margin-left: -24px; margin-right: -24px; padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 560px) {
  .phri-quiz-band { margin-left: -20px; margin-right: -20px; padding-left: 20px; padding-right: 20px; }
}
@media (max-width: 480px) {
  .phri-quiz__btn { width: 100%; box-sizing: border-box; text-align: center; }
  .phri-interest-card .btn { white-space: normal; max-width: 100%; }
}

/* ===== Interest List block ===== */
.phri-interest-card {
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: clamp(32px, 4vw, 52px);
  text-align: center;
  box-shadow: var(--card-shadow);
  max-width: 760px;
  margin: 0 auto;
}
.phri-interest-card__h {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.25;
  color: var(--text);
  margin: 0 0 14px;
  text-transform: none;
  text-shadow: none !important;
}
.phri-interest-card__body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.65;
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto 24px;
}

/* ===== Home page webinar section ===== */
.home-webinar {
  background: var(--bg-amber);
  border-top: 1px solid rgba(232,184,75,0.35);
  border-bottom: 1px solid rgba(232,184,75,0.35);
  padding: clamp(40px,5vw,72px) 0;
}
.home-webinar__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(20px,5vw,80px);
}
.home-webinar__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rust);
  background: transparent;
  border: 1.5px solid var(--rust);
  border-radius: 999px;
  padding: 5px 16px;
  margin-bottom: 20px;
}
.home-webinar__body {
  display: flex;
  align-items: center;
  gap: clamp(24px,4vw,60px);
}
.home-webinar__text { flex: 1; }
.home-webinar__h {
  font-family: var(--font-body);
  font-size: clamp(22px,2.8vw,34px);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  text-transform: none;
}
.home-webinar__desc {
  font-size: clamp(15px,1.4vw,17px);
  color: var(--text-2);
  margin: 0 0 14px;
  max-width: 560px;
  line-height: 1.6;
}
.home-webinar__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-2);
  font-weight: 500;
}
.home-webinar__sep { margin: 0 8px; color: var(--muted); }
@media (max-width: 680px) {
  .home-webinar__body { flex-direction: column; align-items: flex-start; }
}
