/* Home page — flowing scroll reveals (not solid directory-style blocks) */
html:has(.home-page) {
  overflow-x: hidden;
  overflow-y: auto;
}

.home-page {
  --home-navy: var(--charcoal);
  --home-purple: var(--lavender-deep);
  --home-purple-deep: var(--charcoal);
  --home-lavender: var(--lavender-soft);
  --home-lavender-soft: var(--lavender-light);
  --home-lavender-panel: var(--gold-light);
  --home-gold-pale: var(--gold-light);
  --home-gold: var(--gold);
  --home-bg: var(--surface-card);
  --home-bg-lavender: var(--lavender-light);
  --home-bg-alt: var(--surface-warm);
  --home-bg-warm: var(--cream);
  --home-border: var(--border-soft);
  --home-muted: var(--text-muted);
  --home-nav-height: 84px;
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
}

.home-page.hub-page-home {
  padding-top: 0;
}

/* Continuous page canvas */
.home-flow {
  background: var(--home-bg);
}

.home-flow-inner {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  padding: 0 clamp(16px, 4vw, 28px);
}

/* Scroll reveal */
.home-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.home-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.home-reveal.is-visible .home-reveal-child {
  opacity: 1;
  transform: none;
}

.home-reveal-child {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.home-reveal.is-visible .home-reveal-child:nth-child(1) { transition-delay: 0.05s; }
.home-reveal.is-visible .home-reveal-child:nth-child(2) { transition-delay: 0.12s; }
.home-reveal.is-visible .home-reveal-child:nth-child(3) { transition-delay: 0.2s; }
.home-reveal.is-visible .home-reveal-child:nth-child(4) { transition-delay: 0.28s; }
.home-reveal.is-visible .home-reveal-child:nth-child(5) { transition-delay: 0.36s; }
.home-reveal.is-visible .home-reveal-child:nth-child(6) { transition-delay: 0.44s; }

@keyframes home-hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes home-pillar-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes home-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes home-deco-drift {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.85; }
  50% { transform: translate(14px, -10px) scale(1.04); opacity: 1; }
}

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

@keyframes home-partners-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes home-shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes home-icon-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes home-accent-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes home-live-pulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.22); transform: scale(1); }
  50% { box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.12); transform: scale(1.12); }
}

@media (prefers-reduced-motion: reduce) {
  .home-reveal,
  .home-reveal-child {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .home-partners-track--marquee,
  .home-page .home-hero::before,
  .home-page .home-hero::after,
  .home-hero-orb,
  .home-what-pillar-visual img,
  .home-page .home-hero-kicker,
  .home-hub-card-icon,
  .home-what::before,
  .home-what::after,
  .home-hero-quicklink,
  .home-page .hero-title-accent,
  .home-partners-panel::before,
  .home-hub-card .badge-live::before {
    animation: none !important;
  }

  .home-hero.is-entered .home-hero-inner > * {
    animation: none !important;
    opacity: 1;
    transform: none;
  }

  .home-what-pillar:hover .home-what-pillar-visual img {
    transform: none;
  }
}

/* ─── Hero ─── */
.home-page .home-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: auto;
  padding: calc(var(--home-nav-height) + 28px) clamp(24px, 4vw, 40px) 72px;
  background-color: #a67fad;
  background-image:
    radial-gradient(ellipse 90% 55% at 12% 92%, rgba(74, 58, 82, 0.42) 0%, transparent 58%),
    radial-gradient(ellipse 70% 50% at 88% 8%, rgba(255, 255, 255, 0.22) 0%, transparent 52%),
    linear-gradient(to top right, #7d6585 0%, #9a7aa8 32%, #bc98c1 62%, #d4b0d8 100%);
  color: var(--brand-cream);
}

.home-page .home-hero::before,
.home-page .home-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.home-page .home-hero::before {
  width: min(560px, 95vw);
  height: min(560px, 95vw);
  top: -28%;
  right: -14%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 68%);
  animation: home-deco-drift 16s ease-in-out infinite;
}

.home-page .home-hero::after {
  width: min(440px, 80vw);
  height: min(440px, 80vw);
  bottom: -38%;
  left: -12%;
  background: radial-gradient(circle, rgba(74, 68, 70, 0.14) 0%, transparent 70%);
  animation: home-deco-drift 20s ease-in-out infinite reverse;
}

.home-hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(1px);
}

