/* TEDxAntioch — design system */

:root {
  --red: #EB0028;
  --black: #000000;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-600: #666666;
  --gray-800: #1a1a1a;
  --font: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --max-width: 1200px;
  --section-pad: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 5vw, 3rem);
  --card-radius: 4px;
  --transition: 0.2s ease;
}

/* ─── Map background (Leaflet, injected by partials.js) ─── */

#map-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

#map-bg.leaflet-container {
  background: #0a0a0a;
  pointer-events: auto;
  cursor: grab;
}

#map-bg.leaflet-container:active { cursor: grabbing; }

/* Pulse pin */
.map-pin {
  display: block;
  width: var(--s);
  height: var(--s);
  background: var(--c);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 8px var(--c);
}

.map-pin::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid var(--c);
  border-radius: 50%;
  animation: map-pulse 2.2s ease-out infinite;
  opacity: 0;
}

@keyframes map-pulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(3);   opacity: 0;   }
}

/* Tooltip */
.map-tip {
  background: rgba(0,0,0,0.92) !important;
  border: 1px solid #333 !important;
  color: #fff !important;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: 0.8125rem !important;
  font-weight: 700 !important;
  padding: 0.5rem 0.875rem !important;
  border-radius: 3px !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5) !important;
  white-space: nowrap;
}

.map-tip::before { display: none !important; }

.map-tip-sub {
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  margin-top: 0.2rem;
  white-space: normal;
  max-width: 20ch;
}

/* Leaflet attribution override */
.leaflet-control-attribution {
  background: rgba(0,0,0,0.6) !important;
  color: rgba(255,255,255,0.35) !important;
  font-size: 0.625rem !important;
  padding: 2px 6px !important;
}

.leaflet-control-attribution a { color: rgba(255,255,255,0.5) !important; }

/* ─── Reset ─── */

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--white);
  background: #0a0a0a;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol { list-style: none; }

button, input, textarea, select {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* ─── Typography ─── */

h1, h2, h3, h4 {
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.125rem; }

p { max-width: 68ch; color: rgba(255,255,255,0.75); }

/* ─── Layout helpers ─── */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.section { padding: var(--section-pad); background: rgba(0,0,0,0.82); }

.section--dark {
  background: rgba(4,4,4,0.86);
  color: var(--white);
}

.section--light {
  background: rgba(14,14,14,0.80);
  color: var(--white);
}

.section--red {
  background: var(--red);
  color: var(--white);
}

.section--gray {
  background: rgba(16,16,16,0.82);
  color: var(--white);
}

/* ─── Navigation ─── */

.site-nav {
  position: sticky;
  top: 52px;
  z-index: 100;
  background: rgba(0,0,0,0.97);
  border-bottom: 3px solid var(--red);
  backdrop-filter: blur(8px);
}

.site-nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 2rem;
}

.site-nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-nav__logo img {
  height: 36px;
  width: auto;
}

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

.site-nav__links a {
  color: var(--white);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: color var(--transition);
}

.site-nav__links a:hover,
.site-nav__links a[aria-current="page"] {
  color: var(--red);
}

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

/* mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
}

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

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

  .site-nav__links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem clamp(1.25rem, 5vw, 3rem);
    gap: 0;
    border-bottom: 3px solid var(--red);
  }

  .site-nav__links.is-open { display: flex; }

  .site-nav__links a { padding: 0.75rem 0; width: 100%; }

  .site-nav__cta { display: none; }
}

/* ─── Buttons ─── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--red {
  background: var(--red);
  color: var(--white);
}

.btn--red:hover { background: #c8001f; }

.btn--white {
  background: var(--white);
  color: var(--black);
}

.btn--white:hover { background: var(--gray-200); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn--outline-dark {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
}

.btn--outline-dark:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
}

/* ─── Hero ─── */

.hero {
  background: rgba(0,0,0,0.78);
  color: var(--white);
  padding: clamp(4rem, 12vw, 9rem) clamp(1.25rem, 5vw, 3rem);
  text-align: center;
}

.hero__inner {
  max-width: 860px;
  margin: 0 auto;
}

.hero__logo {
  width: clamp(200px, 40vw, 360px);
  margin: 0 auto 2.5rem;
}

.hero__eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.hero h1 { margin-bottom: 1.25rem; }

.hero__sub {
  font-size: clamp(1.0625rem, 2.5vw, 1.375rem);
  color: rgba(255,255,255,0.75);
  max-width: 56ch;
  margin: 0 auto 2.5rem;
}

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

/* ─── Stats ─── */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(160px, 100%), 1fr));
  gap: 2rem;
  margin: 2rem 0;
  text-align: center;
}

@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr; text-align: left; }
}

.stat__number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  display: block;
}

.stat__label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-top: 0.375rem;
}

/* ─── Cards ─── */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.card {
  background: #111111;
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid #2a2a2a;
  color: var(--white);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(235,0,40,0.15);
  border-color: rgba(235,0,40,0.4);
}

