/* Hirefathom — main.css
   Brand prefix: hf
   Palette: Deep Navy #1A2B4A / Warm Amber #F0883E / Cream #F7F6F3
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --hf-navy:          #1A2B4A;
  --hf-navy-alt:      #243558;
  --hf-amber:         #F0883E;
  --hf-amber-aa:      #C45E0A;   /* AA on light bg */
  --hf-cream:         #F7F6F3;
  --hf-white:         #FFFFFF;
  --hf-light-alt:     #EDF0F4;
  --hf-border:        #DDE3EC;

  /* Fg on light */
  --hf-fg-light-1:    #1A2B4A;   /* ratio ~13.5 vs cream */
  --hf-fg-light-2:    #4A5568;   /* ratio ~7.1 */
  --hf-fg-light-3:    #718096;   /* ratio ~4.7 — captions ≥14px only */

  /* Fg on dark */
  --hf-fg-dark-1:     #F5F0E8;   /* ratio ~14.2 vs navy */
  --hf-fg-dark-2:     #B8C5D6;   /* ratio ~7.4 */
  --hf-fg-dark-3:     #7A95B0;   /* ratio ~4.5 — labels only */

  --hf-radius-sm:     6px;
  --hf-radius-md:     10px;
  --hf-radius-lg:     16px;
  --hf-radius-pill:   999px;

  --hf-shadow-sm:  0 1px 4px rgba(26,43,74,0.08);
  --hf-shadow-md:  0 4px 16px rgba(26,43,74,0.10);
  --hf-shadow-lg:  0 8px 32px rgba(26,43,74,0.14);

  --hf-max-w:     1200px;
  --hf-section-v: 96px;
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--hf-fg-light-1);
  background: var(--hf-cream);
  -webkit-font-smoothing: antialiased;
}

body.hf-page--dark-top {
  background: var(--hf-navy);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 4.5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p { max-width: 72ch; }

/* ============================================================
   CONTAINERS
   ============================================================ */
.hf-container {
  max-width: var(--hf-max-w);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .hf-container { padding: 0 40px; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.hf-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.hf-nav--scrolled {
  background: var(--hf-navy);
  box-shadow: 0 2px 16px rgba(26,43,74,0.20);
}

/* Default (dark-top): transparent at top */
body.hf-page--dark-top .hf-nav {
  background: transparent;
}
body.hf-page--dark-top .hf-nav--scrolled {
  background: var(--hf-navy);
}

/* Light-top pages: solid nav immediately */
body.hf-page--light-top .hf-nav {
  background: var(--hf-navy);
  box-shadow: 0 2px 16px rgba(26,43,74,0.12);
}

.hf-nav__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
  max-width: var(--hf-max-w);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .hf-nav__inner { padding: 0 40px; }
}

.hf-nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.hf-nav__logo img {
  height: 32px;
  width: auto;
  max-width: 200px;
}

.hf-nav__links {
  display: none;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

@media (min-width: 900px) {
  .hf-nav__links { display: flex; }
}

.hf-nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--hf-fg-dark-1);
  padding: 8px 14px;
  border-radius: var(--hf-radius-sm);
  transition: color 0.15s, background 0.15s;
}
.hf-nav__link:hover {
  color: var(--hf-amber);
  background: rgba(255,255,255,0.07);
}

.hf-nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

@media (min-width: 900px) {
  .hf-nav__actions { margin-left: 16px; }
}

/* Nav CTA buttons */
.hf-btn-nav-ghost {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--hf-fg-dark-1);
  padding: 8px 16px;
  border-radius: var(--hf-radius-sm);
  border: 1px solid rgba(255,255,255,0.22);
  background: transparent;
  transition: border-color 0.15s, background 0.15s;
}
.hf-btn-nav-ghost:hover {
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.07);
}

.hf-btn-nav-primary {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--hf-navy);
  background: var(--hf-amber);
  padding: 9px 18px;
  border-radius: var(--hf-radius-sm);
  border: none;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
}
.hf-btn-nav-primary:hover {
  background: #E07028;
  transform: translateY(-1px);
}

/* Hamburger */
.hf-nav__hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 8px;
  color: var(--hf-fg-dark-1);
  margin-left: auto;
}

