:root {
  --red: #EB0028;
  --black: #0a0a0a;
  --cream: #F5F2EC;
  --cream-noise-tone: linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(245, 242, 236, 0.9));
  --cream-noise: url("../images/bnrxc0a94zomzer5rlnd.webp");
  --content: 1280px;
  --pad: clamp(18px, 3vw, 64px);
  --line-dark: rgba(10, 10, 10, 0.15);
  --line-light: rgba(245, 242, 236, 0.15);
  --site-header-offset: clamp(92px, 10vw, 118px);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  scroll-padding-top: var(--site-header-offset);
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  background-color: var(--cream);
  background-image:
    var(--cream-noise-tone),
    var(--cream-noise);
  background-size: auto, 1200px auto;
  background-position: center, 0 0;
  color: var(--black);
  overflow-x: clip;
  padding-top: var(--site-header-offset);
}

a,
button,
.btn,
.tab,
summary {
  cursor: pointer;
}
input,
textarea {
  cursor: text;
}
select {
  cursor: pointer;
}

main, section, footer { position: relative; }
a { color: inherit; text-decoration: none; }

.surface-cream {
  background-color: var(--cream);
  background-image:
    var(--cream-noise-tone),
    var(--cream-noise);
  background-size: auto, 1200px auto;
  background-position: center, 0 0;
  color: var(--black);
}
.surface-dark { background: var(--black); color: var(--cream); }

.container {
  width: min(var(--content), calc(100% - var(--pad) * 2));
  margin-inline: auto;
}

.section,
.footer,
.hero {
  padding: 84px 0;
}

.footer {
  background: #0a0a0a;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 11.5px;
  letter-spacing: 3.226px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 17.28px;
}

h2 {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.72px;
  font-size: clamp(48px, 7vw, 72px);
  line-height: 1;
}
h2 span { color: var(--red); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 2.75px;
  text-transform: uppercase;
  border: 1px solid currentColor;
  padding: 15px 28px;
  transition: transform .24s ease, background-color .24s ease, color .24s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-dark { background: var(--black); color: var(--cream); border-color: var(--black); }
.btn-dark:hover { background: var(--red); border-color: var(--red); }
.btn-light { background: transparent; color: var(--black); border-color: rgba(10,10,10,.6); }
.btn-light:hover { background: var(--red); color: var(--cream); border-color: var(--red); }
.btn-outline-light { background: transparent; color: var(--cream); border-color: rgba(245,242,236,.8); }
.btn-outline-light:hover { background: var(--red); border-color: var(--red); }
.btn-red { background: var(--red); color: var(--cream); border-color: var(--red); width: 100%; }
.btn-red:hover { background: var(--black); }

.brand {
  font-family: "Anton", sans-serif;
  font-size: 30px;
  letter-spacing: -0.3px;
  line-height: 1;
  color: var(--red);
  white-space: nowrap;
}
.brand sup { font-size: 18px; top: -.56em; position: relative; }
.brand em {
  font-style: normal;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  color: rgba(10,10,10,.8);
  margin-left: 8px;
  letter-spacing: -.45px;
  font-weight: 500;
}
.surface-dark .brand em { color: var(--cream); }

.hero {
  padding-top: clamp(10px, 1.6vw, 20px);
  background:
    radial-gradient(330px 430px at 76% 60%, rgba(235,0,40,.18), rgba(235,0,40,0) 70%),
    var(--cream-noise-tone),
    var(--cream-noise),
    var(--cream);
  background-size: auto, auto, 180px 180px, auto;
  background-position: center, center, 0 0, center;
}
.hero-topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line-dark);
  padding-bottom: 10px;
}

.site-header {
  position: fixed;
  top: 8px;
  left: 0;
  right: 0;
  z-index: 200;
}

.site-header .hero-topbar {
  width: min(1280px, calc(100% - var(--pad) * 2));
  margin-inline: auto;
}
.top-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.top-nav a {
  font-size: 11px;
  letter-spacing: 2.75px;
  text-transform: uppercase;
  color: rgba(10,10,10,.7);
  position: relative;
}
.top-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width .3s ease;
}
.top-nav a:hover::after { width: 100%; }

.site-menu-toggle {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid rgba(10,10,10,.24);
  background: rgba(245,242,236,.88);
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 2.75px;
  font: 600 11px/1 "Outfit", sans-serif;
  transition: transform .24s ease, background-color .24s ease, border-color .24s ease, color .24s ease;
}
.site-menu-toggle:hover,
.site-menu-toggle:focus-visible {
  transform: translateY(-2px);
  background: rgba(255,255,255,.94);
  border-color: rgba(10,10,10,.38);
}
.site-menu-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  width: 18px;
}
.site-menu-icon span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .24s ease, opacity .24s ease;
}
.hero-topbar.is-menu-open .site-menu-icon span:nth-child(1),
.page-topbar .hero-topbar.is-menu-open .site-menu-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.hero-topbar.is-menu-open .site-menu-icon span:nth-child(2),
.page-topbar .hero-topbar.is-menu-open .site-menu-icon span:nth-child(2) {
  opacity: 0;
}
.hero-topbar.is-menu-open .site-menu-icon span:nth-child(3),
.page-topbar .hero-topbar.is-menu-open .site-menu-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.site-menu-panel {
  display: contents;
}
.site-menu-panel .top-nav {
  align-items: center;
}

.home-page .hero-topbar-brand {
  position: relative;
  padding-bottom: 30px;
}

.home-page .hero-topbar-eyebrow {
  position: absolute;
  left: 0;
  bottom: 0;
  display: inline-block;
  margin: 0;
  padding-top: 10px;
  color: rgba(10,10,10,.6);
  font-size: 8px;
  letter-spacing: 1px;
  line-height: 1.05;
  white-space: nowrap;
}

.home-page .hero-topbar-eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 160px;
  height: 1px;
  background: rgba(10,10,10,.45);
}

.home-page .hero-copy .eyebrow {
  display: none;
}

.hero-main {
  display: grid;
  grid-template-columns: minmax(450px, 1fr) minmax(360px, 532px);
  gap: 70px;
  align-items: start;
  padding-top: 62px;
}
.hero-brand { display: block; margin-bottom: 20px; }
.hero-brand sup {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  position: relative;
  top: -0.16em;
  margin-left: 1px;
}
.hero-brand em {
  margin-left: 6px;
}
.hero-copy .eyebrow {
  position: relative;
  display: inline-block;
  padding-top: 10px;
  color: rgba(10,10,10,.6);
  margin-bottom: 14px;
}
.hero-copy .eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 272px;
  height: 1px;
  background: rgba(10,10,10,.45);
}
.hero h1 {
  margin: 0;
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  letter-spacing: -3.648px;
  line-height: .9;
}
.hero h1 span,
.hero h1 strong {
  display: block;
  font-size: clamp(108px, 14vw, 182.4px);
  font-weight: 400;
}
.hero h1 strong {
  margin-top: clamp(-30px, -2.8vw, -14px);
}
.hero h1 strong { color: var(--red); }
.hero h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background: var(--red);
  margin-top: 8px;
}
.hero-sub {
  margin: 18px 0 0;
  font-size: 16px;
  letter-spacing: 3.52px;
  text-transform: uppercase;
  color: rgba(10,10,10,.7);
  line-height: 24px;
  max-width: 580px;
}
.hero-actions {
  display: flex;
  gap: 20px;
  margin-top: 28px;
}
.hero-meta {
  margin-top: 24px;
  border-top: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 40px;
  max-width: 640px;
  padding-top: 28px;
}
.hero-meta p {
  margin: 0;
  color: var(--red);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 15px;
}
.hero-meta h3 {
  margin: 8px 0 0;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: clamp(30px, 4vw, 42px);
  line-height: .95;
}

.hero-art {
  min-height: 936px;
  display: grid;
  place-items: center;
}
.hero-door {
  position: relative;
  width: min(100%, 532px);
  height: 936px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-door::before {
  content: "";
  position: absolute;
  inset: 11% 7% 11% 25%;
  background: var(--black);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .55);
}
.hero-door::after {
  content: "";
  position: absolute;
  left: 14%;
  top: 18%;
  width: 140px;
  height: 64%;
  background: linear-gradient(90deg, var(--cream), rgba(245,242,236,.7), rgba(245,242,236,0));
}
.hero-door img {
  position: relative;
  z-index: 2;
  width: 172px;
  height: auto;
  margin-bottom: 38px;
}
.hero-door span {
  position: absolute;
  right: 16%;
  top: 43%;
  z-index: 3;
  font-family: "Anton", sans-serif;
  color: var(--red);
  font-size: 96px;
}

.home-page .hero-door {
  width: min(100%, 462px);
  height: 780px;
  overflow: hidden;
  display: block;
}

.home-page .hero-door::before,
.home-page .hero-door::after,
.home-page .hero-door span {
  display: none;
}

.home-page .hero-door img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 0;
}

.home-page .hero-art {
  min-height: 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 8px;
  margin-top: -108px;
}

.home-page .hero-main {
  align-items: start;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 40px;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(10,10,10,.6);
}

.ticker {
  background: var(--red);
  color: var(--black);
  border-top: 1px solid rgba(0,0,0,.2);
  border-bottom: 1px solid rgba(0,0,0,.2);
  overflow: hidden;
}
.ticker-track {
  display: inline-flex;
  min-width: 200%;
  gap: 48px;
  padding: 12px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 60px;
  text-transform: uppercase;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.two-col p { margin: 0 0 14px; font-size: 18px; line-height: 28px; }
.red-inline { color: var(--red); font-weight: 600; }

#speakers .two-col {
  grid-template-rows: 257.28px;
  align-items: stretch;
}
.people-grid.has-loop,
.support-grid.has-loop {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  border: 0;
  overflow: hidden;
}
.people-grid.has-loop {
  --loop-card-width: 260px;
}
.support-grid.has-loop {
  --loop-card-width: 340px;
}
.card-rail {
  border: 1px solid var(--line-dark);
  overflow: hidden;
  padding: 18px 0;
}
.dark-grid.has-loop .card-rail,
.dark-grid.has-loop .card-track article {
  border-color: rgba(255,255,255,.4);
}
.support-grid.has-loop .card-rail,
.support-grid.has-loop .card-track article {
  border-color: rgba(255,255,255,.18);
}
.card-track {
  display: flex;
  width: max-content;
  animation: cardsLoop 26s linear infinite;
}
.card-rail.is-reverse .card-track {
  animation-direction: reverse;
  animation-delay: -13s;
}
.card-track article {
  flex: 0 0 var(--loop-card-width);
  width: var(--loop-card-width);
  min-height: 234px;
  margin-right: 16px;
  border: 1px solid var(--line-dark);
}
.card-track article:last-child {
  margin-right: 0;
}
.card-rail:hover .card-track {
  animation-play-state: paused;
}
@keyframes cardsLoop {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
#speakers .speakers-intro {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding-right: 28.6px;
}
#speakers .speakers-intro p {
  margin: 0;
  color: rgba(10, 10, 10, 0.7);
  max-width: 515px;
  line-height: 28px;
  text-align: left;
}
#speakers.speaker-section {
  padding-top: 72px;
  padding-bottom: 36px;
}
.speaker-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  --speaker-spotlight-gap: 118px;
  --speaker-name-extra-width: calc(var(--speaker-spotlight-gap) - 24px);
  gap: var(--speaker-spotlight-gap);
  align-items: start;
  box-sizing: border-box;
}
.speaker-spotlight.is-layout-locked {
  align-items: stretch;
}
.speaker-spotlight .speaker-profile {
  position: relative;
  overflow: visible;
  box-sizing: border-box;
}
.speaker-spotlight .speaker-profile [data-live-speakers] {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
#speakers.is-carousel-animating .speaker-spotlight .speaker-profile {
  overflow: hidden;
}
.speaker-spotlight .speaker-profile h3 {
  min-height: calc(2 * 0.93em);
}
.speaker-copy {
  padding-right: 0;
  max-width: none;
  min-width: 0;
}
.speaker-eyebrow {
  margin-bottom: 12px;
  font-size: 10px;
  letter-spacing: 3.4px;
  line-height: 1;
}
.speaker-title {
  max-width: 470px;
  font-size: clamp(58px, 6vw, 86px);
  line-height: 1.02;
  letter-spacing: -1px;
}
.speaker-title span,
.speaker-title strong {
  display: block;
  line-height: 1.02;
}
.speaker-line {
  width: max-content;
  white-space: nowrap;
  line-height: 1.02;
}
.speaker-title span {
  color: var(--black);
}
.speaker-title strong {
  color: var(--red);
}
.speaker-profile {
  margin-top: 16px;
  max-width: 100%;
}
.speaker-kicker {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 9px;
  letter-spacing: 3.8px;
  text-transform: uppercase;
}
.speaker-profile h3 {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: clamp(58px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: -1px;
  min-height: calc(2 * 0.98em);
  max-width: 100%;
  overflow: visible;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: none;
  padding-bottom: 0.08em;
}
.speaker-profile h3 span {
  display: block;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.speaker-profile h3 span.speaker-name-line--single {
  display: block;
  white-space: normal;
  overflow-wrap: anywhere;
}
.speaker-spotlight .speaker-profile h3.speaker-name--single-line {
  width: calc(100% + var(--speaker-name-extra-width, 0px));
  max-width: none;
  min-height: 0;
  font-size: var(--speaker-name-fit-size, clamp(58px, 6vw, 88px));
  white-space: nowrap;
}
.speaker-spotlight .speaker-profile h3.speaker-name--single-line .speaker-name-line {
  max-width: none;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}
.speaker-spotlight .speaker-talk,
.speaker-spotlight .speaker-quote,
.speaker-spotlight .speaker-meta,
.speaker-spotlight .speaker-link {
  max-width: 460px;
}
.speaker-spotlight .speaker-talk {
  margin: 18px 0 0;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.15;
  color: rgba(10,10,10,.74);
  font-weight: 300;
  white-space: normal;
  overflow-wrap: break-word;
  max-width: 100%;
}
.speaker-talk {
  margin: 18px 0 0;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.08;
  color: rgba(10,10,10,.74);
  font-weight: 300;
  white-space: nowrap;
}
.speaker-quote {
  margin: 26px 0 0;
  max-width: 380px;
  padding-left: 8px;
  border-left: 1px solid rgba(235,0,40,.9);
  font-size: 14px;
  line-height: 1.45;
  color: rgba(10,10,10,.84);
  overflow-wrap: break-word;
}
.speaker-spotlight .speaker-quote {
  max-width: 100%;
}
.speaker-spotlight .speaker-meta {
  flex-wrap: wrap;
  row-gap: 10px;
}
.speaker-spotlight .speaker-meta span {
  white-space: normal;
  overflow-wrap: anywhere;
}
.speaker-meta {
  margin-top: 22px;
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  color: rgba(10,10,10,.48);
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.speaker-meta span {
  white-space: nowrap;
}
.speaker-link {
  display: inline-block;
  margin-top: 26px;
  color: rgba(10,10,10,.5);
  font-size: 9px;
  letter-spacing: 3.6px;
  text-transform: uppercase;
}
.speaker-photo-panel {
  display: flex;
  justify-content: flex-start;
  padding-top: 98px;
  width: 420px;
  height: 608px;
  min-height: 608px;
  flex-shrink: 0;
  box-sizing: border-box;
}
.speaker-photo-frame {
  position: relative;
  width: 420px;
  height: 510px;
  overflow: hidden;
  background: #797979;
  box-shadow: none;
}
.speaker-photo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.18));
  z-index: 1;
  transition: opacity 320ms ease, background 320ms ease;
}
.speaker-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  filter: grayscale(1);
  transform: scale(1);
  transition: filter 320ms ease, transform 320ms ease;
}

.speaker-photo-frame:hover img,
.speaker-photo-frame:focus-within img,
.speaker-spotlight:hover .speaker-photo-frame img,
.speaker-spotlight:focus-within .speaker-photo-frame img {
  filter: none;
  transform: scale(1.02);
}

.speaker-photo-frame:hover::before,
.speaker-photo-frame:focus-within::before,
.speaker-spotlight:hover .speaker-photo-frame::before,
.speaker-spotlight:focus-within .speaker-photo-frame::before {
  background: linear-gradient(180deg, rgba(120,18,34,.08), rgba(255,98,84,.12));
}
.speaker-photo-caption {
  position: absolute;
  inset: auto 14px 12px 14px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  color: rgba(245,242,236,.36);
}
.speaker-photo-caption span {
  display: block;
  font-size: 8px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: rgba(245,242,236,.28);
}
.speaker-photo-caption p {
  margin: 0;
  font-size: 13px;
  line-height: 1.2;
  text-align: right;
  max-width: 68%;
  overflow-wrap: break-word;
}
.speaker-nav {
  margin-top: 0;
  min-height: 60px;
  background: #111;
  color: rgba(245,242,236,.8);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 0 22px;
}
.speaker-nav a,
.speaker-nav button {
  font-size: 8px;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  color: rgba(245,242,236,.56);
}
.speaker-nav button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  text-align: left;
}
.speaker-nav button[data-speaker-nav="prev"] {
  justify-self: start;
}
.speaker-nav button:hover:not(:disabled),
.speaker-nav button:focus-visible:not(:disabled),
.speaker-nav a:hover,
.speaker-nav a:focus-visible {
  color: rgba(245,242,236,.92);
}
.speaker-nav button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.speaker-nav a:nth-child(2) {
  justify-self: center;
}
.speaker-nav button:last-child {
  justify-self: end;
}
.home-speaker-line-mask {
  display: block;
  overflow: hidden;
}
.home-speaker-split-line {
  display: block;
  will-change: transform, opacity;
}
.speaker-spotlight .speaker-profile,
.speaker-spotlight .speaker-photo-panel {
  will-change: transform, opacity;
}
#speakers.is-carousel-animating .speaker-copy,
#speakers.is-carousel-animating .speaker-photo-panel {
  pointer-events: none;
}
.speaker-photo-frame img {
  transform-origin: center center;
}
#speakers .people-grid article {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
#speakers .people-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0;
  transition: opacity .28s ease;
  z-index: 0;
}
#speakers .people-grid article > * {
  position: relative;
  z-index: 1;
  transition: color .28s ease;
}
#speakers .people-grid article:hover::after {
  opacity: 1;
}
#speakers .people-grid article:hover h3,
#speakers .people-grid article:hover h4,
#speakers .people-grid article:hover p {
  color: var(--cream);
}

#team .people-grid article,
#team .people-grid .team-member-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
#team .people-grid article::after,
#team .people-grid .team-member-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0;
  transition: opacity .28s ease;
  z-index: 0;
}
#team .people-grid article > *,
#team .people-grid .team-member-card > * {
  position: relative;
  z-index: 1;
  transition: color .28s ease;
}
#team .people-grid article:hover::after,
#team .people-grid .team-member-card:hover::after {
  opacity: 1;
}
#team .people-grid article:hover h3,
#team .people-grid article:hover h4,
#team .people-grid article:hover p,
#team .people-grid .team-member-card:hover h3,
#team .people-grid .team-member-card:hover h4,
#team .people-grid .team-member-card:hover p {
  color: var(--cream);
}

.manifesto-section {
  border-top: 1px solid rgba(245, 242, 236, 0.22);
}
.manifesto-layout {
  display: grid;
  grid-template-columns: 384px 1fr;
  gap: 96px;
  align-items: start;
}
.manifesto-title h2 {
  width: fit-content;
  max-width: 100%;
  font-size: 72px;
  line-height: 1.02;
  letter-spacing: -0.72px;
  text-transform: none;
}
.manifesto-title h2 span,
.manifesto-title h2 strong {
  display: block;
  color: var(--cream);
  line-height: 1.02;
}
.manifesto-title h2 strong { color: var(--red); }
.manifesto-copy {
  max-width: 672px;
}
.manifesto-copy p {
  margin: 0;
}
.manifesto-lead {
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  font-style: normal;
  font-size: 42px;
  line-height: 40px;
  margin-bottom: 20px;
}
.manifesto-lead em {
  font-style: normal;
}
.manifesto-lead .voice-accent {
  color: var(--red);
  font-family: "Outfit", sans-serif;
  font-style: normal;
  font-weight: 500;
}
.manifesto-copy > p:last-child {
  font-size: 18px;
  line-height: 28px;
  color: rgba(245, 242, 236, 0.7);
}

.manifesto-quote {
  border-top: 1px solid rgba(245, 242, 236, 0.2);
  margin-top: 112px;
  padding-top: 78px;
}
.quote-eyebrow {
  margin: 0;
  color: var(--cream);
  font-size: 11.5px;
  letter-spacing: 3.226px;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
}
.quote-eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: -8px;
  width: 229px;
  height: 1px;
  background: var(--cream);
}
.manifesto-quote blockquote {
  margin: 10px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 6vw, 56.8px);
  line-height: 1.1;
  color: var(--cream);
}
.manifesto-quote cite {
  display: block;
  margin-top: 8px;
  color: var(--red);
  font-family: "Cormorant Garamond", serif;
  font-style: normal;
  font-size: 18px;
  letter-spacing: 0;
}
.quote-pager {
  display: flex;
  gap: 8px;
  margin-top: 68px;
}
.quote-pager button {
  width: 24px;
  height: 2px;
  border: 0;
  padding: 0;
  background: #fff5f5;
  cursor: pointer;
  transition: width .28s ease, background-color .28s ease;
}
.quote-pager .is-active {
  width: 48px;
  background: var(--red);
}
.quote-pager button:focus-visible {
  outline: 1px solid var(--red);
  outline-offset: 4px;
}

