/* ==========================================================================
   INSPIRE TALENT HUB — HOMEPAGE (rebuilt from scratch)
   Self-contained layout system for index.html only. Every class is prefixed
   `hm-` so this file cannot affect any other page. It uses the site's existing
   design tokens (gold palette, dark surfaces) and brand type system:
     headings  → Cormorant Garamond   (--font-family-display)
     reading   → EB Garamond          (--font-family-read)
     UI + nums → Inter                (--font-family-body / --font-family-num)
   Mobile-first; scales up with min-width queries. 8-point spacing throughout.
   ========================================================================== */

.hm {
  --hm-gutter: clamp(1.25rem, 5vw, 4rem);
  --hm-max: 1240px;
  --hm-radius: 20px;
  --hm-line: rgba(255, 255, 255, 0.08);
  --hm-line-gold: rgba(232, 198, 106, 0.22);
  --hm-surface: rgba(255, 255, 255, 0.028);
  --hm-surface-2: rgba(255, 255, 255, 0.05);
  background-color: var(--color-bg-base);
}

.hm-wrap {
  width: 100%;
  max-width: var(--hm-max);
  margin-inline: auto;
  padding-inline: var(--hm-gutter);
}

.hm-section {
  position: relative;
  padding-block: clamp(4rem, 9vw, 7.5rem);
}

.hm-section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.hm-section--alt { background-color: #04070f; }

/* Section headings ------------------------------------------------------- */
.hm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-2);
  font-family: var(--font-family-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-brand-primary);
}
.hm-eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--color-brand-primary);
  opacity: 0.7;
}

.hm-h2 {
  font-family: var(--font-family-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 4.6vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--color-text-primary);
  margin: var(--spacing-4) 0 0;
}
.hm-h2 em {
  font-style: italic;
  color: var(--color-brand-primary);
}

.hm-lede {
  font-family: var(--font-family-read);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.75;
  color: var(--color-text-secondary);
  max-width: 62ch;
  margin: var(--spacing-4) 0 0;
}

.hm-head { margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.hm-head--center { text-align: center; }
.hm-head--center .hm-lede { margin-inline: auto; }
.hm-head--center .hm-eyebrow::before { display: none; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hm-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(7rem, 16vw, 11rem) clamp(3.5rem, 8vw, 6rem);
  isolation: isolate;
}

.hm-hero__bg {
  position: absolute;
  inset: -10% -10% 0;
  z-index: -1;
  background:
    radial-gradient(52% 44% at 18% 12%, rgba(232, 198, 106, 0.16) 0%, transparent 62%),
    radial-gradient(46% 40% at 88% 8%, rgba(80, 116, 214, 0.14) 0%, transparent 60%),
    radial-gradient(80% 60% at 50% 100%, rgba(232, 198, 106, 0.05) 0%, transparent 70%);
  animation: hmDrift 22s ease-in-out infinite alternate;
}

.hm-hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(var(--hm-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--hm-line) 1px, transparent 1px);
  background-size: 68px 68px;
  opacity: 0.5;
  -webkit-mask-image: radial-gradient(72% 58% at 50% 22%, #000 0%, transparent 78%);
  mask-image: radial-gradient(72% 58% at 50% 22%, #000 0%, transparent 78%);
}

@keyframes hmDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(0, -2%, 0) scale(1.06); }
}

.hm-hero__inner {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
}

.hm-status {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-2);
  min-height: 38px;
  padding: var(--spacing-2) var(--spacing-4);
  border: 1px solid var(--hm-line-gold);
  border-radius: 999px;
  background: rgba(232, 198, 106, 0.07);
  font-family: var(--font-family-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-brand-primary);
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}
.hm-status:hover { border-color: var(--color-brand-primary); background: rgba(232, 198, 106, 0.12); transform: translateY(-1px); }
.hm-status:focus-visible { outline: 2px solid var(--color-brand-primary); outline-offset: 3px; }

.hm-status__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6);
  animation: hmPing 2.4s ease-out infinite;
  flex-shrink: 0;
}
@keyframes hmPing {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.hm-hero__title {
  font-family: var(--font-family-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 8.5vw, 5.1rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  margin: var(--spacing-6) 0 0;
}
.hm-hero__title em {
  display: block;
  font-style: italic;
  color: var(--color-brand-primary);
}

.hm-hero__lede {
  font-family: var(--font-family-read);
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  line-height: 1.75;
  color: var(--color-text-secondary);
  max-width: 54ch;
  margin: var(--spacing-6) 0 0;
}

.hm-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-4);
  margin-top: var(--spacing-8);
}
.hm-hero__cta .btn { min-height: 48px; }

/* Trust strip ------------------------------------------------------------ */
.hm-trustbar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--spacing-4);
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
  padding-top: var(--spacing-8);
  border-top: 1px solid var(--hm-line);
}
.hm-trustbar__item b {
  display: block;
  font-family: var(--font-family-num);
  font-variant-numeric: tabular-nums;
  font-size: clamp(1.3rem, 3.4vw, 1.7rem);
  font-weight: 600;
  line-height: 1;
  color: var(--color-brand-primary);
}
.hm-trustbar__item span {
  display: block;
  margin-top: var(--spacing-2);
  font-family: var(--font-family-body);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
}