@media (min-width: 900px) {
  .hf-nav__hamburger { display: none; }
}

/* Mobile menu */
.hf-nav__mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--hf-navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 24px 24px;
  gap: 4px;
}

.hf-nav__mobile-menu.is-open {
  display: flex;
}

.hf-nav__mobile-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--hf-fg-dark-1);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: block;
}

.hf-nav__mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

/* ============================================================
   BUTTONS (global)
   ============================================================ */

/* Primary on dark */
.hf-btn--primary-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--hf-navy);
  background: var(--hf-amber);
  padding: 14px 28px;
  border-radius: var(--hf-radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  text-decoration: none;
}
.hf-btn--primary-dark:hover {
  background: #E07028;
  transform: translateY(-1px);
}

/* Outline on dark */
.hf-btn--outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--hf-fg-dark-1);
  background: transparent;
  padding: 13px 28px;
  border-radius: var(--hf-radius-sm);
  border: 2px solid rgba(255,255,255,0.30);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  text-decoration: none;
}
.hf-btn--outline-dark:hover {
  border-color: rgba(255,255,255,0.60);
  color: #fff;
}

/* Primary on light */
.hf-btn--primary-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--hf-white);
  background: var(--hf-navy);
  padding: 14px 28px;
  border-radius: var(--hf-radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  text-decoration: none;
}
.hf-btn--primary-light:hover {
  background: #243558;
  transform: translateY(-1px);
}

/* Outline on light */
.hf-btn--outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--hf-navy);
  background: transparent;
  padding: 13px 28px;
  border-radius: var(--hf-radius-sm);
  border: 2px solid var(--hf-navy);
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
}
.hf-btn--outline-light:hover {
  background: rgba(26,43,74,0.06);
}

/* Ghost on light */
.hf-btn--ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--hf-amber-aa);
  background: transparent;
  padding: 10px 0;
  border: none;
  cursor: pointer;
  transition: color 0.15s;
  text-decoration: none;
}
.hf-btn--ghost-light:hover {
  color: var(--hf-navy);
}
.hf-btn--ghost-light i { font-size: 0.85em; }

/* ============================================================
   EYEBROW LABELS
   ============================================================ */
.hf-eyebrow {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hf-section--cream .hf-eyebrow,
.hf-section--white .hf-eyebrow,
.hf-section--light-alt .hf-eyebrow {
  color: var(--hf-amber-aa);
}

.hf-section--dark .hf-eyebrow,
.hf-section--dark-alt .hf-eyebrow {
  color: var(--hf-amber);
}

/* ============================================================
   SECTIONS — background contexts
   ============================================================ */
.hf-section--cream    { background: var(--hf-cream); }
.hf-section--white    { background: var(--hf-white); }
.hf-section--light-alt { background: var(--hf-light-alt); }
.hf-section--dark     { background: var(--hf-navy); }
.hf-section--dark-alt { background: var(--hf-navy-alt); }

.hf-section {
  padding: var(--hf-section-v) 0;
}

.hf-section--tight {
  padding: 64px 0;
}

/* Section headings on light vs dark */
.hf-section--cream h2,
.hf-section--white h2,
.hf-section--light-alt h2 {
  color: var(--hf-fg-light-1);
}
.hf-section--dark h2,
.hf-section--dark-alt h2 {
  color: var(--hf-fg-dark-1);
}

.hf-section--cream p,
.hf-section--white p,
.hf-section--light-alt p {
  color: var(--hf-fg-light-2);
}
.hf-section--dark p,
.hf-section--dark-alt p {
  color: var(--hf-fg-dark-2);
}

/* ============================================================
   HERO — index.html dark
   ============================================================ */
.hf-hero {
  position: relative;
  background: var(--hf-navy);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px; /* nav offset */
}

.hf-hero__inner {
  max-width: var(--hf-max-w);
  margin: 0 auto;
  padding: 80px 24px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .hf-hero__inner { padding: 80px 40px 100px; }
}

@media (max-width: 900px) {
  .hf-hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.hf-hero__text { }

.hf-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,136,62,0.15);
  border: 1px solid rgba(240,136,62,0.30);
  color: var(--hf-amber);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--hf-radius-pill);
  margin-bottom: 24px;
}