.card--dark {
  background: #0d0d0d;
  border-color: #2a2a2a;
  color: var(--white);
}

.card__thumb {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  background: var(--black);
}

.card__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__thumb-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover .card__thumb-play { opacity: 1; }

.card__thumb-play svg { width: 56px; height: 56px; }

.card__body { padding: 1.25rem; }

.card__year {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.375rem;
}

.card__speaker {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.5rem;
}

.card__views {
  font-size: 0.8125rem;
  color: var(--gray-600);
}

/* ─── Talk detail layout ─── */

.talk-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 960px) {
  .talk-layout { grid-template-columns: 1fr; }
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  background: var(--black);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ─── Reaction buttons ─── */

.reactions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1rem;
}

.reaction-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.875rem;
  border: 1.5px solid #333;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  background: #111;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
  user-select: none;
}

.reaction-btn:hover {
  border-color: var(--red);
  color: var(--red);
}

.reaction-btn.is-active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.reaction-btn__emoji { font-size: 1.125rem; line-height: 1; }
.reaction-btn__count { min-width: 1.25em; text-align: right; }

/* ─── Submission wall ─── */

.submission-wall {
  margin-top: 2rem;
}

.submission-wall__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.submission-wall__input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #333;
  border-radius: var(--card-radius);
  font-size: 0.9375rem;
  resize: vertical;
  min-height: 80px;
  transition: border-color var(--transition);
  background: #111;
  color: var(--white);
}

.submission-wall__input::placeholder { color: rgba(255,255,255,0.3); }

.submission-wall__input:focus {
  outline: none;
  border-color: var(--red);
}

.submission-feed { display: flex; flex-direction: column; gap: 1rem; }

.submission-item {
  background: #111;
  border-radius: var(--card-radius);
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  border-left: 3px solid var(--red);
  color: rgba(255,255,255,0.85);
}

/* ─── Tabs (talks archive) ─── */

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid #2a2a2a;
  padding-bottom: 0;
}

.tab-btn {
  padding: 0.625rem 1.25rem;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color var(--transition), border-color var(--transition);
}

.tab-btn:hover { color: var(--white); }

.tab-btn.is-active {
  color: var(--red);
  border-bottom-color: var(--red);
}

.tab-panel { display: none; }
.tab-panel.is-active { display: block; }

/* ─── Theater layout (single year pages) ─── */

.theater-header {
  background: var(--red);
  color: var(--white);
  padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 5vw, 3rem);
  text-align: center;
}

.theater-header__year {
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 900;
  line-height: 0.9;
  opacity: 0.15;
  display: block;
}

.theater-header__theme {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: -1rem;
  position: relative;
}

/* ─── Section headers ─── */

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

.section-header__eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 0.625rem;
}

.section--dark .section-header__eyebrow { color: var(--red); }

/* ─── Get Involved cards ─── */

.involve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.involve-card {
  padding: 2rem;
  border: 2px solid #2a2a2a;
  border-radius: var(--card-radius);
  transition: border-color var(--transition), transform var(--transition);
  background: #0d0d0d;
}

.involve-card:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}

.involve-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.involve-card__title {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.involve-card p { font-size: 0.9375rem; margin-bottom: 1.25rem; }

/* ─── Quote block ─── */

.quote-block {
  border-left: 4px solid var(--red);
  padding: 1.25rem 1.75rem;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  max-width: 72ch;
}

.quote-block cite {
  display: block;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 1rem;
}

/* ─── Required verbatim block (TEDx compliance) ─── */

.tedx-info-block {
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: var(--card-radius);
  padding: 2rem 2.5rem;
  max-width: 72ch;
  color: rgba(255,255,255,0.85);
}

.tedx-info-block h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.875rem;
}

.tedx-info-block p { font-size: 0.9375rem; }

.tedx-info-block a { color: var(--red); text-decoration: underline; }

/* ─── Volunteer roles ─── */

.roles-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }

.role-item {
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--red);
  background: #111;
  border-radius: 0 var(--card-radius) var(--card-radius) 0;
}

.role-item__title {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

/* ─── Team grid ─── */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-card { text-align: center; }

.team-card__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  background: #1a1a1a;
  border: 2px solid #2a2a2a;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  overflow: hidden;
}

.team-card__name { font-weight: 700; margin-bottom: 0.25rem; }

.team-card__role {
  font-size: 0.875rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.team-card__bio {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.5rem;
}

/* ─── Event details table ─── */

.event-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.event-detail {
  display: flex;
  gap: 1rem;
  align-items: baseline;
}

.event-detail__label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  min-width: 80px;
  flex-shrink: 0;
}

.event-detail__value { font-size: 1rem; }

/* ─── Price callout ─── */

.price-callout {
  display: inline-block;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  border: 1px solid #2a2a2a;
  padding: 0.625rem 1.25rem;
  border-radius: var(--card-radius);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.price-callout a { color: var(--red); }

/* ─── Criteria list ─── */

.criteria-list { margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.875rem; }

.criteria-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}

.criteria-item::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 0.6rem;
  flex-shrink: 0;
}