/* Season card ------------------------------------------------------------ */
.hm-season {
  position: relative;
  border: 1px solid var(--hm-line-gold);
  border-radius: var(--hm-radius);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: clamp(1.5rem, 4vw, 2rem);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.hm-season__label {
  font-family: var(--font-family-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
}

.hm-season__name {
  font-family: var(--font-family-display);
  font-weight: 600;
  font-size: clamp(1.35rem, 3.4vw, 1.65rem);
  line-height: 1.2;
  color: var(--color-text-primary);
  margin: var(--spacing-2) 0 var(--spacing-6);
}

.hm-count {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--spacing-2);
}
.hm-count__cell {
  text-align: center;
  padding: var(--spacing-3) var(--spacing-1);
  border: 1px solid var(--hm-line);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.25);
}
.hm-count__n {
  display: block;
  font-family: var(--font-family-num);
  font-variant-numeric: tabular-nums;
  font-size: clamp(1.25rem, 4vw, 1.6rem);
  font-weight: 600;
  line-height: 1;
  color: var(--color-brand-primary);
}
.hm-count__l {
  display: block;
  margin-top: var(--spacing-2);
  font-family: var(--font-family-body);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
}

.hm-season__note {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-3);
  margin-top: var(--spacing-6);
  padding-top: var(--spacing-6);
  border-top: 1px solid var(--hm-line);
  font-family: var(--font-family-body);
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--color-text-tertiary);
}
.hm-season__note svg { flex-shrink: 0; color: #34d399; margin-top: 2px; }
.hm-season__note a { color: var(--color-brand-primary); text-decoration: underline; text-underline-offset: 3px; }

/* ==========================================================================
   TWO PATHS — Compete / Learn
   ========================================================================== */
.hm-paths {
  display: grid;
  gap: var(--spacing-6);
}

.hm-path {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.75rem, 4.5vw, 2.5rem);
  border: 1px solid var(--hm-line);
  border-radius: var(--hm-radius);
  background: var(--hm-surface);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.28s var(--ease-lux), border-color 0.28s ease, background-color 0.28s ease, box-shadow 0.28s ease;
}
.hm-path::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(70% 55% at 50% 0%, rgba(232, 198, 106, 0.13), transparent 70%);
  opacity: 0;
  transition: opacity 0.28s ease;
}
.hm-path:hover {
  transform: translateY(-5px);
  border-color: var(--hm-line-gold);
  background: var(--hm-surface-2);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.4);
}
.hm-path:hover::after { opacity: 1; }
.hm-path:focus-within { border-color: var(--color-brand-primary); }

.hm-path__ic {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid var(--hm-line-gold);
  background: rgba(232, 198, 106, 0.09);
  color: var(--color-brand-primary);
  margin-bottom: var(--spacing-6);
}

.hm-path__kicker {
  font-family: var(--font-family-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
}

.hm-path__title {
  font-family: var(--font-family-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  line-height: 1.15;
  color: var(--color-text-primary);
  margin: var(--spacing-2) 0 var(--spacing-4);
}

.hm-path__text {
  font-family: var(--font-family-read);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text-secondary);
  margin: 0;
}

.hm-path__list {
  list-style: none;
  padding: 0;
  margin: var(--spacing-6) 0 0;
  display: grid;
  gap: var(--spacing-3);
}
.hm-path__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-3);
  font-family: var(--font-family-body);
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--color-text-secondary);
}
.hm-path__list svg { flex-shrink: 0; color: var(--color-brand-primary); margin-top: 3px; }

.hm-path__go {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-2);
  min-height: 44px;
  margin-top: var(--spacing-8);
  font-family: var(--font-family-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-brand-primary);
  text-decoration: none;
}
.hm-path__go::after {
  content: '→';
  transition: transform 0.24s var(--ease-lux);
}
.hm-path:hover .hm-path__go::after { transform: translateX(5px); }
.hm-path__go:focus-visible { outline: 2px solid var(--color-brand-primary); outline-offset: 3px; border-radius: 6px; }
.hm-path__go::before {
  content: '';
  position: absolute;
  inset: 0;
}

/* ==========================================================================
   ARENAS (categories)
   ========================================================================== */
.hm-arenas {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--spacing-3);
}

.hm-arena {
  display: flex;
  align-items: center;
  gap: var(--spacing-3);
  min-height: 60px;
  padding: var(--spacing-4);
  border: 1px solid var(--hm-line);
  border-radius: 14px;
  background: var(--hm-surface);
  color: var(--color-text-secondary);
  font-family: var(--font-family-body);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
  transition: transform 0.22s var(--ease-lux), border-color 0.22s ease, color 0.22s ease, background-color 0.22s ease;
}
.hm-arena svg { flex-shrink: 0; color: var(--color-brand-primary); }
.hm-arena:hover {
  transform: translateY(-3px);
  border-color: var(--hm-line-gold);
  background: var(--hm-surface-2);
  color: var(--color-text-primary);
}
.hm-arena:focus-visible { outline: 2px solid var(--color-brand-primary); outline-offset: 3px; }

/* ==========================================================================
   STEPS — how it works
   ========================================================================== */
.hm-steps {
  display: grid;
  gap: var(--spacing-6);
  counter-reset: hmstep;
}

.hm-step {
  position: relative;
  padding: var(--spacing-6) 0 0;
  border-top: 1px solid var(--hm-line);
}
.hm-step::before {
  counter-increment: hmstep;
  content: '0' counter(hmstep);
  display: block;
  font-family: var(--font-family-num);
  font-variant-numeric: tabular-nums;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--color-brand-primary);
  margin-bottom: var(--spacing-4);
}
.hm-step h3 {
  font-family: var(--font-family-display);
  font-weight: 600;
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-3);
}
.hm-step p {
  font-family: var(--font-family-read);
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--color-text-tertiary);
  margin: 0;
}