.hf-hero__h1 {
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--hf-fg-dark-1);
  margin-bottom: 24px;
}

.hf-hero__h1 span {
  color: var(--hf-amber);
}

.hf-hero__sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--hf-fg-dark-2);
  margin-bottom: 40px;
  max-width: 52ch;
}

.hf-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hf-hero__visual {
  position: relative;
}

.hf-hero__img-wrap {
  position: relative;
  border-radius: var(--hf-radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.32);
}

.hf-hero__img-wrap img {
  width: 100%;
  height: auto;
  border-radius: var(--hf-radius-lg);
}

/* Sonar-pulse SVG bg */
.hf-hero__sonar {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-30%, -50%);
  pointer-events: none;
  z-index: 1;
  opacity: 0.08;
}

/* ============================================================
   PROBLEM BAR — stat strip
   ============================================================ */
.hf-problem-bar {
  background: var(--hf-navy-alt);
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hf-problem-bar__grid {
  max-width: var(--hf-max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

@media (min-width: 768px) {
  .hf-problem-bar__grid { padding: 0 40px; }
}

@media (max-width: 700px) {
  .hf-problem-bar__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
}

.hf-stat {
  padding: 16px 24px;
  border-right: 1px solid rgba(255,255,255,0.10);
}

.hf-stat:last-child { border-right: none; }

@media (max-width: 700px) {
  .hf-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.10); }
  .hf-stat:last-child { border-bottom: none; }
}

.hf-stat__number {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--hf-amber);
  line-height: 1;
  margin-bottom: 8px;
}

.hf-stat__label {
  font-size: 0.875rem;
  color: var(--hf-fg-dark-2);
  line-height: 1.5;
}

/* ============================================================
   FEATURE SPLIT (alternating)
   ============================================================ */
.hf-feature-split__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.hf-feature-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.hf-feature-panel:last-child { margin-bottom: 0; }

.hf-feature-panel--reversed {
  direction: rtl;
}
.hf-feature-panel--reversed > * {
  direction: ltr;
}

@media (max-width: 768px) {
  .hf-feature-panel { grid-template-columns: 1fr; gap: 32px; }
  .hf-feature-panel--reversed { direction: ltr; }
}

.hf-feature-panel__text h3 {
  font-size: clamp(1.375rem, 2.5vw, 1.625rem);
  color: var(--hf-fg-light-1);
  margin-bottom: 16px;
}

.hf-feature-panel__text p {
  color: var(--hf-fg-light-2);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.hf-feature-panel__img {
  border-radius: var(--hf-radius-lg);
  overflow: hidden;
  box-shadow: var(--hf-shadow-lg);
}

.hf-feature-panel__img img {
  width: 100%;
  height: auto;
}

/* candidate card mock — inline HTML */
.hf-candidate-mock {
  background: var(--hf-white);
  border: 1px solid var(--hf-border);
  border-radius: var(--hf-radius-md);
  padding: 16px 20px;
  margin-top: 12px;
}

.hf-candidate-mock__row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--hf-border);
}
.hf-candidate-mock__row:last-child { border-bottom: none; }

.hf-candidate-mock__rank {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--hf-navy);
  color: var(--hf-fg-dark-1);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.hf-candidate-mock__info { flex: 1; }

.hf-candidate-mock__name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--hf-fg-light-1);
}

.hf-candidate-mock__criteria {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}

.hf-badge {
  font-size: 0.725rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--hf-radius-pill);
}

.hf-badge--met {
  background: rgba(16,185,129,0.12);
  color: #059669;
  border: 1px solid rgba(16,185,129,0.25);
}

.hf-badge--partial {
  background: rgba(240,136,62,0.12);
  color: #C45E0A;
  border: 1px solid rgba(240,136,62,0.25);
}

.hf-badge--unmet {
  background: rgba(100,116,139,0.10);
  color: #64748B;
  border: 1px solid rgba(100,116,139,0.20);
}

/* ============================================================
   FAIRNESS CALLOUT
   ============================================================ */
.hf-fairness-callout__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.hf-fairness-callout__inner h2 {
  color: var(--hf-fg-light-1);
  margin-bottom: 20px;
}

