/* ═══════════════════════════════════════════
   BODY — HOT LEADERSHIP PAGE
═══════════════════════════════════════════ */
body { background: var(--dark-1); }

/* ═══════════════════════════════════════════
   MARQUEE — HL SPEED OVERRIDE
═══════════════════════════════════════════ */
.marquee-track { animation-duration: 40s; }

/* ═══════════════════════════════════════════
   HERO — HOT LEADERSHIP
═══════════════════════════════════════════ */
#hl-hero {
  position: relative;
  min-height: 100vh;
  background: var(--dark-0);
  padding: 80px 5vw 0;
  display: flex;
  align-items: center;
}
#hl-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  opacity: .05;
  pointer-events: none;
  z-index: 1;
}
.hero-glow {
  position: absolute;
  bottom: -10%; right: 0; left: 0;
  height: 70%;
  background: radial-gradient(ellipse 80% 100% at 50% 100%, rgba(255,87,34,.18) 0%, rgba(255,87,34,.05) 45%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}
.hero-bg-word {
  position: absolute;
  right: 3vw;
  bottom: -6%;
  font-family: 'Jost', sans-serif;
  font-size: 28vw;
  font-weight: 900;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,87,34,.055);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 2;
}
/* HOT word sits higher on HL page */
#hl-hero .hero-bg-word { bottom: 4%; font-size: 26vw; }

.hl-hero-inner {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 8vh 0 6vh;
}
.hl-hero-copy { display: flex; flex-direction: column; gap: 0; padding-right: 1.5rem; }

.hl-hero-h1 {
  font-size: clamp(2.8rem, 5.5vw, 6rem);
  font-weight: 900;
  color: var(--text-light);
  line-height: .95;
  letter-spacing: -.025em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: hero-up .9s cubic-bezier(.23,1,.32,1) .3s forwards;
  transform: translateY(35px);
}
.hl-hero-h1 .accent {
  font-style: italic;
  display: inline-block;
  background: linear-gradient(135deg, var(--fire) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-right: 0.25em;
}
.hl-hero-sub {
  font-size: clamp(.95rem, 1.2vw, 1.1rem);
  font-weight: 300;
  color: var(--muted-light);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: hero-up .8s cubic-bezier(.23,1,.32,1) .5s forwards;
  transform: translateY(35px);
}
.hl-hero-sub strong { color: var(--fire-hi); font-weight: 500; }
.hl-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: hero-up .8s cubic-bezier(.23,1,.32,1) .65s forwards;
  transform: translateY(35px);
}
.hl-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeIn .9s ease .5s forwards;
}
.temp-visual {
  position: relative;
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.tv-card {
  border-radius: var(--r-lg);
  padding: 2rem 2.2rem;
  transition: transform .4s ease;
}
.tv-card:hover { transform: scale(1.02); }
.tv-card.hot {
  background: linear-gradient(135deg, rgba(255,87,34,.18) 0%, rgba(255,87,34,.06) 100%);
  border: 1px solid rgba(255,87,34,.35);
}
.tv-card.cold {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.tv-label {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  margin-bottom: .8rem;
}
.tv-label.hot { color: var(--fire); }
.tv-label.cold { color: var(--cold-light); }
.tv-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.tv-dot.hot { background: var(--fire); box-shadow: 0 0 8px var(--fire); animation: dot-pulse 2s infinite; }
.tv-dot.cold { background: var(--cold-light); }
.tv-text { font-size: .92rem; color: var(--text-light); line-height: 1.6; }
.tv-text.cold { color: var(--muted-light); }
.tv-vs {
  text-align: center;
  font-family: 'Jost', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  font-style: italic;
  background: linear-gradient(135deg, var(--fire) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: -.3rem 0;
}

@keyframes glow-pulse {
  0%, 100% { opacity: .7; }
  50%       { opacity: 1; }
}

/* ═══════════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════════ */
.breadcrumb-bar {
  background: var(--dark-1);
  padding: .85rem 5vw;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  color: var(--muted-light);
}
.breadcrumb-inner a { color: var(--muted-light); text-decoration: none; transition: color .2s; }
.breadcrumb-inner a:hover { color: var(--fire); }
.bc-sep { color: rgba(245,238,228,.2); }
.bc-current { color: var(--fire); font-weight: 600; }

/* ═══════════════════════════════════════════
   DEFINITION SECTION
═══════════════════════════════════════════ */
#hl-def {
  background: var(--dark-2);
  padding: 6rem 5vw;
  position: relative;
  overflow: hidden;
}
#hl-def::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255,87,34,.07) 0%, transparent 70%);
  pointer-events: none;
}
.def-inner { max-width: 1000px; margin: 0 auto; position: relative; z-index: 1; }
.def-block {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,87,34,.2);
  border-left: 4px solid var(--fire);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: 2.5rem 3rem;
  margin-bottom: 3rem;
}
.def-label {
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--fire);
  margin-bottom: .8rem;
}
.def-term {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: .75rem;
}
.def-text { font-size: 1rem; color: var(--muted-light); line-height: 1.82; }
.def-text strong { color: var(--fire-hi); font-weight: 500; }
.def-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}
.def-pillar {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  padding: 2rem 1.75rem 2.5rem;
  text-align: center;
  transition: all .4s cubic-bezier(.23,1,.32,1);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.def-pillar::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--fire), var(--gold));
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.def-pillar:hover {
  background: rgba(255,87,34,.06);
  border-color: rgba(255,87,34,.22);
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(255,87,34,.14);
}
.def-pillar:hover::after { transform: scaleX(1); }
.dp-title-row {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: .8rem;
}
.dp-icon-wrap {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(255,87,34,.12);
  border: 1px solid rgba(255,87,34,.22);
  display: flex; align-items: center; justify-content: center;
  transition: all .4s ease;
}
.def-pillar:hover .dp-icon-wrap {
  background: rgba(255,87,34,.22);
  border-color: rgba(255,87,34,.5);
  box-shadow: 0 0 24px rgba(255,87,34,.2);
  transform: scale(1.08);
}
.dp-icon-wrap svg { color: var(--fire); transition: transform .4s ease; }
.def-pillar:hover .dp-icon-wrap svg { transform: scale(1.05); }
.dp-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,87,34,.1);
  border: 1px solid rgba(255,87,34,.2);
  border-radius: 999px;
  padding: .2rem .85rem;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: .75rem;
}
.dp-title { font-size: 1.05rem; font-weight: 700; color: var(--text-light); margin-bottom: 0; line-height: 1.2; }
.dp-desc { font-size: .875rem; color: var(--muted-light); line-height: 1.7; }