/* ==========================================================================
   TRUST pillars
   ========================================================================== */
.hm-pillars {
  display: grid;
  gap: var(--spacing-4);
}

.hm-pillar {
  padding: clamp(1.5rem, 4vw, 2rem);
  border: 1px solid var(--hm-line);
  border-radius: var(--hm-radius);
  background: var(--hm-surface);
  transition: transform 0.24s var(--ease-lux), border-color 0.24s ease;
}
.hm-pillar:hover { transform: translateY(-4px); border-color: var(--hm-line-gold); }
.hm-pillar__ic {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(232, 198, 106, 0.1);
  color: var(--color-brand-primary);
  margin-bottom: var(--spacing-5);
}
.hm-pillar h3 {
  font-family: var(--font-family-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-3);
}
.hm-pillar p {
  font-family: var(--font-family-read);
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--color-text-tertiary);
  margin: 0;
}

.hm-verify {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--spacing-4);
  justify-content: space-between;
  margin-top: var(--spacing-8);
  padding: var(--spacing-6);
  border: 1px solid var(--hm-line-gold);
  border-radius: var(--hm-radius);
  background: rgba(232, 198, 106, 0.05);
}
.hm-verify p {
  font-family: var(--font-family-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0;
  max-width: 60ch;
}
.hm-verify strong { color: var(--color-text-primary); }

/* ==========================================================================
   RECAP — concluded season
   ========================================================================== */
.hm-recap {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}

.hm-recap__media {
  position: relative;
  border-radius: var(--hm-radius);
  overflow: hidden;
  border: 1px solid var(--hm-line);
  background: var(--hm-surface);
}
.hm-recap__media img {
  display: block;
  width: 100%;
  height: auto;
}
.hm-recap__tag {
  position: absolute;
  left: var(--spacing-4);
  bottom: var(--spacing-4);
  padding: var(--spacing-2) var(--spacing-4);
  border-radius: 999px;
  background: rgba(3, 6, 13, 0.82);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid var(--hm-line-gold);
  font-family: var(--font-family-body);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--color-brand-primary);
}

.hm-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-2);
  padding: var(--spacing-1) var(--spacing-3);
  border-radius: 999px;
  border: 1px solid rgba(52, 211, 153, 0.35);
  background: rgba(52, 211, 153, 0.08);
  font-family: var(--font-family-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #34d399;
}

.hm-recap__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--spacing-4);
  margin-top: var(--spacing-8);
}
.hm-recap__stat {
  padding: var(--spacing-4);
  border: 1px solid var(--hm-line);
  border-radius: 14px;
  background: var(--hm-surface);
}
.hm-recap__stat b {
  display: block;
  font-family: var(--font-family-num);
  font-variant-numeric: tabular-nums;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1;
  color: var(--color-brand-primary);
}
.hm-recap__stat span {
  display: block;
  margin-top: var(--spacing-2);
  font-family: var(--font-family-body);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
}

/* ==========================================================================
   VOICES
   ========================================================================== */
.hm-voices {
  display: grid;
  gap: var(--spacing-4);
}

.hm-voice {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 4vw, 2rem);
  border: 1px solid var(--hm-line);
  border-radius: var(--hm-radius);
  background: var(--hm-surface);
  margin: 0;
  transition: transform 0.24s var(--ease-lux), border-color 0.24s ease;
}
.hm-voice:hover { transform: translateY(-4px); border-color: var(--hm-line-gold); }

.hm-voice__stars { display: flex; gap: 3px; color: var(--color-brand-primary); margin-bottom: var(--spacing-4); }

.hm-voice blockquote {
  font-family: var(--font-family-read);
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--color-text-secondary);
  margin: 0 0 var(--spacing-6);
  flex: 1;
}
.hm-voice blockquote::before { content: '\201C'; }
.hm-voice blockquote::after { content: '\201D'; }

.hm-voice figcaption { border-top: 1px solid var(--hm-line); padding-top: var(--spacing-4); }
.hm-voice__name {
  display: block;
  font-family: var(--font-family-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-primary);
}
.hm-voice__role {
  display: block;
  margin-top: 2px;
  font-family: var(--font-family-body);
  font-size: 0.8rem;
  color: var(--color-text-tertiary);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.hm-faq { display: grid; gap: var(--spacing-3); max-width: 860px; margin-inline: auto; }

.hm-faq details {
  border: 1px solid var(--hm-line);
  border-radius: 14px;
  background: var(--hm-surface);
  overflow: hidden;
  transition: border-color 0.22s ease;
}
.hm-faq details[open] { border-color: var(--hm-line-gold); }

.hm-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-4);
  min-height: 56px;
  padding: var(--spacing-4) var(--spacing-6);
  cursor: pointer;
  list-style: none;
  font-family: var(--font-family-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-primary);
  transition: background-color 0.2s ease;
}
.hm-faq summary::-webkit-details-marker { display: none; }
.hm-faq summary:hover { background: rgba(232, 198, 106, 0.06); }
.hm-faq summary:focus-visible { outline: 2px solid var(--color-brand-primary); outline-offset: -2px; }
.hm-faq summary::after {
  content: '+';
  flex-shrink: 0;
  font-family: var(--font-family-num);
  font-size: 1.3rem;
  line-height: 1;
  color: var(--color-brand-primary);
  transition: transform 0.24s var(--ease-lux);
}
.hm-faq details[open] summary::after { transform: rotate(45deg); }