.hf-fairness-callout__inner p {
  font-size: 1.0625rem;
  color: var(--hf-fg-light-2);
  margin: 0 auto 32px;
  max-width: 60ch;
}

/* ============================================================
   NUMBERED PROCESS (how-it-works teaser)
   ============================================================ */
.hf-process__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.hf-process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

@media (max-width: 768px) {
  .hf-process__steps { grid-template-columns: 1fr; gap: 32px; }
}

.hf-process__step {
  position: relative;
  padding: 32px 28px;
  background: var(--hf-white);
  border: 1px solid var(--hf-border);
  border-radius: var(--hf-radius-md);
  box-shadow: var(--hf-shadow-sm);
}

.hf-process__num {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 2rem;
  font-weight: 700;
  color: var(--hf-amber);
  opacity: 0.6;
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}

.hf-process__step h3 {
  font-size: 1.125rem;
  color: var(--hf-fg-light-1);
  margin-bottom: 10px;
}

.hf-process__step p {
  font-size: 0.9375rem;
  color: var(--hf-fg-light-2);
  line-height: 1.65;
}

.hf-process__footer {
  text-align: center;
  margin-top: 40px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.hf-testimonials__header {
  text-align: center;
  margin-bottom: 48px;
}

.hf-testimonials__header h2 { color: var(--hf-fg-dark-1); }

.hf-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .hf-testimonials__grid { grid-template-columns: 1fr; }
}

.hf-testi-card {
  background: var(--hf-navy-alt);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--hf-radius-md);
  padding: 28px 24px;
}

.hf-testi-card__quote {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--hf-fg-dark-2);
  margin-bottom: 24px;
  font-style: italic;
}

.hf-testi-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hf-testi-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--hf-navy);
}

.hf-testi-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hf-testi-card__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--hf-fg-dark-1);
}

.hf-testi-card__role {
  font-size: 0.8125rem;
  color: var(--hf-fg-dark-3);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.hf-cta-band {
  position: relative;
  overflow: hidden;
}

.hf-cta-band__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hf-cta-band__inner h2 {
  color: var(--hf-fg-dark-1);
  margin-bottom: 16px;
}

.hf-cta-band__inner p {
  color: var(--hf-fg-dark-2);
  margin: 0 auto 36px;
  font-size: 1.0625rem;
}

/* dot pattern decorative */
.hf-cta-dots {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.06;
}

/* ============================================================
   SUB-PAGE HERO (light-top)
   ============================================================ */
.hf-subhero {
  background: var(--hf-cream);
  padding: 120px 0 72px;
  border-bottom: 1px solid var(--hf-border);
}

.hf-subhero__inner {
  max-width: var(--hf-max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (min-width: 768px) {
  .hf-subhero__inner { padding: 0 40px; }
}

@media (max-width: 900px) {
  .hf-subhero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.hf-subhero__text { }

.hf-subhero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hf-amber-aa);
  margin-bottom: 16px;
}

.hf-subhero__h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--hf-fg-light-1);
  margin-bottom: 20px;
}

.hf-subhero__sub {
  font-size: 1.125rem;
  color: var(--hf-fg-light-2);
  line-height: 1.7;
  max-width: 52ch;
}

/* Subhero visual accent — amber stripe + key metric */
.hf-subhero__accent {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hf-subhero__metric {
  background: var(--hf-white);
  border: 1px solid var(--hf-border);
  border-left: 4px solid var(--hf-amber);
  border-radius: var(--hf-radius-md);
  padding: 20px 24px;
  box-shadow: var(--hf-shadow-sm);
}

.hf-subhero__metric-num {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--hf-navy);
  line-height: 1;
  margin-bottom: 4px;
}

.hf-subhero__metric-label {
  font-size: 0.875rem;
  color: var(--hf-fg-light-2);
}

/* For simpler sub-page heroes (single column) */
.hf-subhero--simple .hf-subhero__inner {
  grid-template-columns: 1fr;
  max-width: 800px;
}

.hf-subhero--simple .hf-subhero__h1 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
}

/* ============================================================
   SECTION HEADER (shared utility)
   ============================================================ */
.hf-section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.hf-section__header h2 {
  margin-bottom: 16px;
}

