/* ============================================================
   Wiserdusk homepage — stable layout (no overlaps)
   Standalone stylesheet for index.html (style.css not loaded).
   ============================================================ */

:root {
  --hc-bg: #050816;
  --hc-surface: #0a1024;
  --hc-purple: #8b5cf6;
  --hc-pink: #ec4899;
  --hc-blue: #3b82f6;
  --hc-text: #fff;
  --hc-muted: rgba(255, 255, 255, 0.65);
  --hc-border: rgba(255, 255, 255, 0.12);
  --hc-font: 'Inter', system-ui, sans-serif;
  --hc-max: 1400px;
  --hc-mobile-bar-h: calc(76px + env(safe-area-inset-bottom, 0px));
}

/* Homepage chrome resets (do not kill intentional hero floats / 3D laptop) */
body.page-home header.hc-nav {
  padding: 0 !important;
  background: rgba(5, 8, 22, 0.97) !important;
  box-shadow: none !important;
}

body.page-home header.hc-nav .logo {
  background: none !important;
  -webkit-text-fill-color: unset !important;
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
}

html:has(body.page-home),
body.page-home {
  margin: 0 !important;
  padding: 0 !important;
  background: var(--hc-bg) !important;
  color: var(--hc-text) !important;
  font-family: var(--hc-font) !important;
  overflow-x: hidden !important;
}

body.page-home {
  padding-top: 88px !important;
}

@media (max-width: 900px) {
  body.page-home {
    padding-top: 64px !important;
  }
}

body.page-home section {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  position: relative !important;
}

body.page-home section.hc-hero {
  display: flex !important;
}

body.page-home .hero,
body.page-home .how-it-works,
body.page-home .pricing,
body.page-home .stats {
  background: transparent !important;
  display: block !important;
  grid-template-columns: none !important;
}

/* ── Shell ── */
.hc-section {
  width: 100%;
  max-width: var(--hc-max);
  margin: 0 auto;
  padding: 44px 32px;
}

.hc-section__title {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  text-align: center;
  color: #fff !important;
}

.hc-section__sub,
.hc-section__kicker {
  text-align: center;
  color: var(--hc-muted) !important;
}

.hc-section__kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a78bfa !important;
}

.hc-section__sub {
  margin: 0 0 24px;
  font-size: 16px;
}

.hc-gradient {
  background: linear-gradient(135deg, var(--hc-purple), var(--hc-pink));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── NAV ── */
body.page-home header.hc-nav,
.hc-nav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 300 !important;
  height: 88px !important;
  display: block !important;
  padding: 0 !important;
  /* Solid bg — avoid backdrop-filter here: it traps position:fixed children */
  background: rgba(5, 8, 22, 0.97) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.hc-nav__inner {
  max-width: var(--hc-max);
  height: 88px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex !important;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 302;
}

.hc-nav .mobile-menu-toggle {
  display: none;
}

.hc-nav__logo {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff !important;
  flex-shrink: 0;
  line-height: 0;
  background: none !important;
}

.hc-nav__logo::before {
  content: none !important;
  display: none !important;
}

.hc-nav__logo img,
body.page-home .hc-nav__logo .brand-logo-img {
  display: block !important;
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.hc-nav__logo-text {
  display: none !important;
}

/* Desktop: nav lives outside header (sibling) so mobile drawer isn't trapped */
body.page-home nav#mainNav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 88px;
  z-index: 301;
  background: transparent;
  pointer-events: none;
  transform: none;
  padding: 0;
  box-shadow: none;
}

body.page-home nav#mainNav .hc-nav__links,
body.page-home nav#mainNav ul {
  pointer-events: auto;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 8px 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: min(720px, calc(100vw - 420px));
}

.hc-nav__links a,
body.page-home nav#mainNav a {
  color: rgba(255, 255, 255, 0.75) !important;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
  padding-bottom: 4px;
}

.hc-nav__links a[href="index.html"],
body.page-home nav#mainNav a[href="index.html"] {
  color: #fff !important;
  box-shadow: inset 0 -2px 0 #a78bfa;
}

.hc-nav .nav-drawer-close,
body.page-home .nav-drawer-close {
  display: none;
}

.hc-nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: auto;
}

.hc-nav__signin {
  height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff !important;
  font-weight: 600;
  cursor: pointer;
}

.hc-nav__cta {
  height: 48px;
  padding: 0 20px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--hc-purple), var(--hc-pink));
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 1024px) {
  body.page-home header.hc-nav,
  .hc-nav {
    height: 64px !important;
  }

  .hc-nav__inner {
    height: 64px;
    padding: 0 max(14px, env(safe-area-inset-right)) 0 max(14px, env(safe-area-inset-left));
    gap: 8px;
  }

  .hc-nav__logo {
    flex: 0 1 auto;
    min-width: 0;
    max-width: 46%;
  }

  .hc-nav__logo img,
  body.page-home .hc-nav__logo .brand-logo-img {
    height: 32px;
    max-width: 100%;
  }

  .hc-nav .mobile-menu-toggle,
  body.page-home .mobile-menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    order: 3;
    margin-left: 0;
    flex-shrink: 0;
    min-width: 42px;
    min-height: 42px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    z-index: 303;
    -webkit-tap-highlight-color: transparent;
  }

  .hc-nav__actions {
    order: 2;
    margin-left: auto;
    gap: 6px;
    flex-shrink: 0;
  }

  .hc-nav__actions .hc-nav__cta {
    display: none !important;
  }

  .hc-nav__signin {
    height: 38px;
    padding: 0 10px;
    font-size: 12px;
    white-space: nowrap;
  }

  /* Off-canvas side panel — sibling of header, full viewport */
  body.page-home nav#mainNav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: auto !important;
    bottom: 0 !important;
    width: min(300px, 88vw) !important;
    height: 100vh !important;
    height: 100dvh !important;
    max-width: 300px;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    background: #0b1224 !important;
    box-shadow: 8px 0 32px rgba(0, 0, 0, 0.45);
    z-index: 4000 !important;
    transform: translateX(-105%) !important;
    transition: transform 0.25s ease;
    padding: 12px 0 24px !important;
    pointer-events: none;
    visibility: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  body.page-home nav#mainNav.active {
    transform: translateX(0) !important;
    pointer-events: auto;
    visibility: visible;
  }

  body.page-home nav#mainNav .nav-drawer-close {
    display: flex !important;
    align-self: flex-end;
    margin: 4px 12px 8px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
  }

  body.page-home nav#mainNav .hc-nav__links,
  body.page-home nav#mainNav ul {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    gap: 0 !important;
    max-width: none;
    width: 100%;
    pointer-events: auto;
    padding: 0;
    margin: 0;
  }

  body.page-home nav#mainNav li {
    width: 100%;
  }

  body.page-home nav#mainNav ul li {
    border-bottom: none !important;
  }

  body.page-home nav#mainNav a {
    display: block !important;
    padding: 14px 22px !important;
    color: rgba(255, 255, 255, 0.88) !important;
    box-shadow: none !important;
    font-size: 16px;
    border-bottom: none !important;
  }

  body.page-home nav#mainNav a[href="index.html"] {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.06);
  }

  body.page-home .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 3500;
  }

  body.page-home .nav-overlay.active {
    display: block !important;
  }

  body.menu-open {
    overflow: hidden;
  }

  /* Hero sits below shorter mobile header */
  .hc-hero {
    margin-top: 0;
  }
}

/* ── HERO: reference layout — copy | laptop+floats | auth ── */
.hc-hero {
  position: relative;
  background: #050816 !important;
  padding: 0 !important;
  height: calc(100svh - 88px);
  max-height: calc(100svh - 88px);
  min-height: 640px;
  display: flex !important;
  align-items: center;
  overflow: hidden !important;
}

.hc-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hc-hero__glow-purple {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 55% at 18% 30%, rgba(139, 92, 246, 0.45), transparent 55%);
}

.hc-hero__glow-pink {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 45% 50% at 88% 20%, rgba(236, 72, 153, 0.28), transparent 50%);
}

.hc-hero__glow-blue {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 45% at 55% 85%, rgba(59, 130, 246, 0.22), transparent 55%);
}

.hc-hero__floor {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -5%;
  height: 48%;
  background:
    linear-gradient(90deg, rgba(139, 92, 246, 0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(139, 92, 246, 0.12) 1px, transparent 1px);
  background-size: 48px 48px;
  transform: perspective(600px) rotateX(62deg);
  transform-origin: center bottom;
  mask-image: linear-gradient(to top, rgba(0,0,0,0.55), transparent 85%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.55), transparent 85%);
}

.hc-hero__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}

.hc-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1480px;
  height: 100%;
  margin: 0 auto;
  padding: 16px 28px 24px;
  display: grid;
  grid-template-columns: minmax(300px, 1.05fr) minmax(340px, 1.15fr) minmax(300px, 0.88fr);
  gap: 20px 28px;
  align-items: center;
  box-sizing: border-box;
}

.hc-hero__col {
  min-width: 0;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hc-hero__col--dash {
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hc-hero__col--auth {
  z-index: 3;
  align-items: stretch;
}

.hc-hero__col--copy {
  z-index: 3;
}

.hero-left-panel {
  display: flex;
  flex-direction: column;
}

.hero-left-panel[hidden] {
  display: none !important;
}

.hc-hero__badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 6px;
  height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(251, 191, 36, 0.4);
  background: rgba(251, 191, 36, 0.08);
  color: #fbbf24;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hc-hero__title {
  margin: 14px 0 0;
  font-size: clamp(34px, 3.6vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff !important;
}

.hc-hero__tagline {
  margin: 10px 0 0;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 700;
  color: #fff !important;
}

.hc-hero__body {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62) !important;
  max-width: 440px;
}

/* 3 horizontal feature cards like reference */
.hc-hero__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hc-hero__feat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 0;
}