.home-hero-orb--1 {
  width: 120px;
  height: 120px;
  top: 18%;
  left: 8%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28) 0%, transparent 70%);
  animation: home-float 9s ease-in-out infinite;
}

.home-hero-orb--2 {
  width: 72px;
  height: 72px;
  top: 62%;
  right: 12%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, transparent 68%);
  animation: home-float 7s ease-in-out infinite 0.8s;
}

.home-hero-orb--3 {
  width: 48px;
  height: 48px;
  top: 28%;
  right: 22%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  animation: home-glow-pulse 5s ease-in-out infinite;
}

.home-hero.is-entered .home-hero-kicker {
  animation: home-hero-fade-up 0.65s ease both;
}

.home-hero.is-entered .hero-title {
  animation: home-hero-fade-up 0.7s ease 0.08s both;
}

.home-hero.is-entered .hero-tagline {
  animation: home-hero-fade-up 0.7s ease 0.16s both;
}

.home-hero.is-entered .home-hero-quicklinks {
  animation: home-hero-fade-up 0.7s ease 0.24s both;
}

.home-hero:not(.is-entered) .home-hero-inner > * {
  opacity: 0;
}

.home-page .home-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
  padding: 0 clamp(8px, 2vw, 20px);
}

.home-page .home-hero-kicker {
  display: inline-block;
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(45, 35, 50, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 18px rgba(45, 35, 50, 0.2);
  text-shadow: 0 1px 2px rgba(45, 35, 50, 0.35);
  animation: home-glow-pulse 4s ease-in-out infinite;
}

.home-page .hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.08em;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.1rem, 5.2vw, 3.2rem);
  font-weight: 400;
  line-height: 1.06;
  color: #fff;
  margin: 0 0 14px;
  max-width: none;
  letter-spacing: -0.02em;
  text-wrap: balance;
  text-shadow:
    0 1px 2px rgba(45, 35, 50, 0.45),
    0 4px 28px rgba(45, 35, 50, 0.28);
}

.home-page .hero-title-line {
  display: block;
}

.home-page .hero-title-accent {
  display: block;
  font-size: 1.08em;
  line-height: 1.06;
  margin: 0.04em 0;
  background: linear-gradient(120deg, #fff8ec 0%, #f5d998 38%, #fff 72%, #f0e0ff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: home-accent-shimmer 8s ease-in-out infinite;
  text-shadow: none;
  filter: drop-shadow(0 2px 12px rgba(45, 35, 50, 0.35));
}

.home-page .hero-tagline {
  font-size: clamp(1rem, 2.1vw, 1.125rem);
  line-height: 1.55;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.94);
  max-width: 30em;
  margin: 0 auto 22px;
  text-wrap: pretty;
  text-shadow: 0 1px 3px rgba(45, 35, 50, 0.38);
}

.home-hero-quicklinks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}

.home-hero-quicklink {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(45, 35, 50, 0.12);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.home-hero-quicklink:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.75);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(45, 35, 50, 0.18);
  color: #fff;
}

.home-hero-quicklink:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.home-page .hub-access-note {
  margin: 0 auto 20px;
  max-width: 38em;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-body);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--gold-light);
  border: 1px solid rgba(184, 149, 106, 0.22);
}

.home-page .hub-access-note a {
  color: var(--charcoal);
  font-weight: 600;
}

.home-page .hub-access-note a:hover {
  color: var(--gold);
}

.home-page .home-hero-cta-block {
  margin-top: 4px;
}

.home-page .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 0;
}

