/* ═══════════════════════════════════════════════════
   THE HOLLYWOOD BLUEPRINT — MENTORSHIP V2
   Premium cinematic + emotional soul redesign.
   Fluid gradient hero. Glassmorphism cards. Motion-driven.
   ═══════════════════════════════════════════════════ */

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

:root {
  /* Canvas */
  --bg-deep: #06060a;
  --bg-surface: #0b0b10;
  --bg-elevated: #101018;
  --bg-hover: #16161f;
  --bg-card: #0d0d14;

  /* Text */
  --text-primary: #eeeef2;
  --text-secondary: #7a7a8c;
  --text-tertiary: #3e3e4d;
  --text-accent: #c4b5fd;

  /* Purple accent palette */
  --accent: #a78bfa;
  --accent-dim: #7c5cbf;
  --accent-glow: hsl(263 60% 68% / 0.08);
  --accent-strong: hsl(263 60% 68% / 0.25);
  --accent-border: hsl(263 60% 68% / 0.12);
  --accent-subtle: hsl(263 60% 68% / 0.04);

  /* Type */
  --font-display: 'Anton', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* CSS Springs — matched to site-wide standard */
  --spring-snappy: linear(0, 0.2459, 0.6526, 0.9468, 1.0764, 1.0915, 1.0585, 1.0219, 0.9993, 0.9914, 0.9921, 0.9957, 0.9988, 1.0004, 1);
  --spring-snappy-dur: 450ms;
  --spring-cinematic: 950ms linear(0, 0.1759, 0.5678, 0.9772, 1.2633, 1.371, 1.3217, 1.1819, 1.0267, 0.9123, 0.8634, 0.8753, 0.9246, 0.983, 1.0284, 1.0499, 1.048, 1.0309, 1.009, 0.9912, 0.9819, 0.9816, 0.9875, 0.9956, 1.0026, 1.0065, 1.007, 1.005, 1.002, 0.9993, 0.9977, 1);

  /* Easing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

  /* Glassmorphism */
  --glass-bg: hsl(263 30% 15% / 0.08);
  --glass-border: hsl(263 40% 60% / 0.1);
  --glass-blur: blur(20px);

  /* Layout */
  --page-max: 1200px;
  --page-pad: clamp(1.5rem, 5vw, 4rem);
}

html {
  scroll-behavior: smooth;
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg-deep);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* Premium focus-visible ring */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Skip focus ring for mouse clicks */
:focus:not(:focus-visible) {
  outline: none;
}


/* ─── SHARED: REVEAL ANIMATION ────────────────── */
.js-motion .reveal-up {
  opacity: 0;
  transform: translateY(32px);
}


/* ═══════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  padding: 1.25rem 0;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease;
  /* Ensure header is never swallowed by section stacking contexts */
  isolation: isolate;
}

.site-header.is-scrolled {
  background: hsl(240 8% 5% / 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 0.6rem 0;
  border-bottom: 1px solid hsl(263 30% 50% / 0.06);
}

.site-header__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__home {
  font-family: var(--font-display);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-primary);
  transition: color 0.3s ease;
}
.site-header__home:hover { color: var(--accent); }

.site-header__nav {
  display: flex;
  gap: 2.25rem;
}

.site-header__nav a {
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}
.site-header__nav a:hover,
.site-header__nav a.is-active {
  color: var(--text-primary);
}

.site-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.site-header__burger span {
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  transition: transform 0.3s ease;
}


/* ═══════════════════════════════════════════════════
   HERO — FLUID GRADIENT BACKGROUND
   Deep blacks, rich purples, soft white light leaks.
   ═══════════════════════════════════════════════════ */