.hf-section__header p {
  font-size: 1.0625rem;
  margin: 0 auto;
}

/* ============================================================
   FEATURE GRID (product.html)
   ============================================================ */
.hf-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .hf-feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .hf-feature-grid { grid-template-columns: 1fr; }
}

.hf-feature-card {
  background: var(--hf-white);
  border: 1px solid var(--hf-border);
  border-radius: var(--hf-radius-md);
  padding: 28px 24px;
  box-shadow: var(--hf-shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}

.hf-feature-card:hover {
  box-shadow: var(--hf-shadow-md);
  transform: translateY(-2px);
}

.hf-feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--hf-radius-sm);
  background: rgba(240,136,62,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--hf-amber-aa);
  font-size: 1.125rem;
}

.hf-feature-card h3 {
  font-size: 1.0625rem;
  color: var(--hf-fg-light-1);
  margin-bottom: 8px;
}

.hf-feature-card p {
  font-size: 0.9375rem;
  color: var(--hf-fg-light-2);
  line-height: 1.6;
  max-width: none;
}

/* ============================================================
   PRODUCT WORKFLOW
   ============================================================ */
.hf-workflow__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 768px) {
  .hf-workflow__inner { grid-template-columns: 1fr; gap: 40px; }
}

.hf-workflow__text h2 {
  color: var(--hf-fg-light-1);
  margin-bottom: 20px;
}

.hf-workflow__text p {
  color: var(--hf-fg-light-2);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.hf-workflow__img {
  border-radius: var(--hf-radius-md);
  overflow: hidden;
  box-shadow: var(--hf-shadow-md);
}
.hf-workflow__img img {
  width: 100%;
  height: auto;
}

/* ============================================================
   HOW IT WORKS — DETAILED STEPS
   ============================================================ */
.hf-steps { display: flex; flex-direction: column; gap: 0; }

.hf-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--hf-border);
}

.hf-step:last-child { border-bottom: none; }

.hf-step__num-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hf-step__circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--hf-navy);
  color: var(--hf-fg-dark-1);
  font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hf-step__line {
  flex: 1;
  width: 2px;
  background: var(--hf-border);
  margin: 8px 0;
}

.hf-step:last-child .hf-step__line { display: none; }

.hf-step__content h3 {
  font-size: 1.125rem;
  color: var(--hf-fg-light-1);
  margin-bottom: 8px;
  margin-top: 10px;
}

.hf-step__content p {
  font-size: 1rem;
  color: var(--hf-fg-light-2);
  line-height: 1.7;
}

/* ============================================================
   FAIRNESS SECTION (how-it-works)
   ============================================================ */
.hf-fairness__header {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}

.hf-fairness__header h2 { color: var(--hf-fg-light-1); }
.hf-fairness__header p { color: var(--hf-fg-light-2); margin: 0 auto; }

.hf-fairness__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 700px) {
  .hf-fairness__grid { grid-template-columns: 1fr; }
}

.hf-fairness-block {
  background: var(--hf-white);
  border: 1px solid var(--hf-border);
  border-top: 3px solid var(--hf-amber);
  border-radius: var(--hf-radius-md);
  padding: 28px 24px;
}

.hf-fairness-block h3 {
  font-size: 1.0625rem;
  color: var(--hf-fg-light-1);
  margin-bottom: 10px;
}

.hf-fairness-block p {
  font-size: 0.9375rem;
  color: var(--hf-fg-light-2);
  line-height: 1.65;
  max-width: none;
}

/* ============================================================
   PRICING CARDS
   ============================================================ */
.hf-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

@media (max-width: 900px) {
  .hf-pricing__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

.hf-pricing-card {
  background: var(--hf-white);
  border: 1px solid var(--hf-border);
  border-radius: var(--hf-radius-lg);
  padding: 32px 28px;
  box-shadow: var(--hf-shadow-sm);
  position: relative;
}

.hf-pricing-card--highlight {
  border-color: var(--hf-amber);
  border-width: 2px;
  box-shadow: var(--hf-shadow-md);
  transform: translateY(-6px);
}

@media (max-width: 900px) {
  .hf-pricing-card--highlight { transform: none; }
}

.hf-pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--hf-amber);
  color: var(--hf-navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--hf-radius-pill);
  white-space: nowrap;
}