.hm-faq details p {
  margin: 0;
  padding: 0 var(--spacing-6) var(--spacing-6);
  font-family: var(--font-family-read);
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--color-text-tertiary);
}

/* ==========================================================================
   CLOSING CTA
   ========================================================================== */
.hm-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(2.5rem, 7vw, 4.5rem) clamp(1.5rem, 5vw, 3.5rem);
  border: 1px solid var(--hm-line-gold);
  border-radius: clamp(20px, 4vw, 28px);
  background:
    radial-gradient(70% 120% at 50% 0%, rgba(232, 198, 106, 0.14), transparent 65%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
}

.hm-cta__title {
  font-family: var(--font-family-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 5vw, 3rem);
  line-height: 1.1;
  color: var(--color-text-primary);
  margin: var(--spacing-4) 0 0;
}
.hm-cta__title em { font-style: italic; color: var(--color-brand-primary); }

.hm-cta__lede {
  font-family: var(--font-family-read);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 52ch;
  margin: var(--spacing-4) auto 0;
}

.hm-form {
  display: grid;
  gap: var(--spacing-3);
  max-width: 520px;
  margin: var(--spacing-8) auto 0;
}
.hm-form__input {
  width: 100%;
  min-height: 52px;
  padding: var(--spacing-3) var(--spacing-5);
  border: 1px solid var(--hm-line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  color: var(--color-text-primary);
  font-family: var(--font-family-body);
  font-size: 1rem;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.hm-form__input::placeholder { color: var(--color-text-quaternary); }
.hm-form__input:hover { border-color: var(--hm-line-gold); }
.hm-form__input:focus {
  outline: none;
  border-color: var(--color-brand-primary);
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0 3px rgba(232, 198, 106, 0.16);
}
.hm-form .btn { min-height: 52px; justify-content: center; }
.hm-form__honey { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.hm-cta__fine {
  font-family: var(--font-family-body);
  font-size: 0.8rem;
  color: var(--color-text-tertiary);
  margin: var(--spacing-4) 0 0;
}

/* ==========================================================================
   SCROLL REVEAL — progressive enhancement.
   Content is visible by default; only hidden once JS confirms it can animate.
   ========================================================================== */
.hm-reveal { opacity: 1; }
html.js .hm-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-lux), transform 0.6s var(--ease-lux);
  transition-delay: var(--hm-delay, 0ms);
}
html.js .hm-reveal.is-in { opacity: 1; transform: none; }

/* ==========================================================================
   RESPONSIVE SCALE-UPS
   ========================================================================== */
@media (min-width: 640px) {
  .hm-trustbar { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .hm-arenas { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hm-form { grid-template-columns: 1fr auto; }
  .hm-recap__stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 900px) {
  .hm-paths { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hm-pillars { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hm-voices { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hm-steps { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--spacing-6); }
  .hm-arenas { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .hm-recap { grid-template-columns: 0.95fr 1.05fr; }
  .hm-recap--flip .hm-recap__media { order: 2; }
}

@media (min-width: 1024px) {
  .hm-hero__inner {
    grid-template-columns: 1.12fr 0.88fr;
    align-items: center;
    gap: clamp(3rem, 6vw, 5rem);
  }
  .hm-hero__aside { justify-self: end; width: 100%; max-width: 420px; }
}

/* ==========================================================================
   MOTION PREFERENCES
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .hm-hero__bg { animation: none; }
  .hm-status__dot { animation: none; }
  .hm-path, .hm-arena, .hm-pillar, .hm-voice, .hm-path__go::after,
  .hm-faq summary::after, .hm-form__input {
    transition: none !important;
  }
  .hm-path:hover, .hm-arena:hover, .hm-pillar:hover, .hm-voice:hover { transform: none; }
  html.js .hm-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ==========================================================================
   CODEPEN-STYLE UI REFRESH — homepage only, visual layer (Aug 2026)
   --------------------------------------------------------------------------
   Pure restyle: no HTML, copy, structure or SEO changes. Every rule is
   `.hm`-scoped so it (a) beats the base rules above by specificity and
   (b) can never leak to another page. A small, curated accent palette is
   layered ON TOP of the gold brand colour to get the playful, colourful-on-
   dark energy of codepen.io — blue / cyan / violet / coral used as glows and
   per-card accents, gold kept as the primary brand colour. This is a
   deliberate, scoped exception to the "brand tokens only" rule, per explicit
   design direction for the homepage.
   ========================================================================== */
.hm {
  --hm-blue:   #4d8dff;
  --hm-cyan:   #34d1c1;
  --hm-violet: #9a7cff;
  --hm-coral:  #ff7c6a;
  --hm-gold:   var(--color-brand-primary);
  --hm-accent: var(--hm-blue);
  --hm-accent-2: var(--hm-violet);
  background-color: var(--color-bg-base);
}

/* --- Deeper, cooler base + soft colour depth on the dark sections -------- */
.hm-section--alt { background-color: #05070f; overflow: hidden; }
.hm-section { overflow: clip; }
.hm-section--alt::before,
.hm-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
  opacity: 0.5;
}
.hm-section--alt::before {
  inset: -20% -10% auto auto;
  width: 40rem; height: 26rem;
  background: radial-gradient(closest-side, rgba(77, 141, 255, 0.16), transparent 70%);
}
.hm-section::after {
  inset: auto auto -25% -12%;
  width: 38rem; height: 24rem;
  background: radial-gradient(closest-side, rgba(154, 124, 255, 0.13), transparent 70%);
}
.hm-wrap { position: relative; z-index: 1; }

/* ==========================================================================
   HERO — flowing light-beams + animated gradient headline word
   ========================================================================== */
.hm .hm-hero { padding-block: clamp(7.5rem, 16vw, 12rem) clamp(4rem, 9vw, 7rem); }

/* Layered aurora beams that slowly drift, CodePen-style. */
.hm .hm-hero__bg {
  inset: -15% -15% -5%;
  background:
    radial-gradient(38% 50% at 15% 20%, rgba(232, 198, 106, 0.22), transparent 60%),
    radial-gradient(42% 48% at 85% 6%, rgba(77, 141, 255, 0.24), transparent 60%),
    radial-gradient(40% 50% at 70% 90%, rgba(154, 124, 255, 0.18), transparent 62%),
    radial-gradient(36% 44% at 30% 88%, rgba(52, 209, 193, 0.14), transparent 62%);
  animation: hmAurora 26s ease-in-out infinite alternate;
}
/* A pair of diagonal light streaks sweeping across the grid — the "lines". */
.hm .hm-hero__grid::before,
.hm .hm-hero__grid::after {
  content: "";
  position: absolute;
  inset: -40% -20%;
  z-index: 0;
  background: linear-gradient(115deg, transparent 42%, rgba(77, 141, 255, 0.22) 50%, transparent 58%);
  transform: translateX(-30%);
  animation: hmStreak 11s linear infinite;
}
.hm .hm-hero__grid::after {
  background: linear-gradient(115deg, transparent 44%, rgba(232, 198, 106, 0.16) 50%, transparent 56%);
  animation-duration: 15s;
  animation-delay: -6s;
}
/* Cursor-reactive spotlight (set by JS via --hm-mx / --hm-my). */
.hm .hm-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(26rem 26rem at var(--hm-mx, 50%) var(--hm-my, 30%), rgba(77, 141, 255, 0.10), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.hm .hm-hero:hover::after { opacity: 1; }

@keyframes hmAurora {
  0%   { transform: translate3d(0, 0, 0) scale(1);      }
  50%  { transform: translate3d(2%, -1.5%, 0) scale(1.06); }
  100% { transform: translate3d(-2%, 1.5%, 0) scale(1.03); }
}
@keyframes hmStreak {
  0%   { transform: translateX(-35%); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateX(35%);  opacity: 0; }
}

/* Status pill — glassy with a cool glow */
.hm .hm-status {
  border-color: rgba(77, 141, 255, 0.35);
  background: linear-gradient(120deg, rgba(77, 141, 255, 0.10), rgba(154, 124, 255, 0.08));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02), 0 8px 30px rgba(77, 141, 255, 0.12);
}
.hm .hm-status__dot { background: var(--hm-blue); box-shadow: 0 0 12px var(--hm-blue); }

/* Headline — keep it crisp white, make the emphasised phrase an animated
   gold→blue→violet gradient (the one bright, playful pop). */
.hm .hm-hero__title { color: #fff; text-shadow: 0 2px 40px rgba(77, 141, 255, 0.12); }
.hm .hm-hero__title em {
  background: linear-gradient(100deg, var(--hm-gold) 0%, var(--hm-blue) 45%, var(--hm-violet) 75%, var(--hm-gold) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: hmSheen 8s ease-in-out infinite;
}
@keyframes hmSheen {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* Trust bar — numbers pop in accent colours */
.hm .hm-trustbar__item b { color: #fff; }
.hm .hm-trustbar__item:nth-child(1) b { color: var(--hm-gold); }
.hm .hm-trustbar__item:nth-child(2) b { color: var(--hm-blue); }
.hm .hm-trustbar__item:nth-child(3) b { color: var(--hm-cyan); }
.hm .hm-trustbar__item:nth-child(4) b { color: var(--hm-violet); }

/* Countdown card — animated conic gradient border ring */
.hm .hm-season {
  border-color: transparent;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)) padding-box,
    linear-gradient(#0a0f1c, #0a0f1c) padding-box,
    conic-gradient(from var(--hm-ang, 0deg), var(--hm-gold), var(--hm-blue), var(--hm-violet), var(--hm-cyan), var(--hm-gold)) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5), 0 0 60px rgba(77, 141, 255, 0.08);
  animation: hmSpin 12s linear infinite;
}
@property --hm-ang { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@keyframes hmSpin { to { --hm-ang: 360deg; } }
.hm .hm-count__n { color: #fff; }

/* ==========================================================================
   CARDS — rounded, accent top-line, lift + coloured glow on hover
   ========================================================================== */
.hm .hm-path,
.hm .hm-step,
.hm .hm-pillar,
.hm .hm-voice {
  position: relative;
  border-radius: 18px;
  border: 1px solid var(--hm-line);
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
  transition: transform 0.3s var(--ease-lux), border-color 0.3s ease, box-shadow 0.3s ease;
}
/* the accent bar that lights up along the top edge */
.hm .hm-path::before,
.hm .hm-pillar::before,
.hm .hm-voice::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--hm-accent);
  border-radius: 18px 18px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-lux);
  opacity: 0.9;
}
.hm .hm-path:hover,
.hm .hm-step:hover,
.hm .hm-pillar:hover,
.hm .hm-voice:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--hm-accent) 45%, transparent);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45),
              0 0 0 1px color-mix(in srgb, var(--hm-accent) 25%, transparent),
              0 18px 50px color-mix(in srgb, var(--hm-accent) 22%, transparent);
}
.hm .hm-path:hover::before,
.hm .hm-pillar:hover::before,
.hm .hm-voice:hover::before { transform: scaleX(1); }

/* per-card accent assignment (the playful, colourful spread) */
.hm .hm-path:nth-child(1)   { --hm-accent: var(--hm-gold); }
.hm .hm-path:nth-child(2)   { --hm-accent: var(--hm-blue); }
.hm .hm-step:nth-child(1)   { --hm-accent: var(--hm-blue); }
.hm .hm-step:nth-child(2)   { --hm-accent: var(--hm-cyan); }
.hm .hm-step:nth-child(3)   { --hm-accent: var(--hm-violet); }
.hm .hm-step:nth-child(4)   { --hm-accent: var(--hm-coral); }
.hm .hm-pillar:nth-child(1) { --hm-accent: var(--hm-gold); }
.hm .hm-pillar:nth-child(2) { --hm-accent: var(--hm-blue); }
.hm .hm-pillar:nth-child(3) { --hm-accent: var(--hm-violet); }
.hm .hm-voice:nth-child(1)  { --hm-accent: var(--hm-coral); }
.hm .hm-voice:nth-child(2)  { --hm-accent: var(--hm-cyan); }
.hm .hm-voice:nth-child(3)  { --hm-accent: var(--hm-blue); }

/* icon chips inside cards pick up the accent */
.hm .hm-path__ic,
.hm .hm-pillar__ic {
  color: var(--hm-accent);
  background: color-mix(in srgb, var(--hm-accent) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--hm-accent) 30%, transparent);
}
.hm .hm-path__kicker { color: var(--hm-accent); }
.hm .hm-step h3 { color: #fff; }
.hm .hm-voice__stars { color: var(--hm-gold); }

/* Step number: keep the base counter (no extra increment), just make the
   existing ::before numeral big and accent-tinted, top-right of the card. */
.hm .hm-step { padding: 1.5rem 1.4rem 1.6rem; }
.hm .hm-step::before {
  position: absolute;
  top: 0.7rem;
  right: 1.1rem;
  margin: 0;
  font-size: 1.85rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--hm-accent) 60%, transparent);
}
.hm .hm-step h3 { margin-top: 0.4rem; }

/* ==========================================================================
   ARENAS — 8 colourful chips, each its own accent, lift + glow
   ========================================================================== */
.hm .hm-arena {
  position: relative;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  color: var(--color-text-primary);
  font-weight: 600;
  overflow: hidden;
}
.hm .hm-arena svg {
  flex: 0 0 auto;
  width: 34px; height: 34px;
  padding: 7px;
  border-radius: 10px;
  color: var(--hm-accent);
  background: color-mix(in srgb, var(--hm-accent) 15%, transparent);
  transition: transform 0.25s var(--ease-lux);
}
.hm .hm-arena:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--hm-accent) 50%, transparent);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4),
              0 10px 34px color-mix(in srgb, var(--hm-accent) 26%, transparent);
}
.hm .hm-arena:hover svg { transform: scale(1.12) rotate(-4deg); }
.hm .hm-arena:nth-child(1) { --hm-accent: var(--hm-gold); }
.hm .hm-arena:nth-child(2) { --hm-accent: var(--hm-blue); }
.hm .hm-arena:nth-child(3) { --hm-accent: var(--hm-coral); }
.hm .hm-arena:nth-child(4) { --hm-accent: var(--hm-violet); }
.hm .hm-arena:nth-child(5) { --hm-accent: var(--hm-cyan); }
.hm .hm-arena:nth-child(6) { --hm-accent: var(--hm-blue); }
.hm .hm-arena:nth-child(7) { --hm-accent: var(--hm-gold); }
.hm .hm-arena:nth-child(8) { --hm-accent: var(--hm-coral); }