.home-page .home-hero .btn {
  min-width: 10.5rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.home-page .home-hero .btn-primary {
  background: var(--brand-cream);
  color: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 10px 32px rgba(74, 68, 70, 0.2);
  padding: 13px 26px;
  font-size: 15px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.home-page .home-hero .btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(74, 68, 70, 0.24);
  color: var(--charcoal);
}

.home-page .home-hero .btn-secondary {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  padding: 13px 26px;
  font-size: 15px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(74, 68, 70, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.home-page .home-hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.32);
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(74, 68, 70, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

/* ─── What is The Networker? ─── */
.home-what {
  position: relative;
  overflow: hidden;
  padding: 48px 0 56px;
  background:
    linear-gradient(165deg, rgba(237, 225, 245, 0.55) 0%, var(--home-bg) 42%, var(--home-bg-warm) 100%);
}

.home-what::before,
.home-what::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.home-what::before {
  width: min(420px, 70vw);
  height: min(420px, 70vw);
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(194, 153, 209, 0.22) 0%, transparent 68%);
  animation: home-deco-drift 18s ease-in-out infinite;
}

.home-what::after {
  width: min(300px, 55vw);
  height: min(300px, 55vw);
  bottom: -100px;
  left: -60px;
  background: radial-gradient(circle, rgba(184, 149, 106, 0.14) 0%, transparent 70%);
  animation: home-deco-drift 22s ease-in-out infinite reverse;
}

.home-what .home-flow-inner {
  position: relative;
  z-index: 1;
}

.home-what .home-flow-lede:first-of-type {
  color: var(--text-body);
}

.home-what .home-flow-head {
  margin-bottom: 36px;
}

.home-what .home-flow-head .section-title {
  max-width: 16em;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.65rem, 3.4vw, 2.15rem);
}

.home-flow-lede--muted {
  margin-top: 12px;
  font-size: 15px;
  color: var(--home-muted);
}

.home-what .home-flow-link {
  display: inline-block;
  margin-top: 16px;
}

.home-what-pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.home-what-pillars > li {
  min-width: 0;
}

.home-what-pillar {
  display: flex;
  flex-direction: column;
  padding: 0;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(194, 153, 209, 0.28);
  box-shadow: 0 12px 32px rgba(91, 47, 153, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
  color: inherit;
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.home-what-pillars > li:nth-child(1) .home-what-pillar {
  border-top: 4px solid var(--lavender-deep);
}

.home-what-pillars > li:nth-child(2) .home-what-pillar {
  border-top: 4px solid var(--home-gold);
}

.home-what-pillars > li:nth-child(3) .home-what-pillar {
  border-top: 4px solid #0d9488;
}

.home-what-pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(194, 153, 209, 0.5);
  box-shadow: 0 20px 44px rgba(91, 47, 153, 0.15);
}

.home-what-pillar-visual {
  position: relative;
  aspect-ratio: 480 / 200;
  overflow: hidden;
  background: var(--home-bg-lavender);
}

.home-what-pillar-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.home-what-pillar:hover .home-what-pillar-visual img {
  transform: scale(1.04);
}

.home-what-pillar-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px 0;
  flex: 1;
}

.home-what-pillar-go {
  display: inline-block;
  margin: 14px 20px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--lavender-deep);
  transition: transform 0.25s ease, color 0.25s ease;
}

.home-what-pillar--organisers .home-what-pillar-go {
  color: #8a6918;
}

.home-what-pillar--opportunities .home-what-pillar-go {
  color: #0f766e;
}

.home-what-pillar:hover .home-what-pillar-go {
  transform: translateX(4px);
  color: var(--charcoal);
}

.home-what-pillar strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.3;
}

.home-what-pillar-body span {
  font-size: 14px;
  line-height: 1.5;
  color: var(--home-muted);
}

.home-page .home-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 20px 0 0;
  padding: 14px 16px;
  border-radius: calc(var(--radius) + 4px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(176, 118, 210, 0.35);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(91, 47, 153, 0.1);
}

.home-page .home-hero-stat {
  flex: 1 1 140px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 4px;
  transition: transform 0.25s ease;
}

.home-page .home-hero-stat:hover {
  transform: translateY(-2px);
}

.home-page .home-hero-stat-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--home-lavender-soft);
  color: var(--home-purple-deep);
}

.home-page .home-hero-stat-icon svg {
  width: 18px;
  height: 18px;
}

.home-page .home-hero-stat-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.home-page .home-hero-stat-text strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--home-navy);
  line-height: 1.2;
}

.home-page .home-hero-stat-text > span {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.35;
}

/* ─── Section headers (no boxed containers) ─── */
.home-flow-head {
  margin-bottom: 28px;
}

.home-flow-head--row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 24px;
}

.home-flow .section-kicker {
  display: inline-block;
  color: var(--charcoal-soft);
  background: var(--gold-light);
  border: 1px solid rgba(184, 149, 106, 0.2);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.home-flow-head .section-kicker {
  text-align: left;
  margin-bottom: 8px;
}

.home-flow-head .section-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  text-align: left;
  margin: 0 0 10px;
  font-size: clamp(1.65rem, 3.5vw, 2.15rem);
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

.home-flow-lede {
  font-size: 16px;
  color: var(--home-muted);
  line-height: 1.6;
  margin: 0;
  max-width: 36em;
}

.home-flow-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.home-flow-head--center .section-kicker,
.home-flow-head--center .section-title {
  text-align: center;
}

.home-flow-lede--center {
  margin-left: auto;
  margin-right: auto;
}

.home-flow-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--lavender-deep);
  text-decoration: none;
  white-space: nowrap;
}

