:root {
  --bg: #150a24;
  --bg-soft: #24103f;
  --surface: #331259;
  --surface-2: #42166e;
  --line: #7a4ab6;
  --text: #fffaff;
  --muted: #ece0fb;
  --accent: #fcd368;
  --accent-2: #f2e7fd;
  --success: #fcd368;
  --danger: #ff8f8f;
  --shadow: 0 24px 60px rgba(6, 2, 12, 0.42);
  --shadow-soft: 0 18px 40px rgba(8, 2, 16, 0.22);
  --glass: rgba(255, 255, 255, 0.06);
  --glass-strong: rgba(255, 255, 255, 0.1);
  --radius: 20px;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter Tight", system-ui, sans-serif;
  --mono: "JetBrains Mono", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(126, 74, 182, 0.32), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(242, 231, 253, 0.12), transparent 24%),
    radial-gradient(circle at 50% 120%, rgba(66, 22, 110, 0.28), transparent 34%),
    linear-gradient(180deg, #12071f 0%, #22103d 42%, #42166e 100%);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 85%);
}

.site-shell::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(122, 74, 182, 0.18), transparent 18%),
    radial-gradient(circle at 88% 28%, rgba(242, 231, 253, 0.1), transparent 22%);
  filter: blur(26px);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: 3px;
  background: rgba(242, 231, 253, 0.05);
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, #f2e7fd 0%, #fcd368 100%);
  box-shadow: 0 0 24px rgba(252, 211, 104, 0.28);
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px) saturate(130%);
  background: rgba(24, 8, 41, 0.84);
  border-bottom: 1px solid rgba(242, 231, 253, 0.1);
  box-shadow: 0 10px 28px rgba(7, 2, 14, 0.12);
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand {
  font-family: var(--serif);
  font-size: 1.15rem;
  text-decoration: none;
  letter-spacing: -0.03em;
}

.brand span {
  color: var(--accent-2);
  font-style: italic;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s ease, text-shadow 0.2s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  text-shadow: 0 0 18px rgba(242, 231, 253, 0.18);
}

.nav-links a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 231, 253, 0.85), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.nav-links a:not(.button):hover::after,
.nav-links a:not(.button):focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: linear-gradient(180deg, #ffe392 0%, var(--accent) 100%);
  color: #2b1248;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, border-color 0.24s ease;
  box-shadow:
    0 12px 28px rgba(252, 211, 104, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 16px 36px rgba(252, 211, 104, 0.34),
    0 0 32px rgba(252, 211, 104, 0.16);
}

.button.is-secondary {
  background: rgba(242, 231, 253, 0.05);
  color: var(--accent-2);
  border-color: rgba(242, 231, 253, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 8px 24px rgba(10, 3, 20, 0.12);
}

.button.is-secondary:hover,
.button.is-secondary:focus-visible {
  border-color: rgba(242, 231, 253, 0.26);
  color: #ffffff;
  background: rgba(242, 231, 253, 0.1);
  box-shadow:
    0 14px 28px rgba(10, 3, 20, 0.2),
    0 0 24px rgba(242, 231, 253, 0.1);
}

.button.is-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.section {
  padding: 88px 0;
  position: relative;
}

.section + .section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 40px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 231, 253, 0.08), transparent);
}

.eyebrow {
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-family: var(--mono);
  font-size: 0.73rem;
  margin-bottom: 18px;
}

.section h1,
.section h2,
.section h3 {
  margin: 0 0 18px;
  font-family: var(--serif);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.section h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.section h2 {
  font-size: clamp(2.2rem, 4.4vw, 4rem);
}

.section h3 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero {
  padding: 96px 0 72px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 56px;
  right: min(4vw, 44px);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 74, 182, 0.3) 0%, rgba(122, 74, 182, 0.12) 38%, transparent 72%);
  filter: blur(18px);
  pointer-events: none;
}

.hero-grid,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 34px;
  align-items: center;
}

.hero-copy p {
  max-width: 650px;
}

.hero-copy .cta-row,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-copy .cta-row .button:first-child {
  min-width: 170px;
}