.hb-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Fluid gradient layers */
.hb-hero__fluid {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hb-hero__fluid-layer {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
  opacity: 0.7;
}

.hb-hero__fluid-layer--1 {
  width: 80vw;
  height: 80vw;
  max-width: 900px;
  max-height: 900px;
  top: -20%;
  left: -15%;
  background: radial-gradient(circle, hsl(270 80% 20% / 0.6) 0%, hsl(280 60% 10% / 0.2) 50%, transparent 70%);
}

.hb-hero__fluid-layer--2 {
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  bottom: -10%;
  right: -10%;
  background: radial-gradient(circle, hsl(250 70% 25% / 0.5) 0%, hsl(260 40% 12% / 0.15) 50%, transparent 70%);
}

.hb-hero__fluid-layer--3 {
  width: 40vw;
  height: 40vw;
  max-width: 500px;
  max-height: 500px;
  top: 30%;
  left: 40%;
  background: radial-gradient(circle, hsl(0 0% 100% / 0.04) 0%, hsl(270 20% 40% / 0.08) 40%, transparent 70%);
}

.hb-hero__fluid-layer--4 {
  width: 30vw;
  height: 30vw;
  max-width: 400px;
  max-height: 400px;
  top: 10%;
  right: 20%;
  background: radial-gradient(circle, hsl(0 0% 100% / 0.03) 0%, transparent 60%);
}

.hb-hero__fluid-noise {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

/* Dark gradient overlay for legibility */
.hb-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, transparent 0%, hsl(240 10% 4% / 0.4) 70%),
    linear-gradient(180deg,
      hsl(240 10% 4% / 0.3) 0%,
      transparent 30%,
      transparent 60%,
      hsl(240 10% 4% / 0.6) 85%,
      var(--bg-deep) 100%
    );
  pointer-events: none;
}

.hb-hero__content {
  text-align: center;
  padding: 0 var(--page-pad);
  position: relative;
  z-index: 2;
  max-width: 1000px;
}

/* Eyebrow — above title, premium qualifier */
.hb-hero__eyebrow {
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-top: 0;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

/* Main H1 Hook */
.hb-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 3.5rem);
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  text-shadow: 0 4px 60px hsl(263 60% 50% / 0.15);
}

.hb-hero__title-accent {
  color: var(--accent);
  display: block;
  margin-top: 0.15em;
}

/* Sub-brand mark — removed for cleaner hero hierarchy */

/* Authority — single line credibility, right below headline */
.hb-hero__authority {
  font-size: clamp(0.9375rem, 1.6vw, 1.125rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 1.5rem auto 0;
}

/* Inline logos — removed for cleaner hero */

/* CTA Button */
.hb-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--bg-deep);
  background: var(--accent);
  padding: 0.875rem 2.25rem;
  margin-top: 2rem;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: gap 0.3s var(--ease-out-expo),
              background 0.3s ease,
              box-shadow 0.3s ease;
}

.hb-hero__cta:hover {
  gap: 1rem;
  background: #b89fff;
  box-shadow: 0 8px 40px hsl(263 60% 60% / 0.25);
}

/* Traveling shimmer on CTA */
.hb-hero__cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    hsl(0 0% 100% / 0.18) 45%,
    hsl(0 0% 100% / 0.25) 50%,
    hsl(0 0% 100% / 0.18) 55%,
    transparent 100%
  );
  animation: ctaShimmer 4s ease-in-out 3s infinite;
  pointer-events: none;
}

@keyframes ctaShimmer {
  0% { left: -100%; }
  40% { left: 150%; }
  100% { left: 150%; }
}

.hb-hero__cta-arrow svg {
  display: block;
}

/* Hide hero elements for Motion entrance */
.js-motion .hb-hero__eyebrow { opacity: 0; }
.js-motion .hb-hero__title { opacity: 0; }
.js-motion .hb-hero__authority { opacity: 0; }
.js-motion .hb-hero__cta { opacity: 0; }
.js-motion .hb-hero__video-section { opacity: 0; transform: translateY(30px) scale(0.98); }

/* Scroll hint */
.hb-hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.js-motion .hb-hero__scroll-hint { opacity: 0; }

.hb-hero__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}


/* ═══════════════════════════════════════════════════
   HERO VIDEO — separated below hero content
   ═══════════════════════════════════════════════════ */
.hb-hero__video-section {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 4vw, 3rem) var(--page-pad) clamp(3rem, 5vw, 5rem);
  background: var(--bg-deep);
}

.hb-hero__video-inner {
  max-width: 800px;
  margin: 0 auto;
}