.home-flow-link:hover {
  text-decoration: underline;
}

/* ─── Partners ─── */
.home-partners {
  position: relative;
  z-index: 4;
  margin-top: -48px;
  padding: 0 0 28px;
}

.home-partners-band {
  background: transparent;
  padding: 0;
}

.home-partners-panel {
  --home-partners-panel-x: clamp(16px, 4vw, 28px);
  position: relative;
  padding: 20px var(--home-partners-panel-x) 22px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--home-border);
  box-shadow: 0 22px 54px rgba(74, 68, 70, 0.14);
  overflow: hidden;
}

.home-partners-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lavender-deep), var(--home-gold), #0d9488, var(--lavender-deep));
  background-size: 200% 100%;
  animation: home-accent-shimmer 10s ease-in-out infinite;
}

.home-partners .home-flow-head {
  margin-bottom: 12px;
}

.home-partners .section-title {
  margin-bottom: 0;
}

.home-partners-marquee {
  overflow: hidden;
  margin-left: calc(-1 * var(--home-partners-panel-x));
  margin-right: calc(-1 * var(--home-partners-panel-x));
  width: calc(100% + 2 * var(--home-partners-panel-x));
  padding: 4px 0;
}

.home-partners-marquee:has(.home-partners-track--marquee) {
  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%);
}

.home-partners-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 20px;
  width: max-content;
  padding: 12px clamp(20px, 4vw, 40px);
}

.home-partners-track--static {
  width: 100%;
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
  padding: 12px clamp(12px, 3vw, 24px);
}

.home-partners-track--marquee {
  animation: home-partners-marquee 36s linear infinite;
}

.home-partners-track--marquee:hover {
  animation-play-state: paused;
}

.home-partners-track--loading {
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.home-partner-skeleton {
  display: block;
  width: 184px;
  height: 84px;
  border-radius: 16px;
  background: linear-gradient(
    90deg,
    rgba(237, 225, 245, 0.5) 0%,
    rgba(255, 255, 255, 0.95) 45%,
    rgba(237, 225, 245, 0.5) 100%
  );
  background-size: 200% 100%;
  animation: home-shimmer 1.6s ease-in-out infinite;
  border: 1px solid var(--home-border);
}

.home-partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  width: 184px;
  height: 84px;
  padding: 14px 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--home-border);
  box-shadow: var(--shadow-soft);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
  box-sizing: border-box;
}

.home-partner-item:hover {
  border-color: rgba(184, 149, 106, 0.4);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}

.home-partner-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
  object-position: center;
}

/* ─── Horizontal spotlight rows ─── */
.home-spotlight {
  padding: 48px 0 64px;
}

.home-spotlight--academy {
  padding-top: 8px;
}

.home-scroll-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 2px 16px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(91, 47, 153, 0.25) transparent;
}

.home-scroll-row::-webkit-scrollbar {
  height: 6px;
}

.home-scroll-row::-webkit-scrollbar-thumb {
  background: rgba(91, 47, 153, 0.2);
  border-radius: 99px;
}

.home-loading {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* Event cards */
.home-event-card {
  flex: 0 0 min(280px, 78vw);
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 32px rgba(26, 26, 46, 0.06);
  transition: transform 0.22s, box-shadow 0.22s;
}

.home-event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(26, 26, 46, 0.1);
}

.home-event-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--lavender-light);
}

.home-event-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-event-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--lavender-deep);
  color: #fff;
  padding: 4px 8px;
  border-radius: var(--radius-pill);
}

.home-event-card-price {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.92);
  color: var(--charcoal);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.home-event-card-body {
  padding: 14px 16px 16px;
}

.home-event-card-body h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0 0 6px;
  line-height: 1.35;
}

.home-event-card-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* Training cards */
.home-academy-card {
  flex: 0 0 min(260px, 74vw);
  scroll-snap-align: start;
  padding: 18px 16px;
  border-radius: calc(var(--radius) + 2px);
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
}