/* ═══════════════════════════════════════════
   TEMPERATURE CONCEPT
═══════════════════════════════════════════ */
#hl-temp {
  background: var(--dark-0);
  padding: 7rem 5vw;
  position: relative;
  overflow: hidden;
}
#hl-temp::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 70% at 5% 50%, rgba(255,87,34,.09) 0%, transparent 65%),
    radial-gradient(ellipse 55% 70% at 95% 50%, rgba(66,153,225,.07) 0%, transparent 65%);
}
.temp-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.temp-header { max-width: 700px; margin: 0 auto 4.5rem; text-align: center; }
.temp-header h2 { font-size: clamp(1.9rem, 3.2vw, 2.8rem); color: var(--text-light); margin: .8rem 0 1rem; }
.temp-header p { font-size: .975rem; color: var(--muted-light); line-height: 1.8; }
.temp-concept-grid {
  display: grid;
  grid-template-columns: 1fr 88px 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}
.tc-side {
  padding: 2.5rem 2rem;
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
  transition: box-shadow .4s ease;
}
.tc-side.hot {
  background: linear-gradient(150deg, rgba(255,87,34,.1) 0%, rgba(255,87,34,.03) 50%, transparent 100%);
  border: 1.5px solid rgba(255,87,34,.22);
  border-left: 3px solid var(--fire);
  box-shadow: -6px 0 40px rgba(255,87,34,.08), inset 0 0 80px rgba(255,87,34,.03);
}
.tc-side.hot:hover { box-shadow: -6px 0 60px rgba(255,87,34,.15), inset 0 0 80px rgba(255,87,34,.05); }
.tc-side.cold {
  background: linear-gradient(150deg, rgba(66,153,225,.08) 0%, rgba(66,153,225,.02) 50%, transparent 100%);
  border: 1.5px solid rgba(66,153,225,.18);
  border-right: 3px solid #4a9eca;
  box-shadow: 6px 0 40px rgba(66,153,225,.07), inset 0 0 80px rgba(66,153,225,.02);
}
.tc-side.cold:hover { box-shadow: 6px 0 60px rgba(66,153,225,.12), inset 0 0 80px rgba(66,153,225,.04); }
.tc-side::after {
  content: '';
  position: absolute;
  bottom: -24px; right: -24px;
  width: 160px; height: 160px;
  border-radius: 50%;
  pointer-events: none;
}
.tc-side.hot::after { background: radial-gradient(circle, rgba(255,87,34,.12) 0%, transparent 70%); }
.tc-side.cold::after { background: radial-gradient(circle, rgba(66,153,225,.1) 0%, transparent 70%); }
.tc-heading {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .65rem;
}
.tc-heading.hot { color: var(--fire); }
.tc-heading.cold { color: #64b5d9; }
.tc-heading-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
}
.tc-heading-icon.hot { background: rgba(255,87,34,.18); color: var(--fire); }
.tc-heading-icon.cold { background: rgba(66,153,225,.15); color: #64b5d9; }
.tc-list { list-style: none; display: flex; flex-direction: column; }
.tc-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
  line-height: 1.55;
  padding: .65rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: padding .2s ease;
}
.tc-item:last-child { border-bottom: none; }
.tc-item.hot { color: rgba(245,238,228,.75); }
.tc-item.cold { color: rgba(200,215,228,.38); }
.tc-item:hover { padding-left: .35rem; }
.tc-icon {
  flex-shrink: 0;
  margin-top: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.tc-icon.hot { background: rgba(255,87,34,.2); color: var(--fire); }
.tc-icon.cold { background: rgba(66,153,225,.15); color: #64b5d9; }
.tc-vs-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.tc-vs-line {
  flex: 1; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,87,34,.25) 30%, rgba(255,87,34,.25) 70%, transparent);
}
.tc-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--dark-1);
  border: 1.5px solid rgba(255,87,34,.3);
  box-shadow: 0 0 28px rgba(255,87,34,.18);
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  font-style: italic;
  background-image: linear-gradient(135deg, var(--fire) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════
   DISENGAGEMENT STATS
═══════════════════════════════════════════ */
#hl-stats {
  background: var(--dark-1);
  padding: 7rem 5vw;
  position: relative;
  overflow: hidden;
}
#hl-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 70% at 50% 0%, rgba(255,87,34,.07) 0%, transparent 70%);
  pointer-events: none;
}
.stats-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.big-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.bsg-card {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-xl);
  padding: 3.5rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all .4s ease;
}
.bsg-card:hover { background: rgba(255,87,34,.06); border-color: rgba(255,87,34,.2); }
.bsg-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fire), var(--gold));
}
.bsg-num {
  font-family: 'Jost', sans-serif;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--fire) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: .5rem;
}
.bsg-label { font-size: 1rem; color: var(--text-light); font-weight: 600; margin-bottom: .5rem; }
.bsg-sub { font-size: .85rem; color: var(--muted-light); line-height: 1.6; }