.hc-hero__feat-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 92, 246, 0.28);
  font-size: 16px;
  margin: 0 0 8px;
}

.hc-hero__feat strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
  line-height: 1.25;
}

.hc-hero__feat p {
  margin: 0;
  font-size: 11px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.55);
}

.hc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hc-hero__btn-primary {
  height: 48px;
  padding: 0 22px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(90deg, #ec4899, #8b5cf6);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.35);
}

.hc-hero__btn-secondary {
  height: 48px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hc-hero__trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.hc-hero__avatars {
  display: flex;
}

.hc-hero__avatar {
  width: 30px;
  height: 30px;
  margin-left: -6px;
  border-radius: 50%;
  border: 2px solid #050816;
  background: #1e293b;
  overflow: hidden;
  flex-shrink: 0;
}

.hc-hero__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hc-hero__avatar:first-child {
  margin-left: 0;
}

.hc-hero__trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3;
}

.hc-hero__trust-text strong {
  color: #fff;
}

.hc-hero__stars {
  color: #fbbf24;
  letter-spacing: 1px;
}

.hc-hero__switch {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  color: #a78bfa;
  text-decoration: none;
}

/* ── Center stage: floats stay INSIDE this box ── */
.hc-dash {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 36px 28px 20px;
  box-sizing: border-box;
}

.hc-dash__laptop {
  position: relative;
  z-index: 1;
  width: 100%;
  transform: perspective(900px) rotateY(-8deg) rotateX(4deg);
  transform-style: preserve-3d;
}

.hc-dash__lid {
  background: linear-gradient(180deg, #3f3f46, #18181b);
  border-radius: 14px 14px 4px 4px;
  padding: 10px 10px 6px;
  border: 1px solid rgba(167, 139, 250, 0.55);
  box-shadow:
    0 0 0 1px rgba(139, 92, 246, 0.25),
    0 0 40px rgba(139, 92, 246, 0.45),
    0 24px 48px rgba(0, 0, 0, 0.55);
}

.hc-dash__bezel {
  border-radius: 6px;
  overflow: hidden;
  background: #0b1224;
}

.hc-dash__screen {
  width: 100%;
  min-height: 220px;
  background: linear-gradient(145deg, #0f172a 0%, #1e1b4b 55%, #312e81 100%);
  padding: 10px;
}

.hc-dash__head {
  display: flex;
  gap: 8px;
  font-size: 10px;
  color: rgba(15, 23, 42, 0.7);
  margin-bottom: 8px;
}

.hc-dash__live {
  margin-left: auto;
  color: #10b981;
  font-weight: 700;
}

.hc-dash__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 8px;
}

.hc-dash__kpi {
  padding: 6px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hc-dash__kpi small {
  display: block;
  font-size: 8px;
  color: rgba(255, 255, 255, 0.45);
}

.hc-dash__kpi strong {
  display: block;
  font-size: 12px;
  color: #fff;
}

.hc-dash__kpi em {
  font-size: 9px;
  font-style: normal;
  color: #10b981;
}

.hc-dash__charts {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 6px;
}

.hc-dash__chart {
  padding: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.hc-dash__chart small {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.45);
}

.hc-dash__big {
  margin: 12px 0 0;
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  color: #fff;
}

.hc-dash__bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 44px;
  margin-top: 6px;
}

.hc-dash__bars span {
  flex: 1;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, #60a5fa, #8b5cf6);
  min-height: 6px;
}

.hc-dash__hinge {
  height: 6px;
  margin: 0 4%;
  background: linear-gradient(180deg, #52525b, #27272a);
  border-radius: 0 0 2px 2px;
}

.hc-dash__base {
  height: 14px;
  margin: 0 6%;
  background: linear-gradient(180deg, #3f3f46, #18181b);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

/* Floating KPI cards — absolute only inside .hc-dash */
.hc-float {
  position: absolute;
  z-index: 4;
  width: 148px;
  padding: 12px 12px 10px;
  border-radius: 14px;
  background: rgba(12, 18, 40, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.hc-float__label {
  display: block;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2px;
}

.hc-float__val {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
}

.hc-float__val--green {
  color: #34d399;
}

.hc-float__sub {
  display: block;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

.hc-float__spark {
  display: block;
  width: 100%;
  height: 24px;
  margin-top: 6px;
}

.hc-float__bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 28px;
  margin-top: 6px;
}

.hc-float__bars span {
  flex: 1;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, #60a5fa, #a78bfa);
}

.hc-float__ring {
  position: absolute;
  right: 10px;
  top: 28px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background:
    conic-gradient(#8b5cf6 0 68%, rgba(255, 255, 255, 0.12) 68% 100%);
  mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 4px));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 4px));
}

.hc-float--revenue {
  top: 0;
  left: 0;
}

.hc-float--profit {
  top: 42%;
  left: -4px;
}

.hc-float--cash {
  bottom: 28px;
  right: 0;
}

.hc-float--forecast {
  top: 12px;
  right: 4px;
  width: 120px;
}

/* Auth panel — neon dual glow like reference */
.hc-auth {
  width: 100%;
  max-width: 400px;
  margin: 0 0 0 auto;
  padding: 22px 22px 18px;
  border-radius: 22px;
  background: rgba(8, 12, 32, 0.94);
  border: 1.5px solid transparent;
  background-clip: padding-box;
  box-shadow:
    0 0 0 1px rgba(59, 130, 246, 0.55),
    0 0 0 2px rgba(236, 72, 153, 0.25),
    0 0 48px rgba(59, 130, 246, 0.35),
    0 0 64px rgba(236, 72, 153, 0.2),
    0 24px 48px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: calc(100svh - 120px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

@media (max-width: 900px) {
  .hc-auth {
    max-height: none;
    overflow: visible;
    overscroll-behavior: auto;
  }
}

.hc-auth .hero-auth-tabs {
  display: flex;
  height: 44px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hc-auth .hero-auth-tab {
  flex: 1;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  cursor: pointer;
}

.hc-auth .hero-auth-tab.active {
  color: #fff;
  border-bottom-color: #8b5cf6;
}

.hc-auth .hero-auth-form {
  display: none;
}

.hc-auth .hero-auth-form.active {
  display: block;
}

.hc-auth .signup-step {
  display: none;
}

.hc-auth .signup-step.active {
  display: block;
}

.hc-auth label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.hc-auth .form-group {
  margin-bottom: 8px;
  overflow: visible;
  position: relative;
}

.hc-auth .signup-step .form-group {
  overflow: visible;
}

/* Searchable taxonomy dropdowns — homepage auth uses home-clean.css only */
.hc-auth .searchable-select,
.hc-auth .searchable-multi-select {
  position: relative;
  width: 100%;
}

.hc-auth .searchable-select-input,
.hc-auth .searchable-multi-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.85);
  font-family: inherit;
  font-size: 16px;
  color: #fff;
  box-sizing: border-box;
}

.hc-auth .searchable-select-input:focus,
.hc-auth .searchable-multi-input:focus {
  outline: none;
  border-color: rgba(139, 92, 246, 0.8);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.hc-auth .searchable-select.is-disabled .searchable-select-input,
.hc-auth .searchable-multi-select.is-disabled .searchable-multi-input {
  opacity: 0.65;
  cursor: not-allowed;
}

.hc-auth .searchable-select-native,
.hc-auth .searchable-multi-native {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

.hc-auth .searchable-select-list,
.hc-auth .searchable-multi-list,
.searchable-select-list,
.searchable-multi-list {
  position: fixed;
  max-height: 240px;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background: #0f172a;
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  z-index: 10050;
  -webkit-overflow-scrolling: touch;
}

.hc-auth .searchable-select-list[hidden],
.hc-auth .searchable-multi-list[hidden],
.searchable-select-list[hidden],
.searchable-multi-list[hidden] {
  display: none !important;
}

.hc-auth .searchable-select > .searchable-select-list:not([hidden]),
.hc-auth .searchable-multi-select > .searchable-multi-list:not([hidden]) {
  display: none;
}

.hc-auth .searchable-select-option,
.hc-auth .searchable-multi-option,
.searchable-select-option,
.searchable-multi-option {
  padding: 10px 14px;
  font-size: 13px;
  color: #e2e8f0;
  cursor: pointer;
}

.hc-auth .searchable-select-option:hover,
.hc-auth .searchable-select-option.is-active,
.hc-auth .searchable-multi-option:hover,
.hc-auth .searchable-multi-option.is-active,
.searchable-select-option:hover,
.searchable-select-option.is-active,
.searchable-multi-option:hover,
.searchable-multi-option.is-active {
  background: rgba(139, 92, 246, 0.22);
  color: #fff;
}

.hc-auth .searchable-select-more,
.hc-auth .searchable-select-empty,
.hc-auth .searchable-multi-more,
.hc-auth .searchable-multi-empty,
.searchable-select-more,
.searchable-select-empty,
.searchable-multi-more,
.searchable-multi-empty {
  padding: 8px 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.hc-auth .searchable-multi-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
  min-height: 28px;
}

.hc-auth .searchable-multi-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px 4px 10px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.25);
  color: #e9d5ff;
  font-size: 12px;
  font-weight: 500;
}

.hc-auth .searchable-multi-chip-remove {
  border: none;
  background: transparent;
  color: #c4b5fd;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 0 2px;
}

.hc-auth .searchable-multi-empty {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  padding: 4px 0;
}

.hc-auth .searchable-select > select,
.hc-auth .searchable-multi-select > select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  border: 0 !important;
}

.hc-auth input,
.hc-auth select:not(.searchable-select-native):not(.searchable-multi-native),
.hc-auth textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.hc-auth select:not(.searchable-select-native):not(.searchable-multi-native) {
  height: 42px;
  padding: 0 36px 0 12px;
  border-radius: 10px;
  border: 1px solid var(--hc-border);
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 16px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 8l5 5 5-5' stroke='%23c4b5fd' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
}

.hc-auth input,
.hc-auth textarea {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid var(--hc-border);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 14px;
}

.hc-auth textarea {
  height: auto;
  min-height: 72px;
  padding: 10px 12px;
}

.hc-auth .hero-auth-submit {
  width: 100%;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--hc-purple), var(--hc-pink));
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.hc-auth .social-btn.google-auth {
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 10px;
  background: #fff;
  color: #0f172a;
  font-weight: 600;
  cursor: pointer;
}

.hc-auth .social-btn--ms,
.hc-auth .social-btn--li {
  display: none;
}

.hc-auth .divider {
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  margin: 10px 0;
}

.hc-auth .password-input-wrap {
  position: relative;
}

.hc-auth .password-input-wrap input {
  padding-right: 60px;
}

.hc-auth .toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -10px;
  background: none;
  border: none;
  color: #a78bfa;
  cursor: pointer;
  font-size: 12px;
}

.hc-auth .form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 12px;
}

.hc-auth .remember-me {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--hc-muted);
}