.manifesto-quote blockquote,
.manifesto-quote cite {
  transition: opacity .22s ease, transform .22s ease;
}
.manifesto-quote.is-swapping-out.swap-forward blockquote,
.manifesto-quote.is-swapping-out.swap-forward cite {
  opacity: 0;
  transform: translateX(-18px);
}
.manifesto-quote.is-swapping-out.swap-backward blockquote,
.manifesto-quote.is-swapping-out.swap-backward cite {
  opacity: 0;
  transform: translateX(18px);
}
.manifesto-quote.is-swapping-in.swap-forward blockquote,
.manifesto-quote.is-swapping-in.swap-forward cite {
  animation: quoteSwapInForward .36s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.manifesto-quote.is-swapping-in.swap-backward blockquote,
.manifesto-quote.is-swapping-in.swap-backward cite {
  animation: quoteSwapInBackward .36s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes quoteSwapInForward {
  from { opacity: 0; transform: translateX(18px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes quoteSwapInBackward {
  from { opacity: 0; transform: translateX(-18px); }
  to { opacity: 1; transform: translateX(0); }
}

.quote-band {
  margin-top: 56px;
  padding-top: 38px;
  border-top: 1px solid rgba(245,242,236,.22);
}
.quote-band p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-style: normal;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.06;
}
.quote-band span {
  display: block;
  color: var(--red);
  margin-top: 12px;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#team .team-title {
  max-width: 420px;
  font-family: "Anton", sans-serif;
  font-size: clamp(56px, 6.2vw, 80px);
  line-height: 1.02;
  letter-spacing: -1px;
  color: var(--black);
}

#team .team-title span,
#team .team-title strong {
  display: block;
}

#team .team-title span {
  color: var(--black);
  white-space: nowrap;
}

#team .team-title strong {
  color: var(--red);
  font-weight: 400;
}

.people-grid {
  margin-top: 48px;
  border-left: 1px solid var(--line-dark);
  border-top: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.people-grid article,
.people-grid .team-member-card {
  display: block;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: 38px 22px;
  min-height: 234px;
  transition: background-color .24s ease;
}
.people-grid article:hover,
.people-grid .team-member-card:hover {
  background: rgba(235,0,40,.04);
}
.team-member-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  margin: 0 0 24px;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter .24s ease, transform .24s ease;
}
.team-member-card:hover .team-member-card-image {
  filter: none;
  transform: scale(1.02);
}
.people-grid small {
  color: var(--red);
  font-size: 11.5px;
  letter-spacing: 3.226px;
  text-transform: uppercase;
  font-weight: 600;
}
.people-grid h3 {
  margin: 14px 0 8px;
  font-family: "Anton", sans-serif;
  font-size: 48px;
  line-height: 1;
  font-weight: 400;
}
.people-grid h4 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2.8px;
  font-size: 14px;
  font-weight: 500;
}
.people-grid p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 20px;
  color: rgba(10,10,10,.6);
}

.dark-grid {
  border-left-color: rgba(255,255,255,.4);
  border-top-color: rgba(255,255,255,.4);
}
.dark-grid article {
  border-right-color: rgba(255,255,255,.4);
  border-bottom-color: rgba(255,255,255,.4);
}
.dark-grid article:hover { background: rgba(235,0,40,.08); }
.dark-grid h3,
.dark-grid h4 { color: var(--cream); }
.dark-grid p { color: var(--red); }

#sponsors .people-grid article {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
#sponsors .people-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #F5F2EC;
  opacity: 0;
  transition: opacity .28s ease;
  z-index: 0;
}
#sponsors .people-grid article > * {
  position: relative;
  z-index: 1;
  transition: color .28s ease;
}
#sponsors .people-grid article:hover::after {
  opacity: 1;
}
#sponsors .people-grid article:hover h3,
#sponsors .people-grid article:hover h4 {
  color: var(--black);
}
#sponsors .people-grid article:hover p {
  color: rgba(10,10,10,.72);
}

.stack-head {
  margin-bottom: 42px;
}
.stack-head h2 { max-width: 600px; color: var(--cream); }
.partners-head { margin-top: 34px; }

.sponsors-section {
  padding-bottom: 96px;
}
.sponsors-shell {
  display: grid;
  gap: 34px;
}
.live-sponsors-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
}
.live-sponsors-strip:not([hidden]) {
  margin-top: -8px;
}
.live-sponsor-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(245, 242, 236, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: var(--cream);
  font-size: 14px;
  font-weight: 600;
}
.live-sponsor-chip img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: contain;
  object-position: center center;
  padding: 3px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.92);
}
.sponsors-heading h2 {
  max-width: 640px;
  color: var(--cream);
  font-size: clamp(70px, 8vw, 118px);
  line-height: 0.92;
}
.sponsor-feature-card {
  border: 1px solid rgba(245,242,236,.36);
  border-radius: 14px;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  grid-template-rows: auto auto;
  overflow: hidden;
  background: #060606;
  min-height: 0;
  touch-action: pan-y;
  cursor: grab;
}
.sponsor-feature-card.is-dragging {
  cursor: grabbing;
  user-select: none;
}
.sponsor-feature-copy {
  padding: 34px 34px 34px;
}
.tier-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 28px;
  padding: 0 12px;
  background: var(--red);
  color: var(--cream);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.feature-kicker {
  margin: 44px 0 0;
  color: var(--red);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.feature-kicker::after {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  background: var(--red);
  margin-top: 16px;
}
.sponsor-feature-copy h3 {
  margin: 24px 0 0;
  font-family: "Anton", sans-serif;
  font-size: clamp(72px, 6.1vw, 104px);
  line-height: 0.93;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--cream);
  max-width: 380px;
}
.sponsor-feature-copy h3 span {
  display: block;
  color: var(--red);
}
.sponsor-feature-copy h3 .feature-title-secondary {
  margin-top: 6px;
  color: var(--cream);
}
.feature-body {
  margin: 28px 0 0;
  max-width: 390px;
  color: rgba(245,242,236,.86);
  font-size: 18px;
  line-height: 1.42;
}
.feature-carousel-nav {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.feature-carousel-nav button {
  width: 34px;
  height: 4px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: rgba(245,242,236,.22);
  transition: width .24s ease, background-color .24s ease, opacity .24s ease;
}
.feature-carousel-nav button:hover,
.feature-carousel-nav button.is-active {
  width: 54px;
  background: var(--red);
}
.sponsor-feature-visual {
  position: relative;
  padding: 28px 34px 0 0;
  min-height: 470px;
}
.sponsor-feature-photo {
  position: relative;
  width: 380px;
  height: 500px;
  margin: 0 0 0 210px;
  overflow: visible;
  transform: none;
  transform-origin: center center;
}
.sponsor-feature-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #efe8df;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}
.sponsor-feature-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 6%;
  display: block;
  border-radius: 12px;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}
.sponsor-side-benefits {
  position: absolute;
  right: 58px;
  top: 38px;
  width: 174px;
  display: grid;
  gap: 12px;
  padding-top: 0;
  z-index: 3;
}
.sponsor-side-benefits article {
  min-height: 116px;
  padding: 20px 14px 16px 54px;
  border: 1px solid rgba(245,242,236,.16);
  background: #111111;
  position: relative;
  border-radius: 12px;
}
.benefit-icon,
.point-icon {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}
.benefit-icon {
  left: 14px;
  top: 18px;
  width: 26px;
  height: 26px;
}
.benefit-icon svg,
.point-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sponsor-side-benefits strong {
  display: block;
  color: var(--cream);
  font-family: "Anton", sans-serif;
  font-size: 28px;
  line-height: 0.94;
  text-transform: uppercase;
  font-weight: 400;
}
.sponsor-side-benefits p {
  margin: 10px 0 0;
  color: rgba(245,242,236,.62);
  font-size: 10px;
  line-height: 1.35;
}
.sponsor-feature-card[data-carousel-ready="true"] .sponsor-feature-copy,
.sponsor-feature-card[data-carousel-ready="true"] .sponsor-feature-photo,
.sponsor-feature-card[data-carousel-ready="true"] .sponsor-side-benefits article,
.sponsor-feature-card[data-carousel-ready="true"] .feature-inline-tags,
.sponsor-feature-card[data-carousel-ready="true"] .feature-points article {
  will-change: opacity, transform;
}

.sponsor-feature-card[data-carousel-ready="true"] .tier-split-line {
  display: block;
  will-change: transform, opacity, clip-path;
}
.sponsor-feature-card.is-carousel-swapping .sponsor-feature-copy {
  opacity: 0;
  transform: translate3d(-18px, 0, 0);
}
.sponsor-feature-card.is-carousel-swapping .sponsor-feature-photo {
  opacity: 0;
  transform: translate3d(18px, 0, 0) scale(.98);
}
.sponsor-feature-card.is-carousel-swapping .feature-inline-tags,
.sponsor-feature-card.is-carousel-swapping .sponsor-side-benefits article,
.sponsor-feature-card.is-carousel-swapping .feature-points article {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
}
.feature-points {
  grid-column: 1 / -1;
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(245,242,236,.22);
}
.feature-points article {
  min-height: 126px;
  padding: 28px 20px 20px 60px;
  border-right: 1px solid rgba(245,242,236,.22);
  position: relative;
}
.feature-points article:last-child {
  border-right: 0;
}
.point-icon {
  left: 18px;
  top: 28px;
  width: 28px;
  height: 28px;
}
.feature-points strong {
  display: block;
  color: var(--cream);
  font-family: "Anton", sans-serif;
  font-size: 28px;
  line-height: 0.94;
  font-weight: 400;
  text-transform: uppercase;
}
.feature-points p {
  margin: 10px 0 0;
  color: rgba(245,242,236,.56);
  font-size: 10px;
  line-height: 1.35;
}
.feature-inline-tags[hidden] {
  display: none !important;
}
.feature-inline-tags {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 0 34px 28px;
}
.feature-inline-tags > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(245,242,236,.88);
  font-size: 18px;
  line-height: 1.2;
}
.inline-tag-icon {
  width: 18px;
  height: 18px;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.inline-tag-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sponsor-side-benefits article.is-empty,
.feature-points article.is-empty {
  display: none;
}
.sponsor-feature-card[data-tier-layout="voice"] {
  position: relative;
  width: 100%;
  grid-template-columns: 260px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: start;
  border-radius: 14px;
}
.sponsor-feature-card[data-tier-layout="voice"] .sponsor-feature-copy {
  grid-column: 2;
  padding: 34px 34px 36px 42px;
  max-width: 520px;
}
.sponsor-feature-card[data-tier-layout="voice"] .tier-badge {
  position: absolute;
  left: 28px;
  top: 28px;
  z-index: 5;
  min-width: 72px;
  min-height: 30px;
  font-size: 10px;
}
.sponsor-feature-card[data-tier-layout="voice"] .feature-kicker {
  margin-top: 28px;
  font-size: 11px;
  letter-spacing: 1.3px;
}
.sponsor-feature-card[data-tier-layout="voice"] .sponsor-feature-copy h3 {
  margin-top: 18px;
  max-width: 360px;
  font-size: clamp(78px, 6.4vw, 112px);
  line-height: 0.88;
}
.sponsor-feature-card[data-tier-layout="voice"] .feature-body {
  margin-top: 22px;
  max-width: 460px;
  font-size: 18px;
  line-height: 1.35;
}
.sponsor-feature-card[data-tier-layout="voice"] .feature-carousel-nav {
  margin-top: 24px;
}
.sponsor-feature-card[data-tier-layout="voice"] .feature-carousel-nav button {
  width: 34px;
  height: 4px;
}
.sponsor-feature-card[data-tier-layout="voice"] .feature-carousel-nav button:hover,
.sponsor-feature-card[data-tier-layout="voice"] .feature-carousel-nav button.is-active {
  width: 54px;
}
.sponsor-feature-card[data-tier-layout="voice"] .sponsor-feature-visual {
  grid-column: 1;
  grid-row: 1 / span 2;
  padding: 28px 0 0 28px;
  min-height: 0;
}
.sponsor-feature-card[data-tier-layout="voice"] .sponsor-feature-photo {
  width: 210px;
  height: 290px;
  margin: 0;
}
.sponsor-feature-card[data-tier-layout="voice"] .sponsor-feature-photo::before {
  border-radius: 6px;
  box-shadow: none;
  background: linear-gradient(180deg, rgba(35,35,35,.95), rgba(8,8,8,.96));
  clip-path: polygon(0 0, 82% 0, 100% 100%, 0 100%);
}
.sponsor-feature-card[data-tier-layout="voice"] .sponsor-feature-photo::after {
  content: "";
  position: absolute;
  top: -4px;
  right: 16px;
  width: 2px;
  height: calc(100% + 8px);
  background: var(--red);
  transform: skewX(-14deg);
  transform-origin: top;
  z-index: 2;
}
.sponsor-feature-card[data-tier-layout="voice"] .sponsor-feature-photo img {
  border-radius: 6px;
  clip-path: polygon(0 0, 82% 0, 100% 100%, 0 100%);
  object-position: 62% 16%;
  filter: grayscale(1) brightness(.18) contrast(1.24);
}
.sponsor-feature-card[data-tier-layout="voice"] .sponsor-side-benefits,
.sponsor-feature-card[data-tier-layout="voice"] .feature-inline-tags {
  display: none;
}
.sponsor-feature-card[data-tier-layout="voice"] .feature-points {
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0;
}
.sponsor-feature-card[data-tier-layout="voice"] .feature-points article {
  min-height: 126px;
  padding: 34px 22px 22px 70px;
}
.sponsor-feature-card[data-tier-layout="voice"] .feature-points strong {
  font-family: "Anton", sans-serif;
  font-size: 28px;
  line-height: 0.98;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.sponsor-feature-card[data-tier-layout="voice"] .feature-points p {
  margin-top: 10px;
  font-size: 10px;
  line-height: 1.35;
  color: rgba(245,242,236,.52);
}
.sponsor-feature-card[data-tier-layout="voice"] .point-icon {
  top: 34px;
  left: 26px;
  width: 28px;
  height: 28px;
}
.sponsor-feature-card[data-tier-layout="voice"] .feature-points article:nth-child(3) {
  border-right: 0;
}
.sponsor-feature-card[data-tier-layout="friend"] {
  position: relative;
  width: 100%;
  grid-template-columns: 522px 560px 1fr;
  grid-template-rows: auto minmax(70px, auto);
  align-items: center;
  border-radius: 14px;
  min-height: 378px;
}
.sponsor-feature-card[data-tier-layout="friend"] .sponsor-feature-copy {
  grid-column: 2;
  padding: 22px 0 14px 0;
  min-width: 0;
}
.sponsor-feature-card[data-tier-layout="friend"] .tier-badge {
  position: absolute;
  left: 20px;
  top: 23px;
  z-index: 5;
  min-width: 94px;
  min-height: 31px;
  padding: 0 12px;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  border-radius: 4px;
}
.sponsor-feature-card[data-tier-layout="friend"] .feature-kicker {
  margin-top: 0;
  font-size: 16px;
  letter-spacing: 0;
  font-weight: 600;
}
.sponsor-feature-card[data-tier-layout="friend"] .feature-kicker::after {
  display: block;
  width: 52px;
  height: 2px;
  margin-top: 12px;
}
.sponsor-feature-card[data-tier-layout="friend"] .sponsor-feature-copy h3 {
  margin-top: 12px;
  max-width: 410px;
  font-size: clamp(86px, 7vw, 108px);
  line-height: 0.84;
  letter-spacing: 0;
}
.sponsor-feature-card[data-tier-layout="friend"] .sponsor-feature-copy h3 .feature-title-secondary {
  margin-top: 8px;
}
.sponsor-feature-card[data-tier-layout="friend"] .feature-body {
  margin-top: 20px;
  max-width: 430px;
  font-size: 24px;
  line-height: 1.16;
}
.sponsor-feature-card[data-tier-layout="friend"] .feature-carousel-nav {
  display: none;
}
.sponsor-feature-card[data-tier-layout="friend"] .sponsor-feature-visual {
  grid-column: 1;
  grid-row: 1 / span 2;
  padding: 69px 0 66px 217px;
  min-height: 0;
  display: flex;
  align-items: center;
}
.sponsor-feature-card[data-tier-layout="friend"] .sponsor-feature-photo {
  width: 224px;
  height: 224px;
  margin: 0;
  overflow: visible;
  display: block;
}
.sponsor-feature-card[data-tier-layout="friend"] .sponsor-feature-photo::before {
  border-radius: 50%;
  box-shadow: none;
  background: transparent;
  border: 4px solid var(--red);
  clip-path: none;
}
.sponsor-feature-card[data-tier-layout="friend"] .sponsor-feature-photo::after {
  content: "❤";
  position: absolute;
  right: -6px;
  bottom: 21px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  border: 5px solid #0a0a0a;
  color: var(--cream);
  font-size: 27px;
  line-height: 38px;
  text-align: center;
}
.sponsor-feature-card[data-tier-layout="friend"] .sponsor-feature-photo img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  clip-path: none;
  object-fit: cover;
  object-position: center 18%;
}
.sponsor-feature-card[data-tier-layout="friend"] .sponsor-side-benefits,
.sponsor-feature-card[data-tier-layout="friend"] .feature-points {
  display: none;
}
.sponsor-feature-card[data-tier-layout="friend"] .feature-inline-tags {
  grid-column: 2;
  align-self: start;
  padding: 3px 0 39px 0;
  gap: 86px;
  flex-wrap: wrap;
}
.sponsor-feature-card[data-tier-layout="friend"] .feature-inline-tags > span {
  min-width: max-content;
  font-size: 24px;
  line-height: 1.1;
}
.sponsor-feature-card[data-tier-layout="friend"] .inline-tag-icon {
  width: 26px;
  height: 26px;
}

.sponsor-showcase {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 240ms ease, transform 240ms ease;
}

.sponsor-showcase.is-live {
  opacity: 1;
  transform: translateY(0);
}

.carousel-hint-anchor {
  position: relative;
}

.carousel-gesture-hint {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(245, 242, 236, 0.24);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  color: var(--cream);
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  opacity: 0.96;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.carousel-gesture-hint::before {
  content: "↔";
  margin-right: 8px;
  font-size: 11px;
  letter-spacing: 0;
}

.carousel-gesture-hint.is-hidden {
  opacity: 0;
  transform: translateY(-4px);
}

.sponsor-carousel-viewport {
  overflow: hidden;
  width: 100%;
  contain: paint;
  border-radius: 24px;
  touch-action: pan-y;
  cursor: grab;
}

.sponsor-carousel-viewport.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.sponsor-carousel-track {
  display: flex;
  align-items: stretch;
  width: 100%;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.sponsor-carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
  opacity: 0;
  visibility: hidden;
  backface-visibility: hidden;
  transition: opacity 320ms ease;
}

.sponsor-carousel-slide.is-active,
.sponsor-carousel-slide[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.sponsor-carousel-slide[aria-hidden="true"] {
  pointer-events: none;
}

.sponsor-carousel-slide.profile-card-link {
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.sponsor-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.sponsor-carousel-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(245, 242, 236, 0.34);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, opacity 180ms ease;
}

.sponsor-carousel-dots button:hover,
.sponsor-carousel-dots button.is-active {
  background: var(--red);
  transform: scale(1.3);
}

.sponsor-carousel-arrows {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
}

.sponsor-carousel-arrows button {
  min-width: 148px;
  border: 1px solid rgba(245, 242, 236, 0.68);
  border-radius: 999px;
  padding: 12px 18px;
  background: rgba(0, 0, 0, 0.18);
  color: var(--cream);
  cursor: pointer;
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.sponsor-carousel-arrows button:hover,
.sponsor-carousel-arrows button:focus-visible {
  border-color: var(--red);
  background: var(--red);
  color: var(--cream);
  transform: translateY(-2px);
  outline: none;
}

.sponsor-carousel:focus-visible {
  outline: none;
}

.sponsor-showcase-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  width: 100%;
  min-height: 720px;
  aspect-ratio: 16 / 9;
  padding: clamp(24px, 2.8vw, 34px);
  border: 0;
  border-radius: 24px;
  background: #000;
  color: var(--cream);
  overflow: hidden;
  text-decoration: none;
}

.sponsor-showcase-card::before,
.sponsor-showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}

.sponsor-showcase-card::before {
  background:
    linear-gradient(90deg, rgba(245, 242, 236, 0.9), transparent) 18px 0 / 190px 1px no-repeat,
    linear-gradient(180deg, rgba(245, 242, 236, 0.9), transparent) 0 18px / 1px 190px no-repeat;
}

.sponsor-showcase-card::after {
  background:
    linear-gradient(270deg, rgba(245, 242, 236, 0.6), transparent) calc(100% - 18px) 0 / 150px 1px no-repeat,
    linear-gradient(90deg, rgba(245, 242, 236, 0.5), transparent) 18px 100% / 170px 1px no-repeat;
}

.sponsor-showcase-card > * {
  position: relative;
  z-index: 2;
}

.sponsor-showcase-card .sponsor-showcase-copy h3 span:last-child,
.sponsor-showcase-card .showcase-description,
.sponsor-showcase-card .sponsor-showcase-features strong,
.sponsor-showcase-card .sponsor-showcase-features p,
.sponsor-showcase-card .friend-inline-points strong {
  color: var(--cream);
}

.sponsor-showcase-card .sponsor-showcase-features {
  border-top-color: rgba(245, 242, 236, 0.16);
}

.sponsor-showcase-card .sponsor-showcase-features > div {
  border-right-color: rgba(245, 242, 236, 0.12);
}

.sponsor-showcase-body {
  display: grid;
  align-items: center;
  gap: clamp(28px, 5vw, 78px);
  min-height: 0;
}

.sponsor-showcase-body--pillar {
  grid-template-columns: minmax(0, 0.92fr) minmax(370px, 1.08fr);
}

.sponsor-showcase-body--voice {
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
}

.sponsor-showcase-body--friend {
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
}

.sponsor-showcase-copy {
  max-width: 580px;
}

.showcase-kicker {
  margin-bottom: 16px;
}

.showcase-label {
  margin: 0;
  color: var(--red);
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.showcase-label::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 18px;
  background: var(--red);
}

.sponsor-showcase-copy h3 {
  margin: 14px 0 18px;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(74px, 8vw, 128px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.sponsor-showcase-copy h3 span {
  display: block;
  color: var(--red);
}

.sponsor-showcase-copy h3 span:last-child {
  color: var(--cream);
}

.showcase-description {
  width: min(520px, 100%);
  margin: 0;
  font-family: "Outfit", "Inter", sans-serif;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.28;
}

.sponsor-showcase-card--pillar .showcase-description {
  width: min(500px, 100%);
  font-size: clamp(17px, 1.5vw, 24px);
  line-height: 1.14;
}

.sponsor-showcase-visual {
  position: relative;
}

.sponsor-showcase-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sponsor-showcase-visual--pillar {
  min-height: 560px;
  overflow: hidden;
}

.sponsor-showcase-visual--pillar img {
  position: absolute;
  right: 164px;
  bottom: 52px;
  width: min(100%, 370px);
  height: calc(100% - 128px);
  object-fit: cover;
  border-radius: 6px;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
  filter: saturate(0.96);
}

.showcase-benefits {
  position: absolute;
  top: 30px;
  right: 0;
  width: 240px;
  background: #111;
  border-radius: 8px;
  overflow: hidden;
}

.showcase-benefits > div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(245, 242, 236, 0.16);
}

.showcase-benefits > div:last-child {
  border-bottom: 0;
}

.showcase-benefits strong {
  display: block;
  font-family: "Anton", Impact, sans-serif;
  font-size: 30px;
  line-height: 0.92;
  font-weight: 400;
  text-transform: uppercase;
}

.showcase-benefits p {
  grid-column: 2;
  margin: 8px 0 0;
  color: rgba(245, 242, 236, 0.74);
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.25;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: var(--red);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sponsor-showcase-features {
  display: grid;
  margin-top: 30px;
  border-top: 1px solid rgba(245, 242, 236, 0.16);
}

.sponsor-showcase-features--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sponsor-showcase-features--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sponsor-showcase-features--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 0;
  margin-top: 22px;
  gap: 54px;
}

.sponsor-showcase-features > div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
  padding: 20px 26px 18px;
  border-right: 1px solid rgba(245, 242, 236, 0.14);
}

.sponsor-showcase-features > div:last-child {
  border-right: 0;
}

.sponsor-showcase-features strong {
  display: block;
  color: var(--cream);
  font-family: "Anton", Impact, sans-serif;
  font-size: 27px;
  line-height: 0.92;
  font-weight: 400;
  text-transform: uppercase;
}

.sponsor-showcase-features p {
  grid-column: 2;
  margin: 8px 0 0;
  color: rgba(245, 242, 236, 0.76);
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.25;
}

.sponsor-showcase-body--voice .sponsor-showcase-visual {
  display: flex;
  align-items: center;
  min-height: 370px;
}

.sponsor-showcase-visual--voice img {
  width: min(100%, 370px);
  height: min(48vw, 485px);
  object-fit: cover;
  border-radius: 18px 0 18px 18px;
  clip-path: polygon(0 0, 90% 0, 76% 100%, 0 100%);
  filter: none;
}

.showcase-rule {
  width: 120px;
  height: 4px;
  margin: 14px 0 24px;
  background: var(--cream);
}

.sponsor-showcase-visual--friend {
  display: flex;
  align-items: center;
  justify-content: center;
}

.friend-avatar {
  position: relative;
  width: 256px;
  height: 256px;
  border: 4px solid var(--red);
  border-radius: 50%;
  overflow: hidden;
  background: #1a1a1a;
}

.friend-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.friend-heart {
  position: absolute;
  right: -7px;
  bottom: 10px;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 7px #000;
}

.friend-heart svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--cream);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.friend-inline-points {
  display: flex;
  align-items: center;
  gap: clamp(26px, 5vw, 70px);
  margin-top: 26px;
}

.friend-inline-points > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.friend-inline-points strong {
  color: var(--cream);
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.tier-showcase {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}
.tier-voice-card,
.tier-friend-card {
  border: 1px solid rgba(245,242,236,.28);
  border-radius: 14px;
  background: #080808;
  overflow: hidden;
  position: relative;
}
.tier-voice-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  grid-template-rows: auto auto;
  min-height: 300px;
}
.tier-voice-media {
  grid-row: 1 / span 2;
  position: relative;
  padding: 18px 0 0 10px;
}
.tier-chip {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 24px;
  padding: 0 10px;
  background: var(--red);
  color: var(--cream);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
}
.tier-voice-image {
  width: 140px;
  height: 190px;
  margin-top: 14px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.14), rgba(0,0,0,.44)),
    url("../images/speaker-elena-portrait.jpg");
  background-size: cover;
  background-position: center 24%;
  filter: grayscale(1);
  clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
  position: relative;
}
.tier-voice-image::after {
  content: "";
  position: absolute;
  top: 0;
  right: 16px;
  width: 2px;
  height: 100%;
  background: var(--red);
  transform: skewX(-14deg);
}
.tier-voice-copy {
  padding: 22px 28px 18px 10px;
}
.tier-voice-kicker {
  margin: 0;
  color: var(--red);
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.tier-voice-kicker::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  margin-top: 10px;
  background: var(--red);
}
.tier-voice-copy h3,
.tier-friend-copy h3 {
  margin: 12px 0 0;
  font-family: "Anton", sans-serif;
  font-size: clamp(52px, 6vw, 82px);
  line-height: 0.88;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--cream);
}
.tier-voice-copy h3 span,
.tier-friend-copy h3 span {
  display: block;
  color: var(--red);
}
.tier-voice-copy p:last-child,
.tier-friend-copy > p:last-of-type {
  margin: 14px 0 0;
  max-width: 420px;
  color: rgba(245,242,236,.84);
  font-size: 18px;
  line-height: 1.35;
}
.tier-voice-points {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(245,242,236,.16);
}
.tier-voice-points article {
  min-height: 94px;
  padding: 20px 18px 16px 54px;
  position: relative;
  border-right: 1px solid rgba(245,242,236,.16);
}
.tier-voice-points article:last-child {
  border-right: 0;
}
.tier-voice-points strong {
  display: block;
  color: var(--cream);
  font-family: "Anton", sans-serif;
  font-size: 26px;
  line-height: 0.92;
  font-weight: 400;
}
.tier-voice-points p {
  margin: 8px 0 0;
  color: rgba(245,242,236,.58);
  font-size: 10px;
  line-height: 1.35;
}
.tier-voice-points .point-icon {
  left: 18px;
  top: 22px;
  width: 24px;
  height: 24px;
}

