/* 20357 Kill-A-Watt â€” Team Website */

:root {
  --purple-dark: #462850;
  --purple: #731e83;
  --purple-bright: #be09f5;
  --pink: #ff44e2;
  --bg-deep: #28122f;
  --bg: #28122f;
  --bg-elevated: #2f1836;
  --bg-soft: #3a2244;
  --surface: rgba(70, 40, 80, 0.55);
  --text: #f2eaf6;
  --text-muted: #b5a3c4;
  --border-subtle: rgba(190, 9, 245, 0.2);
  --border-muted: rgba(255, 255, 255, 0.1);
  --accent: var(--purple-bright);
  --accent-dark: var(--purple);
  --accent-glow: rgba(190, 9, 245, 0.35);
  --dark: var(--bg-deep);
  --dark-soft: var(--purple-dark);
  --muted: var(--text-muted);
  --light-bg: var(--bg-elevated);
  --cream: var(--bg-soft);
  --white: #ffffff;
  --nav-h: 72px;
  --container: 1140px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --gradient-brand: linear-gradient(90deg, var(--purple-bright) 0%, var(--pink) 100%);
  --gradient-brand-deep: linear-gradient(90deg, var(--purple-dark) 0%, var(--purple) 100%);
  /* Continuous scroll canvas — each seam matches the next section's start */
  --canvas-deep: #28122f;
  --canvas-mid: #2b1733;
  --canvas-elevated: #2f1836;
  --canvas-warm: #33203c;
  --canvas-donate: #432a52;
  --canvas-donate-end: #382448;
  --canvas-footer: #1a0d1f;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  background: var(--canvas-deep);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.65rem 1rem;
  background: var(--purple-bright);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 0 0 8px 8px;
  transition: top 0.2s var(--ease-out);
}

.skip-link:focus {
  top: 0;
  outline: 2px solid var(--pink);
  outline-offset: 2px;
}

body {
  margin: 0;
  font-family: "DM Sans", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding-inline: max(1.75rem, env(safe-area-inset-left, 0px)) max(1.75rem, env(safe-area-inset-right, 0px));
  background: linear-gradient(to bottom, rgba(40, 18, 47, 0.5), transparent);
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), backdrop-filter 0.4s;
}

.nav--scrolled {
  background: rgba(40, 18, 47, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav .nav__inner.container {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.nav__logo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-right: auto;
  min-width: max-content;
  position: relative;
  z-index: 2;
  padding: 0.25rem 1.15rem 0.25rem 0;
  overflow: visible;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--white);
  transition: color 0.3s, opacity 0.3s;
}

.nav__logo-img {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  object-fit: cover;
  object-position: 40% 50%;
  filter: drop-shadow(0 0 8px rgba(190, 9, 245, 0.45));
}

.nav__logo-text {
  display: inline-block;
  flex-shrink: 0;
  padding-right: 0.15em;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--pink);
  -webkit-text-fill-color: currentColor;
}

.nav--scrolled .nav__logo,
.nav--open .nav__logo {
  color: var(--white);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__sep {
  display: block;
  flex-shrink: 0;
  width: 1px;
  height: 1.15rem;
  margin-inline: 0.15rem;
  background: rgba(255, 255, 255, 0.22);
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.25s;
  position: relative;
}

.nav__links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s var(--ease-out);
}

.nav__links a:hover {
  color: var(--white);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__links a.nav__link--active {
  color: var(--white);
}

.nav__links a.nav__link--active::after {
  width: 100%;
}

.nav__links a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 2px;
}

.nav__cta {
  padding: 0.45rem 1.1rem !important;
  background: var(--accent);
  border-radius: 4px;
  color: var(--white) !important;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s !important;
}

.nav__cta::after {
  display: none !important;
}

.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-glow);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.nav__toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(40, 18, 47, 0.4) 58%, var(--canvas-deep) 100%),
    linear-gradient(
      160deg,
      rgba(40, 18, 47, 0.82) 0%,
      rgba(115, 30, 131, 0.55) 50%,
      rgba(40, 18, 47, 0.88) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: calc(var(--nav-h) + 2rem) 1rem 4rem;
}

.hero__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.9;
}

.hero__logo {
  width: min(94vw, 720px);
  margin: 0 auto 0.75rem;
  filter: drop-shadow(0 8px 32px rgba(190, 9, 245, 0.35));
}

.hero__title {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.5rem, 12vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  font-style: italic;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero__team {
  margin: 0.25rem 0 0.35rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.hero__former {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.75;
}

.hero__hook {
  margin: 0 auto 2rem;
  max-width: 28rem;
  font-size: 1.1rem;
  opacity: 0.92;
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero__scroll {
  position: absolute;
  bottom: max(2rem, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll span {
  width: 4px;
  height: 8px;
  background: var(--white);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

@keyframes scrollDot {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.3; transform: translateY(6px); }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s, background 0.25s, border-color 0.25s;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  position: relative;
  overflow: hidden;
}

.hero__actions .btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 60%
  );
  transform: translateX(-120%);
  animation: btnShine 4s ease-in-out 1.2s infinite;
}

@keyframes btnShine {
  0%, 70%, 100% { transform: translateX(-120%); }
  85% { transform: translateX(120%); }
}

.btn--primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn--large {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* --- Sections --- */
.section {
  position: relative;
  padding: 5rem 0;
  color: var(--text);
}

.section--light {
  background: linear-gradient(180deg, var(--canvas-mid) 0%, var(--canvas-elevated) 100%);
}

.section--cream {
  background: linear-gradient(180deg, var(--canvas-deep) 0%, var(--canvas-mid) 100%);
}

.section--dark {
  background: linear-gradient(
    180deg,
    var(--canvas-elevated) 0%,
    var(--canvas-deep) 100%
  );
  color: var(--white);
}

.section--donate {
  background: linear-gradient(
    180deg,
    var(--canvas-deep) 0%,
    #362040 28%,
    var(--canvas-donate) 62%,
    var(--canvas-donate-end) 100%
  );
  color: var(--white);
  padding: 6rem 0;
}

.join.section--light {
  background: linear-gradient(
    180deg,
    var(--canvas-donate-end) 0%,
    var(--canvas-warm) 45%,
    var(--canvas-elevated) 100%
  );
}

.section-header {
  margin-bottom: 3rem;
  text-align: center;
}

.section-header .section-title::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  margin: 0.5rem auto 0;
  background: var(--accent);
  transition: width 0.6s var(--ease-out);
}

.section-header.reveal.visible .section-title::after {
  width: 3rem;
}

.section--dark .section-header .section-title::after,
.section--donate .section-header .section-title::after {
  width: 0;
  height: 0;
  margin: 0;
}

.section-label {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-label--light {
  color: var(--pink);
}

.section-title {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.03em;
  line-height: 1.1;
  font-style: italic;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.section-title--light {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.section-desc {
  margin: 0.75rem auto 0;
  max-width: 32rem;
  color: var(--muted);
}

.subsection-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(242, 234, 246, 0.9);
  margin: 0 0 2rem;
}

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

/* --- Timeline --- */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.timeline__step {
  padding: 2rem 1.5rem;
  background: var(--surface);
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  border-top: 3px solid var(--accent);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.timeline__step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(190, 9, 245, 0.12);
}

.timeline__step:nth-child(1) { transition-delay: 0.05s; }
.timeline__step:nth-child(2) { transition-delay: 0.12s; }
.timeline__step:nth-child(3) { transition-delay: 0.19s; }

.timeline__number {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.timeline__step h3 {
  margin: 0 0 0.75rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--text);
}

.timeline__step p {
  margin: 0;
  font-size: 0.925rem;
  color: var(--muted);
  line-height: 1.55;
}

/* --- About --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 1rem;
}

.about-grid__text {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.about-grid__text p {
  margin: 0;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.68;
}

.about-grid__text .lead {
  font-size: 1.28rem;
  line-height: 1.7;
  color: var(--text);
}

.about-grid__text strong.accent {
  font-weight: 700;
  color: var(--accent);
}

.about-grid__link {
  text-decoration: underline;
  text-decoration-color: rgba(190, 9, 245, 0.55);
  text-underline-offset: 3px;
}

.about-grid__link:hover strong.accent {
  color: var(--pink);
}

.about-grid__cta {
  margin-top: auto;
  padding-top: 0.35rem;
}

.about-grid__email {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.2rem;
  border-radius: 6px;
  border: 1px solid rgba(190, 9, 245, 0.5);
  background: rgba(190, 9, 245, 0.14);
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.4;
  text-decoration: none;
  box-shadow: 0 0 0 1px rgba(190, 9, 245, 0.08);
  transition: background 0.2s var(--ease-out), border-color 0.2s var(--ease-out), transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.about-grid__email:hover {
  background: rgba(190, 9, 245, 0.24);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(190, 9, 245, 0.18);
  transform: translateY(-1px);
}

.about-grid__figure {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.about-grid__figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.about-grid__figure:hover img {
  transform: scale(1.03);
}

.section-desc--light {
  color: rgba(255, 255, 255, 0.65);
}

/* --- What we do --- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.work-card {
  padding: 1.5rem 1.15rem;
  background: var(--dark-soft);
  border-radius: 8px;
  border: 1px solid rgba(190, 9, 245, 0.1);
  border-top: 3px solid var(--accent);
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
}

.work-card:hover {
  transform: translateY(-4px);
  border-color: rgba(190, 9, 245, 0.35);
  box-shadow: 0 8px 28px rgba(190, 9, 245, 0.12);
}

.work-card__tag {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.work-card.visible .work-card__tag {
  animation: tagPop 0.55s var(--ease-spring) backwards;
}

.work-card.visible:nth-child(1) .work-card__tag { animation-delay: 0.15s; }
.work-card.visible:nth-child(2) .work-card__tag { animation-delay: 0.22s; }
.work-card.visible:nth-child(3) .work-card__tag { animation-delay: 0.29s; }
.work-card.visible:nth-child(4) .work-card__tag { animation-delay: 0.36s; }
.work-card.visible:nth-child(5) .work-card__tag { animation-delay: 0.43s; }

@keyframes tagPop {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- DECODE season stat --- */
.decode-stat {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding: 1.75rem 2rem;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--accent);
  text-align: left;
}

.decode-stat__number {
  flex-shrink: 0;
  margin-bottom: 0;
  font-size: clamp(3rem, 8vw, 4.5rem);
}

.decode-stat__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
}

.decode-stat__text strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--pink);
  margin-bottom: 0.25rem;
}

.decode-stat__link {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.decode-stat__link:hover {
  color: var(--accent-dark);
}

.decode-stat.stat-card.stat-card--done .decode-stat__number {
  animation: statPop 0.65s var(--ease-spring);
}

@keyframes statPop {
  0% { transform: scale(1); }
  45% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

/* --- Stats (legacy counter styling) --- */
.stat-card {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--dark-soft);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.4s var(--ease-out), border-color 0.4s;
}

.stat-card:hover,
.stat-card.stat-card--done {
  transform: translateY(-4px);
  border-color: rgba(190, 9, 245, 0.4);
}

.stat-card.stat-card--done {
  box-shadow: 0 8px 28px rgba(190, 9, 245, 0.15);
}

.decode-stat.stat-card {
  text-align: left;
  padding: 1.75rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
}

.decode-stat.stat-card:hover,
.decode-stat.stat-card.stat-card--done {
  transform: none;
  border-color: var(--border-subtle);
  border-left-color: var(--accent);
  box-shadow: 0 6px 24px rgba(190, 9, 245, 0.15);
}

.stat-card__number {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-card__number--text {
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.stat-card__label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* --- Gallery --- */
.gallery-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 0.35rem;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery-tabs::-webkit-scrollbar {
  display: none;
}

.gallery-tab {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  min-width: 7.5rem;
  padding: 0.65rem 1rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  background: transparent;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  color: var(--muted);
  text-align: left;
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out);
}

.gallery-tab__label {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--text);
}

.gallery-tab__meta {
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--muted);
  white-space: nowrap;
}

.gallery-tab:hover {
  background: rgba(190, 9, 245, 0.08);
}

.gallery-tab:hover .gallery-tab__label {
  color: var(--accent);
}

.gallery-tab.active {
  background: var(--accent);
  color: var(--white);
}

.gallery-tab.active .gallery-tab__label,
.gallery-tab.active .gallery-tab__meta {
  color: var(--white);
}

.gallery-tab--home {
  min-width: 8.5rem;
}

.gallery-tab--home .gallery-tab__label::before {
  content: "★ ";
  font-size: 0.85em;
}

.gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.gallery-grid:not(.gallery-grid--justified) {
  min-height: 4rem;
}

.gallery-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.75rem;
  width: 100%;
  overflow: hidden;
}