.hb-hero__video-wrap {
  position: relative;
  padding-top: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 60px hsl(263 60% 50% / 0.15),
    0 0 120px hsl(263 60% 50% / 0.06);
}

.hb-hero__video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* ═══════════════════════════════════════════════════
   SHARED SECTION STRUCTURE
   ═══════════════════════════════════════════════════ */
.hb-section {
  padding: clamp(48px, 6vw, 80px) 0;
  position: relative;
  overflow-x: hidden;
}

/* Alternate section surface for rhythm contrast */
.hb-section--surface {
  background: var(--bg-surface);
  border-top: 1px solid hsl(263 30% 50% / 0.06);
  border-bottom: 1px solid hsl(263 30% 50% / 0.06);
}

/* Larger breathing room for editorial-feel sections */
.hb-section--spacious {
  padding: clamp(72px, 10vw, 128px) 0;
}

.hb-section__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

.hb-section__rule {
  display: block;
  width: 0;
  height: 1px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(90deg, transparent, var(--accent-dim), transparent);
  will-change: width;
}

.hb-section__heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.hb-section__heading--left {
  text-align: left;
}

.js-motion .hb-section__heading {
  opacity: 0;
}


/* ═══════════════════════════════════════════════════
   EDITORIAL PROSE
   ═══════════════════════════════════════════════════ */
.hb-prose {
  max-width: 680px;
  margin: 0 auto;
}

.hb-prose--left {
  margin: 0;
}

.hb-prose p {
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.hb-prose p:first-child {
  font-size: clamp(1rem, 1.6vw, 1.1875rem);
  color: var(--text-primary);
  line-height: 1.75;
}

.hb-prose p:last-child {
  margin-bottom: 0;
  color: var(--text-accent);
  font-style: italic;
}


/* ═══════════════════════════════════════════════════
   PROBLEM / APPROACH — GLASSMORPHISM CARD GRID
   ═══════════════════════════════════════════════════ */
/* Problem section — slightly elevated surface for contrast */
.hb-problem {
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-surface) 100%);
  border-top: 1px solid hsl(263 30% 50% / 0.08);
  border-bottom: 1px solid hsl(263 30% 50% / 0.08);
}

.hb-problem__sub {
  text-align: center;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--text-secondary);
  max-width: 500px;
  margin: -1rem auto 3rem;
  line-height: 1.7;
}

.hb-problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}

.hb-problem__card {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: border-color 0.4s ease, transform var(--spring-snappy-dur) var(--spring-snappy), box-shadow 0.4s ease;
  overflow: hidden;
}