.tier-friend-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 20px 18px 22px;
}
.tier-friend-card > .tier-chip {
  position: absolute;
  left: 10px;
  top: 10px;
}
.tier-friend-avatar {
  position: relative;
  width: 102px;
  height: 102px;
  margin-top: 10px;
  border: 3px solid var(--red);
  border-radius: 50%;
  overflow: hidden;
}
.tier-friend-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 14%;
  filter: grayscale(.15);
}
.tier-friend-heart {
  position: absolute;
  right: -6px;
  bottom: 8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tier-friend-heart svg,
.tier-friend-tags svg {
  width: 14px;
  height: 14px;
  stroke: var(--cream);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tier-friend-copy {
  padding-top: 8px;
}
.tier-friend-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 18px;
}
.tier-friend-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(245,242,236,.84);
  font-size: 18px;
  line-height: 1.2;
}
.tier-friend-tags span svg {
  stroke: var(--red);
}

/* Tier motion borrowed from the reference style: subtle travel, not flashy loops. */
.sponsor-feature-card,
.tier-voice-card,
.tier-friend-card {
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.sponsor-feature-card:hover,
.tier-voice-card:hover,
.tier-friend-card:hover {
  transform: translateY(-4px);
  border-color: rgba(235,0,40,.46);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}
.tier-voice-card .tier-voice-image,
.tier-friend-avatar img {
  transition: transform .45s ease, filter .45s ease;
}
.tier-voice-card:hover .tier-voice-image,
.tier-friend-card:hover .tier-friend-avatar img {
  transform: scale(1.03);
  filter: grayscale(0);
}
.sponsor-side-benefits article,
.feature-points article,
.feature-inline-tags > span,
.tier-voice-points article {
  transition: background-color .3s ease, transform .3s ease;
}
.sponsor-feature-card:hover .sponsor-side-benefits article,
.sponsor-feature-card:hover .feature-points article,
.sponsor-feature-card:hover .feature-inline-tags > span,
.tier-voice-card:hover .tier-voice-points article {
  background-color: rgba(255,255,255,.03);
}

/* Figma-style section motion: composed pieces slide independently into place. */
.speaker-spotlight .speaker-copy,
.speaker-spotlight .speaker-photo-panel,
.sponsor-feature-card .sponsor-feature-copy,
.sponsor-feature-card .sponsor-feature-photo,
.sponsor-feature-card .sponsor-side-benefits article,
.sponsor-feature-card .feature-inline-tags,
.sponsor-feature-card .feature-points article,
.tier-voice-card .tier-voice-media,
.tier-voice-card .tier-voice-copy,
.tier-voice-card .tier-voice-points article,
.tier-friend-card .tier-friend-avatar,
.tier-friend-card .tier-friend-copy {
  opacity: 0;
  transition:
    opacity .7s cubic-bezier(0.22, 1, 0.36, 1),
    transform .7s cubic-bezier(0.22, 1, 0.36, 1);
}
.speaker-spotlight .speaker-copy,
.sponsor-feature-card .sponsor-feature-copy,
.tier-voice-card .tier-voice-copy,
.tier-friend-card .tier-friend-copy {
  transform: translate3d(-28px, 0, 0);
}
.speaker-spotlight .speaker-photo-panel,
.sponsor-feature-card .sponsor-feature-photo,
.tier-voice-card .tier-voice-media,
.tier-friend-card .tier-friend-avatar {
  transform: translate3d(28px, 0, 0) scale(.985);
}
.sponsor-feature-card .sponsor-side-benefits article,
.sponsor-feature-card .feature-inline-tags,
.sponsor-feature-card .feature-points article,
.tier-voice-card .tier-voice-points article {
  transform: translate3d(0, 22px, 0);
}
.speaker-spotlight.in-view .speaker-copy,
.speaker-spotlight.in-view .speaker-photo-panel,
.sponsor-feature-card.in-view .sponsor-feature-copy,
.sponsor-feature-card.in-view .sponsor-feature-photo,
.sponsor-feature-card.in-view .sponsor-side-benefits article,
.sponsor-feature-card.in-view .feature-inline-tags,
.sponsor-feature-card.in-view .feature-points article,
.tier-voice-card.in-view .tier-voice-media,
.tier-voice-card.in-view .tier-voice-copy,
.tier-voice-card.in-view .tier-voice-points article,
.tier-friend-card.in-view .tier-friend-avatar,
.tier-friend-card.in-view .tier-friend-copy {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}
.sponsor-feature-card.in-view .sponsor-side-benefits article:nth-child(1),
.sponsor-feature-card.in-view .feature-points article:nth-child(1),
.tier-voice-card.in-view .tier-voice-points article:nth-child(1) {
  transition-delay: 80ms;
}
.sponsor-feature-card.in-view .sponsor-side-benefits article:nth-child(2),
.sponsor-feature-card.in-view .feature-points article:nth-child(2),
.tier-voice-card.in-view .tier-voice-points article:nth-child(2) {
  transition-delay: 150ms;
}
.sponsor-feature-card.in-view .sponsor-side-benefits article:nth-child(3),
.sponsor-feature-card.in-view .feature-points article:nth-child(3),
.tier-voice-card.in-view .tier-voice-points article:nth-child(3) {
  transition-delay: 220ms;
}
.sponsor-feature-card.in-view .feature-points article:nth-child(4) {
  transition-delay: 290ms;
}

.sponsor-tiers-section {
  margin-top: 72px;
}
.sponsor-tiers-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 40px;
}
.sponsor-tiers-head .eyebrow {
  position: relative;
  padding-top: 8px;
  margin: 0;
}
.sponsor-tiers-head .eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 44px;
  height: 1px;
  background: var(--red);
}
.sponsor-pricing-grid {
  display: grid;
  grid-template-columns: 1.04fr 1fr 1fr;
  gap: 10px;
  align-items: stretch;
}
.pricing-card {
  position: relative;
  min-height: 629px;
  padding: 41px;
  border: 1px solid rgba(245,242,236,.2);
  background: #000;
  color: var(--cream);
}
.pricing-card-featured {
  border-color: var(--red);
  color: var(--cream);
  box-shadow: 0 0 32px rgba(235,0,40,.2);
}
.pricing-featured-pill {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 123px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.pricing-card h3 {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: 72px;
  line-height: 1;
  color: rgba(245,242,236,.35);
}
.pricing-card-featured h3 {
  color: var(--red);
  font-size: 76px;
}
.pricing-card h4 {
  margin: 32px 0 0;
  color: var(--cream);
  font-size: 36px;
  line-height: 1.1;
  font-weight: 700;
}
.pricing-card-featured h4 {
  color: var(--red);
  margin-top: 18px;
}
.pricing-price {
  margin: 18px 0 0;
  color: var(--cream);
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
}
.pricing-card-featured .pricing-price {
  color: var(--black);
  font-size: 50px;
}
.pricing-card ul {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  gap: 17px;
}
.pricing-card li {
  position: relative;
  padding-left: 34px;
  color: rgba(245,242,236,.9);
  font-size: 15px;
  line-height: 1.55;
}
.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 19px;
  height: 19px;
  border: 1px solid #5c5c5c;
  border-radius: 50%;
}
.pricing-card li.is-included::before {
  content: "✓";
  border-color: transparent;
  color: rgba(245,242,236,.72);
  font-size: 16px;
  line-height: 18px;
  text-align: center;
}

#sponsors .pricing-card {
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

#sponsors .pricing-card:hover,
#sponsors .pricing-card:focus-within {
  border-color: var(--red);
  background-color: var(--cream);
  background-image:
    var(--cream-noise-tone),
    var(--cream-noise);
  background-size: auto, 1200px auto;
  background-position: center, 0 0;
  color: var(--black);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.24) inset,
    0 18px 40px rgba(0, 0, 0, 0.28);
  transform: translateY(-4px);
}

#sponsors .pricing-card:hover h3,
#sponsors .pricing-card:focus-within h3,
#sponsors .pricing-card:hover h4,
#sponsors .pricing-card:focus-within h4 {
  color: var(--red);
}

#sponsors .pricing-card:hover .pricing-price,
#sponsors .pricing-card:focus-within .pricing-price {
  color: var(--black);
}

#sponsors .pricing-card:hover li,
#sponsors .pricing-card:focus-within li {
  color: rgba(10, 10, 10, 0.9);
}

#sponsors .pricing-card:hover li::before,
#sponsors .pricing-card:focus-within li::before {
  border-color: var(--red);
  color: var(--red);
}

#sponsors .pricing-card:hover li.is-included::before,
#sponsors .pricing-card:focus-within li.is-included::before {
  border-color: transparent;
  color: var(--red);
}

#sponsors .pricing-card-featured:hover,
#sponsors .pricing-card-featured:focus-within {
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.24) inset,
    0 18px 40px rgba(0, 0, 0, 0.22);
}

.partner-feature {
  display: grid;
  grid-template-columns: minmax(0, 616px) minmax(360px, 616px);
  gap: 64px 24px;
  align-items: end;
  margin-top: 96px;
}
.partner-feature-heading {
  grid-column: 1 / -1;
}
.partner-feature-heading h2 {
  width: fit-content;
  max-width: min(760px, 100%);
  color: var(--cream);
  font-size: clamp(64px, 5.7vw, 72px);
  line-height: 0.9;
}
.partner-feature-heading h2 > .partner-line {
  display: block;
  color: var(--cream);
  line-height: 0.86;
  white-space: nowrap;
}
.partner-feature-heading h2 > .partner-line--middle {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.partner-feature-heading h2 > .partner-line--middle span {
  color: var(--cream);
}
.partner-feature-heading h2 strong {
  color: var(--red);
}
.partner-profile {
  margin-top: -80px;
  max-width: 616px;
}
.partner-tier {
  margin: 0;
  color: var(--red);
  font-family: "Anton", sans-serif;
  font-size: clamp(86px, 9vw, 128px);
  line-height: 1;
}
.partner-profile h3 {
  margin: 24px 0 0;
  font-size: clamp(68px, 7.4vw, 96px);
  line-height: 1;
  font-weight: 300;
  color: var(--cream);
}
.partner-profile h4 {
  margin: 38px 0 0;
  padding-bottom: 8px;
  width: max-content;
  border-bottom: 1px solid var(--red);
  font-size: clamp(26px, 2.8vw, 35px);
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: .75px;
  color: rgba(245,242,236,.88);
}
.partner-profile p:last-child {
  margin: 16px 0 0;
  max-width: 561px;
  color: rgba(245,242,236,.86);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.4;
}
.partner-feature-photo {
  position: relative;
  justify-self: end;
  width: min(100%, 616px);
  height: 660px;
  overflow: hidden;
  border-radius: 24px;
  background: transparent;
}
.partner-feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: scale(1.12);
  transform-origin: center center;
}

.partner-feature-carousel {
  grid-column: 1 / -1;
  display: grid;
  gap: 18px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 240ms ease, transform 240ms ease;
}

.partner-feature-carousel.is-live {
  opacity: 1;
  transform: translateY(0);
}

.partner-feature-carousel-viewport {
  overflow: hidden;
  width: 100%;
  contain: paint;
  touch-action: pan-y;
  cursor: grab;
}