.hc-auth .remember-me input {
  width: auto;
  height: auto;
}

.hc-auth .forgot-password {
  color: #a78bfa;
}

.hc-auth .signup-step-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.hc-auth .signup-back-btn {
  height: 52px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid var(--hc-border);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.hc-auth .bio-template-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}

.hc-auth .bio-template-btn {
  text-align: left;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid var(--hc-border);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  cursor: pointer;
}

.hc-auth .signup-step-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 12px;
  color: var(--hc-muted);
}

.hc-auth .signup-step-dots {
  display: flex;
  gap: 6px;
}

.hc-auth .signup-step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.hc-auth .signup-step-dot.active {
  background: var(--hc-purple);
}

.hc-auth .hd-auth-legal {
  font-size: 11px;
  color: var(--hc-muted);
  text-align: center;
}

.hc-auth .hd-auth-legal a {
  color: #a78bfa;
}

.hc-auth .hero-loggedin-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
}

.hc-auth .hero-loggedin-actions .cta-button {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--hc-purple), var(--hc-pink));
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.hc-auth .hero-loggedin-secondary {
  background: transparent !important;
  border: 1px solid var(--hc-border);
}

.hc-auth .hero-loggedin-links a {
  color: #a78bfa;
}

/* ── HOW IT WORKS (neon reference layout) ── */
.hc-hiw--neon {
  position: relative;
  background: #050512 !important;
  padding: 0;
  overflow: hidden;
}

.hc-hiw__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(88, 28, 135, 0.22), transparent 60%),
    radial-gradient(ellipse 40% 30% at 15% 80%, rgba(37, 99, 235, 0.12), transparent 55%),
    radial-gradient(ellipse 40% 30% at 85% 75%, rgba(20, 184, 166, 0.1), transparent 55%),
    linear-gradient(180deg, #050512 0%, #07091a 50%, #050512 100%);
}

.hc-hiw__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(rgba(148, 163, 184, 0.14) 1px, transparent 1px);
  background-size: 22px 22px;
}

.hc-hiw__wrap {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: max(20px, env(safe-area-inset-left));
  padding-right: max(20px, env(safe-area-inset-right));
}

.hc-hiw__header {
  text-align: center;
  margin-bottom: 28px;
}

.hc-hiw__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #c4b5fd;
  background: rgba(88, 28, 135, 0.25);
  border: 1px solid rgba(167, 139, 250, 0.45);
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hc-hiw__title {
  margin: 18px 0 16px;
  font-size: clamp(32px, 4.8vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff !important;
}

.hc-hiw__title-brand {
  color: #c4b5fd;
  background: linear-gradient(90deg, #ddd6fe 0%, #a78bfa 55%, #818cf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hc-hiw__title-cyan {
  color: #22d3ee;
  background: linear-gradient(90deg, #67e8f9 0%, #22d3ee 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hc-hiw__subrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}

.hc-hiw__subline {
  flex: 1;
  height: 1px;
  max-width: 120px;
  background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.55), transparent);
}

.hc-hiw__subtitle {
  margin: 0;
  font-size: clamp(14px, 1.8vw, 17px);
  color: rgba(148, 163, 184, 0.95) !important;
  white-space: nowrap;
}

.hc-hiw__art-desktop {
  display: none;
  margin: 0 auto 8px;
  max-width: 1280px;
}

.hc-hiw__art-desktop img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}

.hc-hiw__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 10px;
  align-items: stretch;
}

.hc-hiw__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 360px;
  padding: 18px 18px 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.72) 0%, rgba(8, 12, 28, 0.92) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
}

.hc-hiw__card::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  width: 70%;
  height: 40px;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.55;
  pointer-events: none;
}