/* ─── Speaker Guidelines ─── */

.guidelines-list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

.guideline-row {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: 2rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.guidelines-list .guideline-row:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.guideline-row dt {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  padding-top: 0.15rem;
  line-height: 1.5;
}

.guideline-row dd {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0;
}

.guideline-row dd p { margin: 0; }

.guideline-row .criteria-list { margin: 0; }

@media (max-width: 600px) {
  .guideline-row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
}

/* ─── Footer ─── */

.site-footer {
  background: rgba(0,0,0,0.96);
  color: rgba(255,255,255,0.7);
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.25rem, 5vw, 3rem);
}

.site-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 600px) {
  .site-footer__inner { grid-template-columns: 1fr; text-align: center; }
}

.site-footer__logo img { height: 28px; width: auto; opacity: 0.85; }

.site-footer__license {
  font-size: 0.8125rem;
  margin-top: 0.75rem;
  line-height: 1.5;
}

.site-footer__social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.site-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  transition: border-color var(--transition), color var(--transition);
}

.site-footer__social a:hover {
  border-color: var(--red);
  color: var(--red);
}

.site-footer__bottom {
  max-width: var(--max-width);
  margin: 1.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8125rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: space-between;
}

/* ─── Sponsors placeholder ─── */

.sponsors-placeholder {
  text-align: center;
  padding: 4rem 1rem;
  color: rgba(255,255,255,0.4);
  border: 2px dashed #2a2a2a;
  border-radius: var(--card-radius);
  margin-top: 2rem;
}

/* ─── Page hero (inner pages) ─── */

.page-hero {
  background: rgba(0,0,0,0.78);
  color: var(--white);
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1.25rem, 5vw, 3rem);
}

.page-hero__eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 0.75rem;
}

.page-hero h1 { margin-bottom: 1rem; }

.page-hero__sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.7);
  max-width: 60ch;
}

/* ─── Two-col layout ─── */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; }
}

/* ─── Circle embed wrapper ─── */

.circle-embed-wrap {
  margin-top: 1.5rem;
}

/* ─── Coming soon / TODO placeholder ─── */

.placeholder-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2.5rem 2rem;
  border: 2px dashed rgba(235,0,40,0.3);
  border-radius: var(--card-radius);
  text-align: center;
  background: rgba(235,0,40,0.03);
}

.section--dark .placeholder-block {
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.03);
}

.placeholder-block__icon {
  font-size: 2rem;
  opacity: 0.5;
}

.placeholder-block__title {
  font-weight: 700;
  font-size: 0.9375rem;
}

.placeholder-block__sub {
  font-size: 0.8125rem;
  color: var(--gray-600);
  max-width: 36ch;
  margin: 0 auto;
}

.section--dark .placeholder-block__sub {
  color: rgba(255,255,255,0.45);
}

/* ─── Utility ─── */

.text-red { color: var(--red); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─── Notice / alert ─── */

.notice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(235,0,40,0.1);
  border: 1px solid rgba(235,0,40,0.35);
  border-radius: var(--card-radius);
  font-size: 0.9375rem;
  margin-top: 1rem;
  color: rgba(255,255,255,0.85);
}

.notice--info {
  background: rgba(255,255,255,0.04);
  border-color: #2a2a2a;
}

/* ─── Contact ─── */

.contact-email {
  font-size: clamp(1.125rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--red);
  word-break: break-all;
}

.contact-email:hover { text-decoration: underline; }

/* ─── Navigation prev/next (theater) ─── */

.theater-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  gap: 1rem;
}

.theater-nav a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
  transition: gap var(--transition);
}

.theater-nav a:hover { gap: 0.75rem; }

/* ─── Live page ─── */

.live-stage {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.25rem, 5vw, 3rem);
  background: rgba(0,0,0,0.72);
  position: relative;
  overflow: hidden;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.live-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.countdown {
  display: flex;
  gap: clamp(1rem, 4vw, 3rem);
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0;
}

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

.countdown__num {
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--white);
  font-variant-numeric: tabular-nums;
  min-width: 2ch;
}

.countdown__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.countdown__sep {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  padding-top: 0.1em;
}

.live-embed {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.live-embed .video-embed {
  border: 3px solid var(--red);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(235,0,40,0.3);
}

.live-ended {
  padding: 3rem;
  border: 2px solid #2a2a2a;
  border-radius: var(--card-radius);
  max-width: 600px;
  margin: 0 auto;
}

/* ─── Live CTA boxes ─── */

.live-cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 1000px;
  width: 100%;
}

.live-cta-card {
  background: rgba(0,0,0,0.85);
  border: 2px solid #222;
  border-radius: var(--card-radius);
  padding: 2rem 1.75rem;
  text-align: left;
  text-decoration: none;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  backdrop-filter: blur(4px);
}

.live-cta-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(235,0,40,0.2);
}

.live-cta-card__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

.live-cta-card__title {
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.live-cta-card p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  max-width: 32ch;
}