.partner-feature-carousel-viewport.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.partner-feature-carousel-track {
  display: flex;
  align-items: stretch;
  width: 100%;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.partner-feature-slide {
  flex: 0 0 100%;
  min-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 616px) minmax(360px, 616px);
  gap: 64px 24px;
  align-items: end;
  opacity: 0;
  visibility: hidden;
  backface-visibility: hidden;
  transition: opacity 320ms ease, transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.partner-feature-slide.is-active,
.partner-feature-slide[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.partner-feature-slide[aria-hidden="true"] {
  pointer-events: none;
}

.partner-feature-slide.profile-card-link {
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.partner-feature-controls {
  grid-column: 1 / -1;
  display: grid;
  gap: 14px;
}

.partner-feature-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.partner-feature-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(245, 242, 236, 0.34);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, opacity 180ms ease;
}

.partner-feature-dots button:hover,
.partner-feature-dots button.is-active {
  background: var(--red);
  transform: scale(1.3);
}

.partner-feature-arrows {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.partner-feature-arrows button {
  min-width: 148px;
  border: 1px solid rgba(245, 242, 236, 0.68);
  border-radius: 999px;
  padding: 12px 18px;
  background: rgba(0, 0, 0, 0.18);
  color: var(--cream);
  cursor: pointer;
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.partner-feature-arrows button:hover,
.partner-feature-arrows button:focus-visible {
  border-color: var(--red);
  background: var(--red);
  color: var(--cream);
  transform: translateY(-2px);
  outline: none;
}

.support-grid {
  margin-top: 26px;
  border-left: 1px solid rgba(255,255,255,.18);
  border-top: 1px solid rgba(255,255,255,.18);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.support-grid article {
  border-right: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
  padding: 40px;
}
.support-grid small {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 11.5px;
  font-weight: 600;
}
.support-grid h3 {
  margin: 10px 0 4px;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: 60px;
  line-height: 1;
  color: var(--cream);
}
.support-grid h4 {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: 30px;
  color: var(--cream);
}
.support-grid ul {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}
.support-grid li {
  margin-bottom: 8px;
  color: var(--cream);
  font-size: 14px;
  line-height: 22.75px;
}
.support-grid li::before { content: "- "; color: var(--red); }

.sponsor-end {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.sponsor-end p {
  margin: 0;
  color: var(--cream);
  font-size: 14px;
  line-height: 20px;
}
.sponsor-end .btn-outline-light {
  background: #000;
  color: var(--cream);
  border-color: rgba(245,242,236,.85);
  padding: 13px 24px;
  font-size: 10px;
  letter-spacing: 3px;
}
.sponsor-end .btn-outline-light:hover {
  background: var(--red);
  border-color: var(--red);
}

.organizer-section {
  border-top: 1px solid rgba(10, 10, 10, 0.1);
}
.organizer-grid {
  display: grid;
  grid-template-columns: 344px 1fr;
  gap: 64px;
  align-items: start;
}
.organizer-right {
  max-width: 780px;
}
.organizer-left .eyebrow {
  position: relative;
  margin-bottom: 14px;
}
.organizer-left .eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: -8px;
  width: 229px;
  height: 1px;
  background: var(--red);
}
.organizer-card {
  width: 344px;
  height: 440px;
  border: 1px solid rgba(10, 10, 10, 0.2);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(148deg, rgba(108, 9, 20, 0.95) 0%, rgba(17, 19, 24, 0.97) 45%, rgba(8, 10, 14, 1) 100%);
}
.organizer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(145deg, rgba(255,255,255,0.03) 0 2px, rgba(255,255,255,0) 2px 14px);
  mix-blend-mode: soft-light;
  opacity: 0.6;
}
.organizer-head {
  position: absolute;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background: #cbc8c8;
  top: 86px;
  left: 105px;
  z-index: 2;
}
.organizer-hair {
  position: absolute;
  width: 126px;
  height: 58px;
  top: 86px;
  left: 105px;
  background: #8b7d82;
  border-radius: 60px 60px 28px 28px;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 86% 84%, 68% 80%, 50% 83%, 33% 90%, 18% 86%, 0 70%);
  z-index: 3;
}
.organizer-body {
  position: absolute;
  width: 220px;
  height: 230px;
  border-radius: 55% 55% 0 0;
  background: #cbc8c8;
  bottom: -1px;
  left: 81px;
  z-index: 2;
}
.organizer-baseline {
  position: absolute;
  left: 16px;
  right: 10px;
  bottom: 14px;
  z-index: 4;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  column-gap: 14px;
}
.organizer-baseline h3 {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-size: 58px;
  line-height: 0.9;
  color: #f3f2ee;
  font-weight: 400;
}
.organizer-baseline p {
  margin: 0;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  line-height: 1;
  padding-bottom: 7pâ€¦1160 tokens truncatedâ€¦ba(245,242,236,.5);
  font-size: 8px;
  letter-spacing: 4.4px;
  text-transform: uppercase;
  padding-top: 17px;
}
.ticket-meta p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 9px;
  height: 9px;
  background-repeat: no-repeat;
  background-size: 9px 9px;
}
.ticket-meta p::after {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 34px;
  height: 1px;
  background: rgba(245, 242, 236, 0.4);
}
.ticket-meta article:nth-child(1) p::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Crect x='1.2' y='2.1' width='7.6' height='6.7' rx='1' stroke='%23EB0028' stroke-width='1'/%3E%3Cpath d='M3 1v2M7 1v2M1.2 4.2h7.6' stroke='%23EB0028' stroke-width='1'/%3E%3C/svg%3E");
}
.ticket-meta article:nth-child(2) p::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Ccircle cx='5' cy='5' r='3.7' stroke='%23EB0028' stroke-width='1'/%3E%3Cpath d='M5 2.8v2.4l1.7 1' stroke='%23EB0028' stroke-width='1' stroke-linecap='round'/%3E%3C/svg%3E");
}
.ticket-meta article:nth-child(3) p::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M5 8.9c1.8-2.2 2.8-3.5 2.8-4.8A2.8 2.8 0 0 0 5 1.3 2.8 2.8 0 0 0 2.2 4.1c0 1.3 1 2.6 2.8 4.8Z' stroke='%23EB0028' stroke-width='1'/%3E%3Ccircle cx='5' cy='4.2' r='1' stroke='%23EB0028' stroke-width='1'/%3E%3C/svg%3E");
}
.ticket-meta h4 {
  margin: 6px 0 0;
  color: var(--cream);
  font-family: "Anton", sans-serif;
  font-size: clamp(20px, 1.95vw, 30px);
  line-height: .9;
  font-weight: 400;
  letter-spacing: -0.08px;
  white-space: nowrap;
}
.tickets-wrap > div > small {
  display: block;
  margin-top: 18px;
  color: rgba(245,242,236,.6);
  font-size: 11px;
  line-height: 1.45;
  max-width: 560px;
}

.ticket-card {
  background-color: var(--cream);
  background-image:
    var(--cream-noise-tone),
    var(--cream-noise);
  background-size: auto, 1200px auto;
  background-position: center, 0 0;
  color: var(--black);
  border: 1px solid rgba(245,242,236,.1);
  max-width: 560px;
}
.ticket-card header {
  border-bottom: 1px solid rgba(10,10,10,.12);
  display: flex;
  justify-content: space-between;
  padding: 14px 22px;
}
.ticket-card header p {
  position: relative;
  display: inline-block;
  margin: 0;
  color: var(--red);
  letter-spacing: 3.4px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  padding-top: 9px;
}
.ticket-card header p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 116px;
  height: 1px;
  background: rgba(235, 0, 40, 0.65);
}
.ticket-card header span {
  color: rgba(10,10,10,.5);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.ticket-card article {
  border-bottom: 1px solid rgba(10,10,10,.1);
  padding: 16px 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "meta price"
    "meta unit";
  column-gap: 16px;
}
.ticket-card article small {
  position: relative;
  display: inline-block;
  color: var(--red);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  padding-top: 9px;
}
.ticket-card article small::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 42px;
  height: 1px;
  background: rgba(235, 0, 40, 0.65);
}
.ticket-card article h3 {
  margin: 5px 0 3px;
  font-family: "Anton", sans-serif;
  font-size: clamp(34px, 2.9vw, 44px);
  line-height: 1;
  font-weight: 400;
}
.ticket-card article p { margin: 0; color: rgba(10,10,10,.6); font-size: 12px; line-height: 1.45; }
.ticket-card article strong {
  grid-area: price;
  align-self: end;
  font-family: "Anton", sans-serif;
  font-size: clamp(42px, 3.4vw, 56px);
  line-height: 1;
  font-weight: 400;
}
.ticket-card article span {
  grid-area: unit;
  justify-self: end;
  text-transform: uppercase;
  letter-spacing: 2.8px;
  font-size: 9px;
  color: rgba(10,10,10,.4);
}
.ticket-card .btn {
  margin: 14px 22px 10px;
  padding: 13px 16px;
  font-size: 10px;
  letter-spacing: 2.75px;
  width: calc(100% - 44px);
  max-width: none;
}
.ticket-btn::after {
  content: "";
  width: 13px;
  height: 13px;
  margin-left: 7px;
  background-repeat: no-repeat;
  background-size: 13px 13px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 13 13' fill='none'%3E%3Cpath d='M4 3h6v6' stroke='%23f5f2ec' stroke-width='1.2'/%3E%3Cpath d='M9.8 3.2L3.2 9.8' stroke='%23f5f2ec' stroke-width='1.2'/%3E%3Crect x='2' y='2' width='9' height='9' stroke='%23f5f2ec' stroke-width='1.2'/%3E%3C/svg%3E");
}
.ticket-card > small {
  display: block;
  text-align: left;
  color: rgba(10,10,10,.4);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 9px;
  padding: 0 22px 16px;
}

.form-layout,
.apply-layout {
  display: grid;
  grid-template-columns: minmax(360px, 520px) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}
.form-layout p,
.apply-copy p {
  margin: 16px 0 0;
  font-size: 18px;
  line-height: 28px;
}

.line-form { border-top: 1px solid rgba(10,10,10,.43); padding-top: 0; }
.line-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 46px;
}
.line-form label {
  display: block;
  font-size: 18px;
  line-height: 28px;
  color: rgba(10,10,10,.43);
  margin: 0 0 16px;
}
.line-form input,
.line-form textarea {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(10,10,10,.43);
  background: transparent;
  font: inherit;
  color: var(--black);
  padding: 8px 0 10px;
  outline: none;
}
.line-form textarea {
  min-height: 120px;
  resize: vertical;
}
.chips {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 10px;
  margin-bottom: 16px;
}
.chips button {
  border: 1px solid rgba(10,10,10,.7);
  background: transparent;
  color: var(--black);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .354px;
  padding: 12px 18px;
  cursor: pointer;
}
.chips button:hover,
.chips button.is-active { background: var(--black); color: var(--cream); }

#volunteer .chips button:hover,
#volunteer .chips button.is-active {
  background: var(--red);
  border-color: var(--red);
  color: var(--cream);
}

#volunteer .eyebrow {
  position: relative;
  margin-bottom: 10px;
}
#volunteer .eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: -7px;
  width: 118px;
  height: 1px;
  background: rgba(235, 0, 40, 0.65);
}

#volunteer .volunteer-title {
  max-width: 360px;
  font-family: "Anton", sans-serif;
  font-size: clamp(56px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: -1px;
  color: var(--black);
}

#volunteer .volunteer-title span,
#volunteer .volunteer-title strong {
  display: block;
}

#volunteer .volunteer-title span:first-child {
  white-space: nowrap;
}

#volunteer .volunteer-title span {
  color: var(--black);
}

#volunteer .volunteer-title strong {
  color: var(--red);
  font-weight: 400;
  white-space: nowrap;
}

#volunteer-form {
  border-top: 0;
  padding-top: 0;
}
#volunteer-form .line-grid > label {
  position: relative;
  padding-top: 8px;
  margin-bottom: 8px;
}
#volunteer-form .line-grid > label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 96px;
  height: 1px;
  background: rgba(10, 10, 10, 0.35);
}
#volunteer-form > label {
  position: relative;
  padding-top: 8px;
  margin-bottom: 10px;
}
#volunteer-form > label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 220px;
  height: 1px;
  background: rgba(10, 10, 10, 0.24);
}
#volunteer-form input,
#volunteer-form textarea {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
}

.apply-tabs {
  display: flex;
  gap: 120px;
  justify-content: center;
  padding-bottom: 26px;
}
.tab {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(10,10,10,.5);
  background: transparent;
  color: var(--black);
  padding: 12px 68px;
  text-transform: uppercase;
  letter-spacing: 3.226px;
  font-size: 11.5px;
  cursor: pointer;
  transition: color .3s ease, border-color .3s ease, transform .22s ease, box-shadow .22s ease;
}
.tab::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .36s cubic-bezier(.22, .61, .36, 1);
  z-index: -1;
}
.tab:active {
  transform: translateY(1px) scale(0.985);
}
.tab.is-active,
.tab:hover {
  border-color: var(--red);
  color: var(--cream);
}
.tab.is-active::before,
.tab:hover::before {
  transform: scaleX(1);
}

#apply .apply-copy,
#apply #apply-form {
  transform-origin: center;
  will-change: transform, opacity;
  backface-visibility: hidden;
}
#apply #apply-form {
  margin-left: 42px;
}
#apply.is-swapping-out .apply-copy,
#apply.is-swapping-out #apply-form {
  animation-duration: .22s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
#apply.is-swapping-in .apply-copy,
#apply.is-swapping-in #apply-form {
  animation-duration: .36s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}
#apply.swap-forward.is-swapping-out .apply-copy,
#apply.swap-forward.is-swapping-out #apply-form {
  animation-name: applySwapOutForward;
}
#apply.swap-forward.is-swapping-in .apply-copy,
#apply.swap-forward.is-swapping-in #apply-form {
  animation-name: applySwapInForward;
}
#apply.swap-backward.is-swapping-out .apply-copy,
#apply.swap-backward.is-swapping-out #apply-form {
  animation-name: applySwapOutBackward;
}
#apply.swap-backward.is-swapping-in .apply-copy,
#apply.swap-backward.is-swapping-in #apply-form {
  animation-name: applySwapInBackward;
}
@keyframes applySwapOutForward {
  from { opacity: 1; transform: translateX(0) scale(1); }
  to { opacity: 0; transform: translateX(-14px) scale(0.998); }
}
@keyframes applySwapInForward {
  from { opacity: 0; transform: translateX(14px) scale(0.998); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes applySwapOutBackward {
  from { opacity: 1; transform: translateX(0) scale(1); }
  to { opacity: 0; transform: translateX(14px) scale(0.998); }
}
@keyframes applySwapInBackward {
  from { opacity: 0; transform: translateX(-14px) scale(0.998); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}
.apply-copy a {
  display: inline-block;
  margin-top: 18px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3.5px;
}
.dark-panel {
  background: var(--black);
  color: var(--cream);
  padding: 26px 22px 22px;
}
.dark-panel label { color: var(--cream); }
.dark-panel input,
.dark-panel textarea {
  border-bottom-color: rgba(245,242,236,.6);
  color: var(--cream);
}

.faq-wrap h2 {
  max-width: 1153px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.14;
}
.faq-title > span {
  display: block;
  color: var(--black);
}
.faq-title strong {
  color: var(--red);
  font-weight: 400;
}
.faq-list {
  margin-top: 28px;
  max-width: 1085px;
  display: grid;
  gap: 16px;
}
.faq-list details {
  border: 0;
  background: transparent;
  padding: 0;
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(10,10,10,.9);
  border-radius: 22px;
  background: transparent;
  padding: 14px 22px;
  font-size: clamp(18px, 2.1vw, 30px);
  line-height: 1.12;
  letter-spacing: .2px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  width: 26px;
  height: 26px;
  border: 1px solid rgba(10, 10, 10, .55);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: var(--red);
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  line-height: 1;
}
.faq-list details[open] summary::after { content: "-"; }
.faq-list p {
  margin: 12px 0 0;
  border: 1px solid rgba(10,10,10,.9);
  border-radius: 22px;
  padding: 14px 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(15px, 1.45vw, 22px);
  line-height: 1.3;
  color: rgba(10,10,10,.9);
}

.footer { overflow: hidden; }
.footer-top {
  border-bottom: 1px solid var(--line-light);
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 42px;
  padding-bottom: 34px;
}
.footer h5 {
  margin: 0 0 14px;
  color: rgba(245,242,236,.4);
  font-size: 11.5px;
  letter-spacing: 3.226px;
  text-transform: uppercase;
  font-weight: 600;
}
.footer a {
  display: block;
  color: rgba(245,242,236,.8);
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 12px;
}
.footer a:hover { color: var(--red); }
.footer .brand,
.footer .brand span,
.footer .brand sup {
  color: var(--red);
}
.footer-brand-block .brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.footer-brand-block .brand span {
  font-size: 50px;
  line-height: 0.92;
}
.footer-brand-block .brand sup {
  font-size: 26px;
  top: -.42em;
}
.footer-brand-block .brand em {
  color: rgba(245,242,236,.9);
  font-size: 28px;
  letter-spacing: -0.45px;
  margin-left: 0;
}
.footer-brand-block .brand:hover,
.footer-brand-block .brand:hover span,
.footer-brand-block .brand:hover sup,
.footer-brand-block .brand:hover em {
  color: inherit;
}
.footer-brand-block .eyebrow {
  position: relative;
  margin: 12px 0 0;
  padding-top: 12px;
  color: rgba(245,242,236,.45);
  font-size: 12px;
  letter-spacing: 4px;
}
.footer-brand-block .eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  max-width: 460px;
  height: 1px;
  background: rgba(245,242,236,.28);
}
.footer-quote {
  margin: 14px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-style: normal;
  font-size: clamp(42px, 3.5vw, 54px);
  line-height: 1.06;
  color: rgba(245,242,236,.9);
  max-width: 620px;
}
.newsletter {
  border-bottom: 1px solid rgba(245,242,236,.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.newsletter input {
  border: 0;
  background: transparent;
  color: var(--cream);
  font: inherit;
  padding: 10px 0;
  width: 100%;
}
.newsletter button {
  border: 0;
  background: transparent;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 2.75px;
  font-size: 11px;
  cursor: pointer;
}
.socials { margin-top: 18px; display: flex; gap: 14px; }
.socials a {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(245,242,236,.45);
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: rgba(245,242,236,.85);
  transition: color .24s ease, border-color .24s ease, background-color .24s ease;
  margin: 0;
}
.socials a:hover {
  color: var(--red);
  border-color: var(--red);
}
.socials a svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 22px;
  padding-top: 28px;
}
.footer-bottom p {
  margin: 0;
  color: rgba(245,242,236,.4);
  font-size: 12px;
}
.footer-bottom p:nth-child(2) {
  margin-left: auto;
}
.footer-bottom .powered-by {
  flex-basis: 100%;
  text-align: left;
  margin-left: 0;
  order: 3;
  margin-top: 2px;
}
.footer-bottom .powered-by a {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
}
.footer-mark {
  margin: 18px 0 -20px;
  display: flex;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  pointer-events: none;
}
.footer-mark span {
  flex: 0 0 auto;
  font-family: "Anton", sans-serif;
  font-size: clamp(180px, 30vw, 537px);
  line-height: .85;
  letter-spacing: -5.376px;
  color: rgba(245,242,236,.04);
  animation: footerBanner 28s linear infinite;
}
.home-page .footer-mark {
  pointer-events: auto;
}
.home-page .footer-mark span {
  font-size: clamp(128px, 20vw, 360px);
  animation-duration: 44s;
}
.home-page .footer-mark:hover span {
  animation-play-state: paused;
}
@keyframes footerBanner {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.reveal,
.scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.985);
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.in-view,
.scroll-reveal.in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.sponsor-showcase.reveal:not(.is-live) {
  opacity: 0 !important;
  transform: translateY(12px) !important;
  pointer-events: none;
}

.sponsor-showcase.reveal.is-live {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

@media (max-width: 1180px) {
  .hero { min-height: auto; padding-top: 30px; }
  .home-page .hero-art {
    margin-top: 0;
  }
  .home-page .hero-door {
    height: auto;
    overflow: visible;
  }
  .home-page .hero-topbar-brand {
    padding-bottom: 26px;
  }
  .home-page .hero-topbar-eyebrow {
    font-size: 7px;
    letter-spacing: 0.8px;
    line-height: 1;
  }
  .home-page .hero-topbar-eyebrow::before {
    width: 136px;
  }
  .hero-topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-items: start;
    align-items: center;
    gap: 12px 16px;
  }
  .site-menu-toggle { display: inline-flex; justify-self: end; }
  .site-menu-panel {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    padding: 16px;
    border: 1px solid var(--line-dark);
    border-radius: 24px;
    background: rgba(245, 242, 236, 0.96);
    box-shadow: 0 18px 40px rgba(10, 10, 10, 0.12);
  }
  .hero-topbar.is-menu-open .site-menu-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .site-menu-panel .top-nav {
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .site-menu-panel .btn {
    width: 100%;
  }
  .hero-main,
  .two-col,
  .speaker-spotlight,
  .sponsor-feature-card,
  .sponsor-pricing-grid,
  .partner-feature,
  .organizer-grid,
  .form-layout,
  .apply-layout,
  .tickets-wrap { grid-template-columns: 1fr; }
  #apply #apply-form { margin-left: 0; }
  .hero-art { min-height: 520px; }
  .hero-door { height: 540px; }
  .manifesto-layout { grid-template-columns: 1fr; gap: 30px; }
  .manifesto-title h2 { font-size: clamp(52px, 11vw, 72px); line-height: 1.02; }
  .manifesto-lead { font-size: clamp(30px, 6vw, 42px); line-height: 1.08; }
  .manifesto-quote { margin-top: 60px; }
  #speakers .two-col { grid-template-rows: auto; }
  #speakers .speakers-intro { padding-right: 0; }
  .speaker-copy { padding-right: 0; }
  .speaker-photo-panel {
    justify-content: flex-start;
    width: 100%;
    height: auto;
    min-height: 0;
  }
  .speaker-photo-frame {
    width: 100%;
    height: 560px;
    max-width: 420px;
  }
  .speaker-nav {
    padding: 0 24px;
  }
  .sponsor-feature-copy {
    padding: 30px 24px 22px;
  }
  .sponsor-showcase-card {
    grid-template-rows: auto auto;
    min-height: 0;
    aspect-ratio: auto;
    padding: 24px;
    align-content: start;
  }
  .sponsor-carousel-track {
    align-items: flex-start;
  }
  .sponsor-carousel-slide {
    align-self: flex-start;
  }
  .sponsor-showcase-card--voice {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 24px 20px 18px;
  }
  .sponsor-showcase-body,
  .sponsor-showcase-body--pillar,
  .sponsor-showcase-body--voice,
  .sponsor-showcase-body--friend {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }
  .sponsor-showcase-copy {
    max-width: none;
  }
  .sponsor-showcase-copy h3 {
    margin: 10px 0 16px;
    font-size: clamp(58px, 16vw, 92px);
  }
  .showcase-description {
    width: 100%;
    font-size: clamp(17px, 4.5vw, 19px);
    line-height: 1.36;
  }
  .sponsor-showcase-body--voice {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .sponsor-showcase-body--voice .sponsor-showcase-copy {
    order: 1;
  }
  .sponsor-showcase-body--voice .sponsor-showcase-visual {
    order: 2;
  }
  .sponsor-showcase-visual--pillar {
    display: grid;
    gap: 18px;
    min-height: 0;
    height: auto;
  }
  .sponsor-showcase-visual--pillar img {
    position: static;
    inset: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 280px;
    border-radius: 18px;
    clip-path: none;
  }
  .showcase-benefits {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 20px;
  }
  .showcase-benefits > div {
    grid-template-columns: 44px 1fr;
    padding: 14px 16px;
  }
  .showcase-benefits strong {
    font-size: 24px;
  }
  .showcase-benefits p {
    font-size: 12px;
  }
  .sponsor-showcase-body--voice .sponsor-showcase-visual {
    min-height: 0;
  }
  .sponsor-showcase-visual--voice img {
    width: 100%;
    height: min(82vw, 360px);
    clip-path: none;
    border-radius: 18px;
    object-fit: cover;
    object-position: center center;
  }
  .sponsor-showcase-card--voice .sponsor-showcase-features--three {
    order: 3;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }
  .sponsor-showcase-card--voice .sponsor-showcase-features--three > div {
    padding: 16px 16px 14px;
    min-height: auto;
  }
  .sponsor-showcase-card--voice .sponsor-showcase-features--three > div:nth-child(2n) {
    border-right: 0;
  }
  .sponsor-showcase-card--voice .sponsor-showcase-features--three > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
  .sponsor-showcase-card--voice .sponsor-showcase-features strong {
    font-size: 18px;
  }
  .sponsor-showcase-card--voice .sponsor-showcase-features p {
    font-size: 11px;
  }
  .friend-inline-points {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  .sponsor-showcase-features--four,
  .sponsor-showcase-features--three {
    grid-template-columns: 1fr;
  }
  .sponsor-showcase-features--two {
    grid-template-columns: 1fr;
  }
  .sponsor-showcase-features > div {
    padding: 18px 18px 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(245, 242, 236, 0.14);
  }
  .sponsor-showcase-features > div:last-child {
    border-bottom: 0;
  }
  .sponsor-feature-card {
    grid-template-columns: 1fr;
  }
  .sponsor-feature-visual {
    padding: 0 24px 0;
    min-height: 360px;
  }
  .feature-points {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-points article {
    border-right: 1px solid rgba(245,242,236,.18);
    border-bottom: 1px solid rgba(245,242,236,.18);
    padding: 18px 18px 16px 42px;
  }
  .feature-points article:nth-child(2n) {
    border-right: 0;
  }
  .feature-points article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
  .sponsor-feature-photo {
    width: 300px;
    height: 390px;
    min-height: 0;
    margin-left: 120px;
  }
  .sponsor-feature-photo img {
    height: 100%;
  }
  .sponsor-side-benefits {
    right: 38px;
    top: 30px;
    width: 164px;
    padding-top: 0;
  }
  .sponsor-side-benefits strong {
    font-size: 22px;
  }
  .sponsor-tiers-section {
    margin-top: 56px;
  }
  .sponsor-pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card {
    min-height: auto;
  }
  .sponsor-feature-card[data-tier-layout="voice"] {
    grid-template-columns: 1fr;
  }
  .sponsor-feature-card[data-tier-layout="voice"] .sponsor-feature-copy {
    padding: 24px 24px 18px;
  }
  .sponsor-feature-card[data-tier-layout="voice"] .sponsor-feature-visual {
    padding: 0 24px 12px;
  }
  .sponsor-feature-card[data-tier-layout="voice"] .sponsor-feature-photo {
    width: 190px;
    height: 240px;
    margin: 0;
  }
  .sponsor-feature-card[data-tier-layout="voice"] .feature-points {
    grid-template-columns: repeat(3, 1fr);
  }
  .sponsor-feature-card[data-tier-layout="friend"] {
    grid-template-columns: 120px 1fr;
    align-items: start;
  }
  .sponsor-feature-card[data-tier-layout="friend"] .sponsor-feature-copy {
    padding: 24px 24px 10px 0;
  }
  .sponsor-feature-card[data-tier-layout="friend"] .sponsor-feature-visual {
    padding: 24px 0 18px 24px;
  }
  .sponsor-feature-card[data-tier-layout="friend"] .feature-inline-tags {
    padding: 0 24px 24px 0;
    gap: 18px;
  }
  .tier-voice-card {
    grid-template-columns: 150px 1fr;
  }
  .tier-voice-image {
    width: 122px;
    height: 172px;
  }
  .tier-voice-copy h3,
  .tier-friend-copy h3 {
    font-size: clamp(42px, 8vw, 64px);
  }
  .tier-voice-copy p:last-child,
  .tier-friend-copy > p:last-of-type {
    font-size: 15px;
  }
  .tier-voice-points strong {
    font-size: 22px;
  }
  .tier-friend-card {
    grid-template-columns: 120px 1fr;
  }
  .partner-feature-photo {
    justify-self: start;
    width: min(100%, 616px);
    height: 520px;
    background: transparent;
  }
  .partner-feature-photo img {
    width: 100%;
    height: 100%;
    min-height: 0;
    transform: scale(1.12);
  }
  .organizer-grid { gap: 30px; }
  .organizer-card { width: 100%; max-width: 420px; height: 460px; }
  .organizer-head { left: 50%; transform: translateX(-50%); }
  .organizer-hair { left: 50%; transform: translateX(-50%); }
  .organizer-body { left: 50%; transform: translateX(-50%); }
  .organizer-title { font-size: clamp(42px, 8vw, 62px); }
  .lead-quote { font-size: clamp(24px, 4.2vw, 34px); }
  .organizer-copy { font-size: 16px; }
  .meta-trio h4 { font-size: clamp(28px, 4vw, 36px); }
  #journey .journey-head { grid-template-columns: 1fr; gap: 24px; }
  .journey-intro p { max-width: 100%; font-size: 16px; }
  .journey-title { font-size: clamp(56px, 12vw, 84px); }
  .journey-list { margin-top: 28px; max-width: 100%; }
  .journey-list h4 { font-size: clamp(40px, 6vw, 52px); }
  .journey-list p { font-size: 15px; }
  .people-grid { grid-template-columns: repeat(2, 1fr); }
  .people-grid.has-loop { --loop-card-width: 240px; }
  .support-grid.has-loop { --loop-card-width: 320px; }
  .support-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }

  .home-page #sponsors .sponsor-showcase-card {
    grid-template-rows: auto auto;
    min-height: 0;
    aspect-ratio: auto;
    align-content: start;
    color: var(--cream);
    background-color: #000;
    background-image: none;
    background-position: center top;
    background-size: auto;
    background-repeat: no-repeat;
    border-color: rgba(245, 242, 236, 0.9);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  }

  .home-page #sponsors .sponsor-showcase-copy h3 span:last-child,
  .home-page #sponsors .sponsor-showcase-features strong,
  .home-page #sponsors .sponsor-showcase-features p,
  .home-page #sponsors .showcase-description,
  .home-page #sponsors .friend-inline-points strong {
    color: var(--cream);
  }

  .home-page #sponsors .sponsor-showcase-copy h3 span:first-child,
  .home-page #sponsors .showcase-label,
  .home-page #sponsors .showcase-live-sponsor {
    color: var(--red);
  }

  .home-page #sponsors .showcase-live-sponsor {
    display: block;
    margin: 8px 0 0;
    font-size: 14px;
    font-weight: 600;
  }

  .home-page #sponsors .showcase-benefits {
    background: #111;
  }

  .home-page #sponsors .showcase-benefits strong {
    color: var(--paper);
  }

  .home-page #sponsors .showcase-benefits p {
    color: rgba(245, 242, 236, 0.76);
  }

  .home-page #sponsors .sponsor-showcase-copy p {
    color: rgba(245, 242, 236, 0.8);
  }

  .home-page #sponsors .sponsor-showcase-features {
    border-top-color: rgba(245, 242, 236, 0.16);
  }

  .home-page #sponsors .sponsor-showcase-features > div {
    border-right-color: rgba(245, 242, 236, 0.12);
  }

  .home-page #sponsors .sponsor-showcase-card--voice,
  .home-page #sponsors .sponsor-showcase-card--friend {
    align-self: flex-start;
    height: auto;
    min-height: 0;
  }

  .home-page #sponsors .sponsor-showcase-body,
  .home-page #sponsors .sponsor-showcase-body--pillar,
  .home-page #sponsors .sponsor-showcase-body--voice,
  .home-page #sponsors .sponsor-showcase-body--friend {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  .home-page #sponsors .sponsor-showcase-copy {
    max-width: none;
  }

  .home-page #sponsors .sponsor-showcase-copy h3 {
    margin: 10px 0 16px;
    font-size: clamp(58px, 16vw, 92px);
  }

  .home-page #sponsors .sponsor-showcase-copy h3 span {
    color: var(--red);
  }

  .home-page #sponsors .sponsor-showcase-copy h3 span:last-child {
    color: var(--cream);
  }

  .home-page #sponsors .showcase-description {
    width: 100%;
    font-size: clamp(17px, 4.5vw, 19px);
    line-height: 1.36;
  }

  .home-page #sponsors .sponsor-showcase-body--voice {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .home-page #sponsors .sponsor-showcase-body--voice .sponsor-showcase-copy {
    order: 1;
  }

  .home-page #sponsors .sponsor-showcase-body--voice .sponsor-showcase-visual {
    order: 2;
    min-height: 0;
  }

  .home-page #sponsors .sponsor-showcase-visual--pillar {
    display: grid;
    gap: 18px;
    min-height: 0;
    height: auto;
  }

  .home-page #sponsors .sponsor-showcase-visual--pillar img {
    position: static;
    inset: auto;
    right: auto;
    left: auto;
    bottom: auto;
    width: 100%;
    height: min(82vw, 360px);
    clip-path: none;
    border-radius: 18px;
    object-fit: cover;
    object-position: center center;
  }

  .home-page #sponsors .showcase-benefits {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 20px;
  }

  .home-page #sponsors .showcase-benefits > div {
    grid-template-columns: 44px 1fr;
    padding: 14px 16px;
  }

  .home-page #sponsors .showcase-benefits strong {
    font-size: 24px;
  }

  .home-page #sponsors .showcase-benefits p {
    font-size: 12px;
  }

  .home-page #sponsors .sponsor-showcase-body--voice .sponsor-showcase-visual {
    min-height: 0;
  }

  .home-page #sponsors .sponsor-showcase-visual--voice img {
    width: 100%;
    height: min(82vw, 360px);
    clip-path: none;
    border-radius: 18px;
    object-fit: cover;
    object-position: center center;
  }

  .home-page #sponsors .sponsor-showcase-card--voice .sponsor-showcase-features--three {
    order: 3;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .home-page #sponsors .sponsor-showcase-features--four,
  .home-page #sponsors .sponsor-showcase-features--three {
    grid-template-columns: 1fr;
  }

  .home-page #sponsors .sponsor-showcase-features > div {
    padding: 18px 18px 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(245, 242, 236, 0.12);
  }

  .home-page #sponsors .sponsor-showcase-features > div:last-child {
    border-bottom: 0;
  }

  .home-page #sponsors .sponsor-carousel-arrows {
    flex-direction: column;
  }

  .home-page #sponsors .sponsor-carousel-arrows button {
    width: 100%;
    border-color: rgba(10, 10, 10, 0.8);
    color: var(--ink);
    background: transparent;
  }

  .home-page #sponsors .sponsor-carousel-arrows button:hover,
  .home-page #sponsors .sponsor-carousel-arrows button:focus-visible {
    color: var(--paper);
    background: var(--red);
    border-color: var(--red);
  }
}