.home-academy-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.home-academy-type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: var(--radius-pill);
}

.home-academy-type--workshop { background: #e8d4a8; color: #5c4a1a; }
.home-academy-type--seminar { background: #c8e6d0; color: #14532d; }
.home-academy-type--masterclass { background: #b8d4e8; color: #1e3a5f; }

.home-academy-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--home-navy);
}

.home-academy-host {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0 0 6px;
}

.home-academy-card h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--charcoal);
  margin: 0 0 6px;
  line-height: 1.3;
}

.home-academy-tags,
.home-academy-detail {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0 0 4px;
  line-height: 1.45;
}

.home-academy-soon {
  display: inline-block;
  margin-top: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-pill);
  padding: 3px 8px;
}

/* Opportunity cards */
.home-opp-card {
  flex: 0 0 min(280px, 78vw);
  scroll-snap-align: start;
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  padding: 18px 16px 16px;
  border-radius: calc(var(--radius) + 2px);
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  transition: transform 0.22s;
}

.home-opp-card:hover {
  transform: translateY(-4px);
}

.home-opp-card.is-featured {
  border-color: rgba(201, 150, 31, 0.35);
}

.home-opp-featured {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--home-gold-pale);
  color: #8a6918;
  padding: 4px 8px;
  border-radius: var(--radius-pill);
}

.home-opp-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.home-opp-avatar-letter,
.home-opp-avatar-img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
}

.home-opp-avatar-letter {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.home-opp-avatar-img {
  object-fit: cover;
}

.home-opp-host {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
}

.home-opp-type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--lavender-deep);
  margin-bottom: 6px;
}

.home-opp-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0 0 8px;
  line-height: 1.35;
}

.home-opp-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.home-opp-meta {
  margin-top: 8px !important;
  font-weight: 600;
  color: var(--charcoal) !important;
}

.home-opp-cta {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lavender-deep);
}

/* ─── Three ways hub cards ─── */
.home-discover {
  padding: 56px 0 80px;
  background: var(--home-bg-alt);
}

.home-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}

.home-hub-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--home-border);
  border-radius: 16px;
  padding: 36px 32px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.home-hub-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  transition: opacity 0.25s ease;
}

.home-hub-card--events::before {
  background: radial-gradient(ellipse 80% 60% at 0% 0%, rgba(194, 153, 209, 0.22) 0%, transparent 70%);
}

.home-hub-card--opportunities::before {
  background: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(245, 217, 152, 0.28) 0%, transparent 70%);
}

.home-hub-card:hover::before {
  opacity: 0.85;
}

.home-hub-card > * {
  position: relative;
  z-index: 1;
}

.home-hub-card--events {
  border-top: 4px solid var(--lavender-deep);
}

.home-hub-card--academy {
  border-top: 4px solid #0d9488;
}

.home-hub-card--opportunities {
  border-top: 4px solid var(--home-gold);
}

.home-hub-card:hover {
  border-color: rgba(184, 149, 106, 0.35);
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
}

.home-hub-card:hover .home-hub-card-icon {
  animation-play-state: paused;
  transform: scale(1.08);
}

.home-hub-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  animation: home-icon-bob 5s ease-in-out infinite;
}

.home-hub-card--opportunities .home-hub-card-icon {
  background: #f5d998;
  color: #8a6918;
  animation-delay: 0.8s;
}

.home-hub-card-icon svg {
  width: 32px;
  height: 32px;
}

.home-hub-card--events .home-hub-card-icon {
  background: var(--lavender-light);
  color: var(--lavender-deep);
}

.home-hub-card--academy .home-hub-card-icon {
  background: #b8ebe4;
  color: #0f766e;
}

.home-hub-card .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  width: fit-content;
}

.home-hub-card .badge-live {
  background: rgba(22, 163, 74, 0.12);
  color: #15803d;
  border: 1px solid rgba(22, 163, 74, 0.28);
}

.home-hub-card .badge-live::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.22);
  flex-shrink: 0;
  animation: home-live-pulse 2s ease-in-out infinite;
}

.home-hub-card .badge-new {
  background: rgba(22, 163, 74, 0.12);
  color: #15803d;
  border: 1px solid rgba(22, 163, 74, 0.28);
}

.home-hub-card h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--charcoal);
  margin: 0 0 10px;
}

.home-hub-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin: 0 0 18px;
}