.live-cta-card__arrow {
  font-size: 1.25rem;
  color: var(--red);
  margin-top: auto;
  padding-top: 0.5rem;
}

/* ─── ZIP code fixed background decoration (injected on every page) ─── */

#zip-fixed {
  position: fixed;
  right: -0.05em;
  bottom: -0.1em;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  font-size: clamp(10rem, 35vw, 28rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 3px rgba(235,0,40,0.85);
  text-shadow: 0 0 80px rgba(235,0,40,0.5), 0 0 200px rgba(235,0,40,0.25);
  white-space: nowrap;
}

/* Lift all content sections above the fixed zip bg (z-index: 0) */
.hero,
.page-hero,
.section,
.live-stage,
.hoods-section,
.theater-header,
.views-callout,
.site-footer,
main#theater-root,
.theater,
.theater__stage,
.theater__playlist,
.theater__info {
  position: relative;
  z-index: 1;
}

/* ─── Neighborhoods section ─── */

.hoods-section {
  background: rgba(0,0,0,0.60);
  padding: clamp(3rem, 8vw, 6rem) clamp(1.25rem, 5vw, 3rem);
  position: relative;
  overflow: hidden;
}

.hoods-section .container { position: relative; z-index: 1; }

.hoods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  border: 1px solid #1a1a1a;
  border-radius: var(--card-radius);
  overflow: hidden;
  margin-top: 2.5rem;
}

.hood-card {
  padding: 2rem 1.75rem;
  background: rgba(0,0,0,0.82);
  border-right: 1px solid #1a1a1a;
  position: relative;
  transition: background var(--transition);
}

.hood-card:last-child { border-right: none; }
.hood-card:hover { background: rgba(20,0,5,0.88); }

.hood-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.625rem;
}