.hf-pricing-card__name {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--hf-fg-light-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.hf-pricing-card__price {
  margin-bottom: 6px;
}

.hf-pricing-card__price-num {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--hf-fg-light-1);
  line-height: 1;
}

.hf-pricing-card__price-unit {
  font-size: 0.9rem;
  color: var(--hf-fg-light-3);
}

.hf-pricing-card__annual {
  font-size: 0.875rem;
  color: var(--hf-amber-aa);
  font-weight: 600;
  margin-bottom: 4px;
}

.hf-pricing-card__volume {
  font-size: 0.875rem;
  color: var(--hf-fg-light-3);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--hf-border);
}

.hf-pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.hf-pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--hf-fg-light-2);
}

.hf-pricing-card__feature i {
  color: var(--hf-amber-aa);
  font-size: 0.875rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Toggle for annual/monthly */
.hf-pricing__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.hf-pricing__toggle label {
  font-size: 0.9375rem;
  color: var(--hf-fg-light-2);
  cursor: pointer;
}

.hf-pricing__toggle input[type="checkbox"] {
  appearance: none;
  width: 44px;
  height: 24px;
  background: var(--hf-border);
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
}

.hf-pricing__toggle input[type="checkbox"]:checked {
  background: var(--hf-navy);
}

.hf-pricing__toggle input[type="checkbox"]::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: white;
  top: 3px;
  left: 3px;
  transition: transform 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.20);
}

.hf-pricing__toggle input[type="checkbox"]:checked::after {
  transform: translateX(20px);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.hf-faq { max-width: 720px; margin: 0 auto; }

.hf-faq-item {
  border-bottom: 1px solid var(--hf-border);
}

.hf-faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: transparent;
  border: none;
  text-align: left;
  font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--hf-fg-light-1);
  cursor: pointer;
  transition: color 0.15s;
}

.hf-faq-item__question:hover { color: var(--hf-navy); }

.hf-faq-item__icon {
  flex-shrink: 0;
  color: var(--hf-amber-aa);
  transition: transform 0.25s;
  font-size: 0.875rem;
}

.hf-faq-item.is-open .hf-faq-item__icon {
  transform: rotate(45deg);
}

.hf-faq-item__answer {
  display: none;
  padding: 0 0 20px;
  font-size: 0.9375rem;
  color: var(--hf-fg-light-2);
  line-height: 1.7;
}

.hf-faq-item.is-open .hf-faq-item__answer {
  display: block;
}

/* ============================================================
   ABOUT — TEAM GRID
   ============================================================ */
.hf-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 900px) {
  .hf-team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .hf-team-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
}

.hf-team-card {
  background: var(--hf-white);
  border: 1px solid var(--hf-border);
  border-radius: var(--hf-radius-md);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--hf-shadow-sm);
}

.hf-team-card__avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 3px solid var(--hf-border);
  background: var(--hf-light-alt);
}

.hf-team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hf-team-card__name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--hf-fg-light-1);
  margin-bottom: 4px;
}

.hf-team-card__title {
  font-size: 0.875rem;
  color: var(--hf-amber-aa);
  font-weight: 600;
  margin-bottom: 10px;
}

.hf-team-card__bio {
  font-size: 0.875rem;
  color: var(--hf-fg-light-2);
  line-height: 1.6;
  max-width: none;
}

/* ============================================================
   ABOUT — FOUNDER NARRATIVE
   ============================================================ */
.hf-founder__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 768px) {
  .hf-founder__inner { grid-template-columns: 1fr; gap: 32px; }
}

.hf-founder__portrait {
  position: sticky;
  top: 100px;
}

.hf-founder__portrait-img {
  width: 100%;
  border-radius: var(--hf-radius-lg);
  box-shadow: var(--hf-shadow-md);
  aspect-ratio: 1;
  object-fit: cover;
}

.hf-founder__portrait-caption {
  margin-top: 12px;
  text-align: center;
}

.hf-founder__portrait-name {
  font-weight: 700;
  color: var(--hf-fg-light-1);
  font-size: 1.0625rem;
}