.hb-problem__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 30% 10%, hsl(263 60% 50% / 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.js-motion .hb-problem__card {
  opacity: 0;
  transform: translateY(30px);
}

.hb-problem__icon {
  color: var(--accent);
  margin-bottom: 1rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.hb-problem__card:hover .hb-problem__icon {
  opacity: 1;
}

.hb-problem__card-title {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.2vw, 0.9375rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.hb-problem__card-desc {
  font-size: clamp(0.8125rem, 1.1vw, 0.875rem);
  line-height: 1.7;
  color: var(--text-secondary);
}

.hb-problem__card:hover {
  border-color: hsl(263 60% 60% / 0.35);
  box-shadow:
    0 8px 40px hsl(263 60% 50% / 0.1),
    0 0 20px hsl(263 60% 60% / 0.08),
    inset 0 0 30px hsl(263 60% 60% / 0.03);
  background: hsl(263 30% 15% / 0.14);
}

/* Accent glow on reveal */
.hb-problem__card.is-revealed {
  animation: cardGlowIn 1.2s ease-out forwards;
}

@keyframes cardGlowIn {
  0% { box-shadow: 0 0 0 hsl(263 60% 60% / 0); border-color: hsl(263 60% 60% / 0); }
  40% { box-shadow: 0 0 25px hsl(263 60% 60% / 0.15); border-color: hsl(263 60% 60% / 0.3); }
  100% { box-shadow: 0 0 0 hsl(263 60% 50% / 0); border-color: var(--glass-border); }
}


/* ═══════════════════════════════════════════════════
   THE BLUEPRINT — DYNAMIC VALUE STACK
   ═══════════════════════════════════════════════════ */
.hb-blueprint__intro {
  text-align: center;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: -1rem auto 3.5rem;
  line-height: 1.7;
}

.hb-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hb-stack__item {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.25rem, 2.5vw, 2rem);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition:
    transform var(--spring-snappy-dur) var(--spring-snappy),
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    background 0.3s ease,
    filter 0.3s ease;
  cursor: default;
}

.js-motion .hb-stack__item {
  opacity: 0;
  transform: translateY(20px);
}

.hb-stack__item:hover {
  border-color: hsl(263 60% 60% / 0.3);
  box-shadow:
    0 8px 30px hsl(263 60% 50% / 0.08),
    0 0 16px hsl(263 60% 60% / 0.06);
  background: hsl(263 30% 15% / 0.12);
  filter: brightness(1.08);
}

.hb-stack__number {
  font-family: var(--font-display);
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: var(--accent);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  padding-top: 0.15em;
  min-width: 2rem;
  transition: text-shadow 0.3s ease;
}

.hb-stack__body {
  flex: 1;
}

.hb-stack__title {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 0.625rem;
  transition: color 0.3s ease;
}

.hb-stack__desc {
  font-size: clamp(0.875rem, 1.3vw, 0.9375rem);
  line-height: 1.75;
  color: var(--text-secondary);
}

/* Active accent indicator — left border glow */
.hb-stack__item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 2px;
  background: var(--accent);
  border-radius: 1px;
  opacity: 0;
  transform: scaleY(0);
  transition: opacity 0.35s ease, transform 0.4s var(--ease-out-expo);
  box-shadow: 0 0 12px hsl(263 60% 60% / 0.4);
}

.hb-stack__item {
  position: relative;
}

.hb-stack__item.is-active::after {
  opacity: 1;
  transform: scaleY(1);
}

.hb-stack__item.is-active .hb-stack__number {
  color: var(--accent);
  text-shadow: 0 0 20px hsl(263 60% 60% / 0.3);
}

.hb-stack__item.is-active .hb-stack__title {
  color: var(--text-primary);
}

.hb-stack__item.is-active {
  border-color: hsl(263 60% 60% / 0.3);
  box-shadow: 0 8px 30px hsl(263 60% 50% / 0.08);
}


/* ═══════════════════════════════════════════════════
   SHARED BUTTON
   ═══════════════════════════════════════════════════ */
.hb-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.875rem 2.25rem;
  border: none;
  cursor: pointer;
  transition: gap 0.3s var(--ease-out-expo),
              background 0.3s ease,
              box-shadow 0.3s ease,
              color 0.3s ease,
              border-color 0.3s ease;
}

.hb-btn--primary {
  color: var(--bg-deep);
  background: var(--accent);
  position: relative;
  overflow: hidden;
}

.hb-btn--primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    hsl(0 0% 100% / 0.18) 45%,
    hsl(0 0% 100% / 0.25) 50%,
    hsl(0 0% 100% / 0.18) 55%,
    transparent 100%
  );
  animation: ctaShimmer 4s ease-in-out 3s infinite;
  pointer-events: none;
}

.hb-btn--primary:hover {
  gap: 1rem;
  background: #b89fff;
  box-shadow: 0 8px 40px hsl(263 60% 60% / 0.25);
}

.hb-btn--outline {
  color: var(--accent);
  background: transparent;
  border: 1px solid var(--accent-border);
}

.hb-btn--outline:hover {
  gap: 1rem;
  border-color: var(--accent);
  background: hsl(263 60% 68% / 0.06);
}

.hb-btn__arrow svg {
  display: block;
}


/* ═══════════════════════════════════════════════════
   AUTHORITY — CREDITS MARQUEE
   ═══════════════════════════════════════════════════ */
.hb-authority {
  padding: clamp(30px, 4vw, 48px) 0;
}

.hb-authority__label {
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-tertiary);
  margin-bottom: 2.5rem;
}