.home-hub-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--lavender-deep);
  text-decoration: none;
}

.home-hub-card-link:hover {
  color: var(--charcoal);
  text-decoration: underline;
}

.home-hub-card--academy {
  opacity: 0.97;
}

/* ─── Split columns — light, no heavy panels ─── */
.home-split {
  padding: 64px 0 80px;
  background: var(--home-bg-alt);
}

.home-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.home-split-col {
  padding: 32px 28px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--home-border);
  box-shadow: var(--shadow-soft);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.home-split .home-reveal-child:nth-child(1) {
  transform: translate(-18px, 20px);
}

.home-split .home-reveal-child:nth-child(2) {
  transform: translate(18px, 20px);
}

.home-reveal.is-visible .home-split .home-reveal-child {
  transform: none;
}

.home-split-col:first-child {
  border-left: 4px solid var(--lavender-deep);
  background: linear-gradient(145deg, #fff 0%, rgba(237, 225, 245, 0.35) 100%);
}

.home-split-col:last-child {
  border-left: 4px solid var(--home-gold);
  background: linear-gradient(145deg, #fff 0%, rgba(245, 217, 152, 0.2) 100%);
}

.home-split-col:hover {
  border-color: rgba(184, 149, 106, 0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}

.home-split-col h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--charcoal);
  margin: 0 0 14px;
}

.home-feature-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.home-feature-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 8px;
}

.home-feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
}

.home-split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ─── Closing CTA + FAQs ─── */
.home-cta {
  padding: 64px 0 80px;
}

.home-cta-panel {
  position: relative;
  border-radius: 20px;
  background: var(--charcoal);
  color: #fff;
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}

.home-cta-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 80% at 0% 0%, rgba(194, 153, 209, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 45% 70% at 100% 100%, rgba(212, 168, 83, 0.14) 0%, transparent 50%);
}

.home-cta-top {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 40px clamp(20px, 4vw, 36px) 36px;
}

.home-cta-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 10px;
}

.home-cta-copy h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.45rem, 3.2vw, 1.9rem);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 10px;
  max-width: 16em;
}

.home-cta-copy p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  max-width: 32em;
}

.home-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-cta .btn-primary {
  background: #d4a853;
  color: var(--charcoal);
}

.home-cta .btn-primary:hover {
  background: #e4bc6a;
  color: var(--charcoal);
}

.home-cta .btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.home-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.home-faq {
  position: relative;
  z-index: 1;
  padding: 0 clamp(20px, 4vw, 36px) 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.home-faq-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  padding: 28px 0 16px;
}

.home-faq-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
  margin: 0;
  color: #fff;
}

.home-faq-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-light);
  text-decoration: none;
}

.home-faq-all:hover {
  text-decoration: underline;
}

.home-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.home-faq-box {
  padding: 20px 22px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease, transform 0.2s ease;
}

.home-faq-box:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.home-faq-box h3 {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
}

.home-faq-box p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.home-faq-box a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.home-page .site-footer {
  width: 100%;
  box-sizing: border-box;
}

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

  .home-hub-grid {
    grid-template-columns: 1fr;
  }

  .home-what-pillars {
    grid-template-columns: 1fr;
  }

  .home-split-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .home-page {
    --home-nav-height: 64px;
  }
}

@media (max-width: 640px) {
  .home-page .home-hero {
    padding: calc(var(--home-nav-height) + 20px) 20px 56px;
  }

  .home-page .hero-title {
    max-width: none;
    font-size: clamp(1.75rem, 7.5vw, 2.15rem);
    gap: 0.08em;
    margin-bottom: 12px;
  }

  .home-page .home-hero-kicker {
    margin-bottom: 10px;
  }

  .home-page .hero-title-accent {
    font-size: 1.03em;
  }

  .home-page .hero-tagline {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .home-hero-quicklinks {
    gap: 8px;
  }

  .home-hero-quicklink {
    padding: 9px 14px;
    font-size: 13px;
  }

  .home-page .home-hero-stats {
    flex-direction: column;
    gap: 8px;
  }

  .home-page .home-hero-stat {
    flex: 1 1 auto;
  }

  .home-cta-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-partners {
    margin-top: -36px;
    padding-bottom: 20px;
  }

  .home-split .home-reveal-child:nth-child(1),
  .home-split .home-reveal-child:nth-child(2) {
    transform: translateY(20px);
  }
}