.hf-founder__portrait-title {
  font-size: 0.875rem;
  color: var(--hf-amber-aa);
  font-weight: 600;
}

.hf-founder__text h2 {
  color: var(--hf-fg-light-1);
  margin-bottom: 24px;
}

.hf-founder__text p {
  font-size: 1.0625rem;
  color: var(--hf-fg-light-2);
  line-height: 1.8;
  max-width: 60ch;
}

/* ============================================================
   ABOUT — VALUES
   ============================================================ */
.hf-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 768px) {
  .hf-values-grid { grid-template-columns: 1fr; gap: 24px; }
}

.hf-value-card {
  padding: 28px 0;
  border-top: 3px solid var(--hf-amber);
}

.hf-value-card__icon {
  font-size: 1.5rem;
  color: var(--hf-amber-aa);
  margin-bottom: 14px;
}

.hf-value-card h3 {
  font-size: 1.0625rem;
  color: var(--hf-fg-light-1);
  margin-bottom: 8px;
}

.hf-value-card p {
  font-size: 0.9375rem;
  color: var(--hf-fg-light-2);
  line-height: 1.65;
  max-width: none;
}

/* ============================================================
   ABOUT — LOCATION / CONTACT MINI
   ============================================================ */
.hf-contact-mini__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 768px) {
  .hf-contact-mini__inner { grid-template-columns: 1fr; }
}

.hf-contact-mini h2 { color: var(--hf-fg-light-1); margin-bottom: 8px; }
.hf-contact-mini p { color: var(--hf-fg-light-2); margin-bottom: 24px; }

.hf-contact-mini__details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hf-contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--hf-fg-light-2);
}

.hf-contact-detail i {
  width: 20px;
  color: var(--hf-amber-aa);
  margin-top: 2px;
  text-align: center;
}

.hf-contact-detail a {
  color: var(--hf-amber-aa);
  text-decoration: none;
}

.hf-contact-detail a:hover {
  text-decoration: underline;
  color: var(--hf-navy);
}

/* ============================================================
   CONTACT FORM PAGE
   ============================================================ */
.hf-contact-form__inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}

@media (max-width: 900px) {
  .hf-contact-form__inner { grid-template-columns: 1fr; gap: 48px; }
}

.hf-form { display: flex; flex-direction: column; gap: 20px; }

.hf-form-group { display: flex; flex-direction: column; gap: 6px; }

.hf-form-group--half-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .hf-form-group--half-row { grid-template-columns: 1fr; }
}

.hf-form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--hf-fg-light-1);
}

.hf-form-input,
.hf-form-select,
.hf-form-textarea {
  padding: 11px 14px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--hf-fg-light-1);
  background: var(--hf-white);
  border: 1.5px solid var(--hf-border);
  border-radius: var(--hf-radius-sm);
  transition: border-color 0.15s;
  outline: none;
  width: 100%;
}

.hf-form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234A5568' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
  cursor: pointer;
}

.hf-form-select option {
  background: var(--hf-white);
  color: var(--hf-fg-light-1);
}

.hf-form-input:focus,
.hf-form-select:focus,
.hf-form-textarea:focus {
  border-color: var(--hf-navy);
  box-shadow: 0 0 0 3px rgba(26,43,74,0.10);
}

.hf-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.hf-contact-sidebar {
  background: var(--hf-navy);
  border-radius: var(--hf-radius-lg);
  padding: 32px 28px;
  color: var(--hf-fg-dark-2);
}

.hf-contact-sidebar h3 {
  color: var(--hf-fg-dark-1);
  font-size: 1.125rem;
  margin-bottom: 20px;
}

.hf-contact-sidebar .hf-contact-detail {
  color: var(--hf-fg-dark-2);
}

.hf-contact-sidebar .hf-contact-detail i {
  color: var(--hf-amber);
}

.hf-contact-sidebar .hf-contact-detail a {
  color: var(--hf-amber);
}

.hf-contact-sidebar .hf-contact-detail a:hover {
  color: var(--hf-fg-dark-1);
}

/* ============================================================
   FOOTER
   ============================================================ */
.hf-footer {
  background: var(--hf-navy);
  color: var(--hf-fg-dark-2);
  padding: 72px 0 0;
}