.hb-authority__wall {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.hb-authority__mask {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.hb-authority__mask--left {
  left: 0;
  background: linear-gradient(to right, var(--bg-deep), transparent);
}

.hb-authority__mask--right {
  right: 0;
  background: linear-gradient(to left, var(--bg-deep), transparent);
}

.hb-authority__track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hb-authority__credit {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.375rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-tertiary);
  padding: 0 1.25rem;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.hb-authority__credit:hover {
  color: var(--text-secondary);
}

.hb-authority__dot {
  width: 3px;
  height: 3px;
  background: var(--accent-dim);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.4;
}

.hb-authority__stats {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.hb-authority__stat {
  text-align: center;
}

.hb-authority__stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  text-transform: uppercase;
  color: var(--text-accent);
  letter-spacing: 0.02em;
}

.hb-authority__stat-label {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-tertiary);
  margin-top: 0.25rem;
}


/* ═══════════════════════════════════════════════════
   MEET PAUL — VIDEO FOCAL POINT
   ═══════════════════════════════════════════════════ */
.hb-meet {
  background: var(--bg-surface);
  border-top: 1px solid hsl(263 30% 50% / 0.06);
  border-bottom: 1px solid hsl(263 30% 50% / 0.06);
}

.hb-meet__inner {
  max-width: 900px;
  text-align: center;
}

.hb-meet__video-wrap {
  margin-bottom: 3rem;
}

.hb-meet__video {
  position: relative;
  padding-top: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 80px hsl(263 60% 50% / 0.12),
    0 0 200px hsl(263 60% 50% / 0.04);
}

.hb-meet__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hb-meet__unmute {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(15, 15, 20, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid hsl(263 40% 60% / 0.2);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
  z-index: 3;
}

.hb-meet__unmute:hover {
  background: rgba(15, 15, 20, 0.9);
  border-color: var(--accent);
}

.hb-meet__unmute.is-unmuted svg line:last-child {
  display: none;
}

.hb-meet__text {
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}


/* ═══════════════════════════════════════════════════
   SOCIAL PROOF — 3D PHONE GALLERY
   Cinematic stage: huge breathing room, layered
   purple/black atmosphere, oversized phones with
   scroll-driven 3D perspective.
   ═══════════════════════════════════════════════════ */
.hb-phones {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 8vw, 8rem) 0 clamp(5rem, 8vw, 8rem);
  background: #000;
  min-height: 500px;
  border-top: 1px solid hsl(263 40% 30% / 0.2);
  border-bottom: 1px solid hsl(263 40% 30% / 0.2);
}

/* ── Layered atmospheric glow ── */
.hb-phones__atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hb-phones__glow {
  position: absolute;
  pointer-events: none;
}

.hb-phones__glow--core {
  inset: 10% 15%;
  background: radial-gradient(
    ellipse 80% 70% at 50% 50%,
    hsl(263 70% 22% / 0.55) 0%,
    hsl(263 60% 14% / 0.3) 35%,
    transparent 70%
  );
  filter: blur(40px);
}

.hb-phones__glow--wide {
  inset: -10% -5%;
  background: radial-gradient(
    ellipse 100% 60% at 50% 60%,
    hsl(270 50% 12% / 0.4) 0%,
    hsl(260 40% 8% / 0.15) 50%,
    transparent 80%
  );
}

.hb-phones__glow--floor {
  bottom: -5%;
  left: 10%;
  right: 10%;
  height: 40%;
  background: radial-gradient(
    ellipse 90% 100% at 50% 100%,
    hsl(263 60% 18% / 0.45) 0%,
    transparent 70%
  );
  filter: blur(30px);
}

/* ── Header ── */
.hb-phones__header {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--page-pad);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.hb-phones__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--accent);
  margin-bottom: 1.25rem;
  opacity: 1;
}

.hb-phones__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  opacity: 1;
}

.hb-phones__headline-accent {
  color: var(--accent);
}

.hb-phones__hint {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--text-secondary);
  opacity: 1;
}

.js-motion .hb-phones__eyebrow,
.js-motion .hb-phones__headline,
.js-motion .hb-phones__hint,
.js-motion .hb-phones__item {
  opacity: 0;
}

/* ── Track ── */
.hb-phones__track-wrap {
  position: relative;
  z-index: 2;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  perspective: 1400px;
  perspective-origin: 50% 45%;
  cursor: grab;
  padding: 3rem 0;
}