/* Stats image strip */
.stats-image-strip {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 2.5rem;
  height: 380px;
  box-shadow: 0 28px 80px rgba(0,0,0,.45);
}
.stats-image-strip img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; display: block; }
.stats-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26,15,7,.92) 0%, rgba(26,15,7,.65) 38%, rgba(26,15,7,.15) 65%, transparent 100%);
}
.stats-img-caption { position: absolute; left: 3rem; top: 50%; transform: translateY(-50%); max-width: 440px; }
.sic-text { font-size: clamp(1.05rem, 1.9vw, 1.55rem); font-weight: 600; color: var(--text-light); line-height: 1.45; margin-bottom: 1rem; }
.sic-text em { font-style: normal; background: linear-gradient(135deg, var(--fire) 0%, var(--gold) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.sic-attr { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: var(--muted-light); }

/* ═══════════════════════════════════════════
   HOT LEADERSHIP PRACTICE
═══════════════════════════════════════════ */
#hl-practice {
  background: var(--dark-1);
  padding: 7rem 5vw;
  position: relative;
  overflow: hidden;
}
#hl-practice::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 55% at 50% 110%, rgba(255,87,34,.09) 0%, transparent 60%);
}
.practice-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.practice-header { text-align: center; margin-bottom: 4.5rem; }
.practice-header h2 { font-size: clamp(1.9rem, 3vw, 2.8rem); color: var(--text-light); margin: .8rem 0 1rem; }
.practice-header p { font-size: .975rem; color: var(--muted-light); line-height: 1.75; max-width: 580px; margin: 0 auto; }
.practice-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  max-width: none;
  margin: 0;
}
.ps-step {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all .4s cubic-bezier(.23,1,.32,1);
}
.ps-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fire), var(--gold));
  border-radius: 3px 3px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.ps-step::after {
  content: attr(data-num);
  position: absolute;
  right: -4px; bottom: -24px;
  font-family: 'Jost', sans-serif;
  font-size: 9rem;
  font-weight: 900;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,87,34,.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.ps-step:hover { background: rgba(255,87,34,.06); border-color: rgba(255,87,34,.2); transform: translateY(-8px); box-shadow: 0 24px 60px rgba(255,87,34,.13); }
.ps-step:hover::before { transform: scaleX(1); }
.ps-num {
  display: inline-flex;
  align-items: center;
  background: rgba(255,87,34,.1);
  border: 1px solid rgba(255,87,34,.2);
  border-radius: 999px;
  padding: .2rem .85rem;
  margin-bottom: .85rem;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fire);
}
.ps-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,87,34,.2) 0%, rgba(255,87,34,.05) 70%, transparent 100%);
  border: 1.5px solid rgba(255,87,34,.28);
  display: flex; align-items: center; justify-content: center;
  margin: 0 0 1.75rem;
  color: var(--fire);
  transition: all .4s ease;
}
.ps-step:hover .ps-icon {
  background: radial-gradient(circle, rgba(255,87,34,.32) 0%, rgba(255,87,34,.1) 70%, transparent 100%);
  border-color: rgba(255,87,34,.55);
  box-shadow: 0 0 32px rgba(255,87,34,.25);
  transform: scale(1.1);
}
.ps-title { font-size: 1.45rem; font-weight: 800; color: var(--text-light); margin-bottom: .35rem; line-height: 1.1; }
.ps-subtitle { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; color: var(--gold); margin-bottom: 1rem; }
.ps-text { font-size: .9rem; color: var(--muted-light); line-height: 1.75; }
.practice-cta { text-align: center; margin-top: 4rem; }