.gallery-section.in-view .gallery-item:not(.gallery-item--shown) {
  animation: galleryPop 0.55s var(--ease-out) backwards;
  animation-delay: calc(var(--gallery-i, 0) * 0.035s);
}

@keyframes galleryPop {
  from {
    transform: scale(0.94);
  }
  to {
    transform: scale(1);
  }
}

.gallery-section__header {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.gallery-section.in-view .gallery-section__header {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item {
  position: relative;
  flex: 0 0 auto;
  height: 100%;
  max-height: 280px;
  padding: 0;
  border: none;
  background: var(--bg-soft);
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
  transition: opacity 0.35s, transform 0.35s var(--ease-out);
}

.gallery-item.hidden {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  display: block;
  background: var(--bg-soft);
  transition: transform 0.5s var(--ease-out);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(40, 18, 47, 0.5), transparent 50%);
  opacity: 0;
  transition: opacity 0.35s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-sections,
.gallery-panel {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
}

.gallery-panel--single {
  gap: 0;
}

.gallery-section.hidden {
  display: none;
}

.gallery-section__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border-subtle);
}

.gallery-section__header h3 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--text);
}

.gallery-section__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.gallery-section__date {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

.gallery-section__count {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.gallery-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}

.gallery-more-btn {
  padding: 0.65rem 1.5rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  background: transparent;
  border: 2px solid var(--accent);
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out);
}

.gallery-more-btn:hover {
  background: var(--accent);
  color: var(--white);
}

.gallery-loading {
  text-align: center;
  color: var(--muted);
  padding: 3rem 0;
}

/* --- Gallery preview (homepage) --- */
.gallery-preview {
  margin-top: 2rem;
}

.gallery-preview__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(130px, 1fr);
  gap: 0.75rem;
  min-height: 320px;
}

.gallery-preview__item {
  position: relative;
  padding: 0;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-soft);
  box-shadow: 0 4px 16px rgba(40, 18, 47, 0.08);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.gallery-preview__item--feature {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-preview__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s var(--ease-out);
}

.gallery-preview__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.28) 100%);
  opacity: 0;
  transition: opacity 0.25s;
}

.gallery-preview__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(40, 18, 47, 0.14);
}

.gallery-preview__item:hover img {
  transform: scale(1.04);
}

.gallery-preview__item:hover::after {
  opacity: 1;
}

.gallery-preview__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 2rem;
}

.gallery-preview__note {
  margin: 0;
  font-size: 0.925rem;
  color: var(--muted);
}

.gallery-preview__loading {
  margin: 0;
  padding: 2rem 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.page-gallery .page-hero {
  padding: calc(var(--nav-h, 72px) + 2.5rem) 0 2.5rem;
}

.page-gallery .page-hero__inner.reveal {
  opacity: 1;
  transform: none;
}

.page-hero__socials {
  margin-top: 1.5rem;
  justify-content: center;
}

.section--gallery-page {
  padding-top: 3rem;
}

/* --- 404 --- */
.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100dvh - var(--nav-h) - 12rem);
  padding: calc(var(--nav-h) + 2rem) 1rem 4rem;
  text-align: center;
  background: var(--bg);
}

.error-page__title {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 12vw, 7rem);
  color: var(--accent);
  letter-spacing: 0.04em;
}

.error-page__text {
  margin: 1rem auto 2rem;
  max-width: 28rem;
  color: var(--muted);
}

/* --- Donate --- */
.donate-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.donate-block {
  text-align: left;
}