@media (max-width: 820px) {
  .container { width: min(var(--content), calc(100% - 32px)); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-meta,
  .ticket-meta,
  .meta-trio,
  .line-grid { grid-template-columns: 1fr; }
  .journey-list li {
    grid-template-columns: 48px 1fr;
    column-gap: 18px;
    padding-bottom: 24px;
  }
  .journey-list li::before {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  .journey-list li::after {
    left: 19px;
    top: 38px;
  }
  .journey-list h4 {
    font-size: clamp(32px, 8vw, 44px);
  }
  .journey-list p {
    margin-top: 8px;
    font-size: 16px;
    line-height: 1.45;
  }
  .speaker-title {
    font-size: clamp(52px, 14vw, 84px);
    line-height: 1.04;
  }
  .speaker-line {
    width: auto;
    white-space: normal;
    line-height: 1.04;
  }
  .speaker-profile h3 {
    font-size: clamp(56px, 16vw, 92px);
  }
  .speaker-talk {
    font-size: clamp(24px, 7vw, 40px);
    white-space: normal;
  }
  .speaker-meta {
    flex-wrap: wrap;
    gap: 12px;
    font-size: 11px;
    letter-spacing: 2px;
  }
  .speaker-meta span {
    white-space: normal;
  }
  .speaker-link {
    margin-top: 36px;
    letter-spacing: 3px;
  }
  .speaker-photo-frame {
    width: 100%;
    height: 420px;
  }
  .speaker-nav {
    min-height: auto;
    padding: 18px 20px;
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .speaker-nav a:nth-child(2),
  .speaker-nav button:last-child {
    justify-self: start;
  }
  .sponsor-feature-copy h3 {
    font-size: clamp(54px, 15vw, 82px);
  }
  .sponsor-showcase-card {
    padding: 20px;
  }
  .sponsor-showcase-card--voice {
    gap: 16px;
    padding: 20px 16px 16px;
  }
  .sponsor-showcase-copy h3 {
    font-size: clamp(52px, 14vw, 86px);
  }
  .showcase-label {
    font-size: 12px;
  }
  .showcase-label::after,
  .showcase-rule {
    width: 84px;
  }
  .showcase-description {
    font-size: 17px;
  }
  .sponsor-showcase-body--voice {
    gap: 14px;
  }
  .sponsor-showcase-visual--voice img {
    height: 190px;
  }
  .sponsor-showcase-card--pillar .showcase-description {
    font-size: 16px;
    line-height: 1.12;
  }
  .sponsor-showcase-visual--pillar {
    min-height: 300px;
  }
  .sponsor-showcase-visual--pillar img {
    width: 100%;
    height: 100%;
  }
  .showcase-benefits > div {
    grid-template-columns: 42px 1fr;
    padding: 14px 16px;
  }
  .showcase-benefits strong {
    font-size: 24px;
  }
  .sponsor-showcase-features--four,
  .sponsor-showcase-features--three {
    grid-template-columns: 1fr;
  }
  .sponsor-showcase-card--voice .sponsor-showcase-features--three {
    grid-template-columns: 1fr;
  }
  .sponsor-showcase-features > div {
    border-right: 0;
    border-bottom: 1px solid rgba(245, 242, 236, 0.14);
  }
  .sponsor-showcase-features > div:last-child {
    border-bottom: 0;
  }
  .sponsor-showcase-features strong {
    font-size: 22px;
  }
  .friend-avatar {
    width: 200px;
    height: 200px;
  }
  .friend-inline-points strong {
    font-size: 18px;
  }
  .sponsor-carousel-arrows {
    flex-direction: column;
  }
  .sponsor-carousel-arrows button {
    width: 100%;
  }
  .sponsor-tiers-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .pricing-card {
    padding: 30px 24px;
  }
  .pricing-card h3,
  .pricing-card-featured h3 {
    font-size: 64px;
  }
  .pricing-card h4 {
    font-size: 32px;
  }
  .pricing-price,
  .pricing-card-featured .pricing-price {
    font-size: 42px;
  }
  .pricing-featured-pill {
    position: static;
    transform: none;
    margin-bottom: 18px;
  }
  .feature-body {
    font-size: 15px;
  }
  .sponsor-feature-visual {
    min-height: auto;
    padding: 0 18px 0;
  }
  .feature-points {
    grid-template-columns: 1fr;
  }
  .feature-points article {
    border-right: 0;
    border-bottom: 1px solid rgba(245,242,236,.18);
    padding: 16px 18px 14px 42px;
  }
  .feature-points article:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(245,242,236,.18);
  }
  .feature-points article:last-child {
    border-bottom: 0;
  }
  .sponsor-feature-photo {
    width: 220px;
    height: 300px;
    min-height: 0;
    margin-left: 18px;
  }
  .sponsor-side-benefits {
    position: static;
    width: auto;
    margin-top: 16px;
  }
  .sponsor-side-benefits article {
    min-height: 88px;
    padding: 14px 12px 12px 44px;
  }
  .sponsor-feature-photo img {
    width: 100%;
    height: 100%;
  }
  .sponsor-feature-card[data-tier-layout="voice"] .sponsor-feature-copy {
    padding: 24px 18px 16px;
  }
  .sponsor-feature-card[data-tier-layout="voice"] .sponsor-feature-visual {
    padding: 0 18px 12px;
  }
  .sponsor-feature-card[data-tier-layout="voice"] .sponsor-feature-photo {
    width: 150px;
    height: 210px;
  }
  .sponsor-feature-card[data-tier-layout="voice"] .feature-points {
    grid-template-columns: 1fr;
  }
  .sponsor-feature-card[data-tier-layout="voice"] .feature-points article {
    border-right: 0;
    border-bottom: 1px solid rgba(245,242,236,.18);
  }
  .sponsor-feature-card[data-tier-layout="voice"] .feature-points article:last-child {
    border-bottom: 0;
  }
  .sponsor-feature-card[data-tier-layout="friend"] {
    grid-template-columns: 1fr;
  }
  .sponsor-feature-card[data-tier-layout="friend"] .sponsor-feature-visual {
    padding: 22px 18px 0;
    justify-content: flex-start;
  }
  .sponsor-feature-card[data-tier-layout="friend"] .sponsor-feature-copy {
    padding: 18px 18px 8px;
  }
  .sponsor-feature-card[data-tier-layout="friend"] .sponsor-feature-copy h3 {
    font-size: clamp(52px, 14vw, 78px);
  }
  .sponsor-feature-card[data-tier-layout="friend"] .feature-body {
    font-size: 18px;
  }
  .sponsor-feature-card[data-tier-layout="friend"] .feature-inline-tags {
    grid-column: 1;
    padding: 0 18px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .tier-voice-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .tier-voice-media {
    grid-row: auto;
    padding: 16px 16px 0;
  }
  .tier-voice-image {
    width: 100%;
    max-width: 180px;
    height: 180px;
  }
  .tier-voice-copy {
    padding: 18px 18px 14px;
  }
  .tier-voice-points {
    grid-template-columns: 1fr;
  }
  .tier-voice-points article {
    border-right: 0;
    border-bottom: 1px solid rgba(245,242,236,.16);
  }
  .tier-voice-points article:last-child {
    border-bottom: 0;
  }
  .tier-friend-card {
    grid-template-columns: 1fr;
    padding-top: 46px;
  }
  .tier-friend-avatar {
    margin-top: 0;
  }
  .tier-friend-tags {
    gap: 12px;
  }
  .tier-friend-tags span {
    font-size: 15px;
  }
  .sponsors-heading h2,
  .partner-feature-heading h2 {
    font-size: clamp(54px, 13vw, 84px);
  }
  .sponsor-feature-copy h3 {
    font-size: clamp(64px, 17vw, 108px);
  }
  .feature-body {
    font-size: clamp(20px, 6vw, 30px);
  }
  .feature-points strong {
    font-size: 28px;
  }
  .tier-card {
    min-height: auto;
    padding: 28px;
  }
  .partner-profile {
    margin-top: 32px;
  }
  .partner-tier {
    font-size: clamp(56px, 14vw, 88px);
  }
  .partner-profile h3 {
    font-size: clamp(42px, 12vw, 74px);
  }
  .partner-feature-slide {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .partner-feature-photo {
    background: transparent;
    width: min(100%, 300px);
    height: 300px;
  }
  .partner-feature-photo img {
    width: 100%;
    height: 100%;
    min-height: 0;
    transform: scale(1.12);
  }
  .partner-feature-arrows {
    flex-direction: column;
  }
  .partner-feature-arrows button {
    width: 100%;
  }
  .people-grid { grid-template-columns: 1fr; }
  .people-grid.has-loop { --loop-card-width: 220px; }
  .support-grid.has-loop { --loop-card-width: 280px; }
  .chips { grid-template-columns: 1fr 1fr; }
  .tab { padding: 10px 14px; }
  .apply-tabs { gap: 12px; justify-content: flex-start; }
  .faq-list summary { font-size: 18px; }
  .organizer-card { height: 430px; }
  .organizer-baseline { grid-template-columns: 1fr; row-gap: 8px; }
  .organizer-baseline h3 { font-size: 48px; }
  .organizer-baseline p, .organizer-baseline span { padding-bottom: 0; }
  .lead-quote { margin-top: 20px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-mark { margin-bottom: 0; }

  .home-page #sponsors .sponsor-showcase-card {
    padding: 20px;
  }

  .home-page #sponsors .sponsor-showcase-card--voice {
    gap: 16px;
    padding: 20px 16px 16px;
  }

  .home-page #sponsors .sponsor-showcase-copy h3 {
    font-size: clamp(52px, 14vw, 86px);
  }

  .home-page #sponsors .showcase-label {
    font-size: 12px;
  }

  .home-page #sponsors .showcase-label::after,
  .home-page #sponsors .showcase-rule {
    width: 84px;
  }

  .home-page #sponsors .showcase-description {
    font-size: 17px;
    line-height: 1.36;
  }

  .home-page #sponsors .sponsor-showcase-body--voice {
    gap: 14px;
  }

  .home-page #sponsors .sponsor-showcase-visual--voice img {
    height: 190px;
  }

  .home-page #sponsors .sponsor-showcase-card--pillar .showcase-description {
    font-size: 16px;
    line-height: 1.12;
  }

  .home-page #sponsors .sponsor-showcase-visual--pillar {
    min-height: 300px;
  }

  .home-page #sponsors .sponsor-showcase-visual--pillar img {
    width: 100%;
    height: 100%;
  }

  .home-page #sponsors .sponsor-showcase-features--four,
  .home-page #sponsors .sponsor-showcase-features--three {
    grid-template-columns: 1fr;
  }

  .home-page #sponsors .sponsor-showcase-card--voice .sponsor-showcase-features--three {
    grid-template-columns: 1fr;
  }

  .home-page #sponsors .showcase-benefits > div {
    grid-template-columns: 42px 1fr;
    padding: 14px 16px;
  }

  .home-page #sponsors .showcase-benefits strong {
    font-size: 24px;
  }

  .home-page #sponsors .sponsor-showcase-features--four,
  .home-page #sponsors .sponsor-showcase-features--three {
    grid-template-columns: 1fr;
  }

  .home-page #sponsors .sponsor-showcase-card--voice .sponsor-showcase-features--three {
    grid-template-columns: 1fr;
  }

  .home-page #sponsors .sponsor-showcase-features > div {
    border-right: 0;
    border-bottom: 1px solid rgba(245, 242, 236, 0.14);
  }

  .home-page #sponsors .sponsor-showcase-features > div:last-child {
    border-bottom: 0;
  }

  .home-page #sponsors .sponsor-showcase-features strong {
    font-size: 22px;
  }

  .home-page #sponsors .friend-avatar {
    width: 200px;
    height: 200px;
  }

  .home-page #sponsors .friend-inline-points strong {
    font-size: 18px;
  }

  .home-page #sponsors .sponsor-carousel-arrows {
    flex-direction: column;
  }

  .home-page #sponsors .sponsor-carousel-arrows button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .card-track {
    animation: none;
  }
}