/* ==========================================================================
   SEASON RECAP media + VERIFY strip + CTA
   ========================================================================== */
.hm .hm-recap__media {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
}
.hm .hm-recap__media img { transition: transform 0.6s var(--ease-lux); }
.hm .hm-recap__media:hover img { transform: scale(1.04); }
.hm .hm-recap__stat b { color: var(--hm-gold); }

.hm .hm-verify {
  border-radius: 18px;
  border: 1px solid rgba(77, 141, 255, 0.25);
  background:
    linear-gradient(120deg, rgba(77,141,255,0.10), rgba(154,124,255,0.06)),
    var(--hm-surface);
}
.hm .hm-cta {
  border-radius: 22px;
  border: 1px solid transparent;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)) padding-box,
    conic-gradient(from 0deg, rgba(232,198,106,0.5), rgba(77,141,255,0.5), rgba(154,124,255,0.5), rgba(232,198,106,0.5)) border-box;
}

/* ==========================================================================
   MOTION OPT-OUT — hold the CodePen look still for reduced-motion users
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .hm .hm-hero__bg,
  .hm .hm-hero__grid::before,
  .hm .hm-hero__grid::after,
  .hm .hm-hero__title em,
  .hm .hm-season { animation: none; }
  .hm .hm-hero__grid::before,
  .hm .hm-hero__grid::after { opacity: 0; }
  .hm .hm-hero__title em { background-position: 0% 50%; }
  .hm .hm-path, .hm .hm-step, .hm .hm-pillar, .hm .hm-voice, .hm .hm-arena {
    transition: none;
  }
}

/* ==========================================================================
   CODEPEN v2 — signature devices from the reference (headings, blocks, pills)
   Still homepage-only, still purely visual. Overrides the v1 rules above.
   ========================================================================== */