.hero-card,
.content-card,
.form-card,
.gallery-card,
.metric-card,
.info-band,
.bio-card,
.impact-group,
.success-card {
  background:
    linear-gradient(180deg, rgba(66, 22, 110, 0.82), rgba(33, 12, 57, 0.9)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 38%);
  border: 1px solid rgba(242, 231, 253, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px) saturate(125%);
  -webkit-backdrop-filter: blur(16px) saturate(125%);
}

.hero-card {
  padding: 28px;
  transform: rotate(-1.4deg);
  background:
    linear-gradient(180deg, rgba(98, 44, 161, 0.97), rgba(45, 17, 77, 0.98)),
    linear-gradient(135deg, rgba(242, 231, 253, 0.06), transparent 42%);
}

.hero-card img,
.flier-card img {
  border-radius: 14px;
}

.flier-card {
  display: block;
  position: relative;
}

.flier-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -16px;
  height: 40px;
  background: radial-gradient(circle, rgba(122, 74, 182, 0.24), transparent 72%);
  filter: blur(18px);
  pointer-events: none;
}

.content-card,
.metric-card,
.bio-card,
.info-band,
.impact-group,
.form-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease, background 0.26s ease;
}

.content-card:hover,
.metric-card:hover,
.bio-card:hover,
.info-band:hover,
.impact-group:hover,
.form-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 231, 253, 0.22);
  box-shadow:
    0 26px 60px rgba(6, 2, 12, 0.5),
    0 0 28px rgba(242, 231, 253, 0.08);
}

.content-card::after,
.metric-card::after,
.bio-card::after,
.info-band::after,
.impact-group::after,
.form-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 22%, transparent 72%, rgba(242, 231, 253, 0.06));
  opacity: 0.9;
  pointer-events: none;
}

.hero-copy h1 {
  max-width: 8ch;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.24);
  text-wrap: balance;
}

.hero-copy h1 + .lead {
  font-size: 1.12rem;
}

.hero-copy .eyebrow {
  color: var(--accent-2);
}

.hero-copy .mono-text {
  color: #fff0b9;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(216, 184, 106, 0.4);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.74rem;
  color: #fff9ea;
  margin-top: 18px;
  background: rgba(252, 211, 104, 0.1);
  box-shadow: 0 16px 32px rgba(252, 211, 104, 0.12);
  backdrop-filter: blur(10px);
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.signal-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(242, 231, 253, 0.12);
  color: #f7efff;
  font-size: 0.85rem;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.stats-grid,
.pricing-grid,
.cards-grid,
.metrics-grid,
.gallery-grid,
.host-grid {
  display: grid;
  gap: 18px;
}

.stats-grid,
.metrics-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-grid.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-grid.cards-2,
.host-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.metric-card,
.content-card,
.bio-card {
  padding: 24px;
  backdrop-filter: blur(6px);
}

.metric-card strong,
.stat-number {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.metric-card strong {
  text-shadow: 0 6px 22px rgba(242, 231, 253, 0.16);
  text-wrap: balance;
}

.metric-card {
  position: relative;
  overflow: hidden;
}

.metric-card::before,
.content-card::before,
.bio-card::before,
.info-band::before,
.impact-group::before,
.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 231, 253, 0.78), transparent);
}

.stat-label,
.muted-label {
  color: var(--muted);
  font-size: 0.95rem;
}

.day-card ul,
.check-list,
.footer-list,
.bio-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.day-card li,
.check-list li,
.bio-card li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  color: #f0e6fc;
}

.day-card li::before,
.check-list li::before,
.bio-card li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.day-card .date,
.mono-text {
  font-family: var(--mono);
  color: #f6edff;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-band {
  padding: 28px;
  position: relative;
}