@media (max-width: 980px) {
  .home-page #sponsors .sponsor-showcase-card--voice,
  .home-page #sponsors .sponsor-showcase-card--friend {
    color: var(--cream);
    background-color: #000;
    background-image: none;
    background-position: center top;
    background-size: auto;
    background-repeat: no-repeat;
    border-color: rgba(245, 242, 236, 0.9);
    box-shadow:
      0 24px 70px rgba(0, 0, 0, 0.35);
  }

  .home-page #sponsors .sponsor-showcase-card--voice .sponsor-showcase-copy h3 span:first-child,
  .home-page #sponsors .sponsor-showcase-card--friend .sponsor-showcase-copy h3 span:first-child,
  .home-page #sponsors .sponsor-showcase-card--voice .showcase-label,
  .home-page #sponsors .sponsor-showcase-card--friend .showcase-label,
  .home-page #sponsors .sponsor-showcase-card--voice .showcase-live-sponsor,
  .home-page #sponsors .sponsor-showcase-card--friend .showcase-live-sponsor {
    color: var(--red);
  }

  .home-page #sponsors .sponsor-showcase-card--voice .sponsor-showcase-copy h3 span:last-child,
  .home-page #sponsors .sponsor-showcase-card--friend .sponsor-showcase-copy h3 span:last-child,
  .home-page #sponsors .sponsor-showcase-card--voice .showcase-description,
  .home-page #sponsors .sponsor-showcase-card--friend .showcase-description,
  .home-page #sponsors .sponsor-showcase-card--voice .sponsor-showcase-features strong,
  .home-page #sponsors .sponsor-showcase-card--friend .friend-inline-points strong,
  .home-page #sponsors .sponsor-showcase-card--voice .sponsor-showcase-features p,
  .home-page #sponsors .sponsor-showcase-card--friend .friend-inline-points {
    color: var(--ink);
  }

  .home-page #sponsors .sponsor-showcase-body--voice,
  .home-page #sponsors .sponsor-showcase-body--friend {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .home-page #sponsors .sponsor-showcase-body--voice .sponsor-showcase-visual,
  .home-page #sponsors .sponsor-showcase-body--friend .sponsor-showcase-visual {
    order: 1;
    min-height: 0;
  }

  .home-page #sponsors .sponsor-showcase-body--voice .sponsor-showcase-copy,
  .home-page #sponsors .sponsor-showcase-body--friend .sponsor-showcase-copy {
    order: 2;
  }

  .home-page #sponsors .sponsor-showcase-visual--voice img {
    width: 100%;
    height: min(82vw, 360px);
    clip-path: none;
    border-radius: 18px;
    object-fit: cover;
    object-position: center center;
  }

  .home-page #sponsors .friend-avatar {
    width: 200px;
    height: 200px;
    margin: 0 auto;
  }

  .home-page #sponsors .friend-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .home-page #sponsors .sponsor-showcase-card--voice .sponsor-showcase-features--three {
    grid-template-columns: 1fr;
  }

  .home-page #sponsors .sponsor-showcase-card--voice .sponsor-showcase-features > div,
  .home-page #sponsors .sponsor-showcase-card--friend .friend-inline-points > div {
    border-right: 0;
    border-bottom: 1px solid rgba(10, 10, 10, 0.12);
  }

  .home-page #sponsors .sponsor-showcase-card--voice .sponsor-showcase-features > div:last-child,
  .home-page #sponsors .sponsor-showcase-card--friend .friend-inline-points > div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 420px) {
  .home-page #sponsors .sponsor-showcase-card--voice,
  .home-page #sponsors .sponsor-showcase-card--friend {
    padding: 16px 14px 14px;
  }

  .home-page #sponsors .sponsor-showcase-card--voice .sponsor-showcase-copy h3,
  .home-page #sponsors .sponsor-showcase-card--friend .sponsor-showcase-copy h3 {
    margin: 8px 0 10px;
    font-size: clamp(44px, 16vw, 66px);
    line-height: 1.02;
  }

  .home-page #sponsors .sponsor-showcase-card--voice .showcase-description,
  .home-page #sponsors .sponsor-showcase-card--friend .showcase-description {
    font-size: 15px;
    line-height: 1.3;
  }

  .home-page #sponsors .sponsor-showcase-card--voice .sponsor-showcase-features > div,
  .home-page #sponsors .sponsor-showcase-card--friend .friend-inline-points > div {
    padding: 12px 12px 10px;
  }

  .home-page #sponsors .sponsor-showcase-visual--voice img {
    height: min(82vw, 360px);
    clip-path: none;
    border-radius: 18px;
    object-fit: cover;
    object-position: center center;
  }

  .home-page #sponsors .friend-avatar {
    width: 160px;
    height: 160px;
  }

  .home-page #sponsors .sponsor-showcase-card--friend .friend-inline-points {
    gap: 14px;
    margin-top: 14px;
  }
}

.home-page #sponsors .sponsor-showcase-card::before,
.home-page #sponsors .sponsor-showcase-card::after {
  display: none !important;
  background: none !important;
}

.home-page #sponsors .sponsor-showcase-features {
  border-top: 0 !important;
}

.home-page #sponsors .sponsor-showcase-features > div,
.home-page #sponsors .sponsor-showcase-card--friend .friend-inline-points > div {
  border-right: 0 !important;
  border-bottom: 0 !important;
}

.home-page #speakers .speaker-photo-panel {
  align-self: end;
}

.sponsor-showcase-card--bronze {
  border: 2px solid rgba(245, 242, 236, 0.96);
  background: #050505;
}

.sponsor-showcase-card--bronze::before,
.sponsor-showcase-card--bronze::after {
  display: none;
}

.sponsor-showcase-body--bronze {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  align-items: center;
}

.sponsor-showcase-card--bronze .sponsor-showcase-copy {
  max-width: 720px;
}

.sponsor-showcase-card--bronze .showcase-label {
  font-size: 16px;
  letter-spacing: 0;
}

.sponsor-showcase-card--bronze .showcase-label::after {
  width: 92px;
  height: 4px;
  margin-top: 10px;
}

.sponsor-showcase-card--bronze .sponsor-showcase-copy h3 {
  margin: 18px 0 22px;
  font-size: clamp(64px, 6.3vw, 92px);
  line-height: 0.82;
  letter-spacing: 0;
}

.sponsor-showcase-card--bronze .sponsor-showcase-copy h3 span:first-child {
  color: var(--cream, #f5f2ec);
}

.sponsor-showcase-card--bronze .sponsor-showcase-copy h3 span:last-child {
  color: var(--red);
}

.sponsor-showcase-card--bronze .showcase-description {
  width: min(560px, 100%);
  color: var(--cream, #f5f2ec);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.22;
  letter-spacing: 0;
}

.sponsor-showcase-visual--bronze {
  display: flex;
  justify-content: flex-end;
}

.bronze-photo-card {
  position: relative;
  width: min(100%, 330px);
  aspect-ratio: 1.08 / 1;
  overflow: hidden;
  border: 8px solid var(--red);
  border-radius: 18px;
  background: #111;
}

.bronze-photo-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.bronze-tier-ribbon {
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: 2;
  min-width: 162px;
  padding: 14px 18px 16px;
  border-radius: 0 0 7px 0;
  background: var(--red);
  color: var(--cream, #f5f2ec);
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.bronze-heart {
  right: 8px;
  bottom: 8px;
  width: 32px;
  height: 32px;
  box-shadow: 0 0 0 5px var(--red);
}

.sponsor-showcase-features--bronze {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(18px, 4vw, 64px);
  margin-top: 28px;
  border-top: 0;
}

.sponsor-showcase-features--bronze > div {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 16px;
  padding: 0;
  border: 0;
  text-align: center;
}

.bronze-feature-icon,
.bronze-feature-icon img {
  display: block;
  width: 144px;
  height: 144px;
}

.sponsor-showcase-features--bronze strong {
  color: rgba(245, 242, 236, 0.84);
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
  text-transform: none;
}

.sponsor-showcase-features--bronze p {
  display: none;
}

.sponsor-showcase-card--community,
.sponsor-showcase-card--donor {
  border: 2px solid rgba(245, 242, 236, 0.96);
  background: #050505;
  color: var(--cream, #f5f2ec);
}

.home-page #sponsors .sponsor-showcase-card--bronze,
.home-page #sponsors .sponsor-showcase-card--community,
.home-page #sponsors .sponsor-showcase-card--donor {
  border-color: #000 !important;
}

.sponsor-showcase-card--community::before,
.sponsor-showcase-card--community::after,
.sponsor-showcase-card--donor::before,
.sponsor-showcase-card--donor::after {
  display: none;
}

.community-supporter-layout,
.donor-supporter-layout {
  display: grid;
  min-height: 100%;
  gap: clamp(28px, 5vw, 70px);
}

.community-supporter-layout {
  grid-template-columns: minmax(260px, 0.58fr) minmax(650px, 1fr);
  align-items: center;
}

.donor-supporter-layout {
  grid-template-columns: minmax(260px, 0.58fr) minmax(650px, 1fr);
  align-items: center;
}

.community-supporter-copy .showcase-label {
  color: var(--red);
  font-size: 16px;
  letter-spacing: 0;
}

.community-supporter-copy .showcase-label::after {
  width: 84px;
  height: 3px;
  margin-top: 10px;
}

.community-supporter-copy h3 {
  margin: 14px 0 20px;
  color: var(--cream, #f5f2ec);
  font-size: clamp(38px, 4vw, 64px);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.community-supporter-copy h3 span {
  display: block;
}

.community-supporter-copy h3 span:last-child {
  color: var(--red);
}

.community-supporter-copy .showcase-description {
  width: min(320px, 100%);
  color: rgba(245, 242, 236, 0.68);
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.28;
  letter-spacing: 0;
}

.community-supporter-profiles {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
  align-items: center;
  gap: clamp(20px, 2.6vw, 44px);
}

.community-supporter-profile,
.donor-supporter-profile {
  display: grid;
  justify-items: start;
}

.donor-supporter-profiles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: clamp(18px, 2.4vw, 42px);
}

.donor-supporter-profiles.is-single {
  grid-template-columns: minmax(0, 190px);
  justify-content: center;
}

.donor-supporter-profiles.is-pair {
  grid-template-columns: repeat(2, minmax(0, 190px));
  justify-content: center;
}

.donor-supporter-profiles.is-trio {
  grid-template-columns: repeat(3, minmax(0, 190px));
  justify-content: center;
}

.community-supporter-divider {
  width: 1px;
  height: min(72%, 500px);
  background: rgba(245, 242, 236, 0.3);
  align-self: center;
}

.community-photo-card {
  width: min(100%, 220px);
  border-width: 6px;
  border-radius: 16px;
}

.community-photo-card .bronze-tier-ribbon,
.donor-photo-card .bronze-tier-ribbon {
  min-width: 108px;
  padding: 9px 12px 10px;
  font-size: 14px;
}

.community-supporter-profile h4,
.donor-supporter-profile h4 {
  margin: 16px 0 18px;
  color: rgba(245, 242, 236, 0.86);
  font-family: "Anton", "Impact", sans-serif;
  font-size: clamp(18px, 1.6vw, 28px);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.community-supporter-profile h4 span {
  display: block;
}

.community-supporter-profile h4 span:last-child,
.donor-supporter-profile h4 strong {
  color: var(--red);
  font-weight: inherit;
}

.community-supporter-features,
.donor-supporter-features {
  display: grid;
  gap: 14px;
}

.community-supporter-features > div,
.donor-supporter-features > div {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
}

.community-supporter-features .feature-icon,
.donor-supporter-features .feature-icon,
.community-supporter-features .feature-icon img,
.donor-supporter-features .feature-icon img {
  display: block;
  width: 20px;
  height: 20px;
}

.community-supporter-features .feature-icon,
.donor-supporter-features .feature-icon {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.community-supporter-features .feature-icon svg,
.donor-supporter-features .feature-icon svg {
  width: 20px;
  height: 20px;
}

.community-supporter-features strong,
.donor-supporter-features strong {
  color: rgba(245, 242, 236, 0.68);
  font-family: "Outfit", "Inter", sans-serif;
  font-size: clamp(14px, 1.25vw, 20px);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: 0;
  text-transform: none;
}

.donor-photo-card {
  width: min(100%, 150px);
  border-width: 6px;
  border-radius: 14px;
}

.donor-photo-card .bronze-heart {
  width: 24px;
  height: 24px;
  box-shadow: 0 0 0 4px var(--red);
}

.donor-supporter-profile h4 {
  margin: 20px 0 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35ch;
  font-size: clamp(18px, 1.45vw, 26px);
  letter-spacing: 0.08em;
}

.donor-supporter-profile h4 span,
.donor-supporter-profile h4 strong {
  display: inline;
}

.sponsor-showcase-card--donor .showcase-live-sponsor {
  margin: -14px 0 20px;
}

@media (max-width: 1180px) {
  .sponsor-showcase-card--bronze .sponsor-showcase-copy h3 {
    font-size: clamp(56px, 9vw, 80px);
  }

  .sponsor-showcase-card--bronze .showcase-description {
    font-size: 20px;
    line-height: 1.25;
  }

  .bronze-feature-icon,
  .bronze-feature-icon img {
    width: 118px;
    height: 118px;
  }
}

@media (max-width: 980px) {
  .community-supporter-layout {
    grid-template-columns: 1fr;
  }

  .donor-supporter-layout {
    grid-template-columns: minmax(220px, 0.42fr) minmax(610px, 1fr);
    gap: clamp(24px, 3vw, 36px);
  }

  .community-supporter-copy h3 {
    font-size: clamp(38px, 8.5vw, 56px);
  }

  .community-supporter-profiles {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .community-supporter-divider {
    display: none;
  }

  .donor-supporter-profiles,
  .donor-supporter-profiles.is-trio {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: start;
  }

  .donor-supporter-profiles.is-pair {
    grid-template-columns: repeat(2, minmax(0, 190px));
    justify-content: center;
  }

  .donor-supporter-profiles.is-single {
    grid-template-columns: minmax(0, 190px);
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .donor-supporter-layout {
    grid-template-columns: 1fr;
  }

  .donor-supporter-profiles,
  .donor-supporter-profiles.is-trio {
    grid-template-columns: repeat(2, minmax(0, 190px));
    justify-content: start;
  }
}

@media (max-width: 520px) {
  .sponsor-showcase-card--community,
  .sponsor-showcase-card--donor {
    min-height: auto;
    aspect-ratio: auto;
    padding: 18px 16px;
  }

  .community-supporter-copy h3 {
    font-size: 34px;
  }

  .community-supporter-copy .showcase-description,
  .community-supporter-features strong,
  .donor-supporter-features strong {
    font-size: 16px;
  }

  .donor-supporter-profiles,
  .donor-supporter-profiles.is-trio {
    grid-template-columns: repeat(2, minmax(0, 150px));
    justify-content: center;
  }

  .donor-supporter-profiles.is-pair {
    grid-template-columns: repeat(2, minmax(0, 150px));
    justify-content: center;
  }

  .donor-supporter-profiles.is-single {
    grid-template-columns: minmax(0, 190px);
    justify-content: center;
  }

  .community-photo-card {
    width: min(100%, 230px);
  }
}

@media (max-width: 860px) {
  .sponsor-showcase-body--bronze {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .sponsor-showcase-visual--bronze {
    justify-content: flex-start;
  }

  .sponsor-showcase-card--bronze .sponsor-showcase-copy h3 {
    font-size: 58px;
  }

  .sponsor-showcase-card--bronze .showcase-label {
    font-size: 15px;
    letter-spacing: 0;
  }

  .sponsor-showcase-card--bronze .showcase-description {
    font-size: 18px;
    line-height: 1.3;
  }

  .sponsor-showcase-features--bronze {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 520px) {
  .sponsor-showcase-card--bronze {
    min-height: auto;
    aspect-ratio: auto;
    padding: 18px 16px;
  }

  .sponsor-showcase-card--bronze .sponsor-showcase-copy h3 {
    margin: 18px 0 22px;
    font-size: 44px;
  }

  .sponsor-showcase-card--bronze .showcase-description {
    font-size: 16px;
  }

  .bronze-photo-card {
    width: min(100%, 260px);
  }

  .bronze-tier-ribbon {
    min-width: 132px;
    padding: 12px 14px;
    font-size: 18px;
  }

  .bronze-feature-icon,
  .bronze-feature-icon img {
    width: 96px;
    height: 96px;
  }

  .sponsor-showcase-features--bronze strong {
    font-size: 16px;
  }
}

.home-page #sponsors .sponsor-showcase-card::before,
.home-page #sponsors .sponsor-showcase-card::after {
  display: none !important;
  background: none !important;
}

.home-page #sponsors .sponsor-showcase-features {
  border-top: 0 !important;
}

.home-page #sponsors .sponsor-showcase-features > div,
.home-page #sponsors .sponsor-showcase-card--friend .friend-inline-points > div {
  border-right: 0 !important;
  border-bottom: 0 !important;
}

.home-page #sponsors .sponsor-showcase-card::before,
.home-page #sponsors .sponsor-showcase-card::after {
  display: none !important;
  background: none !important;
}

.home-page #sponsors .sponsor-showcase-features {
  border-top: 0 !important;
}

.home-page #sponsors .sponsor-showcase-features > div,
.home-page #sponsors .sponsor-showcase-card--friend .friend-inline-points > div {
  border-right: 0 !important;
  border-bottom: 0 !important;
}

@media (max-width: 820px) {
  .container {
    width: min(100%, calc(100% - 32px));
  }

  .speaker-spotlight {
    --speaker-spotlight-gap: 42px;
    --speaker-name-extra-width: 0px;
  }

  .hero-main,
  .two-col,
  .speaker-spotlight,
  .sponsor-feature-card,
  .sponsor-feature-body,
  .partner-feature,
  .organizer-grid,
  .form-layout,
  .apply-layout,
  .tickets-wrap,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .speaker-copy,
  .speaker-profile,
  .speaker-title,
  .partner-feature-heading h2,
  #apply .apply-title,
  .sponsor-showcase-card,
  .sponsor-showcase-copy,
  .sponsor-showcase-body,
  .sponsor-showcase-features {
    max-width: 100%;
  }

  .speaker-title span,
  .speaker-title strong,
  .speaker-line,
  .partner-feature-heading h2 > .partner-line,
  #apply .apply-title > span,
  #apply .apply-title > strong {
    width: auto;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.05;
  }

  .speaker-line {
    display: block;
  }

  .speaker-photo-panel {
    width: 100%;
    min-height: 0;
    padding-top: 32px;
  }

  .speaker-photo-frame {
    width: 100%;
    max-width: 100%;
    height: 420px;
  }

  .partner-feature-heading h2 {
    width: 100%;
  }

  .partner-profile h4 {
    width: auto;
    max-width: 100%;
    white-space: normal;
  }

  .partner-feature-photo {
    width: 100%;
    max-width: 100%;
    height: 300px;
  }

  .partner-feature-photo img {
    transform: none;
  }

  .sponsor-carousel-arrows,
  .partner-feature-arrows {
    flex-direction: column;
  }

  .sponsor-carousel-arrows button,
  .partner-feature-arrows button {
    min-width: 0;
    width: 100%;
    white-space: normal;
  }

  #sponsors .sponsor-feature-card,
  #sponsors .sponsor-feature-card[data-tier-layout="voice"],
  #sponsors .sponsor-feature-card[data-tier-layout="friend"] {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
  }

  #sponsors .sponsor-feature-card[data-tier-layout="friend"] .feature-inline-tags {
    flex-wrap: wrap;
    gap: 14px;
    padding-right: 0;
  }

  #sponsors .sponsor-feature-card[data-tier-layout="friend"] .feature-inline-tags > span {
    min-width: 0;
    white-space: normal;
  }

  #sponsors .sponsor-feature-card[data-tier-layout="voice"] .sponsor-feature-photo,
  #sponsors .sponsor-feature-card[data-tier-layout="friend"] .sponsor-feature-photo {
    width: 100%;
    max-width: 320px;
    margin: 0;
    height: 320px;
  }

  #sponsors .sponsor-feature-card:not([data-tier-layout="friend"]) .feature-points,
  #sponsors .sponsor-feature-card[data-tier-layout="voice"] .feature-points {
    grid-template-columns: 1fr;
  }

  #sponsors .sponsor-feature-card:not([data-tier-layout="friend"]) .feature-points article {
    border-right: 0;
    border-bottom: 1px solid rgba(245, 242, 236, 0.16);
  }

  #sponsors .sponsor-feature-card:not([data-tier-layout="friend"]) .feature-points article:last-child {
    border-bottom: 0;
  }

  #tickets .ticket-card {
    width: 100%;
    max-width: 100%;
  }

  .footer-mark {
    display: flex;
    align-items: center;
    margin: 10px 0 0;
    min-height: 88px;
    overflow: hidden;
    white-space: nowrap;
    padding-bottom: 6px;
  }

  .footer-mark span {
    font-size: clamp(92px, 24vw, 180px);
    line-height: .82;
    letter-spacing: -2px;
    color: rgba(245, 242, 236, 0.18);
    opacity: 1;
    animation-duration: 34s;
  }

  .home-page .footer-mark span {
    font-size: clamp(84px, 20vw, 150px);
    color: rgba(245, 242, 236, 0.24);
    animation-duration: 38s;
  }
}