.hb-phones__track-wrap::-webkit-scrollbar {
  display: none;
}

.hb-phones__track {
  display: flex;
  gap: clamp(2rem, 3.5vw, 3.5rem);
  padding: 2rem clamp(3rem, 10vw, 8rem);
  width: max-content;
  will-change: transform;
}

/* ── Individual phone item ── */
.hb-phones__item {
  position: relative;
  flex-shrink: 0;
  width: clamp(260px, 24vw, 340px);
  height: clamp(540px, 50vw, 680px);
  transform-style: preserve-3d;
  will-change: transform, opacity;
  cursor: pointer;
  opacity: 1;
}

.hb-phones__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 28px;
  filter: brightness(0.75) saturate(0.8);
  transition: filter 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-user-drag: none;
  box-shadow: 0 8px 40px hsl(263 60% 20% / 0.2);
}

/* Spotlight: hovered phone glows, siblings dim */
.hb-phones__track:hover .hb-phones__item {
  opacity: 0.45;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hb-phones__track:hover .hb-phones__item:hover {
  opacity: 1;
}

.hb-phones__item:hover img {
  filter: brightness(1.15) saturate(1.15) contrast(1.05);
  box-shadow:
    0 0 80px hsl(263 70% 55% / 0.4),
    0 0 160px hsl(263 60% 45% / 0.18),
    0 24px 80px hsl(0 0% 0% / 0.6);
  border: 1px solid hsl(263 60% 60% / 0.25);
}

/* ── Label overlay — premium pill ── */
.hb-phones__label {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-primary);
  background: hsl(263 30% 10% / 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  border: 1px solid hsl(263 60% 55% / 0.2);
  box-shadow: 0 4px 20px hsl(263 60% 30% / 0.25);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hb-phones__item:hover .hb-phones__label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Label text reveal animation ── */
.hb-phones__label[data-revealed] {
  animation: labelReveal 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes labelReveal {
  0% { clip-path: inset(0 100% 0 0); }
  100% { clip-path: inset(0 0 0 0); }
}

/* ── Fade edges — wider for cinematic vignette ── */
.hb-phones__track-wrap::before,
.hb-phones__track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(60px, 10vw, 180px);
  z-index: 3;
  pointer-events: none;
}

.hb-phones__track-wrap::before {
  left: 0;
  background: linear-gradient(to right, #000 0%, transparent 100%);
}

.hb-phones__track-wrap::after {
  right: 0;
  background: linear-gradient(to left, #000 0%, transparent 100%);
}


/* ═══════════════════════════════════════════════════
   FOR PARENTS — EMOTIONAL CINEMATIC SECTION
   Full-bleed with warm gradient BG, dark overlay,
   glassmorphism text card.
   ═══════════════════════════════════════════════════ */
.hb-parents {
  position: relative;
  padding: clamp(48px, 6vw, 80px) 0;
  overflow: hidden;
}

.hb-parents__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Warm emotional gradient — simulates soft parental support imagery */
.hb-parents__bg-warm {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 40%, hsl(30 40% 18% / 0.5) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 70% 60%, hsl(280 30% 15% / 0.4) 0%, transparent 60%),
    radial-gradient(ellipse 80% 70% at 50% 50%, hsl(20 35% 12% / 0.3) 0%, transparent 70%),
    linear-gradient(180deg, hsl(25 20% 10%) 0%, hsl(260 20% 8%) 100%);
}

/* Heavy cinematic dark overlay */
.hb-parents__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      var(--bg-deep) 0%,
      hsl(240 10% 4% / 0.5) 15%,
      hsl(240 10% 4% / 0.4) 50%,
      hsl(240 10% 4% / 0.5) 85%,
      var(--bg-deep) 100%
    );
}

.hb-parents__inner {
  position: relative;
  z-index: 1;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-pad);
  display: flex;
  justify-content: center;
}

/* Glassmorphism card — frosted dark glass */
.hb-parents__glass {
  max-width: 680px;
  padding: clamp(2rem, 5vw, 3.5rem);
  background: rgba(15, 15, 20, 0.6);
  border: 1px solid hsl(263 40% 60% / 0.15);
  border-radius: 16px;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  box-shadow:
    0 0 80px hsl(263 60% 50% / 0.06),
    0 24px 60px hsl(240 10% 4% / 0.4);
}