/* ═══════════════════════════════════════════
   WHY IT WORKS
═══════════════════════════════════════════ */
#hl-why {
  background: var(--dark-2);
  padding: 7rem 5vw;
  position: relative;
  overflow: hidden;
}
.why-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.why-header { max-width: 640px; margin: 0 auto 4rem; text-align: center; }
.why-header h2 { font-size: clamp(1.9rem, 3.2vw, 2.8rem); color: var(--text-light); margin: .8rem 0 1rem; }
.why-header p { font-size: .975rem; color: var(--muted-light); line-height: 1.75; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.why-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-lg);
  padding: 2.2rem;
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
}
.why-card:hover { background: rgba(255,87,34,.07); border-color: rgba(255,87,34,.25); transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,.3); }
.wc-title-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .7rem;
}
.wc-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(255,87,34,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  transition: transform .4s cubic-bezier(.23,1,.32,1);
}
.why-card:hover .wc-icon { transform: scale(1.15) rotate(-5deg); }
.wc-title { font-size: 1.05rem; font-weight: 700; color: var(--text-light); margin-bottom: 0; line-height: 1.2; }
.wc-text { font-size: .86rem; color: var(--muted-light); line-height: 1.75; }

/* ═══════════════════════════════════════════
   4-PHOTO STRIP
═══════════════════════════════════════════ */
#hl-photo-strip { background: var(--dark-1); overflow: hidden; }
.photo-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 320px;
  gap: 4px;
}
.psg-item {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}
.psg-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .65s cubic-bezier(.23,1,.32,1);
}
.psg-item:hover img { transform: scale(1.07); }
.psg-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255,87,34,.5) 0%, rgba(0,0,0,.15) 40%, transparent 70%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.psg-item:hover::after { opacity: 1; }
.psg-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: .8rem 1rem .65rem;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
  z-index: 5;
}
.psg-item:hover .psg-caption { opacity: 1; transform: translateY(0); }
.psg-type {
  display: block;
  font-size: .6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .18em;
  color: var(--fire); margin-bottom: .15rem;
}
.psg-meta {
  display: block;
  font-size: .68rem; font-weight: 500;
  color: rgba(255,255,255,.82); letter-spacing: .03em;
}