#apply.mode-speak {
  background: var(--black);
  color: var(--cream);
}
#apply.mode-speak .apply-copy h2,
#apply.mode-speak .apply-copy p,
#apply.mode-speak .apply-copy a {
  color: var(--cream);
}

#apply .apply-title {
  max-width: 560px;
  font-family: "Anton", sans-serif;
  font-size: clamp(56px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: -1px;
  color: var(--cream);
}

#apply .apply-title > span,
#apply .apply-title > strong {
  display: block;
  white-space: nowrap;
}

#apply .apply-title span {
  color: var(--cream);
}

#apply .apply-title strong {
  color: var(--red);
  font-weight: 400;
}

#apply:not(.mode-speak) .apply-title,
#apply:not(.mode-speak) .apply-title span {
  color: var(--black);
}

#apply.mode-speak .tab {
  border-color: rgba(245,242,236,.5);
  color: var(--cream);
}
#apply.mode-speak .tab::before {
  background: var(--red);
}
#apply.mode-speak .tab.is-active {
  border-color: var(--red);
  color: var(--cream);
}
#apply.mode-speak .dark-panel {
  background-color: var(--cream);
  background-image:
    var(--cream-noise-tone),
    var(--cream-noise);
  background-size: auto, 1200px auto;
  background-position: center, 0 0;
  color: var(--black);
}
#apply.mode-speak .dark-panel label { color: var(--black); }
#apply.mode-speak .dark-panel input,
#apply.mode-speak .dark-panel textarea {
  border-bottom-color: rgba(10,10,10,.65);
  color: var(--black);
}
#apply.mode-speak .dark-panel .btn-outline-light {
  background: var(--black);
  color: var(--cream);
  border-color: var(--black);
}
#apply.mode-speak .dark-panel .btn-outline-light:hover,
#apply.mode-speak .dark-panel .btn-outline-light:focus-visible {
  background: var(--red);
  border-color: var(--red);
  color: var(--cream);
}








.organizer-card-image {
  background: transparent;
  height: auto;
  min-height: 0;
  display: block;
  box-shadow: 28px 28px 0 rgba(10,10,10,.08);
}
.organizer-card-image::before,
.organizer-card-image::after { display: none; }
.organizer-card-image img { width: 100%; height: auto; display: block; }

/* Figma-matched organizer and speaker journey sections. */
#organizer.organizer-section {
  padding: 86px 0 88px;
  border-top: 1px solid rgba(10, 10, 10, 0.12);
}

#organizer .organizer-grid {
  grid-template-columns: 344px minmax(0, 1fr);
  gap: clamp(72px, 9vw, 132px);
  align-items: start;
}

#organizer .organizer-left .eyebrow {
  width: max-content;
  padding-top: 10px;
  margin-bottom: 28px;
  letter-spacing: 3.1px;
}

#organizer .organizer-left .eyebrow::before {
  top: 0;
  width: 198px;
  opacity: 0.85;
}

#organizer .organizer-card-image {
  width: 300px;
  height: auto;
  margin-left: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

#organizer .organizer-card-image img {
  display: block;
  width: 100%;
  height: auto;
}

#organizer .organizer-right {
  max-width: 760px;
  padding-top: 28px;
}

#organizer .organizer-title {
  max-width: 520px;
  font-family: "Anton", sans-serif;
  font-size: clamp(58px, 5.25vw, 78px);
  line-height: 1.02;
  letter-spacing: -1.1px;
  color: var(--black);
}

#organizer .organizer-title span,
#organizer .organizer-title strong {
  display: block;
}

#organizer .organizer-title span {
  color: var(--black);
}

#organizer .organizer-title span:first-child {
  white-space: nowrap;
}

#organizer .organizer-title strong {
  color: var(--red);
  font-weight: 400;
}

#organizer .lead-quote {
  max-width: 660px;
  margin: 26px 0 0;
  padding-left: 12px;
  border-left: 2px solid rgba(235, 0, 40, 0.72);
  color: rgba(10, 10, 10, 0.78);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
}

#organizer .organizer-copy {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(10, 10, 10, 0.58);
  font-size: 14px;
  line-height: 1.62;
}

#organizer .meta-trio {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: clamp(36px, 4.4vw, 68px);
  margin-top: 34px;
  align-items: end;
}

#organizer .meta-trio article {
  min-width: 94px;
}

#organizer .meta-trio p {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-top: 10px;
  color: var(--red);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.7px;
  line-height: 1;
  text-transform: uppercase;
}

#organizer .meta-trio p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 34px;
  height: 1px;
  background: rgba(235, 0, 40, 0.72);
}

#organizer .meta-trio h4 {
  margin: 8px 0 0;
  font-family: "Anton", sans-serif;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 0.96;
  font-weight: 400;
  letter-spacing: -0.2px;
  color: var(--black);
  white-space: nowrap;
}

#journey.surface-dark {
  padding: 86px 0 92px;
  background: #000;
  border-top: 1px solid rgba(245, 242, 236, 0.08);
}

#journey .journey-head {
  display: grid;
  grid-template-columns: 344px minmax(0, 1fr);
  gap: clamp(72px, 9vw, 132px);
  align-items: start;
}

#journey .eyebrow {
  width: max-content;
  padding-top: 10px;
  margin-bottom: 18px;
  color: var(--red);
}

#journey .eyebrow::before {
  content: "";
  display: block;
  width: 152px;
  height: 1px;
  margin-bottom: 9px;
  background: rgba(235, 0, 40, 0.78);
}

#journey .journey-title {
  max-width: 330px;
  font-family: "Anton", sans-serif;
  font-size: clamp(58px, 5.6vw, 86px);
  line-height: 1.02;
  letter-spacing: -0.9px;
  color: var(--cream);
}

#journey .journey-title span,
#journey .journey-title strong {
  display: block;
  font-weight: 400;
}

#journey .journey-title span {
  color: var(--cream);
}

#journey .journey-title span:first-child {
  white-space: nowrap;
}

#journey .journey-title strong {
  color: var(--red);
}

#journey .journey-intro {
  max-width: 650px;
  padding-top: 72px;
}

#journey .journey-intro p {
  max-width: 620px;
  margin: 0;
  color: rgba(245, 242, 236, 0.7);
  font-size: 15px;
  line-height: 1.64;
}

#journey .journey-list {
  width: min(980px, calc(100% - var(--pad) * 2));
  max-width: none;
  margin-top: 54px;
  margin-left: max(var(--pad), calc((100vw - var(--content)) / 2));
  margin-right: auto;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
  counter-reset: journey-step;
}

#journey .journey-list li {
  position: relative;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  column-gap: 32px;
  padding: 0 0 38px;
  counter-increment: journey-step;
}

#journey .journey-list li::before {
  content: counter(journey-step, decimal-leading-zero);
  width: 66px;
  height: 66px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--cream);
  color: var(--red);
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.4px;
  box-shadow: 0 0 0 1px rgba(235, 0, 40, 0.35);
}

#journey .journey-list li::after {
  content: "";
  position: absolute;
  left: 33px;
  top: 66px;
  bottom: 0;
  width: 1px;
  background: rgba(245, 242, 236, 0.18);
}

#journey .journey-list li:last-child {
  padding-bottom: 0;
}

#journey .journey-list li:last-child::after {
  display: none;
}

#journey .journey-list h4 {
  grid-column: 2;
  margin: 0;
  color: var(--cream);
  font-family: "Outfit", sans-serif;
  font-size: 38px;
  line-height: 1.12;
  font-weight: 800;
}

#journey .journey-list p {
  grid-column: 2;
  max-width: 980px;
  margin: 14px 0 0;
  color: rgba(245, 242, 236, 0.58);
  font-size: 20px;
  line-height: 1.48;
}

@media (max-width: 1180px) {
  #organizer .organizer-grid,
  #journey .journey-head {
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
    gap: 48px;
  }

  #organizer .organizer-card-image {
    width: min(100%, 300px);
  }

  #organizer .organizer-right {
    padding-top: 14px;
  }

  #journey .journey-intro {
    padding-top: 48px;
  }
}

@media (max-width: 820px) {
  #organizer.organizer-section,
  #journey.surface-dark {
    padding: 68px 0 72px;
  }

  #organizer .organizer-grid,
  #journey .journey-head {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  #organizer .organizer-card-image {
    width: min(100%, 320px);
  }

  #organizer .organizer-right,
  #journey .journey-intro {
    padding-top: 0;
  }

  #organizer .organizer-title,
  #journey .journey-title {
    font-size: clamp(50px, 14vw, 72px);
  }

  #organizer .lead-quote {
    font-size: 17px;
  }

  #organizer .meta-trio {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  #organizer .meta-trio h4 {
    white-space: normal;
  }

  #journey .journey-list {
    width: min(100%, 760px);
    margin-top: 36px;
    margin-left: 0;
  }

  #journey .journey-list li {
    grid-template-columns: 56px minmax(0, 1fr);
    column-gap: 18px;
    padding-bottom: 24px;
  }

  #journey .journey-list li::before {
    width: 44px;
    height: 44px;
    font-size: 12px;
  }

  #journey .journey-list li::after {
    left: 22px;
    top: 44px;
  }

  #journey .journey-list h4 {
    font-size: 24px;
  }

  #journey .journey-list p {
    font-size: 15px;
  }
}

/* Figma-matched ticket section. */
#tickets.surface-dark {
  padding: 84px 0 92px;
  background: #000;
  border-top: 1px solid rgba(245, 242, 236, 0.08);
}

#tickets .tickets-wrap {
  display: grid;
  grid-template-columns: minmax(380px, 560px) minmax(360px, 520px);
  gap: clamp(88px, 11vw, 170px);
  align-items: start;
}

#tickets .tickets-wrap > div:first-child {
  padding-top: 8px;
}

#tickets .eyebrow {
  width: max-content;
  padding-top: 10px;
  margin-bottom: 18px;
  color: var(--red);
}

#tickets .eyebrow::before {
  content: "";
  display: block;
  width: 154px;
  height: 1px;
  margin-bottom: 9px;
  background: rgba(235, 0, 40, 0.78);
}

#tickets .ticket-title {
  max-width: 310px;
  font-family: "Anton", sans-serif;
  font-size: clamp(70px, 7.4vw, 118px);
  line-height: 1.02;
  letter-spacing: -1.4px;
  color: var(--cream);
}

#tickets .ticket-title span,
#tickets .ticket-title strong {
  display: block;
  font-weight: 400;
}

#tickets .ticket-title span {
  color: var(--cream);
}

#tickets .ticket-title strong {
  color: var(--red);
}

#tickets .tickets-wrap > div:first-child > p:not(.eyebrow) {
  max-width: 520px;
  margin: 28px 0 0;
  color: rgba(245, 242, 236, 0.72);
  font-size: 16px;
  line-height: 1.62;
}

#tickets .ticket-meta {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: clamp(28px, 3.6vw, 56px);
  margin-top: 46px;
  padding-top: 0;
}

#tickets .ticket-meta article {
  min-width: 112px;
}

#tickets .ticket-meta p {
  position: relative;
  margin: 0;
  padding-top: 18px;
  color: rgba(245, 242, 236, 0.55);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 4.1px;
  line-height: 1;
  text-transform: uppercase;
}

#tickets .ticket-meta p::before {
  top: 0;
  width: 11px;
  height: 11px;
  background-size: 11px 11px;
}

#tickets .ticket-meta p::after {
  top: 14px;
  width: 38px;
  background: rgba(245, 242, 236, 0.38);
}

#tickets .ticket-meta h4 {
  margin: 8px 0 0;
  color: var(--cream);
  font-family: "Anton", sans-serif;
  font-size: clamp(24px, 2.1vw, 32px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.2px;
}

#tickets .tickets-wrap > div:first-child > small {
  max-width: 480px;
  margin-top: 22px;
  color: rgba(245, 242, 236, 0.48);
  font-size: 11px;
  line-height: 1.45;
}

#tickets .ticket-card {
  justify-self: end;
  width: min(100%, 500px);
  max-width: none;
  background-color: var(--cream);
  background-image:
    var(--cream-noise-tone),
    var(--cream-noise);
  background-size: auto, 1200px auto;
  background-position: center, 0 0;
  color: var(--black);
  border: 1px solid rgba(245, 242, 236, 0.28);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

#tickets .ticket-card header {
  min-height: 54px;
  padding: 16px 24px 14px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.16);
}

#tickets .ticket-card header p {
  font-size: 10px;
  letter-spacing: 3.4px;
  color: var(--red);
}

#tickets .ticket-card header p::before {
  width: 122px;
}

#tickets .ticket-card header span {
  align-self: start;
  color: rgba(10, 10, 10, 0.42);
  font-size: 10px;
  letter-spacing: 2.8px;
}

#tickets .ticket-card article {
  min-height: 116px;
  padding: 20px 24px 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 24px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.14);
}

#tickets .ticket-card article small {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--red);
}

#tickets .ticket-card article h3 {
  margin: 8px 0 5px;
  font-family: "Anton", sans-serif;
  font-size: clamp(36px, 3.1vw, 48px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.2px;
}

#tickets .ticket-card article p {
  margin: 0;
  color: rgba(10, 10, 10, 0.56);
  font-size: 13px;
  line-height: 1.4;
}

#tickets .ticket-card article strong {
  font-size: clamp(44px, 3.8vw, 62px);
  line-height: 0.95;
}

#tickets .ticket-card article span {
  color: rgba(10, 10, 10, 0.42);
  font-size: 9px;
}

#tickets .ticket-card .btn {
  width: calc(100% - 48px);
  margin: 18px 24px 12px;
  padding: 16px 18px;
  font-size: 10px;
  letter-spacing: 2.8px;
}

#tickets .ticket-card > small {
  padding: 0 24px 20px;
  color: rgba(10, 10, 10, 0.42);
  font-size: 9px;
  letter-spacing: 2px;
}

@media (max-width: 1180px) {
  #tickets .tickets-wrap {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  #tickets .ticket-card {
    justify-self: start;
  }
}

@media (max-width: 820px) {
  #tickets.surface-dark {
    padding: 68px 0 74px;
  }

  #tickets .ticket-title {
    font-size: clamp(58px, 16vw, 86px);
  }

  #tickets .ticket-meta {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 34px;
  }

  #tickets .ticket-meta h4 {
    white-space: normal;
  }

  #tickets .ticket-card {
    width: 100%;
  }

  #tickets .ticket-card article {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-areas:
      "meta"
      "price"
      "unit";
    row-gap: 10px;
  }

  #tickets .ticket-card article strong,
  #tickets .ticket-card article span {
    justify-self: start;
  }
}

/* Final sponsor-card polish: keep all three carousel tiers stable and reference-accurate. */
#sponsors .sponsor-feature-card,
#sponsors .tier-voice-card,
#sponsors .tier-friend-card,
#sponsors .pricing-card {
  transition: none;
}

#sponsors .sponsor-feature-card:hover,
#sponsors .tier-voice-card:hover,
#sponsors .tier-friend-card:hover,
#sponsors .pricing-card:hover {
  transform: none !important;
  box-shadow: none !important;
}

#sponsors .sponsor-feature-card:hover .sponsor-side-benefits article,
#sponsors .sponsor-feature-card:hover .feature-points article,
#sponsors .sponsor-feature-card:hover .feature-inline-tags > span,
#sponsors .tier-voice-card:hover .tier-voice-points article {
  transform: none !important;
}

#sponsors .sponsor-feature-card:hover .sponsor-side-benefits article {
  background-color: #111111;
}

#sponsors .tier-voice-card:hover .tier-voice-image,
#sponsors .tier-friend-card:hover .tier-friend-avatar img {
  transform: none !important;
  filter: inherit;
}

#sponsors .sponsor-feature-card,
#sponsors .sponsor-feature-card[data-tier-layout="voice"],
#sponsors .sponsor-feature-card[data-tier-layout="friend"] {
  width: 100%;
  max-width: 1280px;
  height: 720px;
  min-height: 720px;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
}

#sponsors .sponsor-feature-card:not([data-tier-layout="friend"]) {
  grid-template-rows: 1fr auto;
}

#sponsors .sponsor-feature-card:not([data-tier-layout="friend"]) .sponsor-feature-copy {
  align-self: center;
  padding: clamp(42px, 5vw, 72px);
}

#sponsors .sponsor-feature-card:not([data-tier-layout="friend"]) .sponsor-feature-visual {
  align-self: stretch;
  min-height: 0;
}

#sponsors .sponsor-feature-card:not([data-tier-layout="friend"]) .feature-points {
  align-self: end;
}

#sponsors .sponsor-feature-card:not([data-tier-layout="friend"]) .feature-points {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 140px;
  margin-top: 0;
}

#sponsors .sponsor-feature-card:not([data-tier-layout="friend"]) .feature-points article {
  min-width: 0;
  min-height: 140px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 18px;
  align-content: start;
  padding: 28px 28px 22px;
  overflow: visible;
}

#sponsors .feature-points article[hidden],
#sponsors .feature-points article.is-empty {
  display: none !important;
}

#sponsors .sponsor-feature-card:not([data-tier-layout="friend"]) .point-icon {
  position: static;
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 30px;
  height: 30px;
}

#sponsors .sponsor-feature-card:not([data-tier-layout="friend"]) .feature-points strong {
  grid-column: 2;
  grid-row: 1;
  max-width: 100%;
  font-size: clamp(18px, 1.35vw, 23px);
  line-height: 1.03;
  overflow-wrap: anywhere;
}

#sponsors .sponsor-feature-card:not([data-tier-layout="friend"]) .feature-points p {
  grid-column: 2;
  grid-row: 2;
  max-width: 100%;
  margin: 8px 0 0;
  font-size: 11px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

#sponsors .sponsor-feature-card[data-tier-layout="voice"] .feature-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

#sponsors .sponsor-feature-card[data-tier-layout="voice"] .feature-points article {
  min-height: 140px;
  padding: 28px 30px 22px;
}

#sponsors .sponsor-feature-card[data-tier-layout="voice"] {
  grid-template-columns: 430px minmax(0, 1fr);
  grid-template-rows: minmax(500px, 1fr) 170px;
  align-items: stretch;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 24px;
}

#sponsors .sponsor-feature-card[data-tier-layout="voice"] .tier-badge {
  display: none;
}

#sponsors .sponsor-feature-card[data-tier-layout="voice"] .sponsor-feature-visual {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 36px 0 0 28px;
}

#sponsors .sponsor-feature-card[data-tier-layout="voice"] .sponsor-feature-photo {
  width: 386px;
  height: 486px;
  margin: 0;
  overflow: visible;
}

#sponsors .sponsor-feature-card[data-tier-layout="voice"] .sponsor-feature-photo::before,
#sponsors .sponsor-feature-card[data-tier-layout="voice"] .sponsor-feature-photo::after {
  display: none;
}

#sponsors .sponsor-feature-card[data-tier-layout="voice"] .sponsor-feature-photo img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  clip-path: none;
  filter: none;
  object-fit: cover;
  object-position: center center;
}

#sponsors .sponsor-feature-card[data-tier-layout="voice"] .sponsor-feature-copy {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  max-width: 620px;
  padding: 18px 56px 0 32px;
}

#sponsors .sponsor-feature-card[data-tier-layout="voice"] .feature-kicker {
  margin-top: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

#sponsors .sponsor-feature-card[data-tier-layout="voice"] .feature-kicker::after {
  width: 48px;
  height: 2px;
  margin-top: 14px;
}

#sponsors .sponsor-feature-card[data-tier-layout="voice"] .sponsor-feature-copy h3 {
  max-width: 560px;
  margin-top: 20px;
  font-size: clamp(88px, 8vw, 124px);
  line-height: 0.82;
}

#sponsors .sponsor-feature-card[data-tier-layout="voice"] .feature-body {
  max-width: 560px;
  margin-top: 28px;
  color: #ffffff;
  font-size: clamp(21px, 1.8vw, 25px);
  line-height: 1.18;
}

#sponsors .sponsor-feature-card[data-tier-layout="voice"] .feature-carousel-nav {
  display: none;
}

#sponsors .sponsor-feature-card[data-tier-layout="voice"] .feature-points {
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: stretch;
  min-height: 170px;
  border-top: 0;
}

#sponsors .sponsor-feature-card[data-tier-layout="voice"] .feature-points article {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  grid-template-rows: auto auto;
  min-height: 170px;
  padding: 38px 48px 30px 58px;
  border-right: 1px solid rgba(255, 255, 255, 0.72);
}

#sponsors .sponsor-feature-card[data-tier-layout="voice"] .feature-points article:last-child,
#sponsors .sponsor-feature-card[data-tier-layout="voice"] .feature-points article:nth-child(3) {
  border-right: 0;
}

#sponsors .sponsor-feature-card[data-tier-layout="voice"] .point-icon {
  position: static;
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 52px;
  height: 52px;
  color: var(--red);
}

#sponsors .sponsor-feature-card[data-tier-layout="voice"] .feature-points strong {
  grid-column: 2;
  grid-row: 1;
  color: #ffffff;
  font-size: clamp(25px, 2vw, 32px);
  line-height: 1;
}

#sponsors .sponsor-feature-card[data-tier-layout="voice"] .feature-points p {
  grid-column: 2;
  grid-row: 2;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  line-height: 1.15;
}