.hm {
  /* CodePen-style tasteful rainbow used for highlighter headings + borders */
  --hm-rainbow: linear-gradient(95deg,
      #ff6b9d 0%, #ff9e4d 20%, #ffe14d 38%, #4de3a6 56%, #4d9fff 76%, #9a7cff 100%);
}

/* --- (1) Rainbow "highlighter" on the emphasised heading word ------------- */
/* Replaces the v1 animated gradient-text: white text, rainbow marker swipe
   offset behind the lower half of the word — the CodePen sticker look. */
.hm .hm-hero__title em,
.hm .hm-h2 em {
  position: relative;
  display: inline-block;
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  animation: none;
  z-index: 0;
  padding-inline: 0.04em;
}
.hm .hm-hero__title em { display: inline; }
.hm .hm-hero__title em::before,
.hm .hm-h2 em::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -0.06em;
  right: -0.06em;
  top: 42%;
  bottom: 4%;
  background: var(--hm-rainbow);
  border-radius: 5px;
  transform: translate(4px, 4px) rotate(-1.2deg);
  opacity: 0.9;
  filter: saturate(1.15);
}
@media (prefers-reduced-motion: reduce) {
  .hm .hm-hero__title em::before,
  .hm .hm-h2 em::before { transform: translate(3px, 3px); }
}