/* ═══════════════════════════════════════════
   PULL QUOTE — HL
═══════════════════════════════════════════ */
#hl-quote {
  background: var(--dark-0);
  padding: 9rem 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#hl-quote::before {
  content: '"';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Jost', sans-serif;
  font-size: 50vw;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,87,34,.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS — HL
═══════════════════════════════════════════ */
#hl-testimonials { background: var(--cream-1); padding: 7rem 5vw; }

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
#hl-faq { background: var(--cream-1); padding: 7rem 5vw; }
.faq-inner { max-width: 1100px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 4rem; }
.faq-header h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); color: var(--text-dark); margin: .8rem 0; }
.faq-header p { font-size: .975rem; color: var(--muted-dark); line-height: 1.75; max-width: 560px; margin: 0 auto; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.fq-card {
  background: #fff;
  border: 1px solid rgba(26,21,16,.08);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all .4s cubic-bezier(.23,1,.32,1);
}
.fq-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fire), var(--gold));
  opacity: 0;
  transition: opacity .3s;
}
.fq-card:hover { box-shadow: 0 18px 60px rgba(26,21,16,.1); transform: translateY(-5px); border-color: rgba(255,87,34,.15); }
.fq-card:hover::before { opacity: 1; }
.fq-card.featured {
  background: linear-gradient(135deg, var(--dark-0) 0%, var(--dark-2) 100%);
  border-color: rgba(255,87,34,.3);
  grid-column: span 2;
}
.fq-card.featured::before { opacity: 1; height: 4px; }
.fq-num {
  font-family: 'Jost', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--fire) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
  margin-bottom: .8rem;
  opacity: .38;
}
.fq-card.featured .fq-num { opacity: .6; font-size: 3.2rem; }
.fq-q { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: .8rem; line-height: 1.4; }
.fq-card.featured .fq-q { color: var(--text-light); font-size: 1.15rem; }
.fq-a { font-size: .875rem; color: var(--muted-dark); line-height: 1.82; }
.fq-card.featured .fq-a { color: var(--muted-light); }
.fq-a strong { color: var(--text-dark); font-weight: 600; }
.fq-card.featured .fq-a strong { color: var(--fire-hi); }
.fq-a a { color: var(--fire); text-decoration: none; font-weight: 600; }
.fq-a a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════
   ABOUT REENA STRIP
═══════════════════════════════════════════ */
#hl-about {
  background: var(--dark-1);
  padding: 6rem 5vw;
  position: relative;
  overflow: hidden;
}
.about-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: center;
}
.about-strip-img { position: relative; }
.about-strip-img img { width: 100%; border-radius: var(--r-xl); display: block; box-shadow: 0 24px 80px rgba(0,0,0,.3); position: relative; z-index: 1; }
.about-strip-img::before { content: ''; position: absolute; inset: 18px -16px -16px 16px; background: linear-gradient(135deg, var(--fire) 0%, var(--gold) 100%); border-radius: var(--r-xl); opacity: .15; z-index: 0; }
.about-strip-text h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); color: var(--text-light); margin: .8rem 0 1.5rem; }
.about-strip-text p { font-size: .975rem; color: var(--muted-light); line-height: 1.82; margin-bottom: 1rem; }
.about-strip-creds { display: flex; flex-direction: column; gap: .45rem; margin: 1.5rem 0 2rem; }
.asc {
  display: flex;
  align-items: center;
  gap: .7rem;
  background: rgba(255,255,255,.04);
  border-left: 3px solid var(--fire);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: .65rem .9rem;
  font-size: .865rem;
  color: var(--muted-light);
}
.asc-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--fire); flex-shrink: 0; }
.about-strip-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ═══════════════════════════════════════════
   BOOKING — HL (cream-1 bg)