#sponsors .sponsor-feature-card[data-tier-layout="friend"] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(64px, 6vw, 100px);
  height: 720px;
  min-height: 720px;
  padding: clamp(56px, 5vw, 72px);
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.96);
  border-radius: 24px;
  box-shadow: none;
  overflow: hidden;
}

#sponsors .sponsor-feature-card[data-tier-layout="friend"] .tier-badge {
  position: absolute;
  left: 32px;
  top: 30px;
  z-index: 6;
  min-width: 86px;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 5px;
  background: var(--red);
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
}

#sponsors .sponsor-feature-card[data-tier-layout="friend"] .sponsor-feature-visual {
  order: 1;
  flex: 0 0 35%;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  min-height: 0;
  padding: 0;
}

#sponsors .sponsor-feature-card[data-tier-layout="friend"] .sponsor-feature-photo {
  width: clamp(240px, 21vw, 260px);
  height: clamp(240px, 21vw, 260px);
  margin: 0;
  overflow: visible;
}

#sponsors .sponsor-feature-card[data-tier-layout="friend"] .sponsor-feature-photo::before {
  inset: 0;
  border: 4px solid var(--red);
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  clip-path: none;
}

#sponsors .sponsor-feature-card[data-tier-layout="friend"] .sponsor-feature-photo::after {
  right: -10px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border: 6px solid #000000;
  border-radius: 50%;
  background: var(--red);
  color: #ffffff;
  font-size: 30px;
  line-height: 47px;
}

#sponsors .sponsor-feature-card[data-tier-layout="friend"] .sponsor-feature-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  clip-path: none;
  object-fit: cover;
  object-position: center center;
}

#sponsors .sponsor-feature-card[data-tier-layout="friend"] .sponsor-feature-copy {
  order: 2;
  flex: 0 1 65%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
  min-width: 0;
  max-width: 780px;
}

#sponsors .sponsor-feature-card[data-tier-layout="friend"] .feature-kicker {
  margin: 0;
  color: var(--red);
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#sponsors .sponsor-feature-card[data-tier-layout="friend"] .feature-kicker::after {
  display: block;
  width: 54px;
  height: 2px;
  margin-top: 12px;
  background: var(--red);
}

#sponsors .sponsor-feature-card[data-tier-layout="friend"] .sponsor-feature-copy h3 {
  max-width: 720px;
  margin: 20px 0 0;
  color: #ffffff;
  font-size: clamp(96px, 9.4vw, 148px);
  line-height: 0.78;
  letter-spacing: -0.015em;
  text-align: left;
}

#sponsors .sponsor-feature-card[data-tier-layout="friend"] .feature-body {
  max-width: 620px;
  margin: 28px 0 0;
  color: #ffffff;
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 500;
  line-height: 1.22;
}

#sponsors .sponsor-feature-card[data-tier-layout="friend"] .feature-inline-tags {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(34px, 5vw, 76px);
  width: 100%;
  margin-top: 34px;
  padding: 0;
}

#sponsors .sponsor-feature-card[data-tier-layout="friend"] .feature-inline-tags > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: #ffffff;
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 500;
  line-height: 1;
}

#sponsors .sponsor-feature-card[data-tier-layout="friend"] .inline-tag-icon {
  width: 24px;
  height: 24px;
  color: var(--red);
  flex: 0 0 24px;
}

#sponsors .sponsor-pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

#sponsors .pricing-card,
#sponsors .pricing-card.pricing-card-featured {
  min-height: 460px;
  padding: 28px 28px 26px;
  border-color: rgba(245, 242, 236, 0.2);
  box-shadow: none;
}

#sponsors .pricing-card.pricing-card-featured {
  border-color: var(--red);
}

#sponsors .pricing-card h3,
#sponsors .pricing-card.pricing-card-featured h3 {
  font-size: clamp(44px, 4.2vw, 64px);
}

#sponsors .pricing-card h4,
#sponsors .pricing-card.pricing-card-featured h4 {
  margin-top: 20px;
  font-size: clamp(22px, 1.7vw, 32px);
}

#sponsors .pricing-card .pricing-price,
#sponsors .pricing-card.pricing-card-featured .pricing-price {
  margin-top: 14px;
  font-size: clamp(30px, 2.8vw, 42px);
}

#sponsors .pricing-card ul {
  gap: 12px;
  margin-top: 22px;
}

#sponsors .pricing-card li {
  font-size: 14px;
  line-height: 1.35;
}

#sponsors .sponsor-feature-card[data-tier-layout="voice"] {
  grid-template-columns: minmax(240px, 0.36fr) minmax(420px, 0.64fr);
}

/* Re-enable sponsor pricing hover motion after the later no-transition override.
   Keep the featured card visually neutral until hover, then reveal the red frame. */
#sponsors .sponsor-pricing-grid .pricing-card,
#sponsors .sponsor-pricing-grid .pricing-card.pricing-card-featured {
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease,
    background-color 260ms ease,
    background-image 260ms ease,
    color 260ms ease;
  will-change: transform;
}

#sponsors .sponsor-pricing-grid .pricing-card.pricing-card-featured {
  border-color: rgba(245, 242, 236, 0.2);
  box-shadow: none;
}

#sponsors .sponsor-pricing-grid .pricing-card:hover,
#sponsors .sponsor-pricing-grid .pricing-card:focus-within {
  transform: translateY(-6px) scale(1.01);
  border-color: var(--red);
  background-color: var(--cream);
  background-image:
    var(--cream-noise-tone),
    var(--cream-noise);
  background-size: auto, 1200px auto;
  background-position: center, 0 0;
  color: var(--black);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.24) inset,
    0 0 0 1px rgba(255, 0, 60, 0.95) inset,
    0 18px 40px rgba(0, 0, 0, 0.28);
}

#sponsors .sponsor-pricing-grid .pricing-card:hover h3,
#sponsors .sponsor-pricing-grid .pricing-card:focus-within h3,
#sponsors .sponsor-pricing-grid .pricing-card:hover h4,
#sponsors .sponsor-pricing-grid .pricing-card:focus-within h4 {
  color: var(--red);
}

#sponsors .sponsor-pricing-grid .pricing-card:hover .pricing-price,
#sponsors .sponsor-pricing-grid .pricing-card:focus-within .pricing-price {
  color: var(--black);
}

#sponsors .sponsor-pricing-grid .pricing-card:hover li,
#sponsors .sponsor-pricing-grid .pricing-card:focus-within li {
  color: rgba(10, 10, 10, 0.9);
}

#sponsors .sponsor-pricing-grid .pricing-card:hover li::before,
#sponsors .sponsor-pricing-grid .pricing-card:focus-within li::before {
  border-color: var(--red);
  color: var(--red);
}

#sponsors .sponsor-pricing-grid .pricing-card:hover li.is-included::before,
#sponsors .sponsor-pricing-grid .pricing-card:focus-within li.is-included::before {
  border-color: transparent;
  color: var(--red);
}

@media (max-width: 1180px) {
  #sponsors .sponsor-feature-card[data-tier-layout="friend"],
  #sponsors .sponsor-feature-card[data-tier-layout="voice"] {
    min-height: auto;
  }

  #sponsors .sponsor-feature-card,
  #sponsors .sponsor-feature-card[data-tier-layout="voice"],
  #sponsors .sponsor-feature-card[data-tier-layout="friend"] {
    height: auto;
    min-height: auto;
    aspect-ratio: 16 / 9;
  }

  #sponsors .sponsor-feature-card[data-tier-layout="friend"] {
    gap: 34px;
    padding: 44px 38px;
  }

  #sponsors .sponsor-feature-card[data-tier-layout="friend"] .sponsor-feature-visual {
    flex-basis: 35%;
  }

  #sponsors .sponsor-feature-card[data-tier-layout="friend"] .sponsor-feature-copy {
    flex-basis: 65%;
  }

  #sponsors .sponsor-feature-card[data-tier-layout="friend"] .feature-inline-tags {
    gap: 24px;
  }

  #sponsors .sponsor-feature-card[data-tier-layout="friend"] .sponsor-feature-photo {
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 820px) {
  #sponsors .sponsor-feature-card[data-tier-layout="friend"],
  #sponsors .sponsor-feature-card[data-tier-layout="voice"],
  #sponsors .sponsor-pricing-grid {
    grid-template-columns: 1fr;
  }

  #sponsors .sponsor-feature-card[data-tier-layout="voice"] {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    min-height: auto;
    aspect-ratio: auto;
    padding: 28px 16px 18px;
  }

  #sponsors .sponsor-feature-card[data-tier-layout="voice"] .sponsor-feature-visual {
    order: 2;
    width: 100%;
    justify-content: center;
    padding: 0;
  }

  #sponsors .sponsor-feature-card[data-tier-layout="voice"] .sponsor-feature-photo {
    width: min(100%, 300px);
    height: auto;
    aspect-ratio: 16 / 10;
    margin: 0 auto;
    overflow: hidden;
  }

  #sponsors .sponsor-feature-card[data-tier-layout="voice"] .sponsor-feature-photo img {
    border-radius: 18px;
    object-position: center top;
  }

  #sponsors .sponsor-feature-card[data-tier-layout="voice"] .sponsor-feature-copy {
    order: 1;
    align-self: start;
    max-width: 100%;
    padding: 0;
  }

  #sponsors .sponsor-feature-card[data-tier-layout="voice"] .sponsor-feature-copy h3 {
    margin-top: 12px;
    font-size: clamp(48px, 12vw, 72px);
    line-height: 0.9;
  }

  #sponsors .sponsor-feature-card[data-tier-layout="voice"] .feature-body {
    max-width: 100%;
    margin-top: 12px;
    font-size: clamp(15px, 3.8vw, 18px);
    line-height: 1.28;
  }

  #sponsors .sponsor-feature-card[data-tier-layout="voice"] .feature-points {
    order: 3;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    min-height: auto;
  }

  #sponsors .sponsor-feature-card[data-tier-layout="voice"] .feature-points article {
    min-height: auto;
    padding: 14px 14px 12px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    grid-template-columns: 32px minmax(0, 1fr);
    grid-template-rows: auto auto;
  }

  #sponsors .sponsor-feature-card[data-tier-layout="voice"] .feature-points article:nth-child(2n) {
    border-right: 0;
  }

  #sponsors .sponsor-feature-card[data-tier-layout="voice"] .feature-points article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  #sponsors .sponsor-feature-card[data-tier-layout="voice"] .feature-points article:last-child {
    border-bottom: 0;
  }

  #sponsors .sponsor-feature-card[data-tier-layout="voice"] .point-icon {
    width: 32px;
    height: 32px;
  }

  #sponsors .sponsor-feature-card[data-tier-layout="voice"] .feature-points strong {
    font-size: clamp(15px, 4.2vw, 19px);
  }

  #sponsors .sponsor-feature-card[data-tier-layout="voice"] .feature-points p {
    margin-top: 8px;
    font-size: 11px;
    line-height: 1.35;
  }

  #sponsors .sponsor-feature-card[data-tier-layout="friend"] {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding: 64px 22px 28px;
  }

  #sponsors .sponsor-feature-card[data-tier-layout="friend"] .sponsor-feature-visual {
    align-self: auto;
    flex-basis: auto;
    width: 100%;
    justify-content: flex-start;
  }

  #sponsors .sponsor-feature-card[data-tier-layout="friend"] .sponsor-feature-copy {
    flex-basis: auto;
    width: 100%;
  }

  #sponsors .sponsor-feature-card[data-tier-layout="friend"] .feature-inline-tags {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

.btn:hover,
.btn:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--cream);
  background: var(--red);
  border-color: var(--red);
}

.btn-dark:hover,
.btn-dark:focus-visible,
.btn-light:hover,
.btn-light:focus-visible {
  color: var(--cream);
  background: var(--red);
  border-color: var(--red);
}

@media (max-width: 820px) {
  .speaker-title,
  .partner-feature-heading h2,
  #apply .apply-title {
    width: 100%;
    max-width: 100%;
  }

  .speaker-line,
  .partner-feature-heading h2 > .partner-line,
  #apply .apply-title > span,
  #apply .apply-title > strong {
    width: auto !important;
    max-width: 100% !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: normal;
  }

  .partner-feature-heading h2 > .partner-line--middle {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .partner-feature-heading h2 > .partner-line--middle span {
    white-space: normal !important;
  }

  #speakers,
  #apply,
  #sponsors,
  .footer,
  .hero {
    overflow-x: hidden;
  }
}

@media (max-width: 420px) {
  .sponsor-showcase-card--voice {
    gap: 12px;
    padding: 16px 14px 14px;
  }

  .sponsor-showcase-body--voice {
    gap: 10px;
  }

  .sponsor-showcase-body--voice .sponsor-showcase-visual {
    min-height: 0;
  }

  .sponsor-showcase-copy h3 {
    margin: 8px 0 10px;
    font-size: clamp(44px, 16vw, 66px);
    line-height: 0.9;
  }

  .showcase-label {
    font-size: 11px;
  }

  .showcase-rule {
    width: 64px;
    margin: 10px 0 14px;
  }

  .showcase-description {
    font-size: 15px;
    line-height: 1.3;
  }

  .sponsor-showcase-visual--voice img {
    height: min(82vw, 360px);
    border-radius: 16px;
    clip-path: polygon(0 0, 92% 0, 80% 100%, 0 100%);
  }

  .sponsor-showcase-card--voice .sponsor-showcase-features--three > div {
    padding: 12px 12px 10px;
  }

  .sponsor-showcase-card--voice .sponsor-showcase-features strong {
    font-size: 15px;
  }

  .sponsor-showcase-card--voice .sponsor-showcase-features p {
    margin-top: 6px;
    font-size: 10px;
    line-height: 1.2;
  }

  .sponsor-showcase-card--voice .feature-icon {
    width: 30px;
    height: 30px;
  }

  .home-page #sponsors .sponsor-showcase-card--voice {
    gap: 12px;
    padding: 16px 14px 14px;
  }

  .home-page #sponsors .sponsor-showcase-body--voice {
    gap: 10px;
  }

  .home-page #sponsors .sponsor-showcase-body--voice .sponsor-showcase-visual {
    min-height: 0;
  }

  .home-page #sponsors .sponsor-showcase-copy h3 {
    margin: 8px 0 10px;
    font-size: clamp(44px, 16vw, 66px);
    line-height: 1.02;
  }

  .home-page #sponsors .sponsor-showcase-copy h3 span:first-child,
  .home-page #sponsors .sponsor-showcase-copy h3 span:last-child {
    color: var(--red);
  }

  .home-page #sponsors .sponsor-showcase-copy h3 span:last-child {
    color: var(--ink);
  }

  .home-page #sponsors .showcase-label {
    font-size: 11px;
  }

  .home-page #sponsors .showcase-rule {
    width: 64px;
    margin: 10px 0 14px;
  }

  .home-page #sponsors .showcase-description {
    font-size: 15px;
    line-height: 1.3;
  }

  .home-page #sponsors .sponsor-showcase-visual--voice img {
    height: min(82vw, 360px);
    border-radius: 16px;
    clip-path: polygon(0 0, 92% 0, 80% 100%, 0 100%);
  }

  .home-page #sponsors .sponsor-showcase-card--voice .sponsor-showcase-features--three > div {
    padding: 12px 12px 10px;
  }

  .home-page #sponsors .sponsor-showcase-card--voice .sponsor-showcase-features strong {
    font-size: 15px;
  }

  .home-page #sponsors .sponsor-showcase-card--voice .sponsor-showcase-features p {
    margin-top: 6px;
    font-size: 10px;
    line-height: 1.2;
  }

  .home-page #sponsors .sponsor-showcase-card--voice .feature-icon {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 980px) {
  .home-page #sponsors .sponsor-showcase-card--voice,
  .home-page #sponsors .sponsor-showcase-card--friend {
    color: var(--cream);
    background-color: #000;
    background-image: none;
    background-position: center top;
    background-size: auto;
    background-repeat: no-repeat;
    border-color: rgba(245, 242, 236, 0.9);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  }

  .home-page #sponsors .sponsor-showcase-card--voice .sponsor-showcase-copy h3 span:first-child,
  .home-page #sponsors .sponsor-showcase-card--friend .sponsor-showcase-copy h3 span:first-child,
  .home-page #sponsors .sponsor-showcase-card--voice .showcase-label,
  .home-page #sponsors .sponsor-showcase-card--friend .showcase-label,
  .home-page #sponsors .sponsor-showcase-card--voice .showcase-live-sponsor,
  .home-page #sponsors .sponsor-showcase-card--friend .showcase-live-sponsor {
    color: var(--red);
  }

  .home-page #sponsors .sponsor-showcase-card--voice .sponsor-showcase-copy h3 span:last-child,
  .home-page #sponsors .sponsor-showcase-card--friend .sponsor-showcase-copy h3 span:last-child,
  .home-page #sponsors .sponsor-showcase-card--voice .showcase-description,
  .home-page #sponsors .sponsor-showcase-card--friend .showcase-description,
  .home-page #sponsors .sponsor-showcase-card--voice .sponsor-showcase-features strong,
  .home-page #sponsors .sponsor-showcase-card--friend .friend-inline-points strong,
  .home-page #sponsors .sponsor-showcase-card--voice .sponsor-showcase-features p,
  .home-page #sponsors .sponsor-showcase-card--friend .friend-inline-points {
    color: var(--cream);
  }

  .home-page #sponsors .showcase-rule {
    background: var(--cream);
  }

  .home-page #sponsors .sponsor-showcase-body--voice,
  .home-page #sponsors .sponsor-showcase-body--friend {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .home-page #sponsors .sponsor-showcase-body--voice .sponsor-showcase-visual,
  .home-page #sponsors .sponsor-showcase-body--friend .sponsor-showcase-visual {
    order: 1;
    width: 100%;
    min-height: 0;
  }

  .home-page #sponsors .sponsor-showcase-body--voice .sponsor-showcase-copy,
  .home-page #sponsors .sponsor-showcase-body--friend .sponsor-showcase-copy {
    order: 2;
    width: 100%;
    max-width: none;
  }

  .home-page #sponsors .sponsor-showcase-copy h3 {
    margin: 10px 0 16px;
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(58px, 16vw, 92px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.04em;
    text-transform: uppercase;
  }

  .home-page #sponsors .showcase-description {
    width: 100%;
    font-size: clamp(17px, 4.5vw, 19px);
    line-height: 1.36;
  }

  .home-page #sponsors .sponsor-showcase-visual--voice img {
    width: 100%;
    height: min(82vw, 360px);
    clip-path: none;
    border-radius: 18px;
    object-fit: cover;
    object-position: center center;
  }

  .home-page #sponsors .friend-avatar {
    width: 200px;
    height: 200px;
    margin: 0 auto;
  }

  .home-page #sponsors .friend-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .home-page #sponsors .friend-heart {
    box-shadow: 0 0 0 7px #000;
  }

  .home-page #sponsors .sponsor-showcase-card--voice .sponsor-showcase-features--three {
    grid-template-columns: 1fr;
  }

  .home-page #sponsors .sponsor-showcase-card--voice .sponsor-showcase-features > div,
  .home-page #sponsors .sponsor-showcase-card--friend .friend-inline-points > div {
    padding: 18px 18px 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(245, 242, 236, 0.12);
  }

  .home-page #sponsors .sponsor-showcase-card--voice .sponsor-showcase-features > div:last-child,
  .home-page #sponsors .sponsor-showcase-card--friend .friend-inline-points > div:last-child {
    border-bottom: 0;
  }

  .home-page #sponsors .sponsor-showcase-card--friend .friend-inline-points {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-top: 18px;
  }
}

@media (max-width: 420px) {
  .home-page #sponsors .sponsor-showcase-card--voice,
  .home-page #sponsors .sponsor-showcase-card--friend {
    padding: 16px 14px 14px;
  }

  .home-page #sponsors .sponsor-showcase-card--voice .sponsor-showcase-copy h3,
  .home-page #sponsors .sponsor-showcase-card--friend .sponsor-showcase-copy h3 {
    margin: 8px 0 10px;
    font-size: clamp(44px, 16vw, 66px);
    line-height: 1.02;
  }

  .home-page #sponsors .sponsor-showcase-card--voice .showcase-description,
  .home-page #sponsors .sponsor-showcase-card--friend .showcase-description {
    font-size: 15px;
    line-height: 1.3;
  }

  .home-page #sponsors .sponsor-showcase-visual--voice img {
    height: min(82vw, 360px);
    clip-path: none;
    border-radius: 18px;
    object-fit: cover;
    object-position: center center;
  }

  .home-page #sponsors .friend-avatar {
    width: 160px;
    height: 160px;
  }

  .home-page #sponsors .sponsor-showcase-card--voice .sponsor-showcase-features > div,
  .home-page #sponsors .sponsor-showcase-card--friend .friend-inline-points > div {
    padding: 12px 12px 10px;
  }

  .home-page #sponsors .sponsor-showcase-card--friend .friend-inline-points {
    gap: 14px;
    margin-top: 14px;
  }
}

.home-page #sponsors .sponsor-showcase-card::before,
.home-page #sponsors .sponsor-showcase-card::after {
  display: none !important;
  background: none !important;
}

.home-page #sponsors .sponsor-showcase-features {
  border-top: 0 !important;
}

.home-page #sponsors .sponsor-showcase-features > div,
.home-page #sponsors .sponsor-showcase-card--friend .friend-inline-points > div {
  border-right: 0 !important;
  border-bottom: 0 !important;
}

.home-page #speakers .speaker-photo-panel {
  align-self: end;
}