.hb-parents__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--text-primary);
}

.hb-parents__body p {
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.hb-parents__body p:last-child {
  margin-bottom: 0;
  color: var(--text-accent);
  font-style: italic;
}

.hb-parents__btn {
  margin-top: 2rem;
}


/* ═══════════════════════════════════════════════════
   FAQ — ACCORDION
   ═══════════════════════════════════════════════════ */
.hb-faq__sub {
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-tertiary);
  margin-top: -1.5rem;
  margin-bottom: 3rem;
}

.hb-faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hb-faq__item {
  border-bottom: 1px solid hsl(263 30% 50% / 0.06);
}

.hb-faq__item:first-child {
  border-top: 1px solid hsl(263 30% 50% / 0.06);
}

.hb-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.3vw, 0.9375rem);
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  transition: color 0.3s ease;
}

.hb-faq__question::-webkit-details-marker { display: none; }

.hb-faq__question::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-tertiary);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s var(--ease-out-expo), color 0.3s ease;
}

.hb-faq__item[open] .hb-faq__question::after {
  transform: rotate(45deg);
  color: var(--accent);
}

.hb-faq__item[open] .hb-faq__question {
  color: var(--accent);
}

.hb-faq__answer {
  padding: 0 0 1.5rem 0;
  overflow: hidden;
}

.hb-faq__answer p {
  font-size: clamp(0.8125rem, 1.2vw, 0.875rem);
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.hb-faq__answer p:last-child {
  margin-bottom: 0;
}


/* ═══════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════ */
.hb-final-cta {
  padding: clamp(48px, 6vw, 80px) 0;
}

.hb-final-cta__inner {
  text-align: center;
  position: relative;
}

.hb-final-cta__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 500px;
  background: radial-gradient(ellipse, hsl(263 60% 50% / 0.08) 0%, transparent 55%);
  pointer-events: none;
  animation: ctaGlowPulse 5s ease-in-out infinite;
}

@keyframes ctaGlowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

.hb-final-cta__badge {
  display: inline-block;
  font-size: 0.5625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 0.375rem 0.875rem;
  background: hsl(263 60% 60% / 0.08);
  color: var(--accent);
  border: 1px solid var(--accent-border);
  margin-bottom: 2rem;
}

.hb-final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.hb-final-cta__rule {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 1.5rem;
}

.hb-final-cta__desc {
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

.hb-final-cta__image {
  max-width: 420px;
  margin: 0 auto 2rem;
}

.hb-final-cta__image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.hb-final-cta__note {
  font-size: 0.75rem;
  font-style: italic;
  color: var(--text-tertiary);
  margin-top: 1.5rem;
}

/* Hide final CTA elements for JS-powered reveal */
.js-motion .hb-final-cta__image,
.js-motion .hb-final-cta__badge,
.js-motion .hb-final-cta__title,
.js-motion .hb-final-cta__desc,
.js-motion .hb-final-cta .hb-btn,
.js-motion .hb-final-cta__note {
  opacity: 0;
}

.js-motion .hb-final-cta__rule {
  width: 0;
}


/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
  padding: clamp(4rem, 8vh, 6rem) 0 2rem;
  border-top: 1px solid hsl(263 30% 50% / 0.05);
  background: linear-gradient(180deg, hsl(240 8% 6%) 0%, var(--bg-deep) 100%);
}

.footer__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer__brand { text-align: center; }

.footer__wordmark {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-primary);
  display: block;
  margin-bottom: 0.5rem;
}

.footer__tagline {
  font-size: 0.6875rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.25rem;
}

.footer__nav a {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}
.footer__nav a:hover { color: var(--text-primary); }

.footer__social {
  display: flex;
  gap: 2rem;
}

.footer__social-link {
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  transition: color 0.3s ease;
}
.footer__social-link:hover { color: var(--accent); }

.footer__contact-line {
  padding-top: 1rem;
  border-top: 1px solid hsl(263 30% 50% / 0.04);
  width: 100%;
  text-align: center;
}