.hood-card__name {
  font-size: clamp(1.375rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.hood-card__star {
  color: var(--red);
  font-size: 1.25rem;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.hood-card__body {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 28ch;
}

/* ─── Responsive helpers ─── */

@media (max-width: 768px) {
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { text-align: center; width: 100%; max-width: 320px; }
  .hero { text-align: center; }
  .hero__eyebrow, .hero h1, .hero__sub { text-align: center; }
  .page-hero { text-align: center; }
  .page-hero__eyebrow, .page-hero h1, .page-hero__sub { text-align: center; }
  .tabs { gap: 0.25rem; }
}

/* ─── Neon / Graffiti treatment ─────────────────────────────────────────────── */

.hero h1,
.page-hero h1 {
  text-shadow: 0 0 24px rgba(235,0,40,0.45), 0 0 60px rgba(235,0,40,0.15);
}

.section-header h2::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 3px;
  background: var(--red);
  margin-top: 0.875rem;
  box-shadow: 0 0 12px rgba(235,0,40,0.7), 0 0 30px rgba(235,0,40,0.3);
}

.stat__number {
  text-shadow: 0 0 24px rgba(235,0,40,0.5), 0 0 60px rgba(235,0,40,0.15);
}

.stat__number--hero {
  font-size: clamp(3.5rem, 8vw, 6rem);
  -webkit-text-stroke: 1.5px var(--red);
  color: transparent;
  text-shadow: 0 0 40px rgba(235,0,40,0.6), 0 0 90px rgba(235,0,40,0.25);
}

.countdown__num {
  text-shadow: 0 0 30px rgba(255,255,255,0.55), 0 0 70px rgba(255,255,255,0.15);
}

/* Enhanced card hover glow */
.card:hover {
  box-shadow: 0 8px 36px rgba(235,0,40,0.25), 0 0 70px rgba(235,0,40,0.08);
  border-color: rgba(235,0,40,0.5);
}

/* Button gradient */
.btn--red {
  background: linear-gradient(135deg, #EB0028, #c70022);
  box-shadow: 0 4px 20px rgba(235,0,40,0.25);
}

.btn--red:hover {
  background: linear-gradient(135deg, #ff002e, #EB0028);
  box-shadow: 0 6px 32px rgba(235,0,40,0.4);
}

/* ─── 5M+ views callout ───────────────────────────────────────────────────── */

.views-callout {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.25rem, 5vw, 3rem);
  background: rgba(0,0,0,0.87);
  border-bottom: 1px solid #1a1a1a;
}

.views-callout__number {
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 900;
  line-height: 1;
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px var(--red);
  text-shadow: 0 0 40px rgba(235,0,40,0.55), 0 0 90px rgba(235,0,40,0.25);
  letter-spacing: -0.03em;
}

.views-callout__line {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  margin-top: 0.75rem;
  letter-spacing: 0.04em;
  max-width: none;
}

/* ─── Featured spotlight ─────────────────────────────────────────────────── */

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.spotlight-card {
  background: #0a0a0a;
  border: 1px solid #222;
  border-radius: var(--card-radius);
  overflow: hidden;
  display: block;
  color: var(--white);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.spotlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 50px rgba(235,0,40,0.25), 0 0 90px rgba(235,0,40,0.08);
  border-color: rgba(235,0,40,0.5);
}

.spotlight-card__thumb {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  background: #000;
}

.spotlight-card__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.spotlight-card:hover .spotlight-card__thumb img { transform: scale(1.05); }

.spotlight-card__thumb-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity var(--transition);
}

.spotlight-card:hover .spotlight-card__thumb-play { opacity: 1; }
.spotlight-card__thumb-play svg { width: 64px; height: 64px; }

.spotlight-card__body { padding: 1.5rem; }

.spotlight-card__views {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 12px rgba(235,0,40,0.5);
}

.spotlight-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.375rem;
}

.spotlight-card__speaker {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

/* ─── Filter bar ─────────────────────────────────────────────────────────── */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.5rem 1.125rem;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  background: transparent;
  border: 1.5px solid #2a2a2a;
  border-radius: 2px;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.filter-btn:hover {
  color: var(--white);
  border-color: #555;
}

.filter-btn.is-active {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 2px 18px rgba(235,0,40,0.35);
}

/* ─── Talk card animation ────────────────────────────────────────────────── */

.talk-card {
  opacity: 0;
  transform: translateY(12px);
}

.talk-card.is-visible {
  animation: card-in 0.32s ease forwards;
}

.talk-card.is-hidden { display: none; }

@keyframes card-in {
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Type badge ─────────────────────────────────────────────────────────── */

.type-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  margin-bottom: 0.375rem;
}

.type-badge--talk {
  background: rgba(235,0,40,0.12);
  color: var(--red);
  border: 1px solid rgba(235,0,40,0.3);
}

.type-badge--performance {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.18);
}

/* ─── Theater talk section ────────────────────────────────────────────────── */

.talk-section {
  border-bottom: 1px solid #111;
}

.talk-section:last-of-type { border-bottom: none; }

.talk-title {
  font-size: clamp(1.375rem, 3vw, 2rem);
  font-weight: 900;
  margin: 0.5rem 0 0.375rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.talk-views {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.875rem;
  max-width: 46ch;
}

/* ─── Permanent map tooltips ─────────────────────────────────────────────── */

.map-tip--permanent {
  background: rgba(0,0,0,0.9) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  padding: 0.2rem 0.6rem !important;
  font-size: 0.75rem !important;
  white-space: nowrap;
}

.leaflet-tooltip.map-tip--permanent::before { display: none !important; }

/* Disable hover cursor on static map */
#map-bg.leaflet-container { cursor: default !important; }
#map-bg.leaflet-container:active { cursor: default !important; }

/* ─── Get Involved Drawer ────────────────────────────────────────────────── */

.involve-drawer {
  position: fixed;
  inset: 0;
  z-index: 500;
  pointer-events: none;
}

.involve-drawer.is-open { pointer-events: auto; }

.involve-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.involve-drawer.is-open .involve-drawer__overlay { opacity: 1; }

.involve-drawer__panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #080808;
  border-top: 3px solid var(--red);
  box-shadow: 0 -8px 60px rgba(235,0,40,0.2), 0 -2px 24px rgba(0,0,0,0.8);
  padding: 2rem clamp(1.25rem, 5vw, 3rem) 2.5rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.involve-drawer.is-open .involve-drawer__panel { transform: translateY(0); }

.involve-drawer__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.125rem;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 0.375rem 0.625rem;
  border-radius: 2px;
  transition: color var(--transition), background var(--transition);
  line-height: 1;
  background: none;
  border: none;
}

.involve-drawer__close:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.involve-drawer__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.375rem;
  display: block;
}

.involve-drawer__heading {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  text-shadow: 0 0 24px rgba(235,0,40,0.35), 0 0 60px rgba(235,0,40,0.12);
}

.involve-drawer__tiles {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.involve-drawer__tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 2rem;
  background: #111;
  border: 1.5px solid #2a2a2a;
  border-radius: var(--card-radius);
  color: var(--white);
  text-decoration: none;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  flex: 1;
  min-width: 110px;
}

.involve-drawer__tile:hover {
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 4px 30px rgba(235,0,40,0.2);
}

.involve-drawer__tile-icon {
  font-size: 1.75rem;
  line-height: 1;
}

.involve-drawer__tile-label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 480px) {
  .involve-drawer__tiles { gap: 0.625rem; }
  .involve-drawer__tile { padding: 1rem; min-width: 80px; }
}

/* ─── Theater / Stage layout ─── */

body.theater-page {
  overflow: hidden;
  height: 100dvh;
  display: flex;
  flex-direction: column;
}

body.theater-page #nav-placeholder {
  flex-shrink: 0;
}

body.theater-page main#theater-root {
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.theater {
  display: flex;
  height: 100%;
}

/* Stage (left) */
.theater__stage {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: #000;
}

.theater__embed {
  flex: 1;
  min-height: 0;
  position: relative;
  background: #000;
}

.theater__embed #yt-player,
.theater__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Now-playing info bar below embed */
.theater__info {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  background: rgba(0,0,0,0.85);
  border-top: 2px solid var(--red);
}