/* --- (2) Floating blocks drifting in the hero (injected by JS) ------------ */
.hm-blocks {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hm-cube {
  position: absolute;
  width: var(--s, 30px);
  height: var(--s, 30px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02)),
    color-mix(in srgb, var(--hm-tint, #8ea2c8) 12%, transparent);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 12px 30px rgba(0, 0, 0, 0.4);
  transform: rotate(var(--r, 0deg));
  animation: hmFloat var(--d, 14s) ease-in-out var(--delay, 0s) infinite alternate;
  opacity: 0.5;
}
@keyframes hmFloat {
  from { transform: translateY(0) rotate(var(--r, 0deg)); }
  to   { transform: translateY(var(--fly, -26px)) rotate(calc(var(--r, 0deg) + 16deg)); }
}
@media (prefers-reduced-motion: reduce) { .hm-blocks { display: none; } }

/* --- (3) Gradient-border pills & buttons --------------------------------- */
.hm .hm-status {
  border: 1px solid transparent;
  background:
    linear-gradient(120deg, #0b1120, #0b1120) padding-box,
    var(--hm-rainbow) border-box;
  box-shadow: 0 8px 30px rgba(77, 141, 255, 0.16);
}
.hm .hm-status__dot { background: var(--hm-blue); box-shadow: 0 0 12px var(--hm-blue); }

.hm .btn-outline {
  border: 1.5px solid transparent;
  background:
    linear-gradient(#0a0f1c, #0a0f1c) padding-box,
    var(--hm-rainbow) border-box;
}
.hm .btn-outline:hover { box-shadow: 0 12px 34px rgba(154, 124, 255, 0.22); }

/* --- (4) Cards get a soft coloured "sticker" offset shadow at rest -------- */
.hm .hm-path,
.hm .hm-step,
.hm .hm-pillar,
.hm .hm-voice,
.hm .hm-arena {
  box-shadow: 10px 14px 34px -14px color-mix(in srgb, var(--hm-accent) 55%, transparent),
              0 10px 24px rgba(0, 0, 0, 0.35);
}

/* ==========================================================================
   CODEPEN v3 — light "sticker" cards + softer rainbow (owner feedback)
   Homepage only. Cards become near-white with a pastel gradient wash, dark
   text, an accent top-rule and a coloured offset shadow — the CodePen card.
   The heading rainbow highlighter is dialled back so text reads clearly.
   ========================================================================== */

/* Softer, lower highlighter so the white text sits clearly above it */
.hm .hm-hero__title em::before,
.hm .hm-h2 em::before {
  top: 54%;
  bottom: 6%;
  opacity: 0.55;
  filter: saturate(1.05);
  border-radius: 4px;
}

/* --- Light pastel cards --------------------------------------------------- */
.hm .hm-path,
.hm .hm-step,
.hm .hm-pillar,
.hm .hm-voice {
  background:
    radial-gradient(130% 120% at 0% 0%,
      color-mix(in srgb, var(--hm-accent) 14%, #ffffff) 0%,
      #f4f6fc 46%,
      color-mix(in srgb, var(--hm-accent) 12%, #eef0f9) 100%);
  border: 1px solid rgba(20, 26, 46, 0.08);
  color: #454d63;
  box-shadow:
    9px 11px 0 -3px color-mix(in srgb, var(--hm-accent) 30%, transparent),
    0 18px 44px rgba(0, 0, 0, 0.4);
}
/* headings + strong text → dark */
.hm .hm-path__title,
.hm .hm-step h3,
.hm .hm-pillar h3,
.hm .hm-voice blockquote {
  color: #1b2338;
}
/* body text → dark muted */
.hm .hm-path__text,
.hm .hm-pillar p,
.hm .hm-step p,
.hm .hm-path__list li,
.hm .hm-voice__name {
  color: #454d63;
}
.hm .hm-voice__role { color: #6b7488; }
.hm .hm-path__list li svg { color: var(--hm-accent); }

/* accent top-rule stays; icon chip tuned for light bg */
.hm .hm-path__ic,
.hm .hm-pillar__ic {
  color: #fff;
  background: linear-gradient(135deg, var(--hm-accent), color-mix(in srgb, var(--hm-accent) 60%, #000));
  border: none;
}
.hm .hm-path__kicker { color: color-mix(in srgb, var(--hm-accent) 75%, #000); }
.hm .hm-voice__stars { color: #f0a92e; }
/* CTA link inside a light card */
.hm .hm-path__go { color: color-mix(in srgb, var(--hm-accent) 70%, #000); }

/* step number on the light card */
.hm .hm-step::before { color: color-mix(in srgb, var(--hm-accent) 55%, #ffffff); }

/* hover: lift + deepen the coloured offset shadow */
.hm .hm-path:hover,
.hm .hm-step:hover,
.hm .hm-pillar:hover,
.hm .hm-voice:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 26, 46, 0.12);
  box-shadow:
    12px 15px 0 -3px color-mix(in srgb, var(--hm-accent) 42%, transparent),
    0 24px 60px rgba(0, 0, 0, 0.5);
}

/* --- Casual, chunky CodePen-style heading font (homepage) ----------------- */
.hm .hm-hero__title,
.hm .hm-h2,
.hm .hm-cta__title {
  font-family: 'Baloo 2', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.hm .hm-hero__title { font-weight: 800; }
.hm .hm-hero__title em,
.hm .hm-h2 em,
.hm .hm-cta__title em { font-style: normal; font-weight: 800; }

/* ==========================================================================
   LIVE-NOW badge + registration-live popup (homepage)
   ========================================================================== */
.hm-status--live { border-color: rgba(52,211,153,0.5); background: rgba(52,211,153,0.1); color: #46e6a4; }
.hm-status--live .hm-status__dot { background: #34d399; box-shadow: 0 0 12px #34d399; }
.hm-livedot { display: inline-block; width: 0.6rem; height: 0.6rem; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 0 rgba(52,211,153,0.55); animation: hm-livepulse 1.6s ease-out infinite; vertical-align: middle; }
@keyframes hm-livepulse { 0% { box-shadow: 0 0 0 0 rgba(52,211,153,0.5); } 70% { box-shadow: 0 0 0 0.55rem rgba(52,211,153,0); } 100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); } }
.hm-season__label { display: inline-flex; align-items: center; gap: 0.45rem; }
.hm-season__live { font-family: var(--font-family-body); font-size: 0.9rem; line-height: 1.55; color: var(--color-text-tertiary, #cbd5e1); margin: 0 0 1.1rem; }
.hm-season__live strong { color: var(--color-text-secondary, #e2e8f0); }

.hm-livepop { position: fixed; inset: 0; z-index: 5000; display: grid; place-items: center; padding: 1.25rem; background: rgba(6,9,16,0.72); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); animation: hm-pop-fade 0.3s ease; }
@keyframes hm-pop-fade { from { opacity: 0; } to { opacity: 1; } }
.hm-livepop__card { position: relative; width: min(100%, 34rem); text-align: center; padding: clamp(1.75rem, 5vw, 2.75rem); border-radius: 1.5rem; background: linear-gradient(160deg, #121826, #0b0f1a); border: 1px solid rgba(232,198,106,0.22); box-shadow: 0 40px 90px rgba(0,0,0,0.55); animation: hm-pop-rise 0.4s cubic-bezier(0.19,1,0.22,1); }
@keyframes hm-pop-rise { from { transform: translateY(18px) scale(0.97); opacity: 0; } to { transform: none; opacity: 1; } }
.hm-livepop__close { position: absolute; top: 0.75rem; right: 0.95rem; width: 2.2rem; height: 2.2rem; border: none; background: transparent; color: #94a3b8; font-size: 1.7rem; line-height: 1; cursor: pointer; border-radius: 50%; transition: color 0.2s ease, background 0.2s ease; }
.hm-livepop__close:hover { color: #fff; background: rgba(255,255,255,0.08); }
.hm-livepop__badge { display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.35rem 0.85rem; border-radius: 999px; font-family: var(--font-family-body); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: #46e6a4; background: rgba(52,211,153,0.12); border: 1px solid rgba(52,211,153,0.4); margin-bottom: 1rem; }
.hm-livepop__title { font-family: var(--font-family-display, 'Cormorant Garamond', serif); font-size: clamp(1.7rem, 5vw, 2.4rem); color: #fff; margin: 0 0 0.7rem; }
.hm-livepop__title em { font-style: italic; color: var(--hm-gold, #e8c66a); }
.hm-livepop__txt { font-family: var(--font-family-body); font-size: 0.95rem; line-height: 1.6; color: #cbd5e1; margin: 0 auto 1.5rem; max-width: 28rem; }
.hm-livepop__txt strong { color: #fff; }
.hm-livepop__cta { width: 100%; justify-content: center; }
.hm-livepop__later { display: block; width: 100%; margin-top: 0.85rem; border: none; background: transparent; color: #8a93a6; font-family: var(--font-family-body); font-size: 0.85rem; cursor: pointer; }
.hm-livepop__later:hover { color: #cbd5e1; text-decoration: underline; }
@media (prefers-reduced-motion: reduce) { .hm-livedot { animation: none; } .hm-livepop, .hm-livepop__card { animation: none; } }