.hc-hiw__card--1 {
  border: 1.5px solid rgba(168, 85, 247, 0.85);
  box-shadow: 0 0 0 1px rgba(168, 85, 247, 0.2), 0 0 36px rgba(168, 85, 247, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.hc-hiw__card--1::after { background: rgba(168, 85, 247, 0.55); }
.hc-hiw__card--1 .hc-hiw__step { background: #7c3aed; box-shadow: 0 0 16px rgba(124, 58, 237, 0.65); }
.hc-hiw__card--1 .hc-hiw__pedestal { background: radial-gradient(ellipse, rgba(168, 85, 247, 0.95) 0%, rgba(124, 58, 237, 0.35) 45%, transparent 72%); box-shadow: 0 0 30px rgba(168, 85, 247, 0.55); }
.hc-hiw__card--1 .hc-hiw__beam { background: linear-gradient(180deg, rgba(168, 85, 247, 0.35) 0%, transparent 100%); }

.hc-hiw__card--2 {
  border: 1.5px solid rgba(59, 130, 246, 0.85);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.2), 0 0 36px rgba(59, 130, 246, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.hc-hiw__card--2::after { background: rgba(59, 130, 246, 0.55); }
.hc-hiw__card--2 .hc-hiw__step { background: #2563eb; box-shadow: 0 0 16px rgba(37, 99, 235, 0.65); }
.hc-hiw__card--2 .hc-hiw__pedestal { background: radial-gradient(ellipse, rgba(96, 165, 250, 0.95) 0%, rgba(37, 99, 235, 0.35) 45%, transparent 72%); box-shadow: 0 0 30px rgba(59, 130, 246, 0.55); }
.hc-hiw__card--2 .hc-hiw__beam { background: linear-gradient(180deg, rgba(59, 130, 246, 0.35) 0%, transparent 100%); }

.hc-hiw__card--3 {
  border: 1.5px solid rgba(20, 184, 166, 0.85);
  box-shadow: 0 0 0 1px rgba(20, 184, 166, 0.2), 0 0 36px rgba(20, 184, 166, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.hc-hiw__card--3::after { background: rgba(20, 184, 166, 0.55); }
.hc-hiw__card--3 .hc-hiw__step { background: #0d9488; box-shadow: 0 0 16px rgba(13, 148, 136, 0.65); }
.hc-hiw__card--3 .hc-hiw__pedestal { background: radial-gradient(ellipse, rgba(45, 212, 191, 0.95) 0%, rgba(13, 148, 136, 0.35) 45%, transparent 72%); box-shadow: 0 0 30px rgba(20, 184, 166, 0.55); }
.hc-hiw__card--3 .hc-hiw__beam { background: linear-gradient(180deg, rgba(20, 184, 166, 0.35) 0%, transparent 100%); }

.hc-hiw__card--4 {
  border: 1.5px solid rgba(249, 115, 22, 0.85);
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.2), 0 0 36px rgba(249, 115, 22, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.hc-hiw__card--4::after { background: rgba(249, 115, 22, 0.55); }
.hc-hiw__card--4 .hc-hiw__step { background: #ea580c; box-shadow: 0 0 16px rgba(234, 88, 12, 0.65); }
.hc-hiw__card--4 .hc-hiw__pedestal { background: radial-gradient(ellipse, rgba(251, 146, 60, 0.95) 0%, rgba(234, 88, 12, 0.35) 45%, transparent 72%); box-shadow: 0 0 30px rgba(249, 115, 22, 0.55); }
.hc-hiw__card--4 .hc-hiw__beam { background: linear-gradient(180deg, rgba(249, 115, 22, 0.35) 0%, transparent 100%); }

.hc-hiw__step {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
}

.hc-hiw__scene {
  position: relative;
  width: 100%;
  height: 190px;
  margin-top: 8px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hc-hiw__beam {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 110px;
  clip-path: polygon(25% 100%, 75% 100%, 100% 0, 0 0);
  opacity: 0.85;
  filter: blur(0.2px);
}

.hc-hiw__pedestal {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 118px;
  height: 28px;
  border-radius: 50%;
}

.hc-hiw__icon {
  position: relative;
  z-index: 2;
  width: 112px;
  height: 112px;
  margin-bottom: 28px;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.45));
}

.hc-hiw__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hc-hiw__card h3 {
  margin: 4px 0 10px;
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 800;
  color: #fff !important;
  letter-spacing: -0.02em;
}

.hc-hiw__card p {
  margin: 0;
  max-width: 26ch;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(148, 163, 184, 0.95) !important;
}

.hc-hiw__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 23, 42, 0.65);
  box-shadow: 0 0 18px rgba(59, 130, 246, 0.25);
}

.hc-hiw__connector span {
  display: block;
  transform: translateX(1px);
  font-weight: 700;
}

.hc-hiw__connector--12 {
  color: #c4b5fd;
  box-shadow: 0 0 18px rgba(168, 85, 247, 0.45);
}
.hc-hiw__connector--23 {
  color: #93c5fd;
  box-shadow: 0 0 18px rgba(59, 130, 246, 0.45);
}
.hc-hiw__connector--34 {
  color: #5eead4;
  box-shadow: 0 0 18px rgba(20, 184, 166, 0.45);
}

.hc-hiw .hiw-carousel {
  display: none !important;
}

@media (min-width: 1180px) {
  .hc-hiw--neon:not(.hc-hiw--consumer) .hc-hiw__art-desktop {
    display: block;
  }

  .hc-hiw--neon:not(.hc-hiw--consumer) .hc-hiw__grid {
    display: none;
  }

  .hc-hiw--neon:not(.hc-hiw--consumer) .hc-hiw__header {
    display: none;
  }

  .hc-hiw--neon.hc-hiw--consumer .hc-hiw__grid {
    display: grid;
  }

  .hc-hiw__header {
    margin-bottom: 24px;
  }
}

@media (max-width: 1179px) {
  .hc-hiw__art-desktop {
    display: none;
  }
}

@media (max-width: 1100px) {
  .hc-hiw--neon {
    padding: 0;
  }

  .hc-hiw__grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .hc-hiw__connector {
    display: none !important;
  }

  .hc-hiw__card {
    min-height: 320px;
  }

  .hc-hiw__subtitle {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .hc-hiw__subrow {
    flex-direction: column;
    gap: 10px;
  }

  .hc-hiw__subline {
    display: none;
  }

  .hc-hiw__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hc-hiw__scene {
    height: 170px;
  }
}

/* ── PAST COLLABORATIONS (marquee trust strip) ── */
.hc-collabs {
  background: linear-gradient(180deg, #050816 0%, #0a1024 50%, #050816 100%);
  position: relative;
  overflow: hidden;
  padding: 0 0 28px;
}

.hc-collabs::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 40% at 20% 30%, rgba(139, 92, 246, 0.12), transparent 55%),
    radial-gradient(ellipse 45% 35% at 85% 70%, rgba(59, 130, 246, 0.1), transparent 50%);
}

.hc-collabs__intro {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 20px;
  padding-bottom: 0 !important;
}

.hc-collabs__sub {
  margin: 0 auto;
  max-width: 52ch;
}

.hc-collabs__stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
}

.hc-collabs__lane {
  overflow: hidden;
  width: 100%;
}

.hc-collabs__track {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  width: max-content;
  animation: hc-collab-scroll 42s linear infinite;
  will-change: transform;
}

.hc-collabs__lane--reverse .hc-collabs__track {
  animation-direction: reverse;
  animation-duration: 48s;
}

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

.hc-collab-chip {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  padding: 6px 8px 6px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.hc-collab-chip__logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.hc-collab-chip__logo--photo {
  padding: 0;
  background: #0f172a;
}

.hc-collab-chip__logo--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hc-collab-chip__logo--violet {
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
}
.hc-collab-chip__logo--amber {
  background: linear-gradient(135deg, #d97706, #fbbf24);
}
.hc-collab-chip__logo--blue {
  background: linear-gradient(135deg, #2563eb, #60a5fa);
}
.hc-collab-chip__logo--teal {
  background: linear-gradient(135deg, #0d9488, #5eead4);
}
.hc-collab-chip__logo--indigo {
  background: linear-gradient(135deg, #4338ca, #818cf8);
}
.hc-collab-chip__logo--pink {
  background: linear-gradient(135deg, #db2777, #f472b6);
}
.hc-collab-chip__logo--slate {
  background: linear-gradient(135deg, #334155, #64748b);
}
.hc-collab-chip__logo--cyan {
  background: linear-gradient(135deg, #0891b2, #67e8f9);
}
.hc-collab-chip__logo--purple {
  background: linear-gradient(135deg, #6d28d9, #c084fc);
}
.hc-collab-chip__logo--rose {
  background: linear-gradient(135deg, #e11d48, #fb7185);
}
.hc-collab-chip__logo--orange {
  background: linear-gradient(135deg, #ea580c, #fdba74);
}
.hc-collab-chip__logo--lime {
  background: linear-gradient(135deg, #65a30d, #bef264);
}

.hc-collab-chip__name {
  font-size: clamp(15px, 2.2vw, 18px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
  padding-right: 12px;
  letter-spacing: -0.01em;
}

@media (max-width: 900px) {
  .hc-collabs {
    padding: 0 0 20px;
  }

  .hc-collabs__intro {
    margin-bottom: 24px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hc-collab-chip__logo {
    width: 44px;
    height: 44px;
    font-size: 11px;
  }

  .hc-collab-chip {
    gap: 10px;
  }

  .hc-collab-chip__name {
    font-size: 14px;
    padding-right: 8px;
  }

  .hc-collabs__track {
    gap: 24px;
    animation-duration: 36s;
  }

  .hc-collabs__lane--reverse .hc-collabs__track {
    animation-duration: 40s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hc-collabs__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 16px;
    gap: 12px;
  }

  .hc-collabs__lane {
    overflow: visible;
  }

  .hc-collabs__stage {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .hc-collabs__track .hc-collab-chip:nth-child(n + 13) {
    display: none;
  }
}

/* ── PRICING (reference: clean dark cards, one slider line) ── */
.hc-pricing {
  background: #050816 !important;
  position: relative;
  overflow: hidden;
}

.hc-pricing::before {
  content: none !important;
  display: none !important;
}

.hc-pricing .pb-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
  width: 100% !important;
  align-items: stretch !important;
}

.hc-pricing .pb-col {
  width: 100% !important;
  min-height: 0 !important;
  height: auto !important;
  transform: none !important;
  background: #0b1228 !important;
  color: #fff !important;
  border-radius: 20px !important;
  border: 1px solid rgba(139, 92, 246, 0.4) !important;
  padding: 28px 20px 22px !important;
  display: flex !important;
  flex-direction: column !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.08), 0 16px 40px rgba(0, 0, 0, 0.35) !important;
}

.hc-pricing .pb-col--featured {
  border-color: rgba(167, 139, 250, 0.95) !important;
  box-shadow:
    0 0 0 1px rgba(139, 92, 246, 0.55),
    0 0 36px rgba(139, 92, 246, 0.4),
    0 16px 40px rgba(0, 0, 0, 0.4) !important;
}

.hc-pricing .pb-col--locked {
  border-color: rgba(251, 191, 36, 0.55) !important;
  box-shadow: 0 0 28px rgba(251, 191, 36, 0.15) !important;
  opacity: 1;
}

.hc-pricing .pb-col--consult {
  border-color: rgba(236, 72, 153, 0.45) !important;
}

.hc-pricing .pb-popular {
  position: absolute !important;
  top: 12px !important;
  left: 50% !important;
  right: auto !important;
  width: auto !important;
  min-width: 110px;
  margin: 0 !important;
  transform: translateX(-50%) !important;
  text-align: center;
  background: linear-gradient(90deg, #8b5cf6, #6366f1) !important;
  color: #fff !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  padding: 5px 12px !important;
  border-radius: 999px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em;
  z-index: 2;
}

.hc-pricing .pb-col--featured {
  padding-top: 36px !important;
}

.hc-pricing .pb-title,
.hc-pricing .pb-price,
.hc-pricing .pb-credit-val {
  color: #fff !important;
}

.hc-pricing .pb-sub,
.hc-pricing .pb-features li,
.hc-pricing .pb-equiv {
  color: rgba(255, 255, 255, 0.68) !important;
}

.hc-pricing .pb-grid.pb-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.hc-pricing .pb-phase {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a78bfa !important;
  margin-bottom: 8px;
}

.hc-pricing .pb-soon {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24 !important;
  font-size: 11px;
  font-weight: 700;
}

.hc-pricing .pb-icon,
.hc-pricing .pb-plan-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 92, 246, 0.22);
  font-size: 20px;
}

.hc-pricing .pb-title {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 800;
}

.hc-pricing .pb-sub {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.45;
}

.hc-pricing .pb-credit-box {
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 16px;
}

.hc-pricing .pb-credit-head {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 6px;
}

.hc-pricing .pb-credit-val {
  font-weight: 800;
  font-size: 15px;
}

.hc-pricing .pb-equiv {
  margin: 0 0 12px;
  font-size: 12px;
}

/* ONE clean slider: custom track only + transparent native track + pink thumb */
.hc-pricing .pb-slider-wrap {
  position: relative;
  height: 24px;
  margin: 4px 0 10px;
  display: flex;
  align-items: center;
}

.hc-pricing .pb-slider-track {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 6px;
  margin-top: -3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hc-pricing .pb-slider-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6) !important;
  max-width: 100%;
}

.hc-pricing .pb-slider {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 24px;
  margin: 0;
  padding: 0;
  background: transparent !important;
  cursor: pointer;
  -webkit-appearance: none !important;
  appearance: none !important;
  accent-color: #ec4899;
}

/* Kill native track so it cannot draw a second red/blue line */
.hc-pricing .pb-slider::-webkit-slider-runnable-track {
  height: 6px;
  border: none !important;
  border-radius: 999px;
  background: transparent !important;
  box-shadow: none !important;
}

.hc-pricing .pb-slider::-moz-range-track {
  height: 6px;
  border: none !important;
  border-radius: 999px;
  background: transparent !important;
  box-shadow: none !important;
}

.hc-pricing .pb-slider::-moz-range-progress {
  background: transparent !important;
  height: 6px;
}

.hc-pricing .pb-slider::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 18px;
  height: 18px;
  margin-top: -6px;
  border-radius: 50%;
  background: #ec4899 !important;
  border: 3px solid #fff !important;
  box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.35), 0 4px 10px rgba(0, 0, 0, 0.35);
  cursor: pointer;
}

.hc-pricing .pb-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ec4899 !important;
  border: 3px solid #fff !important;
  box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.35);
  cursor: pointer;
}

.hc-pricing .pb-ticks {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  margin-top: 2px;
}

.hc-pricing .pb-tick {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  cursor: pointer;
  padding: 0;
}

.hc-pricing .pb-tick.is-active {
  color: #fff;
  font-weight: 700;
}

.hc-pricing .pb-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin: 4px 0 16px;
}

.hc-pricing .pb-price {
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.hc-pricing .pb-currency {
  font-size: 18px;
  margin-right: 2px;
}

.hc-pricing .pb-price-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5) !important;
}

.hc-pricing .pb-cta {
  width: 100% !important;
  height: 48px !important;
  margin-top: 0 !important;
  border: none !important;
  border-radius: 12px !important;
  background: linear-gradient(90deg, #8b5cf6, #ec4899) !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  cursor: pointer !important;
  box-shadow: 0 8px 20px rgba(236, 72, 153, 0.25) !important;
}

.hc-pricing .pb-features {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hc-pricing .pb-features li {
  display: flex;
  gap: 8px;
  font-size: 13px;
  line-height: 1.4;
}

.hc-pricing .pb-check {
  color: #10b981;
  flex-shrink: 0;
}

.hc-pricing .pb-platform-note,
.hc-pricing .pb-link {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  color: #a78bfa !important;
}

.hc-pricing .pb-android-footnote {
  margin-top: auto;
  padding-top: 10px;
  font-size: 10px;
  line-height: 1.35;
  text-align: center;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.01em;
}

.hc-pricing .pb-cta--locked {
  opacity: 0.65;
  cursor: not-allowed !important;
  background: rgba(255, 255, 255, 0.1) !important;
  box-shadow: none !important;
}

.hc-pricing a.pb-cta {
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.hc-pricing .pricing-toggle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}

.hc-pricing .pricing-toggle-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  width: min(100%, 280px);
  max-width: 100%;
  box-sizing: border-box;
  gap: 0;
  isolation: isolate;
}

.hc-pricing .pb-billing-btn {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 10px 16px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
  cursor: pointer;
  border-radius: 999px;
  text-align: center;
  font-size: 0.9rem;
}

.hc-pricing .pb-billing-btn.is-active {
  color: #fff;
}

.hc-pricing .pb-billing-indicator {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc((100% - 8px) / 2);
  height: calc(100% - 8px);
  background: linear-gradient(90deg, #8b5cf6, #3b82f6);
  border-radius: 999px;
  transition: transform 0.25s ease;
  z-index: 0;
  pointer-events: none;
}

.hc-pricing .pricing-toggle-bar.is-annual .pb-billing-indicator {
  transform: translateX(100%);
}

.hc-pricing .pricing-save-note {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.hc-pricing__note {
  text-align: center;
  margin-top: 20px;
}

.hc-pricing__note a {
  color: #a78bfa;
}

/* ── EXPERTS (premium showcase) ── */
.hc-experts--showcase {
  position: relative;
  background: #030712 !important;
  overflow: hidden;
}

.hc-experts__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 45% 35% at 8% 15%, rgba(139, 92, 246, 0.16), transparent 55%),
    radial-gradient(ellipse 40% 30% at 92% 20%, rgba(59, 130, 246, 0.12), transparent 50%),
    linear-gradient(180deg, #030712 0%, #050816 50%, #030712 100%);
}

.hc-experts__wrap {
  position: relative;
  z-index: 1;
  padding-top: 44px;
  padding-bottom: 28px;
}

.hc-experts__kicker {
  margin: 0 0 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  color: #a78bfa;
}

.hc-experts__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 0;
}

.hc-experts__head h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 3.6vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: left;
  color: #fff !important;
  line-height: 1.15;
}

.hc-experts__title-accent {
  background: linear-gradient(90deg, #c084fc 0%, #818cf8 55%, #60a5fa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hc-experts__head p {
  margin: 0;
  color: rgba(148, 163, 184, 0.95);
  font-size: 14px;
  line-height: 1.55;
  max-width: 52ch;
}

.hc-experts__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  color: #fff !important;
  white-space: nowrap;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(167, 139, 250, 0.45);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.hc-experts__more:hover {
  border-color: rgba(196, 181, 253, 0.65);
  box-shadow: 0 0 28px rgba(139, 92, 246, 0.35);
}

.hc-experts__divider {
  position: relative;
  height: 1px;
  margin: 22px 0 18px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
}

.hc-experts__divider::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 7px;
  height: 7px;
  background: #a78bfa;
  box-shadow: 0 0 14px rgba(167, 139, 250, 0.85);
}

.hc-experts__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hc-experts .home-expert-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 14px 12px;
  min-height: 0;
  border-radius: 16px;
  background: rgba(8, 12, 28, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-decoration: none !important;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.hc-experts .home-expert-card:hover {
  transform: translateY(-2px);
}

.home-expert-card__top {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.hc-experts .home-expert-photo-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
}

.hc-experts .home-expert-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.12);
}

.hc-experts .home-expert-verified {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #10b981;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0a1024;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.55);
}

.home-expert-card__identity {
  min-width: 0;
  flex: 1;
}

.hc-experts .home-expert-industry {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.9);
}

.home-expert-industry__icon {
  font-size: 11px;
  line-height: 1;
}

.hc-experts .home-expert-body h3,
.home-expert-card__identity h3 {
  margin: 0 0 2px;
  font-size: 17px;
  font-weight: 800;
  color: #fff !important;
  line-height: 1.2;
}

.hc-experts .home-expert-title {
  margin: 0;
  font-size: 12px;
  color: rgba(148, 163, 184, 0.9);
  line-height: 1.35;
}

.home-expert-card__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  padding-top: 2px;
}

.home-expert-stat {
  font-size: 11px;
  font-weight: 600;
  color: rgba(203, 213, 225, 0.88);
}

.home-expert-stat span[aria-hidden="true"]:first-child {
  color: #fbbf24;
}

.home-expert-card__avail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #34d399;
}

.home-expert-avail-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px #34d399;
}

.home-expert-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hc-experts .home-expert-fee {
  margin: 0;
  font-size: 12px;
  color: rgba(148, 163, 184, 0.85) !important;
}

.hc-experts .home-expert-fee strong {
  font-size: 18px;
  font-weight: 800;
}

.hc-experts .home-expert-fee span {
  font-size: 11px;
}

.home-expert-book {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

/* Card color themes */
.home-expert-card--purple .home-expert-photo { box-shadow: 0 0 0 2px rgba(168, 85, 247, 0.55), 0 0 20px rgba(168, 85, 247, 0.35); }
.home-expert-card--purple { border: 1.5px solid rgba(168, 85, 247, 0.55); box-shadow: 0 0 24px rgba(168, 85, 247, 0.12); }
.home-expert-card--purple .home-expert-fee strong { color: #c084fc; }
.home-expert-card--purple .home-expert-book { background: linear-gradient(90deg, #a855f7, #ec4899); box-shadow: 0 4px 16px rgba(168, 85, 247, 0.35); }

.home-expert-card--blue .home-expert-photo { box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.55), 0 0 20px rgba(59, 130, 246, 0.35); }
.home-expert-card--blue { border: 1.5px solid rgba(59, 130, 246, 0.55); box-shadow: 0 0 24px rgba(59, 130, 246, 0.12); }
.home-expert-card--blue .home-expert-fee strong { color: #60a5fa; }
.home-expert-card--blue .home-expert-book { background: linear-gradient(90deg, #2563eb, #6366f1); box-shadow: 0 4px 16px rgba(59, 130, 246, 0.35); }

.home-expert-card--teal .home-expert-photo { box-shadow: 0 0 0 2px rgba(20, 184, 166, 0.55), 0 0 20px rgba(20, 184, 166, 0.35); }
.home-expert-card--teal { border: 1.5px solid rgba(20, 184, 166, 0.55); box-shadow: 0 0 24px rgba(20, 184, 166, 0.12); }
.home-expert-card--teal .home-expert-fee strong { color: #2dd4bf; }
.home-expert-card--teal .home-expert-book { background: linear-gradient(90deg, #0d9488, #0891b2); box-shadow: 0 4px 16px rgba(20, 184, 166, 0.35); }

.home-expert-card--pink .home-expert-photo { box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.55), 0 0 20px rgba(236, 72, 153, 0.35); }
.home-expert-card--pink { border: 1.5px solid rgba(236, 72, 153, 0.55); box-shadow: 0 0 24px rgba(236, 72, 153, 0.12); }
.home-expert-card--pink .home-expert-fee strong { color: #f472b6; }
.home-expert-card--pink .home-expert-book { background: linear-gradient(90deg, #db2777, #ef4444); box-shadow: 0 4px 16px rgba(236, 72, 153, 0.35); }

.home-expert-card--violet .home-expert-photo { box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.55), 0 0 20px rgba(99, 102, 241, 0.35); }
.home-expert-card--violet { border: 1.5px solid rgba(99, 102, 241, 0.55); box-shadow: 0 0 24px rgba(99, 102, 241, 0.12); }
.home-expert-card--violet .home-expert-fee strong { color: #818cf8; }
.home-expert-card--violet .home-expert-book { background: linear-gradient(90deg, #6366f1, #8b5cf6); box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35); }

.home-expert-card--orange .home-expert-photo { box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.55), 0 0 20px rgba(249, 115, 22, 0.35); }
.home-expert-card--orange { border: 1.5px solid rgba(249, 115, 22, 0.55); box-shadow: 0 0 24px rgba(249, 115, 22, 0.12); }
.home-expert-card--orange .home-expert-fee strong { color: #fb923c; }
.home-expert-card--orange .home-expert-book { background: linear-gradient(90deg, #ea580c, #d97706); box-shadow: 0 4px 16px rgba(249, 115, 22, 0.35); }

/* Trust badges bar */
.hc-experts__trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 10px;
  padding: 16px 12px;
  border-radius: 14px;
  background: rgba(8, 12, 28, 0.88);
  border: 1px solid rgba(139, 92, 246, 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hc-experts__trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 14px;
  min-width: 0;
}

.hc-experts__trust-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hc-experts__trust-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hc-experts__trust-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.hc-experts__trust-item strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 2px;
}

.hc-experts__trust-item > div span {
  display: block;
  font-size: 11px;
  color: rgba(148, 163, 184, 0.9);
  line-height: 1.35;
}

.hc-experts__trust-item--purple .hc-experts__trust-icon {
  color: #c084fc;
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.35);
  border-color: rgba(168, 85, 247, 0.35);
}

.hc-experts__trust-item--orange .hc-experts__trust-icon {
  color: #fb923c;
  box-shadow: 0 0 16px rgba(249, 115, 22, 0.35);
  border-color: rgba(249, 115, 22, 0.35);
}

.hc-experts__trust-item--blue .hc-experts__trust-icon {
  color: #60a5fa;
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.35);
  border-color: rgba(59, 130, 246, 0.35);
}

.hc-experts__trust-item--green .hc-experts__trust-icon {
  color: #34d399;
  box-shadow: 0 0 16px rgba(16, 185, 129, 0.35);
  border-color: rgba(16, 185, 129, 0.35);
}

/* ── STATS (social proof showcase) ── */
.hc-stats--showcase {
  position: relative;
  background: #030712 !important;
  overflow: hidden;
}

.hc-stats--showcase .hc-stats__wrap {
  padding-top: 28px;
}

.hc-stats__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 40% at 50% 0%, rgba(59, 130, 246, 0.14), transparent 58%),
    radial-gradient(ellipse 35% 25% at 15% 35%, rgba(139, 92, 246, 0.1), transparent 55%),
    radial-gradient(ellipse 35% 25% at 85% 40%, rgba(236, 72, 153, 0.08), transparent 55%),
    linear-gradient(180deg, #030712 0%, #050816 50%, #030712 100%);
}

.hc-stats__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(rgba(148, 163, 184, 0.35) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, black 0%, transparent 70%);
}

.hc-stats__wrap {
  position: relative;
  z-index: 1;
  padding-top: 48px;
  padding-bottom: 48px;
}

.hc-stats__header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 32px;
}

.hc-stats__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(226, 232, 240, 0.95);
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(59, 130, 246, 0.35);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.15);
  margin-bottom: 20px;
}

.hc-stats__badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.hc-stats__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 0 14px;
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff !important;
}

.hc-stats__title-accent {
  background: linear-gradient(90deg, #67e8f9 0%, #3b82f6 55%, #818cf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hc-stats__wreath {
  width: 28px;
  height: 48px;
  flex-shrink: 0;
  color: #3b82f6;
  filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.55));
  opacity: 0.85;
}

.hc-stats__wreath--right {
  transform: scaleX(-1);
}

.hc-stats__sub {
  margin: 0;
  font-size: clamp(14px, 1.8vw, 17px);
  line-height: 1.65;
  color: rgba(148, 163, 184, 0.95) !important;
}

.hc-stats__hl {
  background: linear-gradient(90deg, #c084fc, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.hc-stats__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.hc-stats__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  padding: 16px 14px 36px;
  border-radius: 16px;
  background: rgba(8, 12, 28, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
}

.hc-stats__card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}

.hc-stats__card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.hc-stats__card-icon svg {
  width: 20px;
  height: 20px;
}

.hc-stats__pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.hc-stats__pill--green {
  color: #6ee7b7;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.35);
}

.hc-stats__pill--live {
  color: #6ee7b7;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.35);
}

.hc-stats__pill--pink {
  color: #f9a8d4;
  background: rgba(236, 72, 153, 0.15);
  border: 1px solid rgba(244, 114, 182, 0.4);
}

.hc-stats__live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px #34d399;
  animation: hc-stats-pulse 1.6s ease-in-out infinite;
}

@keyframes hc-stats-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

.hc-stats__card-num {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hc-stats__card-label {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
}

.hc-stats__card-meta {
  margin-top: 4px;
  font-size: 11px;
  color: rgba(148, 163, 184, 0.85);
}

.hc-stats__stars {
  color: #fbbf24;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.hc-stats__spark {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 36px;
  pointer-events: none;
}

.hc-stats__card--blue {
  border: 1.5px solid rgba(59, 130, 246, 0.55);
  box-shadow: 0 0 28px rgba(59, 130, 246, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.hc-stats__card--blue .hc-stats__card-icon { background: linear-gradient(135deg, #2563eb, #3b82f6); box-shadow: 0 0 16px rgba(59, 130, 246, 0.5); }
.hc-stats__card--blue .hc-stats__card-label { color: #60a5fa; }
.hc-stats__card--blue .hc-stats__card-meta { color: rgba(96, 165, 250, 0.85); }

.hc-stats__card--green {
  border: 1.5px solid rgba(16, 185, 129, 0.55);
  box-shadow: 0 0 28px rgba(16, 185, 129, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.hc-stats__card--green .hc-stats__card-icon { background: linear-gradient(135deg, #059669, #10b981); box-shadow: 0 0 16px rgba(16, 185, 129, 0.45); }
.hc-stats__card--green .hc-stats__card-label { color: #34d399; }
.hc-stats__card--green .hc-stats__card-meta { color: rgba(52, 211, 153, 0.85); }

.hc-stats__card--purple {
  border: 1.5px solid rgba(168, 85, 247, 0.55);
  box-shadow: 0 0 28px rgba(168, 85, 247, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.hc-stats__card--purple .hc-stats__card-icon { background: linear-gradient(135deg, #7c3aed, #a855f7); box-shadow: 0 0 16px rgba(168, 85, 247, 0.45); }
.hc-stats__card--purple .hc-stats__card-label { color: #c084fc; }

.hc-stats__card--orange {
  border: 1.5px solid rgba(249, 115, 22, 0.55);
  box-shadow: 0 0 28px rgba(249, 115, 22, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.hc-stats__card--orange .hc-stats__card-icon { background: linear-gradient(135deg, #ea580c, #f97316); box-shadow: 0 0 16px rgba(249, 115, 22, 0.45); }
.hc-stats__card--orange .hc-stats__card-label { color: #fb923c; }
.hc-stats__card--orange .hc-stats__card-meta { color: rgba(251, 146, 60, 0.85); }

.hc-stats__card--pink {
  border: 1.5px solid rgba(236, 72, 153, 0.55);
  box-shadow: 0 0 28px rgba(236, 72, 153, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.hc-stats__card--pink .hc-stats__card-icon { background: linear-gradient(135deg, #db2777, #ec4899); box-shadow: 0 0 16px rgba(236, 72, 153, 0.45); }
.hc-stats__card--pink .hc-stats__card-label { color: #f472b6; }
.hc-stats__card--pink .hc-stats__card-meta { color: rgba(244, 114, 182, 0.85); }

/* Testimonials bar */
.hc-stats__testimonials {
  display: flex;
  align-items: stretch;
  gap: 12px;
  padding: 16px 16px 16px 18px;
  border-radius: 16px;
  background: rgba(8, 12, 28, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.hc-stats__t-intro {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 0 0 min(200px, 28%);
  min-width: 0;
  padding-right: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hc-stats__t-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.25);
  flex-shrink: 0;
}

.hc-stats__t-kicker {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.hc-stats__t-accent {
  background: linear-gradient(90deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hc-stats__t-avatars {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.hc-stats__t-av {
  width: 28px;
  height: 28px;
  margin-left: -6px;
  border-radius: 50%;
  border: 2px solid #0a1024;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  background: #1e293b;
}

.hc-stats__t-av--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hc-stats__t-av:first-child {
  margin-left: 0;
}

.hc-stats__t-more {
  margin-left: 8px;
  font-size: 11px;
  color: rgba(148, 163, 184, 0.9);
  white-space: nowrap;
}

.hc-stats__t-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.hc-stats__t-track::-webkit-scrollbar {
  display: none;
}

.hc-stats__t-card {
  margin: 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  min-width: 0;
  scroll-snap-align: start;
}

.hc-stats__t-photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.12);
}

.hc-stats__t-card p {
  margin: 0 0 6px;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(226, 232, 240, 0.88);
}

.hc-stats__t-card footer {
  font-size: 11px;
  color: rgba(148, 163, 184, 0.85);
  line-height: 1.35;
}

.hc-stats__t-stars {
  color: #fbbf24;
  font-size: 10px;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.hc-stats__t-name {
  font-weight: 800;
}

.hc-stats__t-name--blue { color: #60a5fa; }
.hc-stats__t-name--green { color: #34d399; }
.hc-stats__t-name--pink { color: #f472b6; }

.hc-stats__t-next {
  flex-shrink: 0;
  align-self: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(167, 139, 250, 0.45);
  background: rgba(88, 28, 135, 0.35);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.25);
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.hc-stats__t-next:hover {
  transform: scale(1.06);
  border-color: rgba(196, 181, 253, 0.65);
}

.hc-stats .trust-carousel {
  display: none !important;
}

/* ── FOOTER ── */
body.page-home footer.hc-footer,
.hc-footer {
  display: block !important;
  visibility: visible !important;
  background: #0a1024 !important;
  color: #fff !important;
  padding: 56px 32px 32px !important;
  width: 100%;
}

.hc-footer__inner {
  max-width: var(--hc-max);
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: minmax(260px, 300px) repeat(5, minmax(0, 1fr));
  gap: 20px 28px;
  align-items: start;
}

.hc-footer__brand {
  max-width: 300px;
}

.footer-ventures-section {
  grid-column: span 2;
  min-width: 0;
}

.hc-footer__logo {
  margin: 0 0 12px;
  font-size: 32px;
  font-weight: 800;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: none !important;
}

.hc-footer__brand p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55) !important;
}

.hc-footer__social {
  display: flex;
  gap: 10px;
}

.hc-footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75) !important;
}

.hc-footer__col h3,
.hc-footer__heading-spacer {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff !important;
}

.hc-footer__heading-spacer {
  visibility: hidden;
  user-select: none;
  pointer-events: none;
}

/* Override global style.css `nav { display:flex }` so footer cols stack links */
.hc-footer__col,
nav.hc-footer__col {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  flex: none !important;
  min-width: 0;
  gap: 0;
}

.hc-footer__col a,
nav.hc-footer__col a,
.footer-ventures-list a {
  display: block !important;
  width: auto;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.55) !important;
  text-decoration: none;
  font-size: 14px;
  line-height: 2;
  white-space: nowrap;
}

.footer-ventures-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  min-width: 0;
}

.footer-ventures-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
  width: 100%;
}

.footer-ventures-col {
  min-width: 0;
}

.footer-ventures-col h3 {
  margin: 0 0 12px;
}

.footer-ventures-section--b {
  display: none !important;
}

.hc-footer__notice {
  max-width: var(--hc-max);
  margin: 0 auto 20px;
  width: 100%;
  box-sizing: border-box;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.35);
  border-left: 3px solid #fbbf24;
}

.hc-footer__notice h4 {
  margin: 0 0 8px;
  font-size: 13px;
  color: #fbbf24 !important;
}

.hc-footer__notice p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55) !important;
}

.hc-footer__bar {
  max-width: var(--hc-max);
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hc-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hc-footer__links a {
  color: rgba(255, 255, 255, 0.5) !important;
  text-decoration: none;
  font-size: 13px;
}

.hc-footer__copy {
  margin: 0 0 0 auto;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45) !important;
}

/* visitor modal */
.visitor-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.65);
  padding: 24px;
}

.visitor-modal[hidden] {
  display: none !important;
}

.visitor-modal-card {
  width: 100%;
  max-width: 460px;
  padding: 28px;
  border-radius: 18px;
  background: #0f172a;
  border: 1px solid var(--hc-border);
  color: #fff;
}

.visitor-choice-btn {
  display: block;
  width: 100%;
  text-align: left;
  margin-top: 12px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--hc-border);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  cursor: pointer;
}

.visitor-choice-btn strong {
  display: block;
  margin-bottom: 4px;
}

.visitor-choice-btn span {
  font-size: 13px;
  color: var(--hc-muted);
}

body.visitor-consumer .merchant-only {
  display: none !important;
}

body.visitor-merchant .consumer-only {
  display: none !important;
}

html.wd-app-mode body.page-home,
html.wd-app-mode body.page-home header,
html.wd-app-mode body.page-home footer.hc-footer {
  display: block !important;
}

.hc-auth .signup-wizard[hidden] {
  display: none !important;
}

.hc-auth .signup-wizard:not([hidden]) {
  display: block;
}

.hc-auth .bio-step-lead {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--hc-muted);
}

.hc-auth .signup-step-actions--stacked {
  flex-direction: column;
}

.hc-auth .signup-terms-row {
  width: 100%;
  margin-bottom: 8px;
}

.hc-auth .hero-auth-footer {
  margin-top: 8px;
}

.hc-auth select option {
  background: #0f172a;
  color: #fff;
}

.hc-auth .error,
.hc-auth .form-error,
.hc-auth .auth-error {
  color: #f87171;
  font-size: 12px;
  margin-top: 6px;
}

.hc-auth .hero-auth-error,
.hc-auth .firebase-setup-banner {
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 13px;
  line-height: 1.45;
  white-space: pre-line;
}

.hc-auth .hero-auth-error-box {
  margin: 10px 0 4px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.25);
}

.hc-auth .hero-auth-error-box--info {
  background: rgba(251, 191, 36, 0.12);
  border-color: rgba(251, 191, 36, 0.45);
}

.hc-auth .hero-auth-error--info {
  color: #fcd34d;
}

.hc-auth .hero-auth-error-box[hidden],
.hc-auth .firebase-setup-banner[hidden] {
  display: none !important;
}

.hc-auth .firebase-setup-banner {
  margin: 0 0 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.25);
}

.hc-auth .hero-auth-error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.hc-auth .hero-auth-error-btn {
  min-height: 36px;
  padding: 0 12px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(90deg, var(--hc-purple), var(--hc-pink));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.hc-auth .hero-auth-error-btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}

.hc-auth .hero-auth-error-btn[hidden] {
  display: none !important;
}

/* Ensure sections never stack on top of each other */
.hc-hero,
.hc-hiw,
.hc-pricing,
.hc-experts,
.hc-stats,
.hc-footer {
  clear: both;
  isolation: isolate;
  overflow: visible;
}

.hc-hero {
  overflow: hidden !important;
}

/* ── Responsive: stack cleanly, never overlap ── */
@media (max-width: 1100px) {
  .hc-hero {
    height: auto;
    max-height: none;
    min-height: 0;
    padding: 28px 0 48px !important;
    overflow: visible !important;
  }

  .hc-hero__inner {
    height: auto;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
  }

  .hc-hero__col#heroCenter {
    grid-column: 1 / -1;
    order: 3;
    max-width: 560px;
    margin: 0 auto;
  }

  .hc-dash__laptop {
    transform: none;
  }

  .hc-float--revenue { top: 8px; left: 8px; }
  .hc-float--profit { top: auto; bottom: 80px; left: 8px; }
  .hc-float--cash { bottom: 16px; right: 8px; }
  .hc-float--forecast { top: 8px; right: 8px; }

  .hc-auth {
    max-height: none;
    margin: 0 auto;
  }

  .hc-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
  }

  .hc-footer__brand {
    grid-column: 1 / -1;
    max-width: none;
  }

  .footer-ventures-section {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1100px) and (min-width: 601px) {
  .hc-experts__track,
  .hc-pricing .pb-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .hc-experts__trust {
    grid-template-columns: 1fr 1fr;
  }

  .hc-stats__grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .hc-stats__testimonials {
    flex-wrap: wrap;
  }

  .hc-stats__t-intro {
    flex: 1 1 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-right: 0;
    padding-bottom: 12px;
  }

  .hc-stats__t-track {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  /* ── Mobile / large-phone: conversion-first, less copy ── */
  :root {
    --hc-mobile-bar-h: calc(76px + max(env(safe-area-inset-bottom, 0px), 20px));
  }

  body.page-home {
    overflow-x: hidden;
    padding-bottom: calc(var(--hc-mobile-bar-h) + 12px);
  }

  .hc-hero {
    padding: 16px 0 28px !important;
  }

  .hc-hero__inner {
    grid-template-columns: 1fr !important;
    padding: 0 16px;
    gap: 20px;
  }

  .hc-hero__col--copy {
    order: 1;
  }

  .hc-hero__col--auth {
    order: 2;
  }

  /* Hide decorative dashboard / floats — distracts from signup */
  .hc-hero__col#heroCenter {
    display: none !important;
  }

  .hc-hero__bg .hc-hero__particles,
  .hc-hero__bg .hc-hero__floor {
    display: none !important;
  }

  .hc-hero__badge {
    font-size: 10px;
    padding: 6px 10px;
    margin: 0;
  }

  .hc-hero__title {
    margin-top: 10px;
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.12;
  }

  .hc-hero__tagline {
    margin-top: 8px;
    font-size: 15px;
  }

  /* Drop long copy, feature cards, trust strip, and duplicate mid-page CTA */
  .hc-hero__body,
  .hc-hero__features,
  .hc-hero__trust,
  .hc-hero__actions,
  .hc-hero__btn-secondary {
    display: none !important;
  }

  .hc-hero__switch {
    display: block;
    margin-top: 12px;
    font-size: 12px;
    text-align: center;
    opacity: 0.7;
  }

  .hc-auth {
    max-width: 100%;
    margin: 0;
    padding: 18px 16px !important;
    max-height: none;
    overflow: visible;
    overscroll-behavior: auto;
  }

  .hc-experts,
  .hc-stats {
    display: block !important;
    overflow-x: hidden;
  }

  .hc-experts__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hc-experts__head h2 {
    font-size: clamp(24px, 6.5vw, 30px);
  }

  .hc-experts__head p {
    max-width: none;
    font-size: 13px;
  }

  .hc-experts__more {
    align-self: stretch;
    justify-content: center;
    width: 100%;
  }

  .hc-experts__wrap {
    padding-top: 0;
    padding-bottom: 8px;
  }

  .hc-experts__divider {
    margin: 16px 0 14px;
  }

  .hc-experts__track {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 12px;
    margin: 0 -2px;
    padding: 2px 2px 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .hc-experts__track::-webkit-scrollbar {
    display: none;
  }

  .hc-experts .home-expert-card {
    flex: 0 0 min(86vw, 320px);
    scroll-snap-align: center;
    min-width: 0;
  }

  .home-expert-card__foot {
    flex-wrap: wrap;
    gap: 8px;
  }

  .home-expert-book {
    margin-left: auto;
  }

  .hc-experts__trust {
    grid-template-columns: 1fr 1fr;
    gap: 12px 0;
    margin-top: 10px;
    padding: 14px 10px;
  }

  .hc-experts__trust-item {
    padding: 6px 10px;
    min-width: 0;
    border-right: none !important;
  }

  .hc-experts__trust-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  .hc-experts__trust-item strong {
    font-size: 12px;
    overflow-wrap: anywhere;
  }

  .hc-experts__trust-item > div span {
    font-size: 10px;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .hc-stats--showcase .hc-stats__wrap {
    padding-top: 0;
    padding-bottom: 24px;
  }

  .hc-stats__header {
    margin-bottom: 20px;
  }

  .hc-stats__badge {
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
    font-size: 11px;
    padding: 7px 12px;
  }

  .hc-stats__title {
    flex-wrap: wrap;
    gap: 8px;
    font-size: clamp(24px, 6.5vw, 32px);
    justify-content: center;
  }

  .hc-stats__sub {
    font-size: 14px;
    padding: 0 4px;
  }

  .hc-stats__wreath {
    display: none;
  }

  .hc-stats__grid {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 12px !important;
    margin-bottom: 16px;
    padding: 2px 2px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .hc-stats__grid::-webkit-scrollbar {
    display: none;
  }

  .hc-stats__card {
    flex: 0 0 min(82vw, 280px);
    min-width: 0;
    scroll-snap-align: center;
    min-height: 176px;
    padding: 14px 14px 32px;
  }

  .hc-stats__card-num {
    font-size: 24px;
  }

  .hc-stats__testimonials {
    flex-direction: column;
    padding: 14px;
    gap: 10px;
  }

  .hc-stats__t-intro {
    flex: none;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-right: 0;
    padding-bottom: 12px;
  }

  .hc-stats__t-track {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
  }

  .hc-stats__t-track::-webkit-scrollbar {
    display: none;
  }

  .hc-stats__t-card {
    flex: 0 0 min(88vw, 300px);
    scroll-snap-align: start;
  }

  .hc-stats__t-next {
    align-self: flex-end;
  }

  .hc-hiw__title {
    font-size: clamp(24px, 6.8vw, 32px);
    line-height: 1.15;
  }

  .hc-hiw__subtitle {
    font-size: 14px;
    padding: 0 8px;
  }

  .hc-hiw__card {
    min-height: 280px;
  }

  .hc-hiw__card h3 {
    font-size: 18px;
  }

  .hc-hiw__card p {
    font-size: 13px;
  }

  .home-expert-card__stats {
    gap: 6px 10px;
  }

  .hc-pricing {
    padding-top: 28px !important;
    padding-bottom: 36px !important;
    overflow-x: hidden;
  }

  .hc-section {
    padding: 28px max(16px, env(safe-area-inset-right)) 28px max(16px, env(safe-area-inset-left)) !important;
  }

  .hc-pricing .hc-section__title {
    font-size: clamp(22px, 6vw, 28px) !important;
    margin-bottom: 12px !important;
  }

  .hc-footer__inner {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px 16px !important;
  }

  .hc-footer__brand {
    grid-column: 1 / -1;
    max-width: none;
  }

  .footer-ventures-section {
    grid-column: 1 / -1;
  }

  .footer-ventures-section--b {
    display: none !important;
  }

  .hc-pricing .pb-grid,
  .hc-pricing .pb-grid.pb-grid--3 {
    grid-template-columns: 1fr !important;
    max-width: min(400px, 94vw) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    gap: 16px !important;
  }

  .hc-pricing .pb-col {
    min-width: 0 !important;
    padding: 24px 20px 20px !important;
  }

  .hc-pricing .pb-title {
    font-size: 22px !important;
    line-height: 1.25;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .hc-pricing .pb-credit-box,
  .hc-pricing .pb-features li {
    overflow-wrap: normal;
    word-break: normal;
  }

  .hc-pricing .pb-equiv,
  .hc-pricing__note {
    font-size: 12px;
  }

  .hc-pricing .pricing-toggle-wrap {
    max-width: 100%;
    padding: 0 4px;
  }

  .hc-pricing .pricing-toggle-bar {
    width: min(100%, 300px);
    max-width: calc(100vw - 32px);
    margin: 0 auto;
  }

  .hc-pricing .pb-billing-btn {
    padding: 10px 12px;
    font-size: 0.85rem;
  }

  .hc-footer {
    padding: 36px max(16px, env(safe-area-inset-right)) calc(var(--hc-mobile-bar-h) + 56px) max(16px, env(safe-area-inset-left)) !important;
  }

  .hc-footer__notice,
  .hc-footer__social {
    display: none !important;
  }

  .footer-ventures-section--b .hc-footer__heading-spacer {
    display: none;
    height: 0;
    margin: 0;
  }

  .footer-ventures-grid {
    gap: 0 24px;
  }

  .footer-ventures-list a {
    font-size: 13px;
    line-height: 1.85;
  }

  .hc-footer__bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-bottom: 4px;
  }

  .hc-footer__links {
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .hc-footer__logo {
    font-size: 24px !important;
  }

  .hc-footer__brand p {
    font-size: 13px !important;
  }

  .hc-footer__col a,
  nav.hc-footer__col a,
  .footer-ventures-list a {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hc-footer__copy {
    margin-left: 0;
  }

  .hc-mobile-cta-bar {
    display: flex !important;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 500;
    gap: 10px;
    padding: 10px max(14px, env(safe-area-inset-right)) calc(10px + env(safe-area-inset-bottom, 0px)) max(14px, env(safe-area-inset-left));
    background: rgba(5, 8, 22, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .hc-mobile-cta-bar__primary {
    flex: 1.4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 12px;
    background: linear-gradient(90deg, var(--hc-purple), var(--hc-pink));
    color: #fff !important;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
  }

  .hc-mobile-cta-bar__secondary {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff !important;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.04);
  }

  body.menu-open .hc-mobile-cta-bar {
    visibility: hidden;
    pointer-events: none;
  }

  .visitor-modal {
    z-index: 4500;
    padding: 16px;
    align-items: flex-start;
    overflow-y: auto;
  }

  .visitor-modal-card {
    margin: auto 0;
  }
}

/* Sticky bar hidden on desktop; shown in max-width 900px block above */
.hc-mobile-cta-bar {
  display: none;
}

#hero-auth,
#pricing,
#experts-preview,
#trust {
  scroll-margin-top: calc(72px + env(safe-area-inset-top, 0px));
  scroll-margin-bottom: calc(var(--hc-mobile-bar-h) + 16px);
}

@media (max-width: 900px) {
  #hero-auth {
    scroll-margin-top: calc(64px + env(safe-area-inset-top, 0px));
    scroll-margin-bottom: calc(var(--hc-mobile-bar-h) + 24px);
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .hc-hero__features {
    grid-template-columns: 1fr 1fr;
  }

  .hc-hero__feat:last-child {
    grid-column: 1 / -1;
  }

  .hc-experts__trust-item {
    min-width: 0;
  }

  .hc-experts__trust-item strong,
  .hc-experts__trust-item > div span {
    overflow-wrap: anywhere;
  }

  .hc-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .hc-stats__card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .hc-section {
    padding: 24px max(14px, env(safe-area-inset-right)) 24px max(14px, env(safe-area-inset-left)) !important;
  }

  .hc-section__title {
    font-size: clamp(22px, 6.2vw, 28px);
  }

  .hc-section__sub {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .hc-experts__trust {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px;
  }

  .hc-experts__trust-item {
    padding: 10px 8px;
    border-right: none !important;
  }

  .hc-experts__trust-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hc-experts__trust-icon {
    width: 36px;
    height: 36px;
  }

  .hc-experts__trust-icon svg {
    width: 16px;
    height: 16px;
  }

  .home-expert-card__foot {
    flex-direction: row;
    align-items: center;
  }

  .home-expert-book {
    margin-left: auto;
    width: auto;
    justify-content: center;
  }

  .hc-experts .home-expert-card {
    flex-basis: min(88vw, 300px);
  }

  .hc-stats__card {
    flex-basis: min(88vw, 300px);
  }

  .hc-stats__t-card {
    flex-basis: min(92vw, 320px);
  }

  .hc-hiw__card {
    min-height: 260px;
    padding-bottom: 16px;
  }

  .hc-hiw__scene {
    height: 150px;
  }
}

@media (max-width: 380px) {
  .hc-experts .home-expert-photo-wrap,
  .hc-experts .home-expert-photo {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
  }

  .hc-experts .home-expert-body h3,
  .home-expert-card__identity h3 {
    font-size: 15px;
  }

  .hc-stats__badge {
    font-size: 10px;
  }
}