═══════════════════════════════════════════ */
#booking { background: var(--cream-1); padding: 7rem 5vw; }

/* ═══════════════════════════════════════════
   RESPONSIVE — HOT LEADERSHIP
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hl-hero-inner { grid-template-columns: minmax(0, 1fr); gap: 3rem; text-align: center; padding: 6vh 0 4vh; }
  .hl-hero-h1 { font-size: clamp(2.5rem, 8vw, 4.5rem); }
  .hl-hero-sub { margin: 0 auto 2.5rem; }
  .hl-hero-actions { justify-content: center; }
  .hl-hero-visual { max-width: 480px; margin: 0 auto; }
  .temp-visual { max-width: 100%; }
  .def-pillars { grid-template-columns: 1fr; }
  .def-pillars::before { display: none; }
  .temp-concept-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .tc-vs-col { display: none; }
  .big-stat-grid { grid-template-columns: 1fr; }
  .practice-steps { grid-template-columns: 1fr; gap: 1.5rem; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .fq-card.featured { grid-column: span 1; }
  .about-strip-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-strip-img { max-width: 380px; margin: 0 auto; }
  .stats-image-strip { height: 300px; }
  .stats-img-caption { left: 1.75rem; right: 1.75rem; max-width: none; }
}

@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
  .def-pillars { grid-template-columns: 1fr; }
  .photo-strip-grid { grid-template-columns: repeat(2, 1fr); height: 480px; }
  .stats-image-strip { height: 240px; }
  .sic-text { font-size: .95rem; }
}

@media (max-width: 560px) {
  .hl-hero-visual .temp-visual { display: none; }
  .temp-dial { width: 100%; }
  .hl-hero-h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
}

/* ════════════════════════════════════════════════
   ANIMATION #2 — HERO TEMP DIAL
   Positions the shared .temp-dial inside .temp-visual
════════════════════════════════════════════════ */
.temp-visual .temp-dial {
  margin-top: 1.25rem;
  justify-content: center;
}

/* ════════════════════════════════════════════════
   ANIMATION #1 — INTERACTIVE TEMP SLIDER
   Between "The Core Insight" header and Hot/Cold grid
════════════════════════════════════════════════ */
.tc-slider-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-bottom: .75rem;
}
.tc-sl-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  flex-shrink: 0;
  min-width: 90px;
  transition: opacity .3s ease;
}
.tc-sl-label.left  { text-align: right; color: var(--cold-light); }
.tc-sl-label.right { text-align: left;  color: var(--fire-hi); }
.tc-range-wrap {
  position: relative;
  width: 240px;
  height: 24px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.tc-range-track {
  position: absolute;
  left: 0; right: 0;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(to right, var(--cold), var(--fire));
  pointer-events: none;
}
.tc-range {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 24px;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: grab;
  outline: none;
}
.tc-range:active { cursor: grabbing; }
.tc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--fire);
  box-shadow: 0 0 14px rgba(255,87,34,.65), 0 2px 6px rgba(0,0,0,.4);
  border: 2px solid rgba(255,255,255,.18);
  transition: background .4s ease, box-shadow .4s ease, transform .15s ease;
  cursor: grab;
}
.tc-range:active::-webkit-slider-thumb { transform: scale(1.18); cursor: grabbing; }
.tc-range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--fire);
  box-shadow: 0 0 14px rgba(255,87,34,.65);
  border: 2px solid rgba(255,255,255,.18);
  cursor: grab;
  transition: background .4s ease;
}
.tc-range::-webkit-slider-runnable-track { background: transparent; }
.tc-range::-moz-range-track { background: transparent; }

/* Thumb colour when dragged cold */
.tc-range.is-cold::-webkit-slider-thumb {
  background: var(--cold);
  box-shadow: 0 0 14px rgba(120,144,156,.65), 0 2px 6px rgba(0,0,0,.4);
}
.tc-range.is-cold::-moz-range-thumb {
  background: var(--cold);
  box-shadow: 0 0 14px rgba(120,144,156,.65);
}