.theater__info-text {
  flex: 1;
  min-width: 0;
}

.theater__talk-title {
  font-size: clamp(1rem, 2.5vw, 1.375rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0.25rem 0 0.2rem;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.theater__talk-speaker {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.4rem;
}

.theater__talk-desc {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.theater__controls {
  flex-shrink: 0;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding-top: 0.25rem;
}

.theater__ctrl-btn {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  color: var(--white);
  padding: 0.4rem 0.875rem;
  border-radius: 2px;
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  letter-spacing: 0.04em;
}

.theater__ctrl-btn:hover:not(:disabled) {
  background: #2a0008;
  border-color: var(--red);
  color: var(--white);
}

.theater__ctrl-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

/* Playlist (right) */
.theater__playlist {
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  background: rgba(8,8,8,0.86);
  border-left: 1px solid #1e1e1e;
}

.playlist-header {
  flex-shrink: 0;
  padding: 0.875rem 1rem;
  border-bottom: 1px solid #1e1e1e;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}

.playlist-header__year {
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--white);
}

.playlist-header__count {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.playlist-items {
  flex: 1;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #2a2a2a transparent;
}

.playlist-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.875rem;
  cursor: pointer;
  border-bottom: 1px solid #111;
  border-left: 3px solid transparent;
  transition: background var(--transition), border-color var(--transition);
}

.playlist-item:hover {
  background: #161616;
}

.playlist-item.is-active {
  background: rgba(235,0,40,0.08);
  border-left-color: var(--red);
}

.playlist-item__num {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.25);
  font-weight: 700;
  min-width: 1.25rem;
  text-align: right;
  flex-shrink: 0;
}

.playlist-item.is-active .playlist-item__num {
  color: var(--red);
}

.playlist-item__thumb {
  width: 80px;
  height: 45px;
  object-fit: cover;
  border-radius: 1px;
  flex-shrink: 0;
  opacity: 0.85;
}

.playlist-item.is-active .playlist-item__thumb {
  opacity: 1;
  box-shadow: 0 0 0 1.5px var(--red);
}

.playlist-item__info {
  flex: 1;
  min-width: 0;
}

.playlist-item__title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
  margin: 0 0 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.playlist-item.is-active .playlist-item__title {
  color: var(--white);
}

.playlist-item__speaker {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.45);
  margin: 0 0 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.playlist-item__meta {
  font-size: 0.625rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
}

.playlist-item__meta em {
  font-style: normal;
  color: rgba(235,0,40,0.6);
}

/* Mobile: stack vertically */
/* ─── Accessibility & Mobile ─── */

/* Skip link */
.skip-link {
  position: fixed;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background: var(--red);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 0 0 4px 4px;
  text-decoration: none;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 0; }

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

/* Minimum 44px touch targets */
.btn { min-height: 44px; }

.nav-toggle {
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
}

.filter-btn { min-height: 44px; }

.theater__ctrl-btn { min-height: 44px; min-width: 64px; }

.playlist-item { min-height: 60px; }

.site-footer__social a { width: 44px; height: 44px; }

/* ─── Theater mobile — proper 16:9 embed ─── */
@media (max-width: 768px) {
  body.theater-page { overflow: auto; height: auto; }

  body.theater-page main#theater-root { overflow: visible; }

  .theater { flex-direction: column; height: auto; }

  /* Let the stage be natural height (embed + info bar) */
  .theater__stage { height: auto; }

  /* Proper 16:9 ratio for the embed */
  .theater__embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    flex: none;
  }

  .theater__embed #yt-player,
  .theater__embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  /* Info bar: stack vertically, show full description */
  .theater__info {
    flex-direction: column;
    gap: 0.625rem;
    padding: 0.875rem 1rem;
  }

  .theater__talk-title {
    white-space: normal;
    font-size: 1rem;
  }

  .theater__talk-desc { -webkit-line-clamp: 3; }

  .theater__controls {
    padding-top: 0;
    justify-content: flex-start;
  }

  /* Playlist: full width, scrollable */
  .theater__playlist {
    width: 100%;
    height: auto;
    max-height: 55vh;
    border-left: none;
    border-top: 2px solid var(--red);
  }
}

/* Filter bar: scroll horizontally on narrow screens */
@media (max-width: 600px) {
  .filter-bar {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
  }
  .filter-bar::-webkit-scrollbar { display: none; }
  .filter-btn { flex-shrink: 0; }
}

/* ─── Fundraising Strip (global, below nav on every page) ─── */

#fund-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  height: 52px;
  background: rgba(8, 8, 8, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

#fund-strip-spacer {
  height: 52px;
  flex-shrink: 0;
}

.fund-strip__label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.9), 0 0 12px rgba(0,0,0,0.8);
  white-space: nowrap;
}

.fund-strip__bar-wrap {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  position: relative;
}