.countdown {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.countdown-units {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.countdown-unit {
  text-align: center;
  padding: 14px 12px;
  border-radius: 16px;
  background: rgba(242, 231, 253, 0.05);
  border: 1px solid rgba(242, 231, 253, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.countdown-unit strong {
  display: block;
  font-size: 1.9rem;
  font-family: var(--serif);
}

.pricing-card-highlight {
  border-color: rgba(242, 231, 253, 0.28);
  box-shadow: 0 30px 80px rgba(122, 74, 182, 0.22), var(--shadow);
  background:
    linear-gradient(180deg, rgba(96, 43, 158, 0.98), rgba(52, 19, 88, 0.99)),
    linear-gradient(135deg, rgba(242, 231, 253, 0.08), transparent 48%);
}

.pricing-card-highlight .current {
  color: #fffaff;
  text-shadow: 0 8px 24px rgba(242, 231, 253, 0.18);
  text-wrap: balance;
}

.pricing-note {
  color: var(--muted);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 18px 0;
}

.price .current {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
}

.price .old {
  text-decoration: line-through;
  color: var(--muted);
}

.host-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: center;
}

.portrait {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(242, 231, 253, 0.1);
  min-height: 520px;
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portrait:hover img {
  transform: scale(1.03);
}

.facilitator-card img {
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.facilitator-card:hover img {
  transform: scale(1.025);
  filter: saturate(1.04);
}

.facilitators-stack {
  display: grid;
  gap: 26px;
}

.facilitator-card {
  padding: 28px;
}

.facilitator-overview {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: 24px;
  align-items: start;
}

.facilitator-media img {
  width: 100%;
  box-shadow: var(--shadow-soft);
}

.facilitator-copy h3 {
  margin-top: 14px;
}

.facilitator-copy .details-toggle {
  max-width: 220px;
}

.facilitator-impact {
  margin-top: 24px;
}

.tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(216, 184, 106, 0.35);
  color: #fffaff;
  font-size: 0.76rem;
  font-family: var(--mono);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.details-toggle {
  margin-top: 16px;
  width: 100%;
}

.bio-body[hidden] {
  display: none;
}

.bio-body {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(242, 231, 253, 0.1);
}

.bio-card h4 {
  margin: 0 0 12px;
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.facilitator-project + .facilitator-project {
  margin-top: 20px;
}

.bio-body p {
  color: var(--muted);
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid-large {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
}

.gallery-grid-large img {
  aspect-ratio: 4 / 3;
}

.gallery-thumb {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-thumb:hover,
.gallery-thumb:focus-visible {
  transform: translateY(-4px) scale(1.01);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.28),
    0 0 26px rgba(242, 231, 253, 0.1);
  filter: saturate(1.04);
}

.gallery-stack {
  display: grid;
  gap: 12px;
}

.form-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.form-card {
  padding: 28px;
  position: relative;
  background:
    linear-gradient(180deg, rgba(87, 38, 142, 0.97), rgba(34, 13, 59, 0.98)),
    radial-gradient(circle at top right, rgba(252, 211, 104, 0.12), transparent 32%);
}

.form-card h3 {
  color: #fff7df;
}

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

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.8rem;
  color: var(--muted);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.field input,
.field select {
  width: 100%;
  min-height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(242, 231, 253, 0.12);
  background: rgba(20, 8, 34, 0.92);
  color: var(--text);
  padding: 0 16px;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.field input:focus,
.field select:focus {
  outline: 2px solid rgba(252, 211, 104, 0.18);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(252, 211, 104, 0.06);
  background: rgba(28, 10, 48, 0.96);
  transform: translateY(-1px);
}

.field-note,
.form-helper,
.empty-state,
.footer-meta {
  color: var(--muted);
  font-size: 0.96rem;
}

.form-helper {
  color: var(--accent);
  font-family: var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.success-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(14, 6, 24, 0.82);
  backdrop-filter: blur(10px);
}

.success-overlay.active {
  display: flex;
}

.success-card {
  width: min(560px, 100%);
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(84, 36, 138, 0.95), rgba(31, 12, 52, 0.98)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 36%);
}

.spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(242, 231, 253, 0.16);
  border-top-color: var(--accent);
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.footer {
  border-top: 1px solid rgba(242, 231, 253, 0.1);
  padding: 30px 0 42px;
  background: rgba(31, 10, 52, 0.4);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .hero-card,
  .metric-card,
  .content-card,
  .bio-card,
  .form-card {
    animation: rise-in 0.7s ease both;
  }

  .metric-card:nth-child(2),
  .content-card:nth-child(2),
  .bio-card:nth-child(2) {
    animation-delay: 0.05s;
  }

  .metric-card:nth-child(3),
  .content-card:nth-child(3),
  .bio-card:nth-child(3) {
    animation-delay: 0.1s;
  }

  .metric-card:nth-child(4),
  .content-card:nth-child(4),
  .bio-card:nth-child(4) {
    animation-delay: 0.15s;
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#register .lead {
  color: #efe2fb;
}

#register .check-list li {
  color: #f7ecff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(0, 0.7fr));
  gap: 18px;
}

.footer-list li {
  margin-bottom: 10px;
}

.footer-list a {
  color: var(--muted);
  text-decoration: none;
}

.footer-list a:hover,
.footer-list a:focus-visible {
  color: var(--text);
}

.page-header {
  padding: 72px 0 24px;
}

.page-header .inline-actions {
  margin-top: 22px;
}

.impact-group {
  padding: 22px;
}

.impact-group h3 {
  margin-bottom: 8px;
}

.impact-group p {
  color: var(--muted);
  margin-top: 0;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(5, 9, 12, 0.88);
}

.image-lightbox.active {
  display: flex;
}

.image-lightbox img {
  max-width: min(100%, 1100px);
  max-height: 88vh;
  border-radius: 18px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  border: 1px solid rgba(242, 231, 253, 0.12);
  background: rgba(242, 231, 253, 0.08);
  color: var(--text);
  border-radius: 999px;
  width: 44px;
  height: 44px;
  font-size: 1.4rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .host-spotlight,
  .form-wrap,
  .page-header,
  .site-nav .container {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding: 82px 0 54px;
  }

  .hero::before {
    width: 320px;
    height: 320px;
    top: 48px;
    right: -48px;
  }

  .hero-copy h1 {
    max-width: 10ch;
  }

  .stats-grid,
  .metrics-grid,
  .pricing-grid,
  .cards-grid.cards-3,
  .cards-grid.cards-2,
  .host-grid,
  .gallery-grid,
  .field-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .countdown {
    grid-template-columns: 1fr;
  }

  .site-nav .container {
    display: grid;
    gap: 12px;
    min-height: auto;
    padding: 14px 0;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-links {
    display: none;
    width: 100%;
    padding: 6px 0 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .site-nav.is-open .nav-links {
    display: flex;
  }

  .hero-card {
    transform: none;
    max-width: 560px;
    margin: 0 auto;
  }

  .facilitator-overview {
    grid-template-columns: 1fr;
  }

  .facilitator-copy .details-toggle {
    max-width: none;
  }

  .portrait {
    min-height: 420px;
  }

  .inline-actions,
  .hero-copy .cta-row {
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .section h1 {
    font-size: clamp(2.5rem, 12vw, 4.4rem);
  }

  .section h2 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .lead {
    font-size: 1rem;
  }

  .hero-copy .cta-row .button,
  .inline-actions .button {
    width: 100%;
  }

  .hero-signals {
    gap: 8px;
  }

  .signal-pill {
    width: 100%;
    justify-content: center;
  }

  .hero-copy .cta-row .button:first-child {
    min-width: 0;
  }

  .countdown-units {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid-large {
    grid-template-columns: 1fr;
  }

  .form-card,
  .content-card,
  .metric-card,
  .bio-card,
  .info-band,
  .impact-group {
    padding: 22px;
  }

  .price {
    flex-wrap: wrap;
    gap: 8px;
  }

  .footer {
    padding: 26px 0 36px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 20px, 1180px);
  }

  .site-nav .container {
    padding: 12px 0;
  }

  .brand {
    font-size: 1.02rem;
  }

  .menu-toggle {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding: 70px 0 44px;
  }

  .hero::before {
    width: 240px;
    height: 240px;
    top: 28px;
    right: -56px;
  }

  .hero-badge,
  .tag {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .countdown-units {
    gap: 10px;
  }

  .countdown-unit {
    padding: 12px 8px;
  }

  .countdown-unit strong {
    font-size: 1.5rem;
  }

  .field input,
  .field select,
  .button,
  button.button {
    min-height: 52px;
  }

  .portrait {
    min-height: 320px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid-large {
    grid-template-columns: 1fr;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }
}