.hf-footer__grid {
  max-width: var(--hf-max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 64px;
}

@media (min-width: 768px) {
  .hf-footer__grid { padding-left: 40px; padding-right: 40px; }
}

@media (max-width: 900px) {
  .hf-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .hf-footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.hf-footer__logo {
  margin-bottom: 16px;
}

.hf-footer__logo img {
  height: 30px;
  width: auto;
}

.hf-footer__descriptor {
  font-size: 0.9375rem;
  color: var(--hf-fg-dark-2);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 32ch;
}

.hf-footer__contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--hf-fg-dark-3);
  margin-bottom: 6px;
}

.hf-footer__contact-line i { color: var(--hf-amber); font-size: 0.8rem; }

.hf-footer__contact-line a {
  color: var(--hf-fg-dark-2);
  text-decoration: none;
}

.hf-footer__contact-line a:hover {
  color: var(--hf-amber);
}

.hf-footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  background: rgba(240,136,62,0.15);
  border: 1px solid rgba(240,136,62,0.25);
  color: var(--hf-amber);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: var(--hf-radius-pill);
}

.hf-footer__col-title {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--hf-fg-dark-1);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.hf-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hf-footer__link {
  font-size: 0.9375rem;
  color: var(--hf-fg-dark-2);
  text-decoration: none;
  transition: color 0.15s;
}

.hf-footer__link:hover {
  color: var(--hf-amber);
}

.hf-footer__bar {
  max-width: var(--hf-max-w);
  margin: 0 auto;
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--hf-fg-dark-3);
}

@media (min-width: 768px) {
  .hf-footer__bar { padding-left: 40px; padding-right: 40px; }
}

.hf-footer__bar a {
  color: var(--hf-fg-dark-3);
  text-decoration: none;
  transition: color 0.15s;
}

.hf-footer__bar a:hover {
  color: var(--hf-amber);
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--hf-navy);
  border-top: 2px solid var(--hf-amber);
  box-shadow: 0 -4px 24px rgba(26,43,74,0.25);
}

.cookie-banner__inner {
  max-width: var(--hf-max-w);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .cookie-banner__inner { padding: 16px 40px; }
}

.cookie-banner__text {
  font-size: 0.9375rem;
  color: var(--hf-fg-dark-2);
  flex: 1;
  min-width: 200px;
}

.cookie-banner__text a {
  color: var(--hf-amber);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--hf-radius-sm);
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}

.cookie-banner__btn--primary {
  background: var(--hf-amber);
  color: var(--hf-navy);
}

.cookie-banner__btn--primary:hover {
  background: #E07028;
}

/* ============================================================
   FADE IN ANIMATION
   ============================================================ */
.hf-fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hf-fade-in.visible {
  opacity: 1;
  transform: none;
}

/* Failsafe: after 1.2s, show regardless */
@keyframes hf-reveal {
  to { opacity: 1; transform: none; }
}
.hf-fade-in {
  animation: hf-reveal 0.4s ease forwards 1.2s;
}

/* ============================================================
   FUNCTIONAL CLASSES (JS hooks / override containers)
   ============================================================ */

/* Pricing save note — shown/hidden by JS */
.hf-pricing-save-note {
  display: block;
  text-align: center;
  font-size: 0.875rem;
  color: var(--hf-amber-aa);
  font-weight: 600;
}

/* Contact form element — JS intercept target */
.hf-contact-form-element { }

/* Reset demo notice — inline styled via JS */
.hf-reset-demo-notice {
  margin-top: 12px;
  text-align: center;
  border-radius: var(--hf-radius-sm);
  padding: 12px 16px;
  font-size: 0.875rem;
  font-weight: 600;
}

/* ============================================================
   UTILITY
   ============================================================ */
.hf-text-center { text-align: center; }
.hf-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* Funding stage badge */
.hf-stage-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(240,136,62,0.12);
  border: 1px solid rgba(240,136,62,0.25);
  color: var(--hf-amber-aa);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--hf-radius-pill);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 600px) {
  :root { --hf-section-v: 64px; }
  .hf-hero__ctas { flex-direction: column; align-items: flex-start; }
}