.tc-slider-hint {
  text-align: center;
  font-size: .7rem;
  color: var(--muted-light);
  margin-bottom: 3rem;
  letter-spacing: .06em;
  opacity: .65;
}

/* Temperature-reactive column states */
.tc-side        { transition: opacity .5s ease, box-shadow .5s ease, filter .5s ease; }
.temp-concept-grid.heat-cold .tc-side.hot  {
  opacity: .35;
  filter: saturate(0.3);
}
.temp-concept-grid.heat-cold .tc-side.cold {
  box-shadow: 6px 0 80px rgba(66,153,225,.25), inset 0 0 80px rgba(66,153,225,.08);
}
.temp-concept-grid.heat-hot .tc-side.cold {
  opacity: .35;
  filter: saturate(0.3);
}
.temp-concept-grid.heat-hot .tc-side.hot {
  box-shadow: -6px 0 80px rgba(255,87,34,.3), inset 0 0 80px rgba(255,87,34,.1);
}

/* ════════════════════════════════════════════════
   ANIMATION #3 — VERTICAL THERMOMETER on 79% card
════════════════════════════════════════════════ */
.bsg-thermo {
  position: absolute;
  right: 2.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 130px;
  border-radius: 3px;
  background: rgba(255,255,255,.06);
  overflow: hidden;
}
.bsg-thermo::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5px;
  border-radius: 3px;
  background: var(--cold);
}
.bsg-thermo-fill {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0%;
  background: linear-gradient(to top, var(--cold), var(--gold) 60%, var(--fire));
  border-radius: 3px;
  transition: height 2s cubic-bezier(.23,1,.32,1) .4s;
  box-shadow: 0 0 10px rgba(255,87,34,.45);
}
.bsg-card.in .bsg-thermo-fill { height: 79%; }
/* Tiny label above the thermometer */
.bsg-thermo-cap {
  position: absolute;
  right: 2.25rem;
  top: calc(50% - 75px);
  transform: translateY(-100%) translateX(50%);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--fire);
  text-transform: uppercase;
  opacity: 0;
  transition: opacity .5s ease 2.4s;
}
.bsg-card.in .bsg-thermo-cap { opacity: .8; }

/* ════════════════════════════════════════════════
   ANIMATION #5 — IGNITION PULSE on Notice/Reset/Choose
════════════════════════════════════════════════ */
.ps-step.in::before {
  animation: ignite 2s cubic-bezier(.23,1,.32,1) both;
}
@keyframes ignite {
  0%   { transform: scaleX(0); opacity: 0; }
  20%  { transform: scaleX(1); opacity: 1; box-shadow: 0 0 24px rgba(255,87,34,.8); }
  60%  { transform: scaleX(1); opacity: 1; box-shadow: 0 0 12px rgba(255,87,34,.4); }
  100% { transform: scaleX(0); opacity: 0; box-shadow: none; }
}
/* Hover overrides ignition — animation: none lets the transition take back over */
.ps-step.in:hover::before {
  animation: none;
  transform: scaleX(1);
}

/* Stagger ignition per card (in addition to d1/d2/d3 reveal delays) */
.ps-step.d1.in::before { animation-delay: .1s; }
.ps-step.d2.in::before { animation-delay: .5s; }
.ps-step.d3.in::before { animation-delay: .9s; }

/* ════════════════════════════════════════════════
   ANIMATION #6 — BOOKING TEMP DIAL (hot-leadership page)
════════════════════════════════════════════════ */
.booking-temp-dial {
  display: flex;
  align-items: center;
  gap: .75rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.booking-temp-label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--fire-hi);
  margin-left: .25rem;
}
.booking-temp-dial .td-track { width: 100px; }

@media (max-width: 600px) {
  .tc-slider-wrap { flex-direction: column; gap: .6rem; }
  .tc-sl-label.left, .tc-sl-label.right { text-align: center; min-width: auto; }
  .tc-range-wrap { width: 220px; }
  .bsg-thermo { display: none; }
  .bsg-thermo-cap { display: none; }
}