.footer__email {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}
.footer__email:hover { color: var(--accent); }

.footer__inquiries {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  margin-left: 0.5rem;
}

.footer__bottom {
  font-size: 0.6875rem;
  color: var(--text-tertiary);
  text-align: center;
}


/* ═══════════════════════════════════════════════════
   RESPONSIVE — 768px
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .site-header__nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: hsl(240 8% 5% / 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 0 var(--page-pad);
    gap: 0;
    border-bottom: 1px solid hsl(263 30% 50% / 0.06);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.45s var(--ease-out-expo),
                opacity 0.35s ease,
                padding 0.35s ease;
  }

  .site-header__nav.is-open {
    max-height: 400px;
    opacity: 1;
    padding: 1.5rem var(--page-pad);
    gap: 0.25rem;
  }

  .site-header__nav a {
    padding: 0.75rem 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .site-header__burger { display: flex; }

  .hb-problem__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .hb-authority__stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hb-phones__item {
    width: 230px;
    height: 480px;
  }

  /* Better mobile touch targets */
  .hb-hero__cta,
  .hb-btn {
    min-height: 48px;
  }

  .hb-faq__question {
    min-height: 48px;
    padding: 1rem 0;
  }

  .footer__nav {
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
  }

  .footer__nav a {
    padding: 0.5rem 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .footer__social {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
  }

  .footer__social-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}


/* ═══════════════════════════════════════════════════
   RESPONSIVE — 480px
   ═══════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hb-hero__title {
    font-size: clamp(1.5rem, 7vw, 2.25rem);
  }

  .hb-hero__cta,
  .hb-btn {
    width: 100%;
    justify-content: center;
  }

  .hb-stack__item {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.25rem;
  }

  .hb-final-cta__title {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .hb-parents__glass {
    padding: 1.5rem;
  }

  .hb-phones__item {
    width: 200px;
    height: 420px;
  }

  .hb-phones__headline {
    font-size: 1.75rem;
  }
}


/* ═══════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal-up {
    opacity: 1 !important;
    transform: none !important;
  }

  .hb-hero__fluid-layer {
    animation: none !important;
  }

  .hb-hero__eyebrow,
  .hb-hero__title,
  .hb-hero__authority,
  .hb-hero__cta,
  .hb-hero__scroll-hint,
  .hb-hero__video-section,
  .hb-section__heading {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .hb-stack__item,
  .hb-problem__card {
    opacity: 1 !important;
    transform: none !important;
  }

  .hb-authority__track {
    animation: none !important;
  }

  .hb-phones__item {
    opacity: 1 !important;
    transform: none !important;
  }

  .hb-phones__eyebrow,
  .hb-phones__headline,
  .hb-phones__hint {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .hb-final-cta__image,
  .hb-final-cta__badge,
  .hb-final-cta__title,
  .hb-final-cta__desc,
  .hb-final-cta .hb-btn,
  .hb-final-cta__note {
    opacity: 1 !important;
    transform: none !important;
  }

  .hb-final-cta__rule {
    width: 40px !important;
  }

  .hb-final-cta__glow {
    animation: none !important;
  }

  .hb-hero__cta::after,
  .hb-btn--primary::after {
    animation: none !important;
    display: none !important;
  }

  .hb-faq__item {
    opacity: 1 !important;
    transform: none !important;
  }

  @keyframes labelReveal {
    0%, 100% { clip-path: none; }
  }
}


/* ═══════════════════════════════════════════════════
   TOUCH / NO-HOVER
   ═══════════════════════════════════════════════════ */
@media (hover: none) {
  .hb-hero__cta:hover,
  .hb-btn:hover {
    box-shadow: none;
  }

  .hb-stack__item.is-active {
    border-color: var(--glass-border);
    box-shadow: none;
  }

  .hb-problem__card:hover {
    border-color: var(--glass-border);
    box-shadow: none;
  }

  .hb-phones__item:hover img {
    filter: brightness(0.75) saturate(0.8);
  }

  .hb-phones__track:hover .hb-phones__item {
    opacity: 1;
  }

  .hb-phones__item:hover .hb-phones__label {
    opacity: 0;
  }
}