.donate-block__lead {
  margin: 1.25rem 0 1.75rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.donate-embed {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.donate-embed iframe {
  display: block;
  width: 100%;
  height: 920px;
  border: none;
}

.donate-mobile-cta {
  display: none;
  margin-bottom: 1rem;
  padding: 1.5rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.donate-mobile-cta__btn {
  width: 100%;
}

.donate-mobile-cta__note {
  margin: 1rem 0 0.75rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}

.donate-mobile-cta__ledger {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.donate-mobile-cta__ledger:hover {
  color: var(--white);
}

.donate-block__note {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.donate-block__lead a {
  color: var(--pink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.donate-block__lead a:hover {
  color: var(--white);
}

.donate-block__note a {
  color: var(--pink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.donate-block__note a:hover {
  color: var(--white);
}

.donate-details {
  display: flex;
  flex-direction: column;
  padding: 0;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.donate-details__content {
  padding: 2rem 2rem 1.5rem;
  flex-shrink: 0;
}

.donate-details__photo {
  flex: 1;
  min-height: 220px;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.donate-details__photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center 30%;
}

.donate-details__title {
  margin: 0 0 1.25rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  color: var(--pink);
}

.donate-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.donate-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.donate-list li:last-child {
  border-bottom: none;
}

.donate-list strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.donate-list span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.45;
}

.donate-details__footer {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
}

/* --- Funding tracker --- */
.funding-tracker {
  margin-top: 3.5rem;
  padding: 2rem 2.25rem 2.25rem;
  background: rgba(40, 18, 47, 0.55);
  border: 1px solid rgba(190, 9, 245, 0.22);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.funding-tracker__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  margin-bottom: 2rem;
}

.funding-tracker__title {
  margin: 0 0 0.35rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  letter-spacing: 0.05em;
  color: var(--white);
}

.funding-tracker__desc {
  margin: 0;
  max-width: 28rem;
  font-size: 0.925rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
}

.funding-tracker__summary {
  text-align: right;
  line-height: 1.1;
}

.funding-tracker__raised {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.25rem, 5vw, 3rem);
  color: var(--pink);
  letter-spacing: 0.02em;
  text-shadow: 0 0 32px rgba(255, 68, 226, 0.35);
}

.funding-tracker__goal {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}

.funding-tracker__goal strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.funding-tracker__source {
  margin: 0.65rem 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.funding-tracker__source strong {
  color: #d8b4fe;
  font-weight: 600;
}

.funding-tracker__live-note {
  margin: 0.4rem 0 0;
  max-width: 16rem;
  margin-left: auto;
  font-size: 0.75rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.42);
}

.funding-tracker__live-note a {
  display: block;
  margin-top: 0.35rem;
  color: var(--pink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.funding-tracker__tax-note {
  margin: 1.25rem 0 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.42);
}

.funding-countdown {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  margin-bottom: 2rem;
  padding: 1.35rem 1.5rem;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 68, 226, 0.28);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.funding-countdown__intro {
  flex: 1 1 12rem;
  min-width: 0;
}

.funding-countdown__title {
  margin: 0 0 0.25rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  letter-spacing: 0.06em;
  color: var(--white);
}

.funding-countdown__target {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.funding-countdown__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
}

.funding-countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 4.25rem;
  padding: 0.5rem 0.65rem 0.45rem;
  background: rgba(40, 18, 47, 0.85);
  border: 1px solid rgba(190, 9, 245, 0.35);
  border-radius: 10px;
}

.funding-countdown__value {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--pink);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 24px rgba(255, 68, 226, 0.35);
}

.funding-countdown__label {
  margin-top: 0.2rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

.funding-countdown__sep {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.75rem;
  line-height: 1;
  color: rgba(255, 68, 226, 0.45);
  user-select: none;
  padding-bottom: 1.1rem;
}

.funding-countdown__done {
  flex: 1 1 100%;
  margin: 0;
  text-align: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  letter-spacing: 0.05em;
  color: var(--pink);
}

.funding-countdown--done .funding-countdown__grid {
  display: none;
}

.funding-tracker__bar-shell {
  position: relative;
  margin-bottom: 1.75rem;
}

.funding-tracker__bar {
  position: relative;
  height: 1.375rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.35);
}

.funding-tracker__segments {
  position: absolute;
  inset: 0;
  display: flex;
  border-radius: inherit;
  z-index: 3;
  pointer-events: none;
}

.funding-tracker__segment {
  position: relative;
  height: 100%;
  flex: 0 0 auto;
  min-width: 0;
}

.funding-tracker__segment-tick {
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  transform: translateX(50%);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
  transition: background 0.4s, box-shadow 0.4s;
}

.funding-tracker__segment-tick--done {
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 0 0 1px rgba(255, 68, 226, 0.4),
    0 0 10px rgba(255, 68, 226, 0.45);
}

.funding-tracker__segment:nth-child(1) { background: #3a2046; }
.funding-tracker__segment:nth-child(2) { background: #43254f; }
.funding-tracker__segment:nth-child(3) { background: #4c2a58; }
.funding-tracker__segment:nth-child(4) { background: #552f61; }
.funding-tracker__segment:nth-child(5) { background: #5e346a; }
.funding-tracker__segment:nth-child(6) { background: #673973; }
.funding-tracker__segment:nth-child(7) { background: #703e7c; }
.funding-tracker__segment:nth-child(8) { background: #794385; }
.funding-tracker__segment:nth-child(9) { background: #82488e; }
.funding-tracker__segment:nth-child(10) { background: #8b4d97; }

.funding-tracker__fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: var(--funding-pct, 0%);
  min-width: 0;
  border-radius: inherit;
  z-index: 4;
  background: linear-gradient(
    90deg,
    #be09f5 0%,
    #ff44e2 45%,
    #d8b4fe 100%
  );
  box-shadow: 0 0 20px rgba(255, 68, 226, 0.5);
  transition: width 1.6s var(--ease-out);
  pointer-events: none;
}

.funding-tracker__fill--active {
  min-width: 0.4rem;
}

.funding-tracker:not(.visible) .funding-tracker__fill {
  width: 0 !important;
  min-width: 0;
}

.funding-tracker.visible .funding-tracker__fill {
  width: var(--funding-pct, 0%);
  animation: fundingGlow 5s ease-in-out 2s infinite;
}

@keyframes fundingGlow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(255, 68, 226, 0.3);
    filter: brightness(1);
  }
  50% {
    box-shadow: 0 0 18px rgba(255, 68, 226, 0.45);
    filter: brightness(1.06);
  }
}

.funding-milestones {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.funding-milestone {
  position: relative;
  padding: 1rem 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition:
    transform 0.35s var(--ease-spring),
    border-color 0.35s,
    background 0.35s,
    box-shadow 0.35s;
}

.funding-milestone__marker {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: background 0.4s, box-shadow 0.4s, transform 0.4s var(--ease-spring);
}

.funding-milestone--done {
  background: rgba(190, 9, 245, 0.12);
  border-color: rgba(255, 68, 226, 0.35);
  box-shadow: 0 4px 20px rgba(190, 9, 245, 0.15);
}

.funding-milestone--done .funding-milestone__marker {
  background: var(--purple-bright);
  box-shadow: 0 0 10px rgba(255, 68, 226, 0.7);
  transform: scale(1.15);
}

.funding-milestone--active {
  border-color: rgba(255, 68, 226, 0.55);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(190, 9, 245, 0.2);
}

.funding-tracker.visible .funding-milestone--active {
  transform: translateY(-3px);
}

.funding-milestone--active .funding-milestone__marker {
  animation: milestonePulse 1.8s ease-in-out infinite;
}

@keyframes milestonePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 68, 226, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(255, 68, 226, 0); }
}

.funding-milestone__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-right: 0.75rem;
}

.funding-milestone__label {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.88);
}

.funding-milestone__amount {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  color: var(--pink);
}

.funding-milestone__amount--estimate {
  color: #f0abfc;
}

.funding-milestone__detail {
  font-size: 0.72rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.45);
  overflow-wrap: break-word;
  word-break: break-word;
}

.funding-milestone--done .funding-milestone__amount {
  color: #d8b4fe;
}

.funding-milestone__note {
  display: none;
  margin-top: 0.15rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(216, 180, 254, 0.85);
}

.funding-milestone--done .funding-milestone__note {
  display: block;
}

.funding-tracker.visible .funding-milestone {
  animation: milestoneIn 0.55s var(--ease-out) backwards;
}

.funding-tracker.visible .funding-milestone:nth-child(1) { animation-delay: 0.15s; }
.funding-tracker.visible .funding-milestone:nth-child(2) { animation-delay: 0.22s; }
.funding-tracker.visible .funding-milestone:nth-child(3) { animation-delay: 0.29s; }
.funding-tracker.visible .funding-milestone:nth-child(4) { animation-delay: 0.36s; }
.funding-tracker.visible .funding-milestone:nth-child(5) { animation-delay: 0.43s; }
.funding-tracker.visible .funding-milestone:nth-child(6) { animation-delay: 0.5s; }
.funding-tracker.visible .funding-milestone:nth-child(7) { animation-delay: 0.57s; }
.funding-tracker.visible .funding-milestone:nth-child(8) { animation-delay: 0.64s; }
.funding-tracker.visible .funding-milestone:nth-child(9) { animation-delay: 0.71s; }
.funding-tracker.visible .funding-milestone:nth-child(10) { animation-delay: 0.78s; }

@keyframes milestoneIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Sponsorship tiers --- */
.sponsor-tiers {
  margin-top: 3.5rem;
  padding: 2rem 2.25rem 2.25rem;
  background: rgba(40, 18, 47, 0.55);
  border: 1px solid rgba(190, 9, 245, 0.22);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.sponsor-tiers__header {
  max-width: 42rem;
  margin-bottom: 1.75rem;
}

.sponsor-tiers__title {
  margin: 0 0 0.5rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  letter-spacing: 0.05em;
  font-style: italic;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.sponsor-tiers__lead {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.sponsor-tiers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.sponsor-tier {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: rgba(40, 18, 47, 0.65);
  border: 1px solid rgba(190, 9, 245, 0.18);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.25s;
}

.sponsor-tier:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 68, 226, 0.35);
  box-shadow: 0 16px 36px rgba(190, 9, 245, 0.15);
}

.sponsor-tier__banner {
  padding: 1.15rem 1.35rem 1.2rem;
  border-bottom: 1px solid rgba(190, 9, 245, 0.12);
}

.sponsor-tier__badge {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg-deep);
  background: var(--gradient-brand);
  border-radius: 999px;
}

.sponsor-tier__name {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  letter-spacing: 0.05em;
  font-style: italic;
  line-height: 1;
  color: var(--white);
}

.sponsor-tier__amount {
  margin: 0.45rem 0 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  letter-spacing: 0.03em;
  line-height: 1;
  color: var(--tier-price, var(--pink));
}

.sponsor-tier__amount-label {
  display: block;
  margin-bottom: 0.15rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.sponsor-tier__body {
  flex: 1;
  padding: 1.15rem 1.35rem 1.35rem;
}

.sponsor-tier__includes-label {
  margin: 0 0 0.75rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

.sponsor-tier__includes-note {
  margin: 0 0 0.75rem;
  padding: 0.5rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
  font-style: italic;
  background: rgba(255, 255, 255, 0.04);
  border-left: 2px solid var(--tier-accent, var(--purple-bright));
  border-radius: 0 6px 6px 0;
}

.sponsor-tier__benefits {
  flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

.sponsor-tier__benefits li {
  position: relative;
  padding: 0.7rem 0.75rem 0.7rem 1.5rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.sponsor-tier__benefits li + li {
  margin-top: 0.45rem;
}

.sponsor-tier__benefits li::before {
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 0.95rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--tier-accent, var(--purple-bright));
  box-shadow: 0 0 0 3px var(--tier-accent-soft, rgba(190, 9, 245, 0.25));
}

.sponsor-tier__benefit-title {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.94);
}

.sponsor-tier__benefit-detail {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.58);
}

.sponsor-tier__benefit-detail a {
  color: var(--pink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sponsor-tier__benefits--grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.sponsor-tier__benefits--grid li + li {
  margin-top: 0;
}

.sponsor-tier--terawatt {
  grid-column: 1 / -1;
  --tier-accent: var(--pink);
  --tier-accent-soft: rgba(255, 68, 226, 0.28);
  --tier-price: #e9b8ff;
  border-color: rgba(255, 68, 226, 0.4);
  box-shadow: 0 12px 40px rgba(190, 9, 245, 0.2);
}

.sponsor-tier--terawatt .sponsor-tier__banner {
  background: linear-gradient(135deg, #28122f 0%, #462850 25%, #731e83 55%, #be09f5 80%, #ff44e2 100%);
}

.sponsor-tier--terawatt .sponsor-tier__body {
  background: linear-gradient(180deg, rgba(190, 9, 245, 0.1) 0%, rgba(40, 18, 47, 0.35) 100%);
}

.sponsor-tier--terawatt .sponsor-tier__benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.45rem;
}

.sponsor-tier--terawatt .sponsor-tier__benefits li + li {
  margin-top: 0;
}

.sponsor-tier--megawatt {
  --tier-accent: var(--purple-bright);
  --tier-accent-soft: rgba(190, 9, 245, 0.28);
  --tier-price: #d8b4fe;
  border-color: rgba(190, 9, 245, 0.35);
}

.sponsor-tier--megawatt .sponsor-tier__banner {
  background: linear-gradient(135deg, #28122f 0%, #462850 40%, #731e83 75%, #be09f5 100%);
}

.sponsor-tier--megawatt .sponsor-tier__body {
  background: linear-gradient(180deg, rgba(190, 9, 245, 0.08) 0%, transparent 100%);
}

.sponsor-tier--kilowatt {
  --tier-accent: #b8a8d8;
  --tier-accent-soft: rgba(184, 168, 216, 0.25);
  --tier-price: #e8e0f8;
  border-color: rgba(184, 168, 216, 0.35);
}

.sponsor-tier--kilowatt .sponsor-tier__banner {
  background: linear-gradient(135deg, #28122f 0%, #3d3548 45%, #5c5270 75%, #7a7090 100%);
}

.sponsor-tier--kilowatt .sponsor-tier__body {
  background: linear-gradient(180deg, rgba(184, 168, 216, 0.07) 0%, transparent 100%);
}

.sponsor-tier--watt {
  --tier-accent: var(--purple);
  --tier-accent-soft: rgba(115, 30, 131, 0.28);
  --tier-price: #c98de8;
  border-color: rgba(115, 30, 131, 0.45);
}

.sponsor-tier--watt .sponsor-tier__banner {
  background: linear-gradient(135deg, #28122f 0%, #362040 50%, #462850 80%, #731e83 100%);
}

.sponsor-tier--watt .sponsor-tier__body {
  background: linear-gradient(180deg, rgba(115, 30, 131, 0.1) 0%, transparent 100%);
}

.sponsor-tier--milliwatt {
  --tier-accent: #a8b4c4;
  --tier-accent-soft: rgba(168, 180, 196, 0.22);
  --tier-price: #d8dee8;
  border-color: rgba(168, 180, 196, 0.28);
}

.sponsor-tier--milliwatt .sponsor-tier__banner {
  background: linear-gradient(135deg, #1e2430 0%, #2a3340 45%, #3d4a5c 100%);
}

.sponsor-tier--milliwatt .sponsor-tier__body {
  background: linear-gradient(180deg, rgba(168, 180, 196, 0.06) 0%, transparent 100%);
}

.sponsor-supporters {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(190, 9, 245, 0.15);
}

.sponsor-supporters__header {
  max-width: 40rem;
  margin-bottom: 1rem;
}

.sponsor-supporters__title {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.88);
}

.sponsor-supporters__lead {
  margin: 0.45rem 0 0;
  font-size: 0.925rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
}

.sponsor-supporters__card {
  max-width: 52rem;
}

.sponsor-supporters__card .sponsor-tier {
  height: auto;
}

.sponsor-teaser__note {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}

.sponsor-tiers__cta {
  margin: 1.5rem 0 0;
  font-size: 0.925rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

.sponsor-tiers__cta a {
  color: var(--pink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sponsor-tiers__cta a:hover {
  color: var(--white);
}

/* --- Sponsors page --- */
.page-hero {
  padding: calc(var(--nav-h, 72px) + 3.5rem) 0 3rem;
  background: linear-gradient(
    180deg,
    #3d2649 0%,
    var(--canvas-donate) 38%,
    var(--canvas-deep) 100%
  );
  color: var(--white);
}

.page-hero__inner {
  max-width: 40rem;
}

.page-hero__title {
  margin: 0 0 0.75rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 7vw, 3.75rem);
  letter-spacing: 0.03em;
  line-height: 1;
  font-style: italic;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.page-hero__desc {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
}

.page-sponsors .page-hero {
  padding: calc(var(--nav-h, 72px) + 2.5rem) 0 2.5rem;
}

.page-sponsors .page-hero__inner.reveal {
  opacity: 1;
  transform: none;
}

.section--donate-page {
  padding-top: 3.5rem;
}

.sponsor-impact {
  margin-top: 0.25rem;
}

.sponsor-impact .section-header {
  margin-bottom: 2.5rem;
}

.sponsor-impact__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 2rem;
  padding: 0.65rem;
  background: rgba(40, 18, 47, 0.45);
  border: 1px solid rgba(190, 9, 245, 0.2);
  border-radius: 14px;
  overflow: visible;
}

.sponsor-impact__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  text-align: center;
  padding: 1.1rem 0.65rem;
  border-radius: 10px;
  transition: background 0.25s;
}

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

.sponsor-impact__stat-num {
  display: block;
  max-width: 100%;
  padding: 0 0.2rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.75rem, 2.8vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  font-style: italic;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.sponsor-impact__stat-label {
  margin-top: 0.45rem;
  max-width: 11rem;
  padding: 0 0.15rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}

.sponsor-impact__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.sponsor-impact__card {
  position: relative;
  padding: 1.35rem 1.35rem 1.25rem;
  background: rgba(40, 18, 47, 0.55);
  border: 1px solid rgba(190, 9, 245, 0.18);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.sponsor-impact__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
}

.sponsor-impact__card:hover {
  border-color: rgba(255, 68, 226, 0.32);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}

.sponsor-impact__card-num {
  display: block;
  margin-bottom: 0.5rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: rgba(255, 68, 226, 0.55);
}

.sponsor-impact__title {
  margin: 0 0 0.45rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  font-style: italic;
  color: var(--white);
}

.sponsor-impact__card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.sponsor-impact__aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.75rem;
  background: rgba(40, 18, 47, 0.5);
  border: 1px solid rgba(190, 9, 245, 0.22);
  border-radius: 14px;
}

.sponsor-impact__aside-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.75rem;
  align-items: stretch;
}

.sponsor-impact__aside-text h3 {
  margin: 0 0 1rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  font-style: italic;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.sponsor-impact__list {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.sponsor-impact__list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.sponsor-impact__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
}

.sponsor-impact__list strong {
  color: var(--white);
}

.sponsor-impact__aside-text p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}

.sponsor-impact__aside-text a {
  color: var(--pink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sponsor-impact__transparency {
  margin-top: 1.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sponsor-impact__transparency-title {
  margin: 0 0 0.5rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  font-style: italic;
  color: var(--white);
}

.sponsor-impact__transparency p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.sponsor-impact__transparency-btn {
  align-self: flex-start;
}

.hcb-ledger {
  padding-top: 0.25rem;
}

.hcb-ledger__header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 0.75rem;
}

.hcb-ledger__title {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.hcb-ledger__status {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.hcb-ledger__table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(190, 9, 245, 0.2);
  border-radius: 10px;
  background: rgba(20, 8, 24, 0.45);
}

.hcb-ledger__table {
  width: 100%;
  min-width: 28rem;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.hcb-ledger__table th,
.hcb-ledger__table td {
  padding: 0.65rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hcb-ledger__table th {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.03);
}

.hcb-ledger__table tbody tr:last-child td {
  border-bottom: none;
}

.hcb-ledger__table td {
  color: rgba(255, 255, 255, 0.82);
}

.hcb-ledger__table td:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.hcb-ledger__amount--in {
  color: #8fe8b0;
}

.hcb-ledger__amount--out {
  color: #f5a8c8;
}

.hcb-ledger__amount--zero {
  color: rgba(255, 255, 255, 0.45);
}

.hcb-ledger__pending {
  display: inline-block;
  margin-left: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 200, 120, 0.9);
}

.hcb-ledger__footer {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.48);
}

.hcb-ledger__footer a {
  color: var(--pink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sponsor-impact__photo {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  aspect-ratio: 4 / 3;
  max-height: 20rem;
  align-self: start;
}

.sponsor-impact__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.sponsor-impact__divider {
  height: 1px;
  margin: 2.5rem 0 2.75rem;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(190, 9, 245, 0.45) 50%,
    transparent 100%
  );
}

.sponsor-tiers--page {
  margin-top: 0;
  padding: 2.25rem 2.5rem 2.5rem;
  background: rgba(40, 18, 47, 0.5);
  border-color: rgba(190, 9, 245, 0.25);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.32);
}

.sponsor-tiers--page .sponsor-tiers__header {
  max-width: none;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(190, 9, 245, 0.15);
  text-align: center;
}

.sponsor-tiers--page .sponsor-tiers__lead {
  max-width: 46rem;
  margin-inline: auto;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
}

.sponsor-tiers--page .sponsor-tiers__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.sponsor-tiers--page .sponsor-tier--terawatt .sponsor-tier__banner {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-items: end;
  gap: 0.35rem 1.5rem;
}

.sponsor-tiers--page .sponsor-tier--terawatt .sponsor-tier__badge {
  grid-column: 1;
  grid-row: 1;
}

.sponsor-tiers--page .sponsor-tier--terawatt .sponsor-tier__name {
  grid-column: 1;
  grid-row: 2;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.sponsor-tiers--page .sponsor-tier--terawatt .sponsor-tier__amount {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  margin: 0;
  text-align: right;
}

.sponsor-page-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
  align-items: stretch;
}

.sponsor-page-actions__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.75rem;
  background: rgba(40, 18, 47, 0.55);
  border: 1px solid rgba(190, 9, 245, 0.2);
  border-radius: 12px;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.sponsor-page-actions__card:hover {
  border-color: rgba(255, 68, 226, 0.35);
  box-shadow: 0 10px 28px rgba(190, 9, 245, 0.12);
}

.sponsor-page-actions__card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.sponsor-page-actions__card h3 {
  margin: 0 0 0.65rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  font-style: italic;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.sponsor-page-actions__card p {
  margin: 0 0 1.25rem;
  font-size: 0.925rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.sponsor-page-actions__card p a {
  color: var(--pink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sponsor-page-actions__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: auto;
}

.sponsor-wall {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(40, 18, 47, 0.45);
  border: 1px solid rgba(190, 9, 245, 0.18);
  border-radius: 12px;
}

.sponsor-wall__title {
  margin: 0 0 1.25rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  color: var(--white);
}

.sponsor-wall__empty {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.sponsor-wall__group {
  margin-bottom: 1.5rem;
}

.sponsor-wall__group:last-child {
  margin-bottom: 0;
}

.sponsor-wall__tier {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pink);
}

.sponsor-wall__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.sponsor-wall__item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.sponsor-wall__name {
  font-weight: 600;
  color: var(--white);
}

.sponsor-wall__note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.sponsor-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1rem;
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(40, 18, 47, 0.35);
  border: 1px solid rgba(190, 9, 245, 0.15);
  border-radius: 8px;
  font-size: 0.875rem;
}

.sponsor-strip[hidden] {
  display: none !important;
}

.sponsor-strip__label {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.sponsor-strip__names {
  color: rgba(255, 255, 255, 0.65);
}

.sponsor-teaser {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  margin-top: 3rem;
  padding: 1.75rem 2rem;
  background: rgba(40, 18, 47, 0.55);
  border: 1px solid rgba(190, 9, 245, 0.22);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
}

.sponsor-teaser__title {
  margin: 0 0 0.35rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  font-style: italic;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.sponsor-teaser__text {
  margin: 0;
  max-width: 36rem;
  font-size: 0.925rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

.sponsor-teaser__text a {
  color: var(--pink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sponsor-teaser__text a:hover {
  color: var(--white);
}

.support-card a {
  color: var(--pink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.support-card a:hover {
  color: var(--white);
}

.support-beyond {
  margin-top: 3rem;
  scroll-margin-top: calc(var(--nav-h) + 1rem);
}

#sponsors {
  scroll-margin-top: calc(var(--nav-h) + 1rem);
}

.support-beyond__header {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.support-beyond__title {
  margin: 0 0 0.75rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: 0.04em;
  color: var(--white);
}

.support-beyond__lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.support-card.reveal {
  transition: none;
}

.support-card.reveal.visible {
  opacity: 1;
  transform: none;
}

.support-card {
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  border-top: 3px solid var(--pink);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.support-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.support-card:nth-child(1) { transition-delay: 0.05s; }
.support-card:nth-child(2) { transition-delay: 0.1s; }
.support-card:nth-child(3) { transition-delay: 0.15s; }

.support-card h4 {
  margin: 0 0 0.65rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--pink);
}

.support-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
}

.support-beyond__cta {
  margin: 2rem 0 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
}

.support-beyond__cta a {
  color: var(--pink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.support-beyond__cta a:hover {
  color: var(--white);
}

/* --- Join --- */
.join {
  padding: 4rem 0;
}

.join__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.join__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.join__copy {
  flex: 1 1 20rem;
  max-width: 36rem;
}

.join__roles {
  flex: 1 1 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 0.5rem;
}

.join__role {
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.join__role:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(190, 9, 245, 0.1);
}

.join__role h3 {
  margin: 0 0 0.4rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  color: var(--accent);
}

.join__role p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}

.join__copy h2 {
  margin: 0 0 0.5rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.25rem;
  letter-spacing: 0.04em;
  font-style: italic;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.join__copy p {
  margin: 0;
  color: var(--muted);
}

.join__copy a,
.join__role a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.join__copy a:hover,
.join__role a:hover {
  color: var(--pink);
}

.join__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-chip {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  color: var(--muted);
  transition: transform 0.25s var(--ease-spring), border-color 0.25s, color 0.25s, box-shadow 0.25s;
}

a.contact-chip {
  color: var(--text);
  font-weight: 500;
}

a.contact-chip:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 4px 14px var(--accent-glow);
}

a.contact-chip:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.contact-chip--placeholder {
  opacity: 0.65;
}

.contact-chip--icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
}

.contact-chip--icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

/* --- Footer --- */
.footer {
  padding: 1.25rem 0 1.5rem;
  background: linear-gradient(180deg, var(--canvas-elevated) 0%, var(--canvas-deep) 55%, var(--canvas-footer) 100%);
  text-align: center;
}

.footer__tagline {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer__legal {
  margin: 0.5rem auto 0;
  max-width: 52rem;
  padding-inline: 1rem;
  font-size: 0.64rem;
  color: rgba(255, 255, 255, 0.32);
  line-height: 1.45;
}

.footer__sep {
  margin-inline: 0.3em;
  color: rgba(255, 255, 255, 0.22);
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__legal a:hover {
  color: rgba(255, 255, 255, 0.65);
}

/* --- FTC explainer --- */
.ftc-block {
  display: grid;
  grid-template-columns: minmax(140px, 220px) 1fr;
  gap: 2.5rem 3rem;
  align-items: start;
}

.ftc-block__logo a {
  display: block;
  padding: 1.25rem;
  background: var(--surface);
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s;
}

.ftc-block__logo a:hover {
  transform: translateY(-3px);
  border-color: rgba(190, 9, 245, 0.35);
  box-shadow: 0 12px 32px rgba(190, 9, 245, 0.15);
}

.ftc-block__logo img {
  width: 100%;
  height: auto;
}

.ftc-block__content .section-title {
  text-align: left;
}

.ftc-block__content .section-label {
  text-align: left;
}

.ftc-block__content p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.ftc-links {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ftc-links a {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  transition: transform 0.25s var(--ease-spring), border-color 0.25s, box-shadow 0.25s;
}

.ftc-links a:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 4px 14px var(--accent-glow);
}

.ftc-links a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  transform: scale(0.92);
  transition: transform 0.4s var(--ease-out);
}

.lightbox.active .lightbox__img {
  transform: scale(1);
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  transition: background 0.25s;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  font-size: 2rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  transition: background 0.25s;
}

.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox__nav--prev { left: 1.5rem; }
.lightbox__nav--next { right: 1.5rem; }

/* --- Video clips --- */
.video-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  max-width: 960px;
  margin-inline: auto;
}

.video-grid[hidden] {
  display: none;
}

.video-grid__empty {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
}

.video-clip__title {
  margin: 0 0 0.75rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--text);
}

.video-clip__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.video-clip__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  cursor: pointer;
  background: #111;
}

.video-clip__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease-out);
}

.video-clip__poster:hover img {
  transform: scale(1.03);
}

.video-clip__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4rem;
  height: 4rem;
  background: rgba(190, 9, 245, 0.92);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s var(--ease-spring), background 0.25s;
}

.video-clip__play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 0.65rem 0 0.65rem 1.1rem;
  border-color: transparent transparent transparent var(--white);
}

.video-clip__poster:hover .video-clip__play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--accent-dark);
}

.video-clip__duration {
  position: absolute;
  bottom: 0.65rem;
  right: 0.65rem;
  padding: 0.2rem 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
}

.video-clip__player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.video-clip__frame--playing .video-clip__player {
  display: block;
}

.video-clip__frame iframe,
.video-clip__player--native {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
  background: #000;
}

.video-clip__external {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.video-clip__external:hover {
  color: var(--accent-dark);
}

/* --- Scroll reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal-left {
  transform: translateX(-36px);
}

.reveal-right {
  transform: translateX(36px);
}

.reveal-scale {
  transform: scale(0.92);
}

.reveal-fade {
  transform: none;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible,
.reveal-fade.visible {
  opacity: 1;
  transform: none;
}

.reveal-scale.visible {
  transform: scale(1);
}

.section-header.visible .section-label {
  animation: labelIn 0.65s var(--ease-out) backwards;
}

.section-header.visible .section-title {
  animation: titleIn 0.7s var(--ease-out) 0.08s backwards;
}

.section-header.visible .section-desc {
  animation: titleIn 0.7s var(--ease-out) 0.16s backwards;
}

@keyframes labelIn {
  from {
    opacity: 0;
    letter-spacing: 0.28em;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    letter-spacing: 0.15em;
    transform: translateY(0);
  }
}

@keyframes titleIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-stagger .reveal-stagger__item {
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  transition:
    opacity 0.55s var(--ease-out),
    transform 0.55s var(--ease-spring);
  transition-delay: calc(var(--stagger-i, 0) * 0.07s);
}

.reveal-stagger.visible .reveal-stagger__item {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal.visible .reveal-stagger .reveal-stagger__item {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.timeline__step.visible .timeline__number {
  animation: numberIn 0.6s var(--ease-spring) backwards;
}

.timeline__step:nth-child(1).visible .timeline__number { animation-delay: 0.12s; }
.timeline__step:nth-child(2).visible .timeline__number { animation-delay: 0.2s; }
.timeline__step:nth-child(3).visible .timeline__number { animation-delay: 0.28s; }

@keyframes numberIn {
  from {
    opacity: 0;
    transform: scale(0.6);
    color: transparent;
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.support-card.reveal.visible {
  animation: cardRise 0.65s var(--ease-out) backwards;
}

.support-card.reveal:nth-child(1).visible { animation-delay: 0.05s; }
.support-card.reveal:nth-child(2).visible { animation-delay: 0.12s; }
.support-card.reveal:nth-child(3).visible { animation-delay: 0.19s; }

@keyframes cardRise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ftc-block__logo.visible img {
  animation: logoFloat 0.8s var(--ease-out) backwards;
}

@keyframes logoFloat {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.ftc-block__content.visible .ftc-links li {
  animation: linkSlide 0.5s var(--ease-out) backwards;
}

.ftc-block__content.visible .ftc-links li:nth-child(1) { animation-delay: 0.2s; }
.ftc-block__content.visible .ftc-links li:nth-child(2) { animation-delay: 0.28s; }
.ftc-block__content.visible .ftc-links li:nth-child(3) { animation-delay: 0.36s; }
.ftc-block__content.visible .ftc-links li:nth-child(4) { animation-delay: 0.44s; }

@keyframes linkSlide {
  from {
    opacity: 0;
    transform: translateX(-12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero .reveal {
  opacity: 0;
  transform: translateY(24px);
}

.hero.loaded .reveal:nth-child(1) { transition-delay: 0.08s; }
.hero.loaded .reveal:nth-child(2) { transition-delay: 0.16s; }
.hero.loaded .reveal:nth-child(3) { transition-delay: 0.24s; }
.hero.loaded .reveal:nth-child(4) { transition-delay: 0.32s; }
.hero.loaded .reveal:nth-child(5) { transition-delay: 0.4s; }
.hero.loaded .reveal:nth-child(6) { transition-delay: 0.48s; }

.hero.loaded .reveal {
  opacity: 1;
  transform: translateY(0);
}

.work-card.reveal:nth-child(1) { transition-delay: 0.05s; }
.work-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.work-card.reveal:nth-child(3) { transition-delay: 0.15s; }
.work-card.reveal:nth-child(4) { transition-delay: 0.2s; }
.work-card.reveal:nth-child(5) { transition-delay: 0.25s; }

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .funding-tracker.visible .funding-tracker__fill,
  .funding-tracker.visible .funding-milestone,
  .funding-milestone--active .funding-milestone__marker {
    animation: none;
  }

  .funding-tracker.visible .funding-tracker__fill {
    transition: none;
  }

  .hero__actions .btn--primary::after {
    animation: none;
  }

  .gallery-section.in-view .gallery-item:not(.gallery-item--shown),
  .gallery-section.in-view .gallery-section__header,
  .work-card.visible .work-card__tag,
  .decode-stat.stat-card.stat-card--done .decode-stat__number,
  .section-header.visible .section-label,
  .section-header.visible .section-title,
  .section-header.visible .section-desc,
  .timeline__step.visible .timeline__number,
  .support-card.reveal.visible,
  .ftc-block__logo.visible img,
  .ftc-block__content.visible .ftc-links li {
    animation: none;
  }

  .reveal-stagger .reveal-stagger__item {
    opacity: 1;
    transform: none;
  }

  .gallery-section__header {
    opacity: 1;
    transform: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__bg {
    animation: none;
    transform: scale(1);
  }

  .hero__scroll {
    animation: none;
  }
}

/* --- Responsive --- */
@media (max-width: 1100px) and (min-width: 769px) {
  .nav__links {
    gap: 1rem;
  }

  .nav__links a {
    font-size: 0.82rem;
  }

  .nav__logo {
    font-size: 1.35rem;
  }
}

@media (max-width: 1024px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .work-card {
    padding: 1.75rem 1.5rem;
  }

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

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

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .gallery-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-inline: -1rem;
    padding-inline: 1rem 1.5rem;
    margin-bottom: 1.5rem;
  }

  .gallery-tabs::-webkit-scrollbar {
    display: none;
  }

  .gallery-tab {
    flex-shrink: 0;
    font-size: 0.8rem;
    padding: 0.45rem 1rem;
  }

  .gallery-section__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .gallery-section__meta {
    flex-wrap: wrap;
  }

  .gallery-grid {
    gap: 0.5rem;
  }

  .gallery-preview__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(120px, 1fr);
    min-height: auto;
  }

  .gallery-preview__item--feature {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 220px;
  }

  .lightbox {
    padding: 1rem;
  }

  .lightbox__img {
    max-width: 100vw;
    max-height: calc(100dvh - 6rem);
  }

  .lightbox__close {
    top: max(1rem, env(safe-area-inset-top));
    right: max(1rem, env(safe-area-inset-right));
  }

  .lightbox__nav {
    width: 44px;
    height: 44px;
    font-size: 1.75rem;
  }

  .lightbox__nav--prev {
    left: max(0.5rem, env(safe-area-inset-left));
  }

  .lightbox__nav--next {
    right: max(0.5rem, env(safe-area-inset-right));
  }

  .section--donate {
    padding: 4rem 0;
  }

  .donate-details__content {
    padding: 1.5rem;
  }

  .donate-details__photo {
    min-height: 180px;
  }

  .footer__tagline {
    padding-inline: 0.5rem;
    line-height: 1.5;
  }

  .footer__legal {
    font-size: 0.6rem;
    text-align: left;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(280px, 85vw);
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--nav-h) + 2rem) 2rem 2rem;
    background: rgba(40, 18, 47, 0.97);
    backdrop-filter: blur(12px);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    gap: 1.25rem;
  }

  .nav__links.open {
    transform: translateX(0);
  }

  .nav__links a {
    opacity: 0;
    transform: translateX(16px);
    transition:
      opacity 0.35s var(--ease-out),
      transform 0.35s var(--ease-out),
      color 0.25s;
  }

  .nav__links.open a {
    opacity: 1;
    transform: translateX(0);
  }

  .nav__sep {
    display: none;
  }

  .nav__links.open a:nth-of-type(1) { transition-delay: 0.06s; }
  .nav__links.open a:nth-of-type(2) { transition-delay: 0.1s; }
  .nav__links.open a:nth-of-type(3) { transition-delay: 0.14s; }
  .nav__links.open a:nth-of-type(4) { transition-delay: 0.18s; }
  .nav__links.open a:nth-of-type(5) { transition-delay: 0.22s; }
  .nav__links.open a:nth-of-type(6) { transition-delay: 0.26s; }

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

  .about-grid__text {
    justify-content: flex-start;
    gap: 1rem;
  }

  .about-grid__figure {
    order: -1;
  }

  .decode-stat {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.5rem;
  }

  .donate-layout {
    grid-template-columns: 1fr;
  }

  .donate-details {
    order: -1;
  }

  .donate-embed {
    display: none;
  }

  .donate-mobile-cta {
    display: block;
  }

  .donate-block__note {
    display: none;
  }

  .sponsor-teaser {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
  }

  .sponsor-impact__stats {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    padding: 0.55rem;
  }

  .sponsor-impact__stat {
    border-right: none !important;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.9rem 0.75rem;
  }

  .sponsor-impact__stat-label {
    max-width: none;
  }

  .sponsor-impact__grid {
    grid-template-columns: 1fr;
  }

  .sponsor-impact__aside-grid {
    grid-template-columns: 1fr;
  }

  .sponsor-impact__aside {
    padding: 1.35rem;
  }

  .sponsor-impact__photo {
    max-height: none;
    aspect-ratio: 16 / 10;
  }

  .sponsor-tiers--page {
    padding: 1.5rem 1.25rem 1.75rem;
  }

  .sponsor-tiers--page .sponsor-tiers__grid {
    grid-template-columns: 1fr;
  }

  .sponsor-tiers--page .sponsor-tier--terawatt .sponsor-tier__banner {
    display: block;
  }

  .sponsor-tiers--page .sponsor-tier--terawatt .sponsor-tier__amount {
    margin-top: 0.65rem;
    text-align: left;
  }

  .sponsor-tiers--page .sponsor-tier--terawatt .sponsor-tier__benefits {
    grid-template-columns: 1fr;
  }

  .sponsor-tier__benefits--grid {
    grid-template-columns: 1fr;
  }

  .sponsor-page-actions {
    grid-template-columns: 1fr;
  }

  .funding-milestones {
    grid-template-columns: repeat(2, 1fr);
  }

  .funding-tracker__live-note {
    max-width: none;
    margin-left: 0;
  }

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

  .join__header {
    flex-direction: column;
    text-align: center;
  }

  .join__copy {
    max-width: none;
  }

  .join__roles {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .join__contacts {
    justify-content: center;
  }

  .ftc-block {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .ftc-block__logo {
    max-width: 200px;
    margin-inline: auto;
  }

  .ftc-block__content .section-title,
  .ftc-block__content .section-label {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .section {
    padding: 3.5rem 0;
  }

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

  .funding-tracker__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .funding-tracker__summary {
    text-align: left;
  }

  .funding-countdown {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .funding-countdown__intro {
    flex: none;
  }

  .funding-countdown__grid {
    width: 100%;
  }

  .funding-countdown__unit {
    flex: 1 1 calc(25% - 1rem);
    min-width: 3.5rem;
  }

  .funding-countdown__sep {
    padding-bottom: 0.85rem;
  }

  .funding-milestones {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .donate-block__lead {
    font-size: 1rem;
    line-height: 1.6;
  }
}

/* --- Apply form --- */
.container--narrow {
  width: min(100% - 2rem, 640px);
}

.apply-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.apply-form__privacy {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
  background: rgba(190, 9, 245, 0.08);
  border: 1px solid rgba(190, 9, 245, 0.2);
  border-radius: 6px;
}

.apply-form__mentor-note {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.apply-form__mentor-note a {
  color: var(--purple-bright);
  font-weight: 600;
}

.apply-form__field--honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.apply-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 560px) {
  .apply-form__row {
    grid-template-columns: 1fr;
  }
}

.apply-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.apply-form__field label,
.apply-form__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.apply-form__req {
  color: var(--accent);
}

.apply-form__field input,
.apply-form__field select,
.apply-form__field textarea {
  padding: 0.65rem 0.85rem;
  font: inherit;
  font-size: 1rem;
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  background: var(--bg-soft);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.apply-form__field input:focus,
.apply-form__field select:focus,
.apply-form__field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.apply-form__fieldset {
  margin: 0;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
}

.apply-form__fieldset legend {
  font-weight: 600;
  padding: 0 0.35rem;
}

.apply-form__radios {
  display: flex;
  gap: 1.25rem;
  padding-top: 0.35rem;
}

.apply-form__radios label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 400;
  cursor: pointer;
}

.apply-form__error {
  margin: 0;
  padding: 0.75rem 1rem;
  color: #ffb4b4;
  background: rgba(120, 30, 50, 0.45);
  border: 1px solid rgba(255, 100, 120, 0.35);
  border-radius: 6px;
  font-size: 0.95rem;
}

.apply-form__success {
  margin: 0;
  padding: 0.75rem 1rem;
  color: #9ae8b8;
  background: rgba(30, 90, 55, 0.45);
  border: 1px solid rgba(100, 220, 150, 0.35);
  border-radius: 6px;
  font-size: 0.95rem;
}

.apply-form__field select option {
  background: var(--bg-soft);
  color: var(--text);
}

.apply-form__field--turnstile {
  min-height: 72px;
  overflow: visible;
}

.apply-form__field--turnstile iframe {
  max-width: 100%;
}

.apply-form__turnstile-note {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.apply-form__turnstile-note a {
  color: var(--purple-bright);
}

.apply-form__submit {
  align-self: flex-start;
  margin-top: 0.5rem;
}

a.contact-chip--cta {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  font-weight: 600;
}

a.contact-chip--cta:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
}

.join__privacy {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 36rem;
}

/* --- Admin --- */
.page-admin {
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

.admin-bar {
  background: var(--dark);
  color: var(--white);
  padding: 0.85rem 0;
}

.admin-bar__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.admin-bar__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.35rem;
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--white);
}

.admin-bar__title {
  flex: 1;
  font-size: 0.9rem;
  opacity: 0.75;
}

.btn--sm {
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
}

.admin-main {
  padding: 2.5rem 0 4rem;
}

.admin-login {
  max-width: 400px;
  margin: 2rem auto;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  color: var(--text);
}

.admin-login h1 {
  margin: 0 0 0.35rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
  font-style: italic;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.admin-login > p {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.admin-panel__header {
  margin-bottom: 1.5rem;
}

.admin-panel__header h1 {
  margin: 0 0 0.25rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.25rem;
  letter-spacing: 0.04em;
  font-style: italic;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.admin-panel__header p {
  margin: 0;
  color: var(--muted);
}

.admin-table-wrap {
  overflow-x: auto;
  background: var(--surface);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.admin-table th,
.admin-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-muted);
  color: var(--text);
}

.admin-table th {
  font-weight: 600;
  background: var(--bg-soft);
  color: var(--text);
  white-space: nowrap;
}

.admin-table a {
  color: var(--accent);
  text-decoration: underline;
}

.admin-table__actions {
  white-space: nowrap;
}

.admin-expand,
.admin-delete {
  padding: 0.3rem 0.6rem;
  font: inherit;
  font-size: 0.8rem;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid var(--border-subtle);
  background: var(--bg-soft);
  color: var(--text);
  margin-right: 0.35rem;
}

.admin-delete {
  color: #9a2a2a;
  border-color: #e8c4c4;
}

.admin-detail-row td {
  background: var(--bg-soft);
  padding: 0;
}

.admin-detail {
  padding: 1rem 1.25rem;
}

.admin-detail p {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.admin-empty {
  text-align: center;
  color: var(--muted);
  padding: 2rem;
}

.password-field {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.password-field input {
  flex: 1;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.password-toggle {
  flex-shrink: 0;
  padding: 0 0.85rem;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-soft);
  border: 1px solid var(--border-subtle);
  border-left: none;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.password-toggle:hover {
  background: var(--bg-soft);
  border-color: var(--accent);
}

.password-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* --- Admin nav tabs --- */
.admin-nav {
  display: flex;
  gap: 0.35rem;
  margin-left: auto;
  margin-right: 0.5rem;
}

.admin-nav__link {
  padding: 0.35rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.admin-nav__link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.admin-nav__link--active {
  color: var(--white);
  background: rgba(190, 9, 245, 0.35);
}

.admin-main--wide {
  max-width: 1400px;
}

/* --- Sponsor outreach admin --- */
.sponsor-admin__page-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem 1.5rem;
  margin-bottom: 1.25rem;
}

.sponsor-admin__title {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.25rem;
  font-style: italic;
  letter-spacing: 0.04em;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.sponsor-admin__subtitle {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 36rem;
}

.sponsor-admin__legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1rem;
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.sponsor-pipeline-dot {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  margin-right: 0.25rem;
  vertical-align: middle;
  background: var(--border-subtle);
}

.sponsor-pipeline-dot--reviewed { background: #5b8def; }
.sponsor-pipeline-dot--personalized { background: #c77dff; }
.sponsor-pipeline-dot--sent { background: #3ecf8e; }

.sponsor-admin__toolbar {
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.sponsor-admin__summary {
  margin-bottom: 0.85rem;
}

.sponsor-admin__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  align-items: center;
}

.sponsor-stat {
  display: inline-flex;
  flex-direction: column;
  min-width: 4.5rem;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  background: var(--bg-soft);
  border: 1px solid var(--border-subtle);
}

.sponsor-stat__num {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

.sponsor-stat__label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.sponsor-admin__progress {
  flex: 1 1 180px;
  min-width: 140px;
  max-width: 320px;
}

.sponsor-admin__progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.sponsor-admin__progress-track {
  height: 6px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
}

.sponsor-admin__progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--purple), var(--purple-bright));
  transition: width 0.25s ease;
}

.sponsor-admin__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  align-items: center;
  padding-top: 0.15rem;
  border-top: 1px solid var(--border-subtle);
}

.sponsor-admin__search {
  flex: 1 1 200px;
  min-width: 160px;
  padding: 0.5rem 0.75rem;
  font: inherit;
  font-size: 0.9rem;
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  background: var(--bg-soft);
  color: var(--text);
}

.sponsor-admin__select {
  padding: 0.5rem 0.65rem;
  font: inherit;
  font-size: 0.85rem;
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  background: var(--bg-soft);
  color: var(--text);
}

.sponsor-admin__check {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--text);
  cursor: pointer;
}

.sponsor-admin__layout {
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  gap: 1rem;
  align-items: start;
  min-height: 60vh;
}

.sponsor-admin__list-panel {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  max-height: calc(100vh - 220px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 1rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.sponsor-admin__list-head {
  padding: 0.65rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-soft);
}

.sponsor-list {
  list-style: none;
  margin: 0;
  padding: 0.35rem;
  overflow-y: auto;
  flex: 1;
}

.sponsor-list__item--active .sponsor-list__btn {
  background: rgba(190, 9, 245, 0.15);
  border-color: rgba(190, 9, 245, 0.45);
}

.sponsor-list__btn {
  width: 100%;
  text-align: left;
  padding: 0.65rem 0.75rem;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  transition: background 0.15s, border-color 0.15s;
}

.sponsor-list__btn:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-subtle);
}

.sponsor-list__name {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.3;
}

.sponsor-list__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.sponsor-list__folder {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
}

.sponsor-list__folder--very-high {
  color: #f5c842;
  background: rgba(245, 200, 66, 0.12);
  border-color: rgba(245, 200, 66, 0.28);
}

.sponsor-list__folder--high {
  color: #7ee0a8;
  background: rgba(62, 207, 142, 0.1);
  border-color: rgba(62, 207, 142, 0.25);
}

.sponsor-list__folder--medium {
  color: #8eb8ff;
  background: rgba(91, 141, 239, 0.1);
  border-color: rgba(91, 141, 239, 0.25);
}

.sponsor-list__folder--low {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-subtle);
}

.sponsor-status-icons {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.sponsor-status-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--border-subtle);
  flex-shrink: 0;
}

.sponsor-status-dot--on.sponsor-status-dot--reviewed { background: #5b8def; }
.sponsor-status-dot--on.sponsor-status-dot--personalized { background: #c77dff; }
.sponsor-status-dot--on.sponsor-status-dot--sent { background: #3ecf8e; }

.sponsor-list__sub {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sponsor-list__empty {
  padding: 1.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.sponsor-admin__detail-panel {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.25rem 1.35rem;
  min-height: 400px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.sponsor-detail__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 360px;
  padding: 2rem 1.5rem;
  color: var(--muted);
}

.sponsor-detail__placeholder-title {
  margin: 0 0 0.35rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--text);
}

.sponsor-detail__loading,
.sponsor-detail__error {
  color: var(--muted);
  text-align: center;
  padding: 3rem 1rem;
}

.sponsor-detail__card {
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--border-subtle);
}

.sponsor-detail__card-title {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.sponsor-detail__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.sponsor-detail__title {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  color: var(--text);
}

.sponsor-detail__path {
  margin: 0.25rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  font-family: ui-monospace, monospace;
  word-break: break-all;
}

.sponsor-detail__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: flex-start;
}

.sponsor-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(190, 9, 245, 0.12);
  color: var(--purple-bright);
  border: 1px solid rgba(190, 9, 245, 0.25);
}

.sponsor-detail__status {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  align-items: center;
}

.sponsor-check {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  cursor: pointer;
  padding: 0.35rem 0.55rem;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  background: var(--bg);
  user-select: none;
}

.sponsor-check:has(input:checked) {
  border-color: rgba(190, 9, 245, 0.35);
  background: rgba(190, 9, 245, 0.08);
}

.sponsor-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.85rem;
}

.sponsor-field span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sponsor-field input,
.sponsor-field textarea,
.sponsor-field select {
  padding: 0.55rem 0.7rem;
  font: inherit;
  font-size: 0.9rem;
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  background: var(--bg);
  color: var(--text);
}

.sponsor-field--inline {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.sponsor-field--inline span {
  text-transform: none;
  font-size: 0.85rem;
  color: var(--text);
}

.sponsor-field--grow {
  flex: 1 1 180px;
}

.sponsor-field--short input {
  max-width: 12rem;
}

.sponsor-email-body {
  font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
  font-size: 0.82rem;
  line-height: 1.55;
  resize: vertical;
  min-height: 280px;
}

.sponsor-detail__email-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.sponsor-detail__email h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.sponsor-detail__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin: 0 0 1rem;
  padding: 1rem 0 0;
  border-top: 1px solid var(--border-subtle);
}

.sponsor-detail__actions--sticky {
  position: sticky;
  bottom: 0;
  margin-bottom: 0;
  padding: 0.85rem 0 0.25rem;
  background: linear-gradient(180deg, transparent, var(--surface) 24%);
}

.sponsor-detail__save-badge {
  font-size: 0.82rem;
  color: var(--purple-bright);
}

.sponsor-detail__updated {
  font-size: 0.78rem;
  color: var(--muted);
  margin-left: auto;
}

.sponsor-collapsible {
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.sponsor-collapsible__toggle {
  width: 100%;
  text-align: left;
  padding: 0.65rem 0.85rem;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border: none;
  cursor: pointer;
}

.sponsor-collapsible__toggle::after {
  content: " +";
  color: var(--muted);
}

.sponsor-collapsible--open .sponsor-collapsible__toggle::after {
  content: " −";
}

.sponsor-collapsible__body {
  display: none;
  padding: 0.75rem 0.85rem;
  font-size: 0.85rem;
  line-height: 1.5;
  border-top: 1px solid var(--border-subtle);
}

.sponsor-collapsible--open .sponsor-collapsible__body {
  display: block;
}

.sponsor-readonly-list {
  margin: 0;
  padding-left: 1.1rem;
}

.sponsor-readonly-pre {
  margin: 0;
  white-space: pre-wrap;
  font-family: inherit;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .admin-nav {
    order: 3;
    width: 100%;
    margin-left: 0;
    margin-top: 0.35rem;
  }

  .sponsor-admin__layout {
    grid-template-columns: 1fr;
  }

  .sponsor-admin__list-panel {
    max-height: 320px;
    position: static;
  }

  .sponsor-admin__page-header {
    align-items: flex-start;
  }

  .sponsor-admin__legend {
    width: 100%;
  }
}

/* Event outreach admin */
.outreach-status {
  display: inline-block;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted, #aaa);
}

.outreach-status--researching { background: rgba(120, 140, 180, 0.2); color: #9eb4d9; }
.outreach-status--applied { background: rgba(255, 193, 7, 0.15); color: #ffc107; }
.outreach-status--waitlist { background: rgba(156, 39, 176, 0.15); color: #ce93d8; }
.outreach-status--confirmed { background: rgba(76, 175, 80, 0.2); color: #81c784; }
.outreach-status--completed { background: rgba(33, 150, 243, 0.15); color: #64b5f6; }
.outreach-status--passed { background: rgba(158, 158, 158, 0.15); color: #bdbdbd; }

.outreach-checklist {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text-muted, #bbb);
  line-height: 1.6;
}

.outreach-detail__status {
  flex-wrap: wrap;
}