.fund-strip__bar {
  height: 100%;
  width: var(--pct, 0%);
  background: var(--red);
  border-radius: 3px;
  position: relative;
  box-shadow: 0 0 8px rgba(235, 0, 40, 0.55), 0 0 20px rgba(235, 0, 40, 0.3);
}

/* Leading-edge live dot */
.fund-strip__bar::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(235,0,40,0.9), 0 0 18px rgba(235,0,40,0.6), 0 0 32px rgba(235,0,40,0.3);
  animation: dot-ping 1.8s ease-out 1.5s infinite;
}

@keyframes dot-ping {
  0%   { transform: translateY(-50%) scale(1);   opacity: 1; }
  60%  { transform: translateY(-50%) scale(2.4); opacity: 0; }
  100% { transform: translateY(-50%) scale(1);   opacity: 0; }
}

.fund-strip__amount {
  font-size: 0.875rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 3px rgba(0,0,0,0.9), 0 0 12px rgba(0,0,0,0.8);
}

.fund-strip__amount:hover { color: rgba(255, 255, 255, 0.65); }

@media (max-width: 600px) {
  .fund-strip__label { display: none; }
  #fund-strip { gap: 0.875rem; height: 44px; }
  #fund-strip-spacer { height: 44px; }
  .site-nav { top: 44px; }
  .fund-strip__bar-wrap { height: 5px; }
}

/* ─── Sponsors Page ─── */

/* Full-page progress block */
.fund-progress {
  text-align: center;
  padding: clamp(2rem, 6vw, 4rem) 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.fund-progress.is-ready { opacity: 1; }

.fund-progress__numbers {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.fund-progress__raised {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  color: var(--red);
  letter-spacing: -0.02em;
  line-height: 1;
}

.fund-progress__label {
  font-size: clamp(0.875rem, 2.5vw, 1.125rem);
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.fund-progress__bar-wrap {
  max-width: 640px;
  margin: 0 auto;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.fund-progress__bar {
  height: 100%;
  width: var(--pct, 0%);
  background: var(--red);
  box-shadow: 0 0 16px rgba(235, 0, 40, 0.5);
  border-radius: 4px;
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.fund-progress__meta {
  margin-top: 0.875rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.04em;
}

/* ─── Support page grid layout ─── */

.support-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  column-gap: 4rem;
  row-gap: 2rem;
}

.support-grid__header  { grid-column: 1; grid-row: 1; }
.support-grid__backers { grid-column: 1; grid-row: 2; align-self: start; }
.support-grid__thermo  { grid-column: 2; grid-row: 1 / 3; display: flex; align-items: flex-start; }

@media (max-width: 768px) {
  .support-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .support-grid__header,
  .support-grid__backers { grid-column: 1; }
  .support-grid__thermo  { grid-column: 1; grid-row: auto; justify-content: center; }
}

/* ─── Fund layout helpers ─── */

.fund-layout__backers {
  min-width: 200px;
}

.fund-layout__title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.fund-layout__thermo {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.fund-layout__thermo.is-ready { opacity: 1; }

/* ─── Thermometer ─── */

.thermo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.thermo__amount {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  color: var(--red);
  letter-spacing: -0.02em;
  line-height: 1;
}

.thermo__label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.25rem;
}

.thermo__track {
  display: flex;
  align-items: stretch;
  gap: 0.625rem;
  margin: 1.25rem auto 0;
}

.thermo__ticks {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

.thermo__ticks span {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.28);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  line-height: 1;
}

.thermo__ticks span::after {
  content: '';
  display: block;
  width: 8px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.thermo__tube-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.thermo__tube {
  width: 48px;
  height: 380px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.4);
}

.thermo__tube::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  width: 10px;
  bottom: 8px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.18), transparent 60%);
  border-radius: 5px;
  z-index: 1;
  pointer-events: none;
}

.thermo__fill {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--pct, 0%);
  background: var(--red);
  border-radius: 24px;
  transition: height 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 20px rgba(235, 0, 40, 0.5), 0 0 40px rgba(235, 0, 40, 0.2);
}

.thermo__bulb {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--red);
  margin: -10px 0 0;
  box-shadow: 0 0 24px rgba(235, 0, 40, 0.6), 0 0 48px rgba(235, 0, 40, 0.25);
  position: relative;
}

.thermo__bulb::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(235, 0, 40, 0.4);
  animation: bulb-ring 2.2s ease-out infinite;
}

@keyframes bulb-ring {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0;   }
}

.thermo__meta {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 1.25rem;
  letter-spacing: 0.04em;
}

/* Partner cards */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.partner-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--card-radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.4);
  transition: border-color var(--transition);
}

.partner-card:hover { border-color: rgba(235, 0, 40, 0.4); }

.partner-card__logo {
  max-height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.partner-card__name {
  font-weight: 700;
  font-size: 1rem;
  margin: 0;
  color: #fff;
}

.partner-card__tier {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
}

.partner-card__link {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  margin-top: auto;
}

.partner-card__link:hover { color: var(--red); }

/* Production slots & table grid */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.slot-card {
  border: 1px solid rgba(235, 0, 40, 0.5);
  border-radius: var(--card-radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  background: rgba(0, 0, 0, 0.3);
}

.slot-card--taken {
  border-color: rgba(255, 255, 255, 0.1);
  opacity: 0.65;
}

.slot-card__name {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}

.slot-card__price {
  font-size: 0.8125rem;
  color: var(--red);
  font-weight: 600;
}

.slot-card__status {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

.slot-card__cta { margin-top: auto; align-self: flex-start; }

.btn--sm {
  padding: 0.4375rem 1rem;
  font-size: 0.8125rem;
}

/* Tier cards */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.tier-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--card-radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(0, 0, 0, 0.35);
}

.tier-card--featured { border-color: var(--red); }

.tier-card__eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.tier-card--featured .tier-card__eyebrow { color: var(--red); }

.tier-card__name {
  font-size: 1.125rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.tier-card__price {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.tier-card__price span {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  margin-left: 0.25rem;
}

.tier-card__perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tier-card__perks li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  padding-left: 1.25rem;
  position: relative;
}

.tier-card__perks li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 0.75rem;
}

.tier-card__cta { margin-top: auto; }

/* Community backer wall */
.backer-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1.5rem;
  min-height: 80px;
  padding: 1.5rem;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: var(--card-radius);
}

.backer-name {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.backer-wall__empty {
  color: rgba(255, 255, 255, 0.25);
  font-style: italic;
  font-size: 0.9375rem;
  margin: 0;
}

/* ─── Table Sponsors ─── */

.table-sponsors__heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 0.75rem;
}

.table-sponsors__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ─── Team Page ─── */

.core-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.core-card {
  border: 1px solid rgba(235, 0, 40, 0.4);
  border-radius: var(--card-radius);
  padding: 1.75rem;
  background: rgba(0, 0, 0, 0.35);
}

.core-card__role {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.375rem;
}

.core-card__name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

/* Volunteer role slots */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.role-slot {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--card-radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.3);
}

.role-slot__title {
  font-weight: 700;
  font-size: 0.9375rem;
  color: #fff;
  margin: 0;
}

.role-slot__dots {
  display: flex;
  gap: 0.375rem;
  align-items: center;
}

.role-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.role-dot--filled { background: var(--red); }

.role-slot__status {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

.role-slot__cta {
  margin-top: 0.25rem;
  align-self: flex-start;
  font-size: 0.8125rem;
}

/* Volunteer perks banner */
.volunteer-perks {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.5rem;
  background: rgba(235, 0, 40, 0.08);
  border: 1px solid rgba(235, 0, 40, 0.3);
  border-radius: var(--card-radius);
  margin-bottom: 2rem;
}

.volunteer-perks__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.volunteer-perks__icon {
  color: var(--red);
  font-size: 1.125rem;
  line-height: 1;
}

@media (max-width: 600px) {
  .tier-grid { grid-template-columns: 1fr; }
  .slot-grid { grid-template-columns: 1fr; }
  .roles-grid { grid-template-columns: 1fr; }
  .core-team-grid { grid-template-columns: 1fr; }
  .volunteer-perks { gap: 1rem; }
}

/* ─── Sponsors page two-column layout ─── */

.sponsor-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 860px) {
  .sponsor-cols {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ─── $5 Community Backer Feature Card ─── */

.backer-feature {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  border: 2px solid var(--red);
  border-radius: var(--card-radius);
  background: rgba(235, 0, 40, 0.06);
  text-align: center;
}

.backer-feature__badge {
  display: inline-block;
  padding: 0.25rem 0.875rem;
  background: var(--red);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.backer-feature__heading {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 0.25rem;
}

.backer-feature__price {
  font-size: clamp(3rem, 10vw, 5rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin: 0.25rem 0 1.5rem;
  letter-spacing: -0.03em;
}

.backer-feature__perks {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  text-align: left;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.backer-feature__perks li {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  padding-left: 1.5rem;
  position: relative;
}

.backer-feature__perks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.backer-feature__cta { margin-bottom: 1.25rem; }

.backer-cta__btn {
  font-size: 1.0625rem;
  padding: 0.875rem 2rem;
  letter-spacing: 0.01em;
}

.backer-cta__soon {
  display: inline-block;
  padding: 0.875rem 2rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--card-radius);
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

.backer-feature__note {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.backer-feature__note a {
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
}

/* ─── Sponsorship Tier Table ─── */

.tier-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tier-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.tier-table th {
  text-align: left;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  padding: 0 1rem 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.tier-table th:first-child { padding-left: 0; }

.tier-table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.8);
  vertical-align: top;
}

.tier-table td:first-child {
  padding-left: 0;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.tier-table td:nth-child(2) {
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
}

.tier-table tr:last-child td { border-bottom: none; }

.tier-table__featured td {
  background: rgba(235,0,40,0.06);
  border-top: 1px solid rgba(235,0,40,0.3);
  border-bottom: 1px solid rgba(235,0,40,0.3);
}

.tier-table__featured td:first-child { color: var(--red); }
