@import url("https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700;800;900&family=IBM+Plex+Mono:wght@500;600;700&family=Manrope:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700&display=swap");

:root {
  --paper: #f5f2ec;
  --ink: #000000;
  --charcoal: #000000;
  --footer: #141413;
  --red: #eb0028;
  --muted: #66615d;
  --line: rgba(10, 10, 10, 0.16);
  --paper-line: rgba(245, 242, 236, 0.18);
  --max: 860px;
  --header-pad: clamp(18px, 3vw, 64px);
  --site-header-offset: clamp(92px, 10vw, 118px);
}

.container {
  width: min(1280px, calc(100% - var(--header-pad) * 2));
  margin-inline: auto;
}

.page-topbar {
  position: fixed;
  top: 8px;
  left: 0;
  right: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(245, 242, 236, 0.9)),
    url("../images/Rectangle_52_1.webp") center top / 1100px auto repeat;
}

.page-topbar .hero-topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.15);
  padding: 10px 0;
}

.page-topbar .brand {
  color: var(--red);
  font-family: "Anton", Impact, sans-serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.3px;
  line-height: 1;
  white-space: nowrap;
}

.page-topbar .brand sup {
  font-size: 18px;
  top: -0.56em;
  position: relative;
}

.page-topbar .brand > span {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.page-topbar .brand em {
  margin-left: 8px;
  color: rgba(10, 10, 10, 0.8);
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.45px;
}

.page-topbar .top-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.page-topbar .top-nav a {
  position: relative;
  color: rgba(10, 10, 10, 0.7);
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.75px;
  text-transform: uppercase;
}

.page-topbar .top-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.3s ease;
}

.page-topbar .top-nav a:hover::after,
.page-topbar .top-nav a:focus-visible::after {
  width: 100%;
}

.page-topbar .btn {
  min-width: 0;
  min-height: 0;
  padding: 15px 28px;
  border-color: rgba(10, 10, 10, 0.6);
  color: var(--ink);
  background: transparent;
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.75px;
}

.page-topbar .btn:hover,
.page-topbar .btn:focus-visible {
  transform: translateY(-2px);
  color: var(--paper);
  background: var(--red);
  border-color: var(--red);
}

.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, 0.24);
  background: rgba(245, 242, 236, 0.88);
  color: var(--ink);
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.75px;
  text-transform: uppercase;
  transition: transform 0.24s ease, background-color 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}

.site-menu-toggle:hover,
.site-menu-toggle:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(10, 10, 10, 0.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 0.24s ease, opacity 0.24s ease;
}

.page-topbar .hero-topbar.is-menu-open .site-menu-icon span:nth-child(1),
.hero-topbar.is-menu-open .site-menu-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.page-topbar .hero-topbar.is-menu-open .site-menu-icon span:nth-child(2),
.hero-topbar.is-menu-open .site-menu-icon span:nth-child(2) {
  opacity: 0;
}

.page-topbar .hero-topbar.is-menu-open .site-menu-icon span:nth-child(3),
.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;
}

.sponsor-redesign {
  color: #0a0a0a;
  background: var(--paper) url("../images/Rectangle_52_1.webp") center top / 1100px auto repeat;
}

.sponsor-redesign .site-header {
  background: transparent;
}

.sponsor-redesign .nav-wrap,
.sponsor-redesign .site-footer .wrap {
  width: min(1280px, calc(100vw - 48px));
}

.sponsor-wrap {
  width: min(1280px, calc(100vw - 48px));
  margin: 0 auto;
}

.sponsor-hero {
  padding: clamp(90px, 10vw, 150px) 24px clamp(72px, 8vw, 108px);
  color: var(--paper);
  background: #050505;
}

.sponsor-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: rgba(245, 242, 236, 0.86);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.sponsor-back::before {
  content: "<";
  letter-spacing: 0;
}

.sponsor-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 220px;
  min-height: 40px;
  margin-bottom: 34px;
  padding: 0 36px;
  color: var(--paper);
  background: var(--red);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.sponsor-display {
  margin: 0;
  color: var(--paper);
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(82px, 12vw, 180px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.sponsor-display span {
  display: block;
}

.sponsor-display span:last-child {
  color: var(--red);
}

.sponsor-lede {
  width: min(610px, 100%);
  margin: 54px 0 0;
  color: rgba(245, 242, 236, 0.9);
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.45;
}

.sponsor-light {
  padding: clamp(86px, 9vw, 128px) 24px clamp(110px, 12vw, 172px);
  background: #000;
  color: var(--paper);
}

.sponsor-section-head {
  margin-bottom: clamp(58px, 7vw, 96px);
}

.sponsor-kicker {
  margin-bottom: 24px;
  color: var(--red);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.sponsor-section-head h2,
.partner-heading h2,
.inquiry-copy h2 {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(58px, 7vw, 96px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.035em;
}

.sponsor-section-head h2 span,
.partner-heading h2 span,
.inquiry-copy h2 span {
  color: var(--red);
}

.sponsor-light .sponsor-section-head h2 {
  color: var(--paper);
}

.sponsor-section-head .sponsor-step-heading {
  line-height: 0.98;
}

.sponsor-section-head .sponsor-step-heading span {
  display: block;
  color: inherit;
}

.sponsor-section-head .sponsor-step-heading span:last-child {
  color: var(--red);
}

.sponsor-showcase {
  display: grid;
  gap: 18px;
  margin-top: clamp(28px, 3vw, 48px);
  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(--paper);
  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;
  transition: height 240ms ease;
}

.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(--paper);
  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(--paper);
  transform: translateY(-2px);
  outline: none;
}

.sponsor-carousel:focus-visible {
  outline: none;
}

.sponsor-showcase-card {
  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: 1px solid rgba(245, 242, 236, 0.92);
  border-radius: 24px;
  background: #000;
  color: var(--paper);
  overflow: hidden;
  text-decoration: none;
}

.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(--paper);
}

.showcase-description {
  width: min(520px, 100%);
  margin: 0;
  font-family: "Outfit", "Inter", sans-serif;
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.08;
}

.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;
}

.feature-icon--crown svg {
  fill: none;
}

.feature-icon--heart svg {
  fill: none;
}

.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(--paper);
  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(--paper);
}

.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(--paper);
  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(--paper);
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.pillar-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
  gap: clamp(34px, 5vw, 78px);
  padding: clamp(42px, 5vw, 64px);
  border: 1px solid rgba(10, 10, 10, 0.7);
  border-radius: 8px;
  background: rgba(245, 242, 236, 0.34);
  overflow: hidden;
}

.tier-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 18px;
  color: var(--paper);
  background: var(--red);
  border-radius: 3px;
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.impact-label {
  margin: 58px 0 0;
  color: var(--red);
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.impact-label::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 24px;
  background: var(--red);
}

.pillar-copy h3 {
  margin: 36px 0 24px;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(62px, 7vw, 98px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.pillar-copy h3 span {
  display: block;
  color: var(--red);
}

.pillar-copy p:last-child {
  width: min(510px, 100%);
  margin: 0;
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 22px;
  line-height: 1.25;
}

.pillar-visual {
  position: relative;
  min-height: 430px;
}

.pillar-visual img {
  position: absolute;
  right: 180px;
  bottom: 0;
  width: min(330px, 54%);
  height: 390px;
  object-fit: cover;
  border-radius: 2px;
  filter: saturate(0.94);
}

.benefit-stack {
  position: absolute;
  right: 0;
  top: 58px;
  width: 260px;
  padding: 24px 22px;
  color: var(--paper);
  background: #050505;
  border-radius: 6px;
}

.benefit-stack div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(245, 242, 236, 0.24);
}

.benefit-stack div:last-child {
  border-bottom: 0;
}

.benefit-stack span,
.pillar-features span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--red);
  border: 2px solid var(--red);
  border-radius: 50%;
}

.benefit-stack strong,
.pillar-features strong {
  display: block;
  font-family: "Anton", Impact, sans-serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 0.92;
  text-transform: uppercase;
}

.benefit-stack p,
.pillar-features 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;
}

.pillar-features {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 32px;
  padding-top: 38px;
}

.pillar-features div {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  padding: 0 28px;
  border-right: 1px solid rgba(10, 10, 10, 0.28);
}

.pillar-features div:last-child {
  border-right: 0;
}

.pillar-features p {
  color: rgba(10, 10, 10, 0.68);
}

.sponsor-tiers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(82px, 9vw, 128px);
}

.sponsor-tier {
  position: relative;
  min-height: 520px;
  padding: 48px 54px;
  border: 1px solid rgba(10, 10, 10, 0.16);
  background: rgba(255, 255, 255, 0.42);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.sponsor-tier:hover {
  transform: translateY(-8px);
  border-color: rgba(235, 0, 40, 0.55);
  box-shadow: 0 24px 60px rgba(10, 10, 10, 0.08);
}

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

.featured-tag {
  position: absolute;
  top: -21px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 150px;
  padding: 11px 22px;
  color: #fff;
  background: var(--red);
  border-radius: 999px;
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.sponsor-tier > span {
  display: block;
  color: rgba(10, 10, 10, 0.32);
  font-family: "Anton", Impact, sans-serif;
  font-size: 70px;
  line-height: 0.95;
}

.sponsor-tier.is-featured > span,
.sponsor-tier.is-featured h3 {
  color: var(--red);
}

.sponsor-tier h3 {
  margin: 18px 0 8px;
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 30px;
  line-height: 1;
}

.sponsor-tier strong {
  display: block;
  margin-bottom: 36px;
  color: #0a0a0a;
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 44px;
  line-height: 1;
}

.sponsor-tier ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sponsor-tier li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 17px 0;
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 14px;
}

.sponsor-tier li::before {
  content: "\2713";
  color: var(--red);
}

.sponsor-tier li.no::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 1px solid rgba(10, 10, 10, 0.42);
  border-radius: 50%;
}

.sponsor-tier-section {
  width: min(1064px, calc(100vw - 48px));
  margin: clamp(72px, 8vw, 112px) auto 0;
}

.sponsor-tier-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 40px;
}

.sponsor-tier-head .eyebrow {
  position: relative;
  margin: 0;
  padding-top: 8px;
  color: var(--red);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.44em;
  text-transform: uppercase;
}

.sponsor-tier-head .eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 44px;
  height: 1px;
  background: var(--red);
}

.sponsor-tier-head .btn-outline-light {
  min-width: 160px;
  min-height: 42px;
  color: var(--paper);
  background: transparent;
  border-color: rgba(245, 242, 236, 0.8);
}

.sponsor-tier-head .btn-outline-light:hover,
.sponsor-tier-head .btn-outline-light:focus-visible {
  color: var(--paper);
  background: var(--red);
  border-color: var(--red);
}

.sponsor-tier-pricing {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr 1fr 1fr;
  gap: 10px;
  align-items: stretch;
}

.sponsor-tier-card {
  position: relative;
  min-height: 460px;
  padding: 28px 28px 26px;
  border: 1px solid rgba(10, 10, 10, 0.16);
  background-color: var(--paper);
  background-image: none;
  color: var(--ink);
  font-family: "Outfit", "Inter", sans-serif;
  will-change: transform, border-color, box-shadow;
  transition:
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 180ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.sponsor-tier-card--featured {
  border-color: var(--red);
  box-shadow: 0 0 32px rgba(235, 0, 40, 0.2);
}

.sponsor-tier-number {
  margin: 0;
  color: var(--red);
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(44px, 4.2vw, 64px);
  line-height: 1;
}

.sponsor-tier-card--featured .sponsor-tier-number {
  color: var(--red);
  font-size: clamp(54px, 5.2vw, 76px);
}

.sponsor-tier-card h3 {
  margin: 20px 0 0;
  color: var(--red);
  font-size: clamp(22px, 1.7vw, 32px);
  font-weight: 700;
  line-height: 1.1;
}

.sponsor-tier-card--featured h3 {
  margin-top: 18px;
  color: var(--red);
}

.sponsor-tier-card strong {
  display: block;
  margin: 14px 0 0;
  color: var(--ink);
  font-size: clamp(30px, 2.8vw, 42px);
  font-weight: 700;
  line-height: 1;
}

.sponsor-tier-card--featured strong {
  color: var(--ink);
  font-size: clamp(36px, 3.3vw, 50px);
}

.sponsor-tier-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.sponsor-tier-card li {
  position: relative;
  padding-left: 34px;
  color: rgba(10, 10, 10, 0.9);
  font-size: 14px;
  line-height: 1.35;
}

.sponsor-tier-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 19px;
  height: 19px;
  border: 1px solid rgba(10, 10, 10, 0.45);
  border-radius: 50%;
}

.sponsor-tier-card li.is-included::before {
  content: "\2713";
  border-color: transparent;
  color: var(--red);
  font-size: 16px;
  line-height: 18px;
  text-align: center;
}

.sponsor-tier-card--featured li.is-included::before {
  color: var(--red);
}

.sponsor-tier-card:hover,
.sponsor-tier-card:focus-within {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: 0 0 0 1px rgba(235, 0, 40, 0.16) inset;
}

.sponsor-tier-card--featured:hover,
.sponsor-tier-card--featured:focus-within {
  border-color: var(--red);
  box-shadow: 0 0 0 1px rgba(235, 0, 40, 0.16) inset;
}

.sponsor-tier-pricing.reveal {
  overflow: hidden;
}

.sponsor-tier-pricing.reveal.is-visible .sponsor-tier-card {
  opacity: 1;
  transform: translateY(0);
}

.sponsor-tier-pricing .sponsor-tier-card {
  opacity: 0;
  transform: translateY(20px);
}

.sponsor-tier-pricing.reveal.is-visible .sponsor-tier-card:nth-child(1) {
  transition-delay: 80ms;
}

.sponsor-tier-pricing.reveal.is-visible .sponsor-tier-card:nth-child(2) {
  transition-delay: 150ms;
}

.sponsor-tier-pricing.reveal.is-visible .sponsor-tier-card:nth-child(3) {
  transition-delay: 220ms;
}

.partner-story {
  margin-top: clamp(86px, 10vw, 140px);
}

.partner-heading {
  margin-bottom: clamp(52px, 7vw, 92px);
}

.partner-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.98fr);
  gap: clamp(72px, 9vw, 136px);
  align-items: center;
}

.partner-carousel {
  display: grid;
  gap: 18px;
  margin-top: clamp(28px, 3vw, 48px);
}

.partner-carousel-viewport {
  overflow: hidden;
  width: 100%;
  touch-action: pan-y;
  cursor: grab;
}

.partner-carousel-viewport.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.partner-carousel-track {
  display: flex;
  align-items: stretch;
  width: 100%;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.partner-slide {
  flex: 0 0 100%;
  min-width: 100%;
  display: block;
  color: inherit;
  text-decoration: none;
}

.partner-slide[aria-hidden="true"] {
  pointer-events: none;
}

.partner-slide.profile-card-link {
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.partner-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.partner-carousel-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.24);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, opacity 180ms ease;
}

.partner-carousel-dots button:hover,
.partner-carousel-dots button.is-active {
  background: var(--red);
  transform: scale(1.3);
}

.partner-copy h3 {
  margin: 0 0 38px;
  font-family: "Outfit", "Inter", sans-serif;
  font-size: clamp(76px, 8vw, 124px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.partner-copy h3 span {
  display: block;
  color: var(--red);
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.partner-role {
  margin: 0 0 18px;
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 28px;
}

.partner-role::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  margin-top: 12px;
  background: var(--red);
}

.partner-copy p:last-child {
  max-width: 580px;
  color: rgba(10, 10, 10, 0.74);
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.35;
}

.partner-copy {
  overflow: hidden;
}

.partner-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #ddd;
  aspect-ratio: 1.55;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.partner-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: clamp(10px, 4%, 24px);
  box-sizing: border-box;
  transition: transform 700ms ease;
}

.partner-photo:hover img {
  transform: scale(1.045);
}

.partner-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 74px;
}

.sponsor-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 255px;
  min-height: 52px;
  border: 1px solid #0a0a0a;
  color: var(--paper);
  background: #0a0a0a;
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.sponsor-outline-btn:hover,
.sponsor-outline-btn:focus-visible {
  color: var(--paper);
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}

.sponsor-inquiry {
  padding: clamp(104px, 11vw, 164px) 24px;
  border-bottom: 1px solid rgba(245, 242, 236, 0.22);
  color: var(--paper);
  background: #000000;
}

.inquiry-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 0.98fr);
  gap: clamp(70px, 10vw, 150px);
  align-items: start;
}

.inquiry-copy h2 {
  color: var(--paper);
}

.inquiry-copy h2 span {
  color: var(--red);
}

.inquiry-copy p {
  max-width: 480px;
  margin: 34px 0 0;
  color: rgba(245, 242, 236, 0.72);
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

.sponsor-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 48px;
  padding: 42px;
  color: #0a0a0a;
  background: var(--cream, var(--paper)) url("../images/Rectangle_52_1.webp") center / 900px auto repeat;
}

.sponsor-form label {
  display: grid;
  gap: 10px;
  border-top: 1px solid rgba(10, 10, 10, 0.56);
  padding-top: 12px;
  color: rgba(10, 10, 10, 0.72);
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 17px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sponsor-form input,
.sponsor-form select,
.sponsor-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.56);
  border-radius: 0;
  padding: 0 0 14px;
  color: #0a0a0a;
  background: transparent;
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 17px;
  letter-spacing: 0;
  outline: none;
  text-transform: none;
}

.sponsor-form textarea {
  min-height: 110px;
  resize: vertical;
}

.sponsor-form .wide {
  grid-column: 1 / -1;
}

.sponsor-form button {
  justify-self: start;
  min-width: 180px;
  min-height: 52px;
  border: 1px solid #0a0a0a;
  color: #0a0a0a;
  background: transparent;
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.sponsor-redesign .site-footer {
  border-top: 1px solid rgba(245, 242, 236, 0.36);
}

.sponsor-redesign .pillar-panel.is-visible,
.sponsor-redesign .sponsor-tier.is-visible,
.sponsor-redesign .partner-photo.is-visible,
.sponsor-redesign .sponsor-form.is-visible {
  animation: sponsorLift 820ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

/* White sponsor-page theme override */
.sponsor-redesign {
  --cream-noise: url("../images/bnrxc0a94zomzer5rlnd.webp");
  color: var(--ink);
  background-color: var(--paper);
  background-image: var(--cream-noise);
  background-position: center top;
  background-size: 520px auto;
  background-repeat: repeat;
}

.sponsor-redesign .page-topbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--paper, #f5f2ec) url("../images/Rectangle_52_1.webp") center top / 520px auto repeat;
  border-bottom: 1px solid rgba(10, 10, 10, 0.12);
  backdrop-filter: none;
}

.sponsor-redesign .sponsor-hero {
  color: var(--paper);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.06), transparent 42%),
    linear-gradient(180deg, #050505, #000000);
}

.sponsor-redesign .sponsor-hero .sponsor-back,
.sponsor-redesign .sponsor-hero .sponsor-lede {
  color: rgba(245, 242, 236, 0.9);
}

.sponsor-redesign .sponsor-hero .sponsor-display {
  color: var(--paper);
}

.sponsor-redesign .sponsor-light,
.sponsor-redesign .partner-story {
  color: var(--ink);
  background: transparent;
}

.sponsor-redesign .sponsor-inquiry {
  color: var(--paper);
  background: #000000;
}

.sponsor-redesign .sponsor-back,
.sponsor-redesign .sponsor-lede,
.sponsor-redesign .partner-copy p:last-child,
.sponsor-redesign .partner-role,
.sponsor-redesign .inquiry-copy p {
  color: rgba(10, 10, 10, 0.78);
}

.sponsor-redesign .sponsor-display {
  color: var(--ink);
}

.sponsor-redesign .sponsor-light .sponsor-section-head h2,
.sponsor-redesign .partner-heading h2,
.sponsor-redesign .inquiry-copy h2 {
  color: var(--ink);
}

.sponsor-redesign .sponsor-inquiry .sponsor-kicker,
.sponsor-redesign .sponsor-inquiry .inquiry-copy h2 {
  color: var(--paper);
}

.sponsor-redesign .sponsor-inquiry .inquiry-copy h2 span {
  color: var(--red);
}

.sponsor-redesign .sponsor-inquiry .inquiry-copy p {
  color: rgba(245, 242, 236, 0.78);
}

.sponsor-redesign .partner-heading h2 {
  line-height: 0.98;
  overflow: visible;
  padding-bottom: 6px;
}

.sponsor-redesign .sponsor-showcase-card {
  color: var(--ink);
  background-color: var(--paper);
  background-image: var(--cream-noise);
  background-position: center top;
  background-size: 520px auto;
  background-repeat: repeat;
  border-color: rgba(10, 10, 10, 0.14);
  box-shadow: 0 24px 70px rgba(10, 10, 10, 0.05);
}

.sponsor-redesign .sponsor-showcase-copy h3 span:last-child,
.sponsor-redesign .sponsor-showcase-features strong,
.sponsor-redesign .showcase-description,
.sponsor-redesign .friend-inline-points strong {
  color: var(--ink);
}

.sponsor-redesign .showcase-benefits strong {
  color: var(--paper);
}

.sponsor-redesign .showcase-benefits {
  background: #111;
}

.sponsor-redesign .showcase-benefits p {
  color: rgba(245, 242, 236, 0.76);
}

.sponsor-redesign .sponsor-showcase-features p {
  color: rgba(10, 10, 10, 0.72);
}

.sponsor-redesign .sponsor-showcase-features {
  border-top-color: rgba(10, 10, 10, 0.16);
}

.sponsor-redesign .sponsor-showcase-features > div {
  border-right-color: rgba(10, 10, 10, 0.12);
}

.sponsor-redesign .showcase-rule {
  background: var(--ink);
}

.sponsor-redesign .friend-heart {
  box-shadow: 0 0 0 7px rgba(245, 242, 236, 0.98);
}

.sponsor-redesign .partner-photo {
  background: none !important;
  border-radius: 0 !important;
  aspect-ratio: auto;
  overflow: visible;
  display: block;
}

.sponsor-redesign .partner-photo img {
  padding: 0 !important;
  background: transparent !important;
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  height: auto;
  max-height: min(70vh, 580px);
  object-fit: contain;
  object-position: center center;
}

.sponsor-redesign .partner-photo img.live-media--showcase {
  width: 100%;
  height: auto;
  max-height: min(70vh, 580px);
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center center;
}

.sponsor-redesign .partner-photo img.live-media--portrait {
  aspect-ratio: auto;
  height: auto;
  max-height: none;
  object-fit: contain;
}

.sponsor-redesign .partner-photo img.live-media--logo {
  object-fit: contain;
  mix-blend-mode: multiply;
}

.sponsor-redesign .sponsor-outline-btn {
  color: var(--ink);
  background: transparent;
  border-color: rgba(10, 10, 10, 0.8);
}

.sponsor-redesign .sponsor-outline-btn:hover,
.sponsor-redesign .sponsor-outline-btn:focus-visible {
  color: var(--paper);
  background: var(--red);
  border-color: var(--red);
}

.sponsor-redesign .sponsor-form {
  color: var(--ink);
  background-color: var(--cream, var(--paper));
  background-image: var(--cream-noise);
  background-position: center top;
  background-size: 520px auto;
  background-repeat: repeat;
}

.sponsor-redesign .sponsor-form label,
.sponsor-redesign .sponsor-form input,
.sponsor-redesign .sponsor-form select,
.sponsor-redesign .sponsor-form textarea {
  color: var(--ink);
}

.sponsor-redesign .sponsor-form button {
  color: var(--ink);
  border-color: rgba(10, 10, 10, 0.8);
}

.sponsor-redesign .sponsor-form button:hover,
.sponsor-redesign .sponsor-form button:focus-visible {
  color: var(--paper);
  background: var(--red);
  border-color: var(--red);
}

@keyframes sponsorLift {
  0% {
    opacity: 0;
    transform: translateY(42px) scale(0.985);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 980px) {
  .partner-grid,
  .inquiry-grid {
    grid-template-columns: 1fr;
  }

  .sponsor-carousel-track {
    align-items: flex-start;
  }

  .sponsor-carousel-slide {
    align-self: flex-start;
  }

  .sponsor-showcase-card {
    grid-template-rows: auto auto;
    aspect-ratio: auto;
    min-height: 0;
    padding: 22px;
    align-content: start;
  }

  .sponsor-redesign .sponsor-showcase-card--voice,
  .sponsor-redesign .sponsor-showcase-card--friend {
    align-self: flex-start;
    height: auto;
    min-height: 0;
  }

  .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-redesign .sponsor-showcase-card {
    border-color: rgba(10, 10, 10, 0.22);
    box-shadow:
      0 18px 44px rgba(10, 10, 10, 0.08),
      inset 0 -1px 0 rgba(10, 10, 10, 0.12);
  }

  .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-visual--pillar {
    display: grid;
    gap: 18px;
    min-height: 0;
    height: auto;
  }

  .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;
  }

  .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-redesign .sponsor-showcase-visual--pillar.is-live-showcase img.live-media--showcase,
  .sponsor-redesign .sponsor-showcase-visual--voice.is-live-showcase img.live-media--showcase {
    height: min(82vw, 360px);
    object-fit: cover;
    object-position: center center;
  }

  .friend-inline-points {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .sponsor-carousel-arrows {
    flex-direction: column;
  }

  .sponsor-carousel-arrows button {
    width: 100%;
  }

  .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-tier-section {
    width: min(100%, calc(100vw - 48px));
  }

  .sponsor-tier-head {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .sponsor-tier-card {
    min-height: auto;
  }

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

@media (max-width: 640px) {
  .sponsor-hero,
  .sponsor-light,
  .sponsor-inquiry {
    padding-left: 18px;
    padding-right: 18px;
  }

  .sponsor-pill {
    min-width: 0;
  }

  .sponsor-form {
    padding: 28px;
  }

  .sponsor-showcase-card {
    padding: 20px;
  }

  .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: 15px;
    line-height: 1.12;
  }

  .sponsor-tier-section {
    width: min(100%, calc(100vw - 32px));
  }

  .sponsor-tier-head {
    margin-bottom: 28px;
  }

  .sponsor-tier-card {
    padding: 34px 24px 30px;
  }

  .sponsor-tier-number {
    font-size: 52px;
  }

  .sponsor-tier-card h3 {
    font-size: 26px;
  }

  .sponsor-tier-card strong {
    font-size: 34px;
  }

  .sponsor-showcase-visual--pillar {
    min-height: 320px;
  }

  .sponsor-showcase-visual--pillar img {
    position: relative;
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center top;
    border-radius: 18px;
    clip-path: none;
  }

  .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-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-form {
    grid-template-columns: 1fr;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--site-header-offset);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  background: var(--paper) url("../images/Rectangle_52_1.webp") center top / 1100px auto repeat;
  overflow-x: clip;
  padding-top: var(--site-header-offset);
}

body.dark-page {
  background-color: var(--charcoal);
  color: var(--paper);
}

.cursor-ring {
  position: fixed;
  left: -18px;
  top: -18px;
  z-index: 1000;
  width: 36px;
  height: 36px;
  border: 3px solid currentColor;
  border-radius: 50%;
  color: rgba(0, 0, 0, 0.84);
  pointer-events: none;
  transition: width 140ms ease, height 140ms ease, opacity 140ms ease;
  mix-blend-mode: difference;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: transparent;
  border-bottom: 0;
  padding-top: clamp(10px, 1.6vw, 20px);
}

.hero-topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  width: min(1280px, calc(100% - var(--header-pad) * 2));
  margin: 0 auto;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-dark);
}

.top-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.top-nav a {
  position: relative;
  color: rgba(10, 10, 10, 0.7);
  font-size: 11px;
  letter-spacing: 2.75px;
  text-transform: uppercase;
}

.top-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.3s ease;
}

.top-nav a:hover::after,
.top-nav a:focus-visible::after {
  width: 100%;
}

.btn-light {
  background: transparent;
  color: var(--ink);
  border-color: rgba(10, 10, 10, 0.6);
}

.btn-light:hover,
.btn-light:focus-visible {
  background: var(--red);
  border-color: var(--red);
  color: var(--paper);
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  width: min(1280px, calc(100% - var(--header-pad) * 2));
  margin: 0 auto;
  padding: 10px 0;
}

.brand {
  color: var(--red);
  font-family: "Anton", Impact, sans-serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.3px;
  line-height: 1;
  white-space: nowrap;
}

.brand-mark {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
}

.brand-mark sup {
  top: -0.56em;
  font-size: 18px;
  position: relative;
}

.brand > span:not(.brand-mark) {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex: 1;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  position: relative;
  color: rgba(10, 10, 10, 0.7);
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.75px;
  text-transform: uppercase;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 15px 28px;
  border: 1px solid rgba(10, 10, 10, 0.6);
  color: var(--ink);
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.75px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.24s ease, border-color 0.24s ease, color 0.24s ease, transform 0.24s ease;
}

.section {
  padding: clamp(74px, 9vw, 132px) 24px;
  scroll-margin-top: 76px;
}

.wrap {
  width: min(var(--max), calc(100vw - 48px));
  margin: 0 auto;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 78px;
  height: 2px;
  background: currentColor;
}

.label-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 40px;
  padding: 10px 22px;
  color: var(--paper);
  background: linear-gradient(90deg, #c91418, var(--red));
  font-family: Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.display {
  margin: 18px 0;
  font-family: "Anton", Impact, sans-serif;
  font-size: 120px;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.display .slide-line {
  display: block;
  transform: translateY(110%);
  animation: lineReveal 860ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.display .slide-line:nth-child(2) {
  animation-delay: 140ms;
}

.display span,
.red {
  color: var(--red);
}

.display .slide-line {
  color: inherit;
}

.display .slide-line.red {
  color: var(--red);
}

.headline {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-size: 72px;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: none;
}

.headline .red {
  display: inline;
}

.body-copy {
  max-width: 720px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.dark .body-copy,
.black-band .body-copy,
body.dark-page .body-copy {
  color: rgba(245, 242, 236, 0.78);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
}

.align-end {
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 145px;
  min-height: 44px;
  padding: 12px 20px;
  border: 1px solid currentColor;
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  color: var(--paper);
  background: var(--ink);
}

.btn.dark {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.btn.dark:hover {
  color: var(--ink);
  background: transparent;
}

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

.btn.red:hover,
.btn.is-active {
  color: var(--paper);
  background: var(--red);
  border-color: var(--red);
}

.hero {
  position: relative;
  min-height: calc(100vh - 44px);
  padding: 70px 24px 92px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 450px) minmax(0, 330px);
  gap: 80px;
  align-items: start;
}

.hero-copy {
  animation: fadeSlideUp 780ms ease both;
}

.event-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-weight: 800;
}

.event-logo .brand-mark {
  font-size: 43px;
}

.rule-text {
  width: min(420px, 100%);
  padding-top: 9px;
  border-top: 2px solid var(--red);
  color: #5a5754;
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-sub {
  position: relative;
  max-width: 440px;
  margin: 18px 0 0;
  padding-top: 22px;
  color: #55504d;
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1.6;
  text-transform: uppercase;
}

.hero-sub::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 58px;
  height: 2px;
  background: var(--red);
}

.event-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  max-width: 540px;
  margin-top: 22px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.meta-label {
  color: var(--red);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.meta-value {
  margin-top: 14px;
  font-family: "Anton", Impact, sans-serif;
  font-size: 30px;
  line-height: 0.95;
}

.hero-art {
  position: relative;
  min-height: 660px;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 12% -18% -8% 18%;
  background: radial-gradient(circle, rgba(235, 0, 40, 0.18), transparent 68%);
}

.hero-art img {
  position: relative;
  display: block;
  width: min(330px, 100%);
  margin: 0 auto;
  filter: drop-shadow(0 42px 42px rgba(0, 0, 0, 0.22));
  animation: artFloat 5.5s ease-in-out infinite, fadeSlideLeft 900ms ease both;
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(46px, 8vw, 110px);
  border-top: 1px solid var(--line);
}

.quote-strip {
  margin-top: 56px;
  padding: 28px;
  border: 1px solid var(--line);
  font-family: Georgia, serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.25;
}

.terms-hero-copy {
  font-family: Georgia, serif;
  font-size: 26px;
}

.motion-band {
  overflow: hidden;
  padding: 0 0 110px;
}

.motion-stage {
  position: relative;
  min-height: 520px;
  color: var(--paper);
  background: var(--ink);
}

.motion-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/Rectangle_52_1.webp") center / 900px auto repeat;
  opacity: 0.08;
}

.motion-inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
  min-height: 520px;
}

.kinetic-title {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(74px, 13vw, 190px);
  line-height: 0.82;
  text-transform: uppercase;
}

.kinetic-title span {
  display: block;
}

.ticker-window {
  overflow: hidden;
  border-top: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 18s linear infinite;
}

.ticker-track span {
  padding: 28px 34px;
  color: var(--red);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: clamp(18px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}

.slide-stack {
  display: grid;
  gap: 16px;
}

.slide-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 104px;
  padding: 22px;
  border: 1px solid var(--paper-line);
  background: rgba(245, 242, 236, 0.05);
  animation: cardSlide 7s ease-in-out infinite;
}

.slide-card:nth-child(2) {
  animation-delay: 650ms;
}

.slide-card:nth-child(3) {
  animation-delay: 1300ms;
}

.slide-card strong {
  display: block;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(34px, 4vw, 55px);
  line-height: 0.95;
}

.slide-card p {
  margin: 4px 0 0;
  color: rgba(245, 242, 236, 0.68);
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.person {
  min-height: 215px;
  padding: clamp(30px, 4vw, 48px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: transform 220ms ease, background 220ms ease;
}

.person:hover {
  transform: translateY(-6px);
  background: rgba(235, 0, 40, 0.04);
}

.person:nth-child(4n) {
  border-right: 0;
}

.person:nth-last-child(-n + 4) {
  border-bottom: 0;
}

.num {
  color: var(--red);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.person h3 {
  margin: 24px 0 10px;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 0.95;
}

.role {
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.person p,
.tier li,
.field,
.footer-small {
  color: var(--muted);
}

.scroll-label {
  display: grid;
  place-items: center;
  min-height: 88px;
  color: #5f5a56;
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.36em;
  line-height: 1.8;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.scroll-label:hover {
  color: var(--red);
  transform: translateY(3px);
}

.scroll-label span {
  display: block;
  width: 12px;
  height: 12px;
  margin-top: 3px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: scrollArrow 1.25s ease-in-out infinite;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 20px;
  min-height: auto;
  transform: translateX(-50%);
}

.hero-scroll:hover {
  transform: translateX(-50%) translateY(3px);
}

.event-ticker {
  overflow: hidden;
  background: var(--red);
  border-top: 1px solid var(--red);
  border-bottom: 1px solid var(--red);
}

.event-ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 22s linear infinite;
}

.event-ticker:hover .event-ticker-track {
  animation-play-state: paused;
}

.event-ticker span {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 22px 34px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 4.4vw, 58px);
  line-height: 0.95;
  white-space: nowrap;
}

.event-ticker span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
}

.dark-section {
  color: var(--paper);
  background: var(--ink);
}

.dark-section .headline,
.dark-section .body-copy,
.black-band .headline {
  color: var(--paper);
}

.dark-section .body-copy {
  color: rgba(245, 242, 236, 0.78);
}

.manifesto-dark {
  border-top: 0;
}

.manifesto-copy {
  position: relative;
}

.manifesto-copy::after {
  content: "Unheard";
  position: absolute;
  right: -10px;
  top: 48px;
  color: rgba(245, 242, 236, 0.035);
  font-family: "Anton", Impact, sans-serif;
  font-size: min(11vw, 150px);
  line-height: 0.82;
  pointer-events: none;
}

.editorial-copy {
  max-width: 790px;
  margin: 0 0 38px;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-style: italic;
  line-height: 1.28;
}

.ghost-inline {
  color: rgba(245, 242, 236, 0.08);
}

.quote-block {
  margin-top: clamp(76px, 9vw, 120px);
}

.quote-block blockquote {
  margin: 24px 0 12px;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 50px;
  line-height: 1.08;
  animation: quoteFloat 4.8s ease-in-out infinite;
}

.quote-block cite {
  color: var(--red);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-block:hover blockquote {
  color: var(--red);
}

.white-kicker {
  color: var(--paper);
}

.people-slider {
  overflow: hidden;
  margin-top: 72px;
}

.people-track {
  display: flex;
  width: max-content;
  animation: peopleSlide 24s linear infinite;
}

.people-slider:hover .people-track {
  animation-play-state: paused;
}

.people-track .people-grid {
  flex: 0 0 min(var(--max), calc(100vw - 48px));
}

.team-slider .people-track {
  animation-duration: 28s;
}

.team-slider .people-grid + .people-grid {
  margin-left: 28px;
}

.slow-track {
  animation-duration: 30s;
}

.reverse-track {
  animation-direction: reverse;
  animation-duration: 28s;
}

.dark-slider .people-grid {
  border-color: rgba(245, 242, 236, 0.38);
}

.dark-slider .person {
  border-color: rgba(245, 242, 236, 0.38);
}

.dark-slider .person h3,
.dark-slider .role {
  color: var(--paper);
}

.dark-slider .person p,
.dark-tiers .tier li {
  color: rgba(245, 242, 236, 0.7);
}

.dark-slider .person:hover {
  background: rgba(235, 0, 40, 0.08);
}

.sponsor-partner-head {
  align-items: start;
  margin: clamp(92px, 11vw, 150px) 0 28px;
}

.sponsor-partner-head .actions,
.partner-action {
  justify-content: flex-end;
}

.tier-kicker {
  margin-top: clamp(86px, 9vw, 130px);
}

.dark-tiers {
  margin-top: 42px;
  border-color: rgba(245, 242, 236, 0.22);
}

.dark-tiers .tier {
  background: transparent;
  border-color: rgba(245, 242, 236, 0.22);
}

.dark-tiers .tier h3,
.dark-tiers .tier strong {
  color: var(--paper);
}

.fine-print {
  color: rgba(245, 242, 236, 0.58);
  font-size: 13px;
  line-height: 1.5;
}

.organizer-spotlight {
  display: grid;
  grid-template-columns: minmax(260px, 410px) minmax(0, 1fr);
  gap: clamp(54px, 8vw, 110px);
  align-items: start;
}

.spotlight-poster {
  position: relative;
  margin-top: 26px;
  background: var(--ink);
}

.spotlight-poster img {
  display: block;
  width: 100%;
}

.spotlight-poster div {
  position: absolute;
  left: 22px;
  bottom: 20px;
  color: var(--paper);
  font-family: "Anton", Impact, sans-serif;
}

.spotlight-poster strong {
  display: block;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.9;
}

.spotlight-poster span {
  color: var(--red);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spotlight-quote {
  margin: 24px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2.4vw, 31px);
  font-style: italic;
  line-height: 1.32;
}

.spotlight-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 46px;
}

.spotlight-stats span,
.form-card label {
  display: block;
  color: var(--red);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.spotlight-stats strong {
  display: block;
  margin-top: 12px;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(24px, 3vw, 37px);
  line-height: 0.96;
}

.journey-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: clamp(54px, 10vw, 160px);
  align-items: center;
}

.journey-list {
  display: grid;
  gap: 0;
  margin-top: 72px;
  max-width: 880px;
}

.journey-list article {
  position: relative;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 26px;
  padding-bottom: 44px;
}

.journey-list article::before {
  content: "";
  position: absolute;
  left: 29px;
  top: 54px;
  bottom: 0;
  width: 1px;
  background: rgba(245, 242, 236, 0.32);
}

.journey-list article:last-child::before {
  display: none;
}

.journey-list article > span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--red);
  background: var(--paper);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-weight: 900;
}

.journey-list h3 {
  margin: 0;
  color: var(--paper);
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(31px, 3.8vw, 52px);
  line-height: 0.94;
  text-transform: uppercase;
}

.journey-list p {
  margin: 8px 0 0;
  color: rgba(245, 242, 236, 0.72);
  line-height: 1.55;
}

.team-grid {
  margin-top: 54px;
}

.black-band .event-meta {
  border-color: rgba(245, 242, 236, 0.16);
}

.black-band .fine-print {
  margin-top: 18px;
}

.ticket-card .fine-print {
  color: rgba(10, 10, 10, 0.5);
  margin: 18px 0 0;
}

.price span {
  display: block;
  color: #807b77;
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.volunteer-form label,
.dark-form label {
  color: var(--ink);
}

.volunteer-form {
  padding: 0;
  border: 0;
  background: transparent;
}

.volunteer-form .field {
  min-height: 62px;
  color: var(--ink);
  font-size: 17px;
}

.wide-label {
  grid-column: 1 / -1;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.chip-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 10px;
  letter-spacing: 0.14em;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.chip-row span.is-active {
  color: var(--paper);
  background: var(--red);
  border-color: var(--red);
}

.apply-tabs {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 58px;
}

.apply-layout {
  align-items: center;
}

.apply-title {
  max-width: 520px;
}

.dark-form {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
  padding: 54px;
}

.dark-form label {
  color: rgba(245, 242, 236, 0.74);
}

.dark-form .field {
  color: var(--paper);
  border-bottom-color: rgba(245, 242, 236, 0.34);
}

.dark-form .field::placeholder {
  color: rgba(245, 242, 236, 0.78);
}

.dark-form .btn {
  color: var(--paper);
}

.form-card .btn:hover,
.apply-tabs .btn:hover {
  color: var(--paper);
  background: var(--red);
  border-color: var(--red);
}

.faq {
  grid-template-columns: 1fr;
  max-width: 840px;
}

.black-band {
  color: var(--paper);
  background: var(--charcoal);
}

.role-marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(245, 242, 236, 0.35);
}

.role-track {
  display: flex;
  width: max-content;
  animation: tickerReverse 22s linear infinite;
}

.role-track span {
  padding: 22px 36px;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(38px, 6vw, 88px);
  line-height: 0.9;
  text-transform: uppercase;
  white-space: nowrap;
}

.ops-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.ops-card {
  min-height: 270px;
  padding: clamp(28px, 4vw, 42px);
  border-right: 1px solid var(--line);
  background: rgba(245, 242, 236, 0.42);
}

.ops-card:last-child {
  border-right: 0;
}

.ops-card h3 {
  margin: 32px 0 18px;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(38px, 4.8vw, 58px);
  line-height: 0.94;
}

.ops-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.thought-band {
  overflow: hidden;
  padding: 46px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.thought-track {
  display: flex;
  width: max-content;
  animation: thoughtSlide 34s linear infinite;
}

.thought-card {
  width: clamp(310px, 42vw, 560px);
  min-height: 270px;
  margin: 0 18px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  background: rgba(245, 242, 236, 0.6);
}

.thought-card figcaption,
.thought-card cite {
  color: var(--red);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.thought-card blockquote {
  margin: 26px 0;
  font-family: Georgia, serif;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.18;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(45px, 8vw, 120px);
  align-items: start;
}

.ticket-card,
.form-card,
.term-card,
.tier {
  border: 1px solid var(--line);
  background: rgba(245, 242, 236, 0.52);
}

.black-band .ticket-card,
.black-band .form-card {
  background: var(--paper) url("../images/Rectangle_52_1.webp") center top / 1100px auto repeat;
  color: var(--ink);
}

.ticket-card {
  padding: 42px;
}

.ticket-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.ticket-row h3 {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(36px, 4vw, 52px);
}

.price {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(36px, 4vw, 54px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: 46px;
  align-items: end;
  margin-bottom: 64px;
}

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

.faq details {
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(245, 242, 236, 0.42);
}

.faq summary {
  cursor: pointer;
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-hero {
  padding: clamp(95px, 13vw, 170px) 24px clamp(78px, 9vw, 130px);
  color: var(--paper);
  background: var(--ink);
}

.back {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--paper);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.page-hero .body-copy {
  max-width: 820px;
  color: var(--paper);
}

.sponsor-page .page-hero .body-copy {
  max-width: 460px;
}

.sponsor-page .wrap {
  width: min(860px, calc(100vw - 48px));
}

.hero-line {
  height: 4px;
  width: min(880px, 100%);
  margin-top: 32px;
  background: var(--red);
}

.sponsor-team {
  margin-top: 62px;
}

.sponsor-page .page-hero {
  padding-top: 92px;
  padding-bottom: 46px;
}

.sponsor-page .section {
  padding-top: 84px;
  padding-bottom: 84px;
}

.sponsor-page .headline {
  font-size: clamp(44px, 5vw, 60px);
}

.sponsor-page .people-grid {
  width: min(100%, 770px);
}

.sponsor-page .person {
  min-height: 154px;
  padding: 25px 30px;
}

.sponsor-page .person h3 {
  margin: 18px 0 8px;
  font-size: clamp(34px, 3.8vw, 44px);
}

.sponsor-page .role {
  font-size: 9px;
  letter-spacing: 0.24em;
}

.sponsor-page .person p {
  margin: 10px 0 0;
  font-size: 11px;
}

.sponsor-page .align-end {
  width: min(100%, 770px);
}

.sponsor-page .tiers {
  width: min(100%, 770px);
}

.sponsor-page .tier {
  min-height: 224px;
  padding: 28px;
}

.sponsor-page .tier h3 {
  margin-top: 18px;
  font-size: clamp(34px, 3.8vw, 44px);
}

.sponsor-page .tier strong {
  margin-bottom: 22px;
  font-size: 22px;
}

.sponsor-page .tier li {
  margin: 9px 0;
  font-size: 12px;
}

.sponsor-page .tier-kicker {
  margin-top: 0;
}

.sponsor-page #inquiry {
  padding-top: 86px;
  padding-bottom: 86px;
}

.sponsor-page .black-band .split {
  align-items: center;
}

.sponsor-page .black-band .headline {
  font-size: clamp(42px, 4.5vw, 58px);
}

.tiers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.tier {
  min-height: 360px;
  padding: 48px;
  border-width: 0;
  border-right: 1px solid var(--line);
}

.tier:last-child {
  border-right: 0;
}

.tier h3 {
  margin: 24px 0 0;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(46px, 5vw, 62px);
  line-height: 0.95;
}

.tier strong {
  display: block;
  margin: 4px 0 34px;
  color: #858585;
  font-family: "Anton", Impact, sans-serif;
  font-size: 31px;
}

.tier li {
  margin: 18px 0;
}

.tier li::marker {
  color: var(--red);
}

.form-card {
  padding: 34px;
}

.volunteer-panel {
  display: grid;
  gap: 16px;
}

.mini-action {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 76px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  background: rgba(245, 242, 236, 0.48);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.mini-action:hover {
  transform: translateX(8px);
  background: rgba(235, 0, 40, 0.06);
}

.mini-action span {
  color: var(--red);
}

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

.field {
  width: 100%;
  min-height: 52px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.42);
  background: transparent;
  color: #4d4946;
}

textarea.field {
  grid-column: 1 / -1;
  min-height: 150px;
  resize: vertical;
}

.terms-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: clamp(44px, 8vw, 110px);
}

.terms-index {
  position: sticky;
  top: 92px;
  align-self: start;
  padding-left: 16px;
  border-left: 2px solid var(--ink);
  color: #5d5955;
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 18px;
  letter-spacing: 0.12em;
  line-height: 1.55;
}

.terms-section {
  margin-bottom: 74px;
}

.terms-title {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin: 0 0 26px;
  padding-bottom: 20px;
  border-bottom: 4px solid var(--red);
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(46px, 6vw, 70px);
  line-height: 0.95;
  text-transform: uppercase;
}

.terms-title span {
  color: var(--red);
  font-size: 0.92em;
}

.term-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px;
  margin-top: 46px;
}

.term-card {
  min-height: 260px;
  padding: 36px;
}

.term-card h3 {
  color: #b81718;
  font-family: Georgia, serif;
  font-size: 28px;
  text-decoration: underline;
  text-transform: uppercase;
}

.icon-list {
  display: grid;
  gap: 22px;
  padding: 0;
  list-style: none;
}

.icon-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  color: #5e5a56;
  font-size: 20px;
  line-height: 1.45;
}

.icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 3px solid var(--ink);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-weight: 800;
}

.terms-page .page-hero {
  padding-top: 46px;
  padding-bottom: 20px;
}

.terms-page .page-hero .wrap {
  width: min(920px, calc(100vw - 96px));
}

.terms-page .page-hero .display {
  margin: 12px 0 12px;
  font-size: clamp(58px, 6.6vw, 84px);
}

.terms-page .terms-hero-copy {
  max-width: 960px;
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 1.45;
}

.terms-page .section {
  padding-top: 72px;
  padding-bottom: 76px;
}

.terms-page .wrap {
  width: min(920px, calc(100vw - 96px));
}

.terms-page .back {
  margin-bottom: 24px;
}

.terms-page .label-pill {
  min-height: 36px;
}

.terms-page .hero-line {
  margin-top: 22px;
}

.terms-page .terms-layout {
  grid-template-columns: 170px minmax(0, 1fr);
  gap: clamp(34px, 4.8vw, 58px);
}

.terms-page .terms-index {
  top: 84px;
  padding-left: 10px;
  border-left-width: 1px;
  font-size: 10px;
  letter-spacing: 0.13em;
  line-height: 1.55;
}

.terms-page .terms-section {
  margin-bottom: 34px;
}

.terms-page .terms-title {
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 13px;
  border-bottom-width: 2px;
  font-size: clamp(28px, 3.2vw, 38px);
}

.terms-page .terms-title span {
  font-size: 1em;
}

.terms-page .terms-section .body-copy {
  max-width: none;
  font-size: clamp(10px, 0.95vw, 12px);
  line-height: 1.48;
}

.terms-page .term-cards {
  gap: 46px;
  margin-top: 30px;
}

.terms-page .term-card {
  min-height: 138px;
  padding: 22px;
}

.terms-page .term-card h3 {
  margin-top: 0;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.terms-page .icon-list {
  gap: 11px;
}

.terms-page .icon-list li {
  grid-template-columns: 26px 1fr;
  gap: 12px;
  font-size: clamp(11px, 1.05vw, 13px);
}

.terms-page .icon {
  width: 26px;
  height: 26px;
  border: 0;
  color: var(--ink);
  font-size: 11px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: #0a0a0a;
  padding: 106px 24px 148px;
}

.terms-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 70px;
  padding: 34px 0 42px;
  border-bottom: 1px solid rgba(245, 242, 236, 0.14);
}

.terms-cta h2 {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.9;
  text-transform: uppercase;
}

.terms-cta p {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(245, 242, 236, 0.68);
  line-height: 1.55;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.7fr 0.9fr;
  gap: clamp(28px, 5vw, 70px);
}

.footer-quote {
  max-width: 430px;
  color: rgba(245, 242, 236, 0.84);
  font-family: Georgia, serif;
  font-size: 27px;
  font-style: italic;
  line-height: 1.28;
}

.footer-title {
  color: #7c7975;
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 13px;
  margin-top: 22px;
  color: rgba(245, 242, 236, 0.76);
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: rgba(245, 242, 236, 0.62);
  transition: color 160ms ease, transform 160ms ease;
}

.social-links a:hover {
  color: var(--red);
  transform: translateY(-2px);
}

.social-links svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: end;
  margin-top: 26px;
  border-bottom: 1px solid rgba(245, 242, 236, 0.18);
}

.newsletter input {
  width: 100%;
  padding: 14px 0;
  border: 0;
  background: transparent;
  color: var(--paper);
}

.newsletter button {
  border: 0;
  background: transparent;
  color: var(--red);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 68px;
  padding-top: 30px;
  border-top: 1px solid rgba(245, 242, 236, 0.13);
}

.ghost-word {
  position: absolute;
  right: -80px;
  bottom: -90px;
  color: rgba(255, 255, 255, 0.035);
  font-family: "Anton", Impact, sans-serif;
  font-size: min(29vw, 420px);
  line-height: 0.8;
  pointer-events: none;
  text-transform: uppercase;
  animation: ghostSlide 13s ease-in-out infinite alternate;
}

.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes fadeSlideLeft {
  from {
    opacity: 0;
    transform: translateX(58px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes lineReveal {
  to {
    transform: translateY(0);
  }
}

@keyframes artFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -18px;
  }
}

@keyframes scrollArrow {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 8px;
  }
}

@keyframes quoteFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes tickerReverse {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes peopleSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes ghostSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-120px);
  }
}

@keyframes thoughtSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes cardSlide {
  0%,
  100% {
    transform: translateX(0);
  }
  45% {
    transform: translateX(34px);
  }
  70% {
    transform: translateX(-10px);
  }
}

.kicker {
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.kicker::before {
  width: 100%;
  height: 2px;
}

.site-header a,
.site-header a:hover,
.site-header a:focus {
  text-decoration: none;
}

.nav-cta {
  color: var(--ink);
  background: transparent;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
  color: var(--paper);
  background: var(--red);
  border-color: var(--red);
}

.quote-block {
  min-height: 250px;
}

.quote-block blockquote {
  max-width: 980px;
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.quote-block blockquote.is-changing {
  animation: quoteChange 420ms ease both, quoteFloat 4.8s ease-in-out infinite 420ms;
}

.quote-controls {
  display: flex;
  gap: 12px;
  margin-top: clamp(70px, 10vw, 125px);
}

.quote-controls button {
  width: 32px;
  height: 3px;
  padding: 0;
  border: 0;
  background: var(--paper);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease, transform 180ms ease;
}

.quote-controls button:hover,
.quote-controls button.is-active {
  width: 70px;
  background: var(--red);
}

.sponsor-partner-head {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: start;
}

.sponsor-partner-head .actions {
  margin-top: 0;
  padding-top: 0;
}

.partner-action {
  display: none;
}

.dark-section .btn:hover,
.black-band .btn:hover,
.sponsor-page .btn:hover {
  color: var(--paper);
  background: var(--red);
  border-color: var(--red);
}

.journey-list article {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 720ms ease var(--journey-delay, 0ms), transform 720ms ease var(--journey-delay, 0ms);
}

.reveal.is-visible .journey-list article,
.journey-list.is-visible article {
  opacity: 1;
  transform: translateY(0);
}

.apply-layout {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: stretch;
}

.apply-layout > div:first-child,
.dark-form {
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.apply-section.is-speak .apply-layout > div:first-child {
  padding: 54px;
  color: var(--paper);
  background: var(--ink);
}

.apply-section.is-speak .apply-layout > div:first-child .body-copy,
.apply-section.is-speak .apply-layout > div:first-child .footer-title {
  color: rgba(245, 242, 236, 0.76);
}

.apply-section.is-speak .dark-form {
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
}

.apply-section.is-speak .dark-form label {
  color: var(--red);
}

.apply-section.is-speak .dark-form .field {
  color: var(--ink);
  border-bottom-color: rgba(0, 0, 0, 0.42);
}

.apply-section.is-speak .dark-form .field::placeholder {
  color: #69635f;
}

.faq {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq details {
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--red);
}

.faq details[open] summary::after {
  content: "-";
}

.faq p {
  max-width: 650px;
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.55;
}

.sponsor-page .sponsor-team {
  animation: sponsorGridSlide 9s ease-in-out infinite;
}

.sponsor-page .sponsor-team:hover {
  animation-play-state: paused;
}

.sponsor-page .kicker {
  margin-bottom: 18px;
}

.site-footer {
  padding-bottom: 178px;
}

.footer-grid,
.footer-bottom {
  position: relative;
  z-index: 2;
}

.footer-quote {
  max-width: 350px;
  font-size: 22px;
}

.ghost-word {
  z-index: 1;
  right: -40px;
  bottom: -68px;
  color: rgba(255, 255, 255, 0.032);
}

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

@keyframes sponsorGridSlide {
  0%,
  100% {
    transform: translateX(0);
  }
  45% {
    transform: translateX(18px);
  }
  75% {
    transform: translateX(-10px);
  }
}

.quote-controls button {
  width: auto;
  min-width: 74px;
  height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(245, 242, 236, 0.5);
  color: var(--paper);
  background: transparent;
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.quote-controls button:active {
  transform: scaleX(1.08);
}

.quote-controls button:hover,
.quote-controls button.is-active {
  width: auto;
  color: var(--paper);
  background: var(--red);
  border-color: var(--red);
}

.dark-slider .person,
.dark-slider .people-grid {
  border-color: rgba(255, 255, 255, 0.48);
}

.dark-slider .person:active {
  color: var(--paper);
  background: var(--red);
}

.headline {
  font-size: clamp(46px, 5.5vw, 64px);
}

.person h3 {
  font-size: clamp(34px, 4.2vw, 48px);
}

.journey-list article {
  transition-duration: 1100ms;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.organizer-spotlight {
  align-items: center;
  gap: clamp(46px, 7vw, 86px);
}

.organizer-spotlight .headline {
  font-size: clamp(48px, 5.2vw, 62px);
}

.spotlight-poster {
  overflow: hidden;
}

.spotlight-poster img {
  filter: grayscale(1) saturate(0) contrast(0.9) brightness(1.08);
}

.spotlight-poster div {
  display: none;
}

.spotlight-quote {
  font-size: clamp(20px, 2.1vw, 26px);
  line-height: 1.34;
}

.organizer-spotlight .body-copy {
  max-width: 430px;
  font-size: 14px;
  line-height: 1.48;
}

.spotlight-stats {
  gap: 22px;
  margin-top: 34px;
}

.spotlight-stats strong {
  font-size: clamp(22px, 2.4vw, 30px);
}

.journey-grid .headline {
  font-size: clamp(48px, 5.2vw, 62px);
}

.apply-section.is-speak .apply-layout > div:first-child {
  padding: 0;
  color: var(--ink);
  background: transparent;
}

.apply-section.is-speak .apply-layout > div:first-child .body-copy {
  color: var(--muted);
}

.apply-section.is-speak .apply-layout > div:first-child .footer-title {
  color: #7c7975;
}

.apply-section.is-speak .dark-form {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.apply-section.is-speak .dark-form label {
  color: rgba(245, 242, 236, 0.74);
}

.apply-section.is-speak .dark-form .field {
  color: var(--paper);
  border-bottom-color: rgba(245, 242, 236, 0.34);
}

.apply-section.is-speak .dark-form .field::placeholder {
  color: rgba(245, 242, 236, 0.78);
}

.apply-section.is-speak .dark-form .btn {
  color: var(--paper);
  background: transparent;
  border-color: rgba(245, 242, 236, 0.58);
}

.apply-section.is-perform .apply-layout > div:first-child {
  padding: 54px;
  color: var(--paper);
  background: var(--ink);
}

.apply-section.is-perform .apply-layout > div:first-child .body-copy,
.apply-section.is-perform .apply-layout > div:first-child .footer-title {
  color: rgba(245, 242, 236, 0.76);
}

.apply-section.is-perform .dark-form {
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
}

.apply-section.is-perform .dark-form label {
  color: var(--red);
}

.apply-section.is-perform .dark-form .field {
  color: var(--ink);
  border-bottom-color: rgba(0, 0, 0, 0.42);
}

.apply-section.is-perform .dark-form .field::placeholder {
  color: #69635f;
}

.apply-section.is-perform .dark-form .btn {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

.apply-section {
  padding-top: clamp(64px, 7vw, 96px);
}

.apply-title {
  max-width: 430px;
  font-size: clamp(42px, 4.5vw, 54px);
  line-height: 0.88;
}

.apply-section .body-copy {
  max-width: 360px;
  font-size: 15px;
}

.apply-tabs {
  gap: 52px;
  margin-bottom: 44px;
}

.apply-tabs .btn {
  min-width: 168px;
}

.dark-form {
  padding: 38px 44px;
}

.dark-form label,
.apply-section.is-perform .dark-form label,
.apply-section.is-speak .dark-form label {
  font-size: 10px;
  letter-spacing: 0.18em;
}

.apply-section .field {
  min-height: 48px;
  font-size: 13px;
}

.apply-section textarea.field {
  min-height: 118px;
}

.faq {
  gap: 12px;
  border-top: 0;
}

#faq .headline {
  max-width: 560px;
  font-size: clamp(36px, 4vw, 48px);
}

.faq details {
  border: 1px solid var(--line);
}

.faq summary {
  position: relative;
  min-height: 62px;
  padding: 0 58px 0 18px;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.faq summary::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 28px;
  height: 28px;
  border-radius: 0;
  color: var(--ink);
  transform: translateY(-50%);
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.faq summary::before {
  content: "";
  position: absolute;
  right: 28px;
  top: calc(50% - 5px);
  z-index: 1;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease, color 180ms ease;
}

.faq details[open] summary::after {
  content: "";
  color: var(--paper);
  background: var(--red);
  border-color: var(--red);
}

.faq details[open] summary::before {
  color: var(--paper);
  transform: rotate(225deg);
}

.faq p {
  padding: 0 18px 22px;
}

.sponsor-page .sponsor-team {
  animation: none;
}

.sponsor-page .sponsor-card-slider {
  width: min(100%, 860px);
  overflow: hidden;
}

.sponsor-page .sponsor-card-slider .people-track {
  display: flex;
  width: max-content;
  animation: peopleSlide 24s linear infinite;
}

.sponsor-page .sponsor-card-slider .reverse-track {
  animation-direction: reverse;
  animation-duration: 26s;
}

.sponsor-page .sponsor-card-slider .people-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  flex: 0 0 min(860px, calc(100vw - 48px));
  width: min(860px, calc(100vw - 48px));
}

.sponsor-page .sponsor-card-slider .people-grid[aria-hidden="true"] {
  display: grid;
}

.sponsor-page .sponsor-card-slider .person:hover {
  transform: none;
  background: transparent;
}

.sponsor-page .sponsor-card-slider .person:active {
  background: rgba(235, 0, 40, 0.08);
}

.sponsor-page .headline {
  font-size: clamp(40px, 4.4vw, 54px);
}

.sponsor-page .person h3 {
  font-size: clamp(30px, 3.3vw, 38px);
}

.sponsor-page .tier {
  padding: 0;
}

.tier ul {
  margin: 24px 0 0;
  padding: 0;
  width: fit-content;
  max-width: 100%;
  list-style: none;
  border-top: 1px solid var(--line);
}

.tier li {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 11px 0 11px 20px;
  border-bottom: 1px solid var(--line);
}

.tier li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 800;
}

.sponsor-page .tier > .num,
.sponsor-page .tier h3,
.sponsor-page .tier strong,
.sponsor-page .tier ul {
  display: block;
  margin-left: 28px;
  margin-right: 28px;
}

.sponsor-page .tier > .num {
  margin-top: 28px;
}

.terms-page .terms-index {
  margin-top: -26px;
  top: 58px;
}

.site-footer {
  min-height: 520px;
  padding-bottom: 310px;
}

.footer-grid,
.footer-bottom {
  z-index: 3;
}

.footer-bottom {
  margin-top: 54px;
  padding-bottom: 28px;
}

.ghost-word {
  z-index: 0;
  right: -70px;
  bottom: -95px;
  color: rgba(255, 255, 255, 0.052);
  animation-duration: 3.2s;
  animation-timing-function: linear;
}

.display {
  position: relative;
}

.home-page .hero-copy .display::after,
.page-hero .display::after {
  content: none;
  display: none;
}

.home-page .hero-copy .display::after {
  right: clamp(-76px, -6vw, -48px);
  top: 45%;
}

.page-hero .display::after {
  right: clamp(-34px, -3vw, -18px);
  top: 48%;
}

.quote-controls {
  align-items: center;
}

.quote-controls button,
.quote-controls button:hover,
.quote-controls button.is-active {
  min-width: 0;
  min-height: 0;
  height: 3px;
  padding: 0;
  border: 0;
  color: transparent;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}

.quote-controls button {
  width: 26px !important;
  background: rgba(245, 242, 236, 0.72);
}

.quote-controls button:hover,
.quote-controls button.is-active {
  width: 45px !important;
  background: var(--red);
}

.home-page .people-slider {
  overflow: hidden;
  margin-top: 58px;
}

.home-page .section > .wrap {
  width: min(1000px, calc(100vw - 112px));
}

.home-page #speakers .section-head,
.home-page #team .split {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
}

.home-page #speakers .headline,
.home-page #team .headline {
  max-width: 640px;
}

.home-page .people-slider .people-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  flex: 0 0 min(1000px, calc(100vw - 112px));
  width: min(1000px, calc(100vw - 112px));
}

.home-page .people-track {
  display: flex;
  width: max-content;
  animation: peopleSlide 24s linear infinite;
}

.home-page .people-track .people-grid[aria-hidden="true"] {
  display: grid;
}

.home-page .team-slider .people-track {
  animation-duration: 28s;
}

.home-page .slow-track {
  animation-duration: 30s;
}

.home-page .reverse-track {
  animation-direction: reverse;
  animation-duration: 28s;
}

.home-page .people-slider .person,
.home-page .people-slider .person:nth-child(4n),
.home-page .people-slider .person:nth-last-child(-n + 4) {
  min-width: 0;
  min-height: 235px;
  padding: 42px 44px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-page .people-slider .person:nth-child(4n) {
  border-right: 0;
}

.home-page .people-slider .person:nth-last-child(-n + 4) {
  border-bottom: 0;
}

.home-page .dark-slider .person,
.home-page .dark-slider .people-grid {
  border-color: rgba(245, 242, 236, 0.44);
}

.home-page .people-slider .person h3 {
  font-size: clamp(38px, 3.2vw, 48px);
}

.home-page .section-head .body-copy {
  align-self: end;
  margin-bottom: 8px;
}

.home-page #sponsors .sponsor-partner-head {
  margin: 54px 0 24px;
}

.home-page #sponsors .sponsor-partner-head .kicker {
  margin-bottom: 18px;
}

.sponsor-partner-head .btn,
.sponsor-page .align-end .btn {
  min-width: 160px;
  min-height: 42px;
  font-size: 8px;
}

.sponsor-page .align-end {
  margin-top: 22px;
}

.tiers {
  overflow: hidden;
  border: 1px solid var(--line);
  background: transparent;
}

.tier {
  border-right: 1px solid var(--line);
}

.dark-tiers {
  border-color: rgba(245, 242, 236, 0.34);
}

.dark-tiers .tier {
  border-right-color: rgba(245, 242, 236, 0.34);
}

.dark-tiers .tier:last-child,
.tier:last-child {
  border-right: 0;
}

.dark-tiers .tier ul {
  border-top-color: rgba(245, 242, 236, 0.28);
}

.dark-tiers .tier li {
  border-bottom-color: rgba(245, 242, 236, 0.22);
}

.organizer-spotlight .headline {
  font-size: clamp(42px, 4.6vw, 56px);
}

.organizer-spotlight .body-copy {
  font-size: 14px;
}

.spotlight-quote {
  font-size: clamp(19px, 2vw, 25px);
}

#volunteers .headline {
  font-size: clamp(40px, 4.6vw, 56px);
}

#volunteers .body-copy {
  font-size: 14px;
}

.volunteer-form label {
  font-size: 10px;
  letter-spacing: 0.18em;
}

.volunteer-form .field {
  min-height: 48px;
  font-size: 14px;
}

.volunteer-form {
  padding: 0;
  border: 0;
  background: transparent;
}

.chip-row {
  gap: 8px;
}

.volunteer-form .chip-row {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  align-items: center;
}

.chip-row span {
  min-height: 30px;
  padding: 7px 12px;
  font-size: 9px;
}

.chip-row span.is-active {
  color: var(--paper);
  background: var(--red);
  border-color: var(--red);
}

.apply-tabs .btn.is-active {
  color: var(--paper);
  background: var(--red);
  border-color: var(--red);
}

.btn:focus {
  outline: none;
}

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

.home-page .partner-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 22px;
}

.home-page #sponsors .partner-action .btn {
  color: var(--paper);
  background: var(--ink);
  border-color: rgba(245, 242, 236, 0.58);
}

.home-page #sponsors .partner-action .btn:hover {
  color: var(--paper);
  background: var(--red);
  border-color: var(--red);
}

.home-page #sponsors .dark-slider .person,
.home-page #sponsors .dark-slider .person:nth-child(4n),
.home-page #sponsors .dark-slider .person:nth-child(2n),
.home-page #sponsors .dark-slider .person:nth-last-child(-n + 4),
.home-page #sponsors .dark-slider .person:nth-last-child(-n + 2),
.home-page #sponsors .dark-slider .person:last-child {
  border: 1px solid rgba(245, 242, 236, 0.48);
}

.home-page #sponsors .dark-slider .person p {
  color: var(--red);
}

.home-page #faq {
  padding-top: clamp(92px, 7vw, 132px);
  padding-bottom: clamp(92px, 8vw, 132px);
}

.home-page #faq .wrap {
  width: min(1064px, calc(100vw - clamp(36px, 10vw, 160px)));
  margin: 0 auto;
}

.home-page #faq .section-head {
  display: block;
  width: min(1064px, 100%);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 72px;
}

.home-page #faq .kicker {
  display: inline-flex;
  gap: 9px;
  padding-top: 0;
  border-top: 0;
  font-size: 13px;
  letter-spacing: 0.18em;
}

.home-page #faq .kicker::before {
  content: "";
  width: 100%;
  height: 2px;
}

.home-page #faq .headline {
  max-width: 1064px;
  margin-top: 24px;
  color: var(--ink);
  font-size: clamp(40px, 2.55vw, 50px);
  line-height: 1.32;
}

.home-page #faq .faq {
  display: grid;
  gap: 14px;
  width: min(1064px, 100%);
  max-width: 1064px;
  margin: 0 auto;
  border-top: 0;
}

.home-page #faq .faq details {
  overflow: hidden;
  border: 1.5px solid rgba(0, 0, 0, 0.92);
  border-radius: 14px;
  background: transparent;
}

.home-page #faq .faq summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 68px;
  padding: 0 78px 0 7px;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(20px, 1.35vw, 25px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: none;
  cursor: pointer;
  list-style: none;
}

.home-page #faq .faq summary::-webkit-details-marker {
  display: none;
}

.home-page #faq .faq summary::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(0, 0, 0, 0.88);
  border-radius: 50%;
  background: transparent;
  transform: translateY(-50%);
}

.home-page #faq .faq summary::before {
  content: "";
  position: absolute;
  right: 35px;
  top: 50%;
  z-index: 1;
  width: 8px;
  height: 8px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: translateY(-68%) rotate(45deg);
  transition: transform 180ms ease;
}

.home-page #faq .faq details[open] summary::after {
  color: inherit;
  background: transparent;
  border-color: rgba(0, 0, 0, 0.88);
}

.home-page #faq .faq details[open] summary::before {
  color: inherit;
  transform: translateY(-28%) rotate(225deg);
}

.home-page #faq .faq p {
  margin: 0;
  padding: 0 78px 22px 7px;
  color: #4e4a46;
  font-size: 16px;
  line-height: 1.5;
}

.home-page .section .headline {
  line-height: 1.02;
}

.home-page #sponsors > .wrap > .headline {
  line-height: 1.08;
}

.home-page .quote-block blockquote {
  font-size: 38px;
  line-height: 1.16;
  white-space: nowrap;
}

.home-page #tickets .display {
  line-height: 0.96;
}

.home-page .apply-title {
  line-height: 1.02;
}

.home-page #faq .section-head {
  display: block;
  width: min(1064px, 100%);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 72px;
}

.home-page #faq .headline {
  max-width: 1064px;
  margin-top: 24px;
  color: var(--ink);
  font-size: clamp(40px, 2.55vw, 50px);
  line-height: 1.32;
}

.home-page #faq .faq {
  display: grid;
  gap: 14px;
  width: min(1064px, 100%);
  max-width: 1064px;
  margin: 0 auto;
  border-top: 0;
}

.sponsor-page .page-hero .back {
  margin-bottom: 34px;
}

.sponsor-page .page-hero .label-pill {
  margin-bottom: 30px;
}

.sponsor-page .page-hero .display {
  margin: 0 0 28px;
  line-height: 1.06;
}

.sponsor-page .page-hero .body-copy {
  margin-top: 0;
  line-height: 1.72;
}

.sponsor-page main > .section > .wrap > .kicker {
  margin-bottom: 24px;
}

.sponsor-page main > .section > .wrap > .headline {
  margin-bottom: 12px;
  line-height: 0.98;
}

.sponsor-page .person h3 {
  margin: 24px 0 13px;
  line-height: 1;
}

.sponsor-page .role {
  display: block;
  line-height: 1.45;
}

.sponsor-page .person p {
  margin-top: 16px;
  line-height: 1.45;
}

.sponsor-page #inquiry .kicker {
  margin-bottom: 24px;
}

.sponsor-page #inquiry .headline {
  margin-bottom: 24px;
  line-height: 0.98;
}

.sponsor-page #inquiry .body-copy {
  margin-top: 0;
  line-height: 1.72;
}

.terms-page .page-hero .back {
  margin-bottom: 34px;
}

.terms-page .page-hero .label-pill {
  margin-bottom: 32px;
}

.terms-page .page-hero .display {
  margin: 0 0 30px;
  line-height: 1.08;
}

.terms-page .terms-hero-copy {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.72;
}

.terms-page .hero-line {
  margin-top: 4px;
}

.terms-page .icon svg {
  display: block;
  width: 23px;
  height: 23px;
}

.terms-page .icon svg * {
  vector-effect: non-scaling-stroke;
}

.ticket-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.ticket-top .kicker {
  margin: 0;
}

.ticket-top span {
  color: #7c7975;
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.apply-section.is-speak {
  color: var(--paper);
  background: var(--ink);
}

.apply-section.is-perform {
  color: var(--ink);
  background: var(--paper) url("../images/Rectangle_52_1.webp") center top / 1100px auto repeat;
}

.apply-section.is-speak .apply-tabs .btn:not(.is-active) {
  color: var(--paper);
  border-color: rgba(245, 242, 236, 0.58);
}

.apply-section.is-perform .apply-tabs .btn:not(.is-active) {
  color: var(--ink);
  border-color: rgba(0, 0, 0, 0.5);
}

.apply-section.is-speak .apply-layout > div:first-child,
.apply-section.is-perform .apply-layout > div:first-child {
  padding: 0;
  background: transparent;
}

.apply-section.is-speak .apply-layout > div:first-child {
  color: var(--paper);
}

.apply-section.is-perform .apply-layout > div:first-child {
  color: var(--ink);
}

.apply-section.is-speak .apply-layout > div:first-child .body-copy,
.apply-section.is-speak .apply-layout > div:first-child .footer-title {
  color: rgba(245, 242, 236, 0.9);
}

.apply-section.is-perform .apply-layout > div:first-child .body-copy {
  color: var(--ink);
}

.apply-section.is-perform .apply-layout > div:first-child .footer-title {
  color: #32302e;
}

.apply-section.is-speak .dark-form {
  color: var(--ink);
  background: var(--paper) url("../images/Rectangle_52_1.webp") center top / 1100px auto repeat;
  border-color: var(--paper);
}

.apply-section.is-speak .dark-form label {
  color: var(--ink);
}

.apply-section.is-speak .dark-form .field {
  color: var(--ink);
  border-bottom-color: rgba(0, 0, 0, 0.62);
}

.apply-section.is-speak .dark-form .field::placeholder {
  color: #6d6864;
}

.apply-section.is-speak .dark-form .btn {
  color: var(--ink);
  border-color: var(--ink);
}

.apply-section.is-perform .dark-form {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.apply-section.is-perform .dark-form label {
  color: rgba(245, 242, 236, 0.9);
}

.apply-section.is-perform .dark-form .field {
  color: var(--paper);
  border-bottom-color: rgba(245, 242, 236, 0.55);
}

.apply-section.is-perform .dark-form .field::placeholder {
  color: rgba(245, 242, 236, 0.56);
}

.apply-section.is-perform .dark-form .btn {
  color: var(--paper);
  border-color: rgba(245, 242, 236, 0.6);
}

.footer-license {
  white-space: nowrap;
}

.footer-grid {
  grid-template-columns: 1.18fr 0.62fr 0.78fr 1.18fr;
  gap: clamp(24px, 3.6vw, 48px);
}

.footer-links a {
  white-space: nowrap;
}

.site-footer .footer-title {
  letter-spacing: 0.26em;
}

.footer-grid > div:last-child .footer-title {
  white-space: nowrap;
}

.newsletter input::placeholder {
  color: rgba(245, 242, 236, 0.56);
  opacity: 1;
}

.newsletter input,
.newsletter button {
  font-size: 11px;
}

.footer-quote {
  max-width: 430px;
  font-size: 21px;
  line-height: 1.32;
}

.footer-bottom {
  align-items: center;
}

.footer-bottom .footer-small,
.footer-bottom .footer-title {
  white-space: nowrap;
}

.footer-bottom .footer-small {
  font-size: 10px;
}

.footer-bottom .footer-title {
  font-size: 9px;
  letter-spacing: 0.24em;
}

.site-footer {
  min-height: 640px;
  padding-bottom: 250px;
}

.site-footer .wrap {
  width: min(1000px, calc(100vw - 48px));
}

.ghost-word {
  display: flex;
  gap: 10vw;
  left: 0;
  right: auto;
  bottom: 18px;
  width: max-content;
  color: rgba(255, 255, 255, 0.052);
  font-size: clamp(118px, 24vw, 330px);
  line-height: 0.8;
  animation: ghostMarquee 12s linear infinite;
  will-change: transform;
}

.ghost-word::after {
  content: "UNHEARD";
}

.speakers-page {
  color: var(--ink);
  background-color: var(--paper);
  background-image: var(--cream-noise);
  background-size: 520px auto;
  background-position: 0 0;
  background-repeat: repeat;
}

.speakers-page .site-header {
  background: transparent;
}

.speakers-page .page-topbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--paper, #f5f2ec) url("../images/Rectangle_52_1.webp") center top / 520px auto repeat;
  border-bottom: 1px solid rgba(10, 10, 10, 0.12);
  backdrop-filter: none;
}

.speakers-page .nav-wrap,
.speakers-page .site-footer .wrap {
  width: min(1280px, calc(100vw - 48px));
}

.speakers-hero {
  position: relative;
  padding: clamp(44px, 7vw, 88px) 24px clamp(58px, 9vw, 110px);
  overflow: hidden;
}

.speakers-hero::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
}

.speakers-hero-wrap {
  width: min(1280px, calc(100vw - 48px));
}

.speakers-crumb {
  margin: 0 0 22px;
  color: rgba(0, 0, 0, 0.48);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.speakers-hero-title {
  max-width: 980px;
  margin: 0;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(54px, 7vw, 92px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.speakers-hero-title span {
  display: block;
}

.hero-split-line {
  transform-origin: left center;
  will-change: transform, opacity;
}

.hero-line-mask {
  display: block;
  overflow: hidden;
}

.hero-line-mask .line {
  display: block;
  will-change: transform, opacity;
}

.perform-line-mask {
  display: block;
  overflow: hidden;
}

.perform-split-line {
  display: block;
  will-change: transform, opacity;
}

.speaker-reference-page:not(.speaker-animations-ready) .perform-split-target,
.speaker-reference-page:not(.speaker-animations-ready) .perform-split-target span,
.speaker-reference-page:not(.speaker-animations-ready) .perform-split-target .speaker-name-line,
.speaker-reference-page:not(.speaker-animations-ready) .perform-split-target .speaker-interlude-line,
.speaker-reference-page:not(.speaker-animations-ready) .perform-split-target .cta-line {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

.speaker-reference-page:not(.speaker-animations-ready) .speaker-motion-copy,
.speaker-reference-page:not(.speaker-animations-ready) .speaker-motion-media,
.speaker-reference-page:not(.speaker-animations-ready) .speaker-motion-copy > *,
.speaker-reference-page:not(.speaker-animations-ready) .speaker-interlude-copy,
.speaker-reference-page:not(.speaker-animations-ready) .speaker-interlude-meta,
.speaker-reference-page:not(.speaker-animations-ready) .speaker-roster-head,
.speaker-reference-page:not(.speaker-animations-ready) .speaker-roster-grid,
.speaker-reference-page:not(.speaker-animations-ready) .speaker-cta-wrap {
  opacity: 1 !important;
  transform: none !important;
}

.speakers-hero-title .is-muted {
  color: rgba(0, 0, 0, 0.7);
  font-weight: 300;
}

.speakers-hero-title .is-accent {
  color: var(--red);
}

.speakers-hero-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  max-width: 920px;
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.speakers-hero-meta span,
.speaker-interlude-grid span,
.speaker-cta-meta span {
  display: block;
  margin-bottom: 10px;
  color: rgba(0, 0, 0, 0.48);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.speaker-interlude-grid span {
  color: rgba(255, 255, 255, 0.54);
}

.speakers-hero-meta strong,
.speaker-interlude-grid strong,
.speaker-cta-meta strong {
  display: block;
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

.speakers-stage {
  padding: 0 24px;
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    #050505;
}

.speakers-stage .wrap {
  width: min(1320px, calc(100vw - 48px));
}

.speaker-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 520px);
  gap: clamp(56px, 7vw, 120px);
  align-items: center;
  padding: clamp(56px, 7vw, 88px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.speaker-showcase:first-child {
  border-top: 0;
}

.speaker-showcase.is-reversed {
  grid-template-columns: minmax(360px, 520px) minmax(0, 0.95fr);
}

.speaker-showcase.is-reversed .speaker-showcase-copy {
  order: 2;
}

.speaker-showcase.is-reversed .speaker-showcase-media {
  order: 1;
}

.speaker-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--red);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.speaker-label::after {
  content: "";
  width: 46px;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.speaker-name {
  margin: 18px 0 12px;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(50px, 5.8vw, 76px);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.07em;
}

.speaker-name span {
  display: block;
}

.speaker-talk {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Outfit", "Inter", sans-serif;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.speaker-quote {
  margin: 0;
  padding-left: 22px;
  border-left: 1px solid rgba(230, 43, 30, 0.9);
  color: rgba(255, 255, 255, 0.56);
  font-size: 16px;
  line-height: 1.7;
}

.speaker-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.speaker-meta span {
  position: relative;
  color: rgba(255, 255, 255, 0.42);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.speaker-meta span:not(:last-child)::after {
  content: "·";
  position: absolute;
  right: -11px;
  color: rgba(255, 255, 255, 0.18);
}

.speaker-story {
  display: grid;
  gap: 22px;
  max-width: 680px;
  margin-top: 34px;
}

.speaker-story > div {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.speaker-story-kicker {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.speaker-story p,
.speaker-interlude-meta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  line-height: 1.8;
}

.speaker-actions {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 4vw, 58px);
  width: min(560px, calc(100vw - 104px));
  margin-top: 28px;
}

.speaker-actions a {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: clamp(14px, 2vw, 28px);
  min-height: 28px;
  color: rgba(255, 255, 255, 0.66);
  font-family: "Outfit", "Inter", sans-serif;
  font-size: clamp(13px, 1.15vw, 18px);
  font-weight: 400;
  letter-spacing: 0.28em;
  line-height: 1;
  transition: color 180ms ease;
}

.speaker-actions a strong {
  color: var(--red);
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 1.22em;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
}

.speaker-actions a:hover,
.speaker-actions a:focus-visible {
  color: var(--paper);
}

.speaker-showcase-media {
  display: flex;
  justify-content: center;
}

.speaker-portrait-frame {
  position: relative;
  width: min(100%, 470px);
  aspect-ratio: 0.82;
  overflow: hidden;
  background: linear-gradient(180deg, #1a1a1a, #090909);
  box-shadow: 0 40px 70px rgba(0, 0, 0, 0.28);
}

.speaker-portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 38%, rgba(0, 0, 0, 0.65) 100%);
  pointer-events: none;
}

.speaker-portrait-frame img,
.speaker-roster-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 260ms ease, transform 260ms ease;
}

.speaker-portrait-frame:hover img,
.speaker-portrait-frame:focus-within img,
.speaker-roster-card:hover img,
.speaker-roster-card:focus-within img {
  filter: none;
  transform: scale(1.02);
}

.focus-elena img {
  object-position: center center;
}

.focus-marcus img {
  object-position: center 18%;
}

.focus-david img {
  object-position: center 15%;
}

.focus-julian img {
  object-position: center 14%;
}

.focus-sarah img {
  object-position: center 12%;
}

.focus-james img {
  object-position: center 16%;
}

.speaker-portrait-frame figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
}

.speaker-portrait-frame figcaption span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.52);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.speaker-portrait-frame figcaption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.3;
}

.speaker-interlude-section {
  padding: 0 24px;
}

.speaker-interlude-wrap {
  width: min(1120px, calc(100vw - 48px));
}

.speaker-interlude-panel {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(360px, 430px);
  justify-content: start;
  gap: clamp(56px, 7vw, 92px);
  align-items: start;
  padding: clamp(58px, 7vw, 88px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.speaker-interlude-panel .speaker-label {
  gap: 14px;
}

.speaker-interlude-panel .speaker-label::before {
  content: "";
  width: 52px;
  height: 1px;
  background: var(--red);
}

.speaker-interlude-panel .speaker-label::after {
  display: none;
}

.speaker-interlude-copy h2,
.speaker-roster-head h2,
.speaker-cta h2 {
  margin: 18px 0 0;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(46px, 5.4vw, 72px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.speaker-interlude-copy h2 span,
.speaker-roster-head h2 span,
.speaker-cta h2 span {
  display: block;
}

.speaker-interlude-copy .is-muted,
.speaker-roster-head h2 span,
.speaker-cta h2 span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 300;
}

.speaker-interlude-copy .is-accent {
  color: var(--red);
}

.speaker-interlude-meta {
  display: grid;
  gap: 32px;
  width: min(100%, 430px);
  justify-self: start;
}

.speaker-interlude-grid,
.speaker-cta-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding-top: 12px;
}

.speaker-interlude-grid {
  margin-top: 8px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.46);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 42px;
}

.speaker-roster {
  padding: clamp(78px, 9vw, 112px) 24px;
  color: var(--paper);
  background: #050505;
}

.speaker-roster .wrap {
  width: min(1320px, calc(100vw - 48px));
}

.speaker-roster-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 40px;
  align-items: end;
}

.speaker-roster-head p {
  margin: 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  line-height: 1.75;
}

.speaker-roster-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.speaker-roster-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 180ms ease, border-color 180ms ease;
}

.speaker-roster-card:hover {
  transform: translateY(-4px);
  border-color: rgba(230, 43, 30, 0.45);
}

.speaker-roster-image {
  aspect-ratio: 0.88;
  overflow: hidden;
  background: #111;
}

.team-page .speaker-roster-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-directory-section,
.team-page .speaker-interlude-section,
.team-page .speaker-roster,
.team-page .speaker-cta {
  display: none;
}

.team-directory-section {
  padding: clamp(70px, 8vw, 112px) 24px clamp(80px, 9vw, 124px);
  color: var(--paper);
  background:
    linear-gradient(180deg, #050505 0%, #090909 100%),
    var(--cream-noise);
}

.team-directory-wrap {
  width: min(1320px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.team-directory-card {
  min-height: 312px;
  padding: 26px;
  background: #050505;
  transition: background-color 180ms ease, transform 180ms ease;
}

.team-directory-card:hover {
  background: #0e0e0e;
  transform: translateY(-3px);
}

.team-directory-main {
  display: block;
  color: inherit;
}

.team-directory-main span {
  display: block;
  color: var(--red);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.28em;
}

.team-directory-main strong {
  display: block;
  margin-top: 20px;
  font-family: "Anton", sans-serif;
  font-size: clamp(46px, 4.7vw, 72px);
  font-weight: 400;
  line-height: 0.95;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.team-directory-main em,
.team-directory-main small {
  display: block;
  font-style: normal;
}

.team-directory-main em {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.team-directory-main small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  line-height: 1.45;
}

.team-directory-actions {
  margin-top: 24px;
}

.team-directory-card .figma-profile-block {
  margin-top: 22px;
  padding-top: 18px;
}

.team-profile-portrait,
.team-roster-image {
  display: grid;
  place-items: stretch;
}

.team-profile-mark {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 100%;
  padding: clamp(22px, 4vw, 42px);
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(235, 0, 40, 0.22), rgba(235, 0, 40, 0) 42%),
    linear-gradient(180deg, #171717 0%, #050505 100%);
  overflow: hidden;
}

.team-profile-mark::before {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: skewX(-6deg);
}

.team-profile-mark::after {
  content: "X";
  position: absolute;
  top: 16%;
  right: 16%;
  color: var(--red);
  font-family: "Anton", sans-serif;
  font-size: clamp(72px, 11vw, 132px);
  line-height: 1;
}

.team-profile-mark strong,
.team-profile-mark span {
  position: relative;
  z-index: 1;
  display: block;
}

.team-profile-mark strong {
  color: var(--red);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.28em;
}

.team-profile-mark span {
  margin-top: 8px;
  font-family: "Anton", sans-serif;
  font-size: clamp(48px, 7vw, 82px);
  line-height: 0.95;
}

.team-roster-image .team-profile-mark {
  padding: 18px;
}

.team-roster-image .team-profile-mark::after {
  top: 18%;
  right: 18%;
  font-size: 54px;
}

.team-roster-image .team-profile-mark span {
  font-size: clamp(30px, 3vw, 48px);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.team-page .figma-profile-name {
  font-size: var(--team-profile-name-fit-size, clamp(46px, 5vw, 72px));
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 100%;
  overflow: visible;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  padding-bottom: 0.08em;
}

.team-page .figma-profile-name .speaker-name-line {
  max-width: 100%;
  white-space: nowrap;
  line-height: 0.98;
  overflow-wrap: normal;
  word-break: normal;
}

.team-page .team-profile-name-stack {
  position: relative;
  z-index: 1;
  display: block;
  max-width: calc(100% - 84px);
  margin-top: 8px;
}

.team-page .team-profile-name-stack .team-profile-name-line {
  display: block;
  margin-top: 0;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.team-page .team-profile-name-stack .team-profile-name-line + .team-profile-name-line {
  margin-top: 0;
}

.team-page .team-profile-mark {
  overflow: visible;
}

.team-page .team-profile-mark span {
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 0.98;
  overflow-wrap: anywhere;
}

.team-page .team-roster-image .team-profile-name-stack {
  max-width: calc(100% - 48px);
}

.team-page .team-roster-image .team-profile-mark span {
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1;
}

.speaker-roster-copy {
  padding: 14px 14px 16px;
}

.speaker-roster-copy strong,
.speaker-roster-copy span {
  display: block;
}

.speaker-roster-copy strong {
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.speaker-roster-copy span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  line-height: 1.4;
}

.speaker-cta {
  padding: clamp(86px, 11vw, 136px) 24px clamp(74px, 9vw, 118px);
  text-align: center;
}

.speaker-cta-wrap {
  width: min(920px, calc(100vw - 48px));
}

.speaker-cta .speaker-label {
  justify-content: center;
}

.speaker-cta .speaker-label::after {
  background: rgba(0, 0, 0, 0.16);
}

.speaker-cta h2 {
  margin-top: 22px;
  color: var(--ink);
  font-size: clamp(58px, 8vw, 96px);
  font-weight: 900;
}

.speaker-cta h2 span {
  color: rgba(0, 0, 0, 0.84);
}

.speaker-cta h2 span:first-child {
  font-weight: 900;
}

.speaker-cta h2 .cta-line {
  font-weight: 300;
}

.speaker-cta p {
  max-width: 640px;
  margin: 26px auto 0;
  color: #59544f;
  font-size: 16px;
  line-height: 1.8;
}

.speaker-cta .btn {
  margin-top: 32px;
}

.speaker-cta-meta {
  margin-top: 38px;
  text-align: left;
}

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

.speaker-profile-main {
  background: transparent;
}

.speaker-reference-page {
  color: var(--ink);
  background-color: var(--paper);
  background-image: var(--cream-noise);
  background-size: 520px auto;
  background-position: 0 0;
  background-repeat: repeat;
}

.speaker-reference-page .page-topbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--paper, #f5f2ec) url("../images/Rectangle_52_1.webp") center top / 520px auto repeat;
  border-bottom: 1px solid rgba(10, 10, 10, 0.12);
  backdrop-filter: none;
}

.speaker-reference-page .speakers-hero,
.speaker-reference-page .speaker-cta {
  background-color: var(--paper);
  background-image: var(--cream-noise);
  background-size: 520px auto;
  background-position: 0 0;
  background-repeat: repeat;
}

.speaker-reference-page .reveal {
  opacity: 1;
  transform: translateY(12px);
  transition: opacity 560ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 560ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.speaker-stage-shell {
  color: var(--paper);
  background-color: #050505;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    var(--cream-noise);
  background-size: auto, 520px auto;
  background-position: center, 0 0;
  background-repeat: no-repeat, repeat;
  border-top: 1px solid rgba(10, 10, 10, 0.08);
}

.speaker-hero-motion {
  overflow: clip;
}

.speaker-hero-motion .speakers-hero-wrap {
  position: relative;
}

.speaker-hero-motion .speakers-hero-wrap::before {
  content: none;
}

.speakers-crumb.speaker-hero-line,
.speakers-hero-meta.speaker-hero-line {
  opacity: 1;
  transform: none;
}

.figma-speaker-profile {
  min-height: 0;
  padding: clamp(70px, 9vw, 110px) 24px;
  color: var(--paper);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  background: transparent;
}

.speaker-stage-shell .figma-speaker-profile:first-child {
  border-top: 0;
}

.figma-profile-wrap {
  width: min(1320px, calc(100vw - 48px));
}

.speaker-motion-copy,
.speaker-motion-media {
  transition:
    opacity 760ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.speaker-motion-copy {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
}

.speaker-motion-media {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
}

.speaker-motion-block.is-visible .speaker-motion-copy,
.speaker-motion-block.is-visible .speaker-motion-media,
.speaker-empty-shell.is-visible .speaker-motion-copy,
.speaker-empty-shell.is-visible .speaker-motion-media,
.speaker-interlude-section.is-visible .speaker-interlude-copy,
.speaker-interlude-section.is-visible .speaker-interlude-meta,
.speaker-roster.is-visible .speaker-roster-head,
.speaker-roster.is-visible .speaker-roster-grid,
.speaker-cta.is-visible .speaker-cta-wrap {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.speaker-motion-copy > * {
  opacity: 0;
  transform: translate3d(0, 10px, 0);
}

.speaker-motion-copy > .figma-profile-name,
.speaker-motion-copy > .figma-profile-meta,
.speaker-motion-copy > .figma-profile-actions {
  opacity: 1;
  transform: none;
}

.speaker-motion-block.is-visible .speaker-motion-copy > * {
  animation: speakerFadeContent 520ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.speaker-empty-shell.is-visible .speaker-motion-copy > * {
  opacity: 1;
  transform: none;
}

.speaker-motion-block.is-visible .speaker-motion-copy > :nth-child(1) {
  animation-delay: 120ms;
}

.speaker-motion-block.is-visible .speaker-motion-copy > :nth-child(2) {
  animation-delay: 180ms;
}

.speaker-motion-block.is-visible .speaker-motion-copy > :nth-child(3) {
  animation-delay: 240ms;
}

.speaker-motion-block.is-visible .speaker-motion-copy > :nth-child(4) {
  animation-delay: 300ms;
}

.speaker-motion-block.is-visible .speaker-motion-copy > :nth-child(5) {
  animation-delay: 360ms;
}

.speaker-motion-block.is-visible .speaker-motion-copy > :nth-child(6) {
  animation-delay: 420ms;
}

.speaker-motion-block.is-visible .speaker-motion-copy > :nth-child(7) {
  animation-delay: 480ms;
}

.speaker-name-line,
.figma-profile-meta span,
.figma-profile-actions > * {
  opacity: 0;
  transform: translate3d(0, 10px, 0);
}

.speaker-motion-block.is-visible .speaker-name-line,
.speaker-motion-block.is-visible .figma-profile-meta span,
.speaker-motion-block.is-visible .figma-profile-actions > * {
  animation: speakerFadeContent 520ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.speaker-motion-block.is-visible .speaker-name-line:nth-child(1) {
  animation-delay: 160ms;
}

.speaker-motion-block.is-visible .speaker-name-line:nth-child(2) {
  animation-delay: 220ms;
}

.speaker-motion-block.is-visible .speaker-name-line:nth-child(3) {
  animation-delay: 280ms;
}

.speaker-motion-block.is-visible .figma-profile-meta span:nth-child(1) {
  animation-delay: 340ms;
}

.speaker-motion-block.is-visible .figma-profile-meta span:nth-child(2) {
  animation-delay: 400ms;
}

.speaker-motion-block.is-visible .figma-profile-meta span:nth-child(3) {
  animation-delay: 460ms;
}

.speaker-motion-block.is-visible .figma-profile-actions > :nth-child(1) {
  animation-delay: 520ms;
}

.speaker-motion-block.is-visible .figma-profile-actions > :nth-child(2) {
  animation-delay: 580ms;
}

.speaker-interlude-copy h2 {
  max-width: 360px;
}

.speaker-interlude-summary {
  margin: 0;
  max-width: 460px;
  color: rgba(245, 242, 236, 0.56);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
  white-space: normal;
}

.speaker-interlude-summary .speaker-interlude-line {
  display: block;
}

.speaker-interlude-line,
.speaker-interlude-grid > div {
  opacity: 0;
  transform: translateY(12px);
}

.speaker-interlude-section.is-visible .speaker-interlude-line,
.speaker-interlude-section.is-visible .speaker-interlude-grid > div {
  animation: speakerFadeContent 520ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.speaker-interlude-section.is-visible .speaker-interlude-title .speaker-interlude-line:nth-child(1) {
  animation-delay: 80ms;
}

.speaker-interlude-section.is-visible .speaker-interlude-title .speaker-interlude-line:nth-child(2) {
  animation-delay: 140ms;
}

.speaker-interlude-section.is-visible .speaker-interlude-title .speaker-interlude-line:nth-child(3) {
  animation-delay: 200ms;
}

.speaker-interlude-section.is-visible .speaker-interlude-title .speaker-interlude-line:nth-child(4) {
  animation-delay: 260ms;
}

.speaker-interlude-section.is-visible .speaker-interlude-summary .speaker-interlude-line:nth-child(1) {
  animation-delay: 180ms;
}

.speaker-interlude-section.is-visible .speaker-interlude-summary .speaker-interlude-line:nth-child(2) {
  animation-delay: 240ms;
}

.speaker-interlude-section.is-visible .speaker-interlude-summary .speaker-interlude-line:nth-child(3) {
  animation-delay: 300ms;
}

.speaker-interlude-section.is-visible .speaker-interlude-summary .speaker-interlude-line:nth-child(4) {
  animation-delay: 360ms;
}

.speaker-interlude-section.is-visible .speaker-interlude-grid > div:nth-child(1) {
  animation-delay: 300ms;
}

.speaker-interlude-section.is-visible .speaker-interlude-grid > div:nth-child(2) {
  animation-delay: 360ms;
}

.speaker-interlude-section.is-visible .speaker-interlude-grid > div:nth-child(3) {
  animation-delay: 420ms;
}

.speaker-interlude-section.is-visible .speaker-interlude-grid > div:nth-child(4) {
  animation-delay: 480ms;
}

.speaker-cta h2 span,
.speaker-cta .cta-line,
.speaker-cta-meta > div {
  opacity: 0;
  transform: translate3d(0, 10px, 0);
}

.speaker-cta.is-visible h2 span,
.speaker-cta.is-visible .cta-line,
.speaker-cta.is-visible .speaker-cta-meta > div {
  animation: speakerFadeContent 520ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.speaker-cta.is-visible h2 span:nth-child(1) {
  animation-delay: 120ms;
}

.speaker-cta.is-visible .cta-line {
  animation-delay: 180ms;
}

.speaker-cta.is-visible .speaker-cta-meta > div:nth-child(1) {
  animation-delay: 260ms;
}

.speaker-cta.is-visible .speaker-cta-meta > div:nth-child(2) {
  animation-delay: 320ms;
}

.speaker-cta.is-visible .speaker-cta-meta > div:nth-child(3) {
  animation-delay: 380ms;
}

.figma-profile-grid {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(320px, 470px);
  justify-content: space-between;
  gap: clamp(40px, 7vw, 120px);
  align-items: center;
}

.speakers-page:not(.home-page):not(.team-page):not(.individual-profile-page) .figma-profile-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
}

.speakers-page:not(.home-page):not(.team-page):not(.individual-profile-page) .speaker-motion-block-reverse .figma-profile-grid {
  grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
}

.speakers-page:not(.home-page):not(.team-page):not(.individual-profile-page) .speaker-motion-block-reverse .figma-profile-portrait {
  justify-self: start;
}

.speakers-page:not(.home-page):not(.team-page):not(.individual-profile-page) .figma-profile-copy {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.speakers-page:not(.home-page):not(.team-page):not(.individual-profile-page) .figma-profile-name {
  width: 100%;
  max-width: 100%;
  overflow: visible;
}

.speakers-page:not(.home-page):not(.team-page):not(.individual-profile-page) .figma-profile-name .speaker-name-line {
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 980px) {
  .speakers-page:not(.home-page):not(.team-page):not(.individual-profile-page) .figma-profile-grid {
    grid-template-columns: 1fr;
  }

  .speakers-page:not(.home-page):not(.team-page):not(.individual-profile-page) .speaker-motion-block-reverse .figma-profile-grid {
    grid-template-columns: 1fr;
  }
}

.team-page .figma-profile-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.team-page .figma-profile-copy {
  min-width: 0;
}

.figma-profile-portrait {
  position: relative;
  width: 100%;
  max-width: 430px;
  aspect-ratio: 0.82;
  margin: 0;
  overflow: hidden;
  background: #0a0a0a;
  justify-self: end;
  align-self: start;
}

.figma-profile-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.72) 100%);
  pointer-events: none;
}

.figma-profile-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transform: translate3d(0, var(--speaker-parallax-y, 0), 0) scale(var(--speaker-image-scale, 1.08));
  transition: filter 260ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.speaker-motion-block.is-visible .figma-profile-portrait img {
  --speaker-image-scale: 1;
}

.figma-profile-portrait:hover img,
.figma-profile-portrait:focus-within img,
.speaker-motion-block:hover .figma-profile-portrait img,
.speaker-motion-block:focus-within .figma-profile-portrait img {
  filter: none;
  --speaker-image-scale: 1;
}

.figma-profile-portrait figcaption {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.figma-profile-portrait figcaption span,
.figma-profile-portrait figcaption strong {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  line-height: 1.5;
  text-transform: uppercase;
}

.figma-profile-portrait figcaption strong {
  color: var(--red);
}

.figma-profile-portrait figcaption p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
}

.perform-profile-page .figma-speaker-profile {
  min-height: 1264px;
  padding-top: 110px;
}

.perform-profile-page .figma-profile-wrap {
  width: min(1400px, calc(100vw - 48px));
}

.perform-profile-page .figma-back-link {
  margin-bottom: 106px;
}

.perform-profile-page .figma-profile-grid {
  grid-template-columns: minmax(360px, 590px) minmax(0, 680px);
  gap: clamp(76px, 8vw, 128px);
}

.perform-profile-page .figma-profile-portrait {
  aspect-ratio: 0.86;
}

.figma-profile-copy .speaker-label {
  color: #e62b1e;
}

.figma-profile-name {
  margin: 26px 0 14px;
  color: #ffffff;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(54px, 5.8vw, 84px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.05em;
  padding-bottom: 0.08em;
}

.figma-profile-name span {
  display: block;
  line-height: 0.98;
}

.figma-profile-talk {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.85);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 300;
  line-height: 1.2;
}

.figma-profile-quote {
  margin: 0 0 34px;
  padding-left: 22px;
  border-left: 1px solid #e62b1e;
  color: rgba(255, 255, 255, 0.55);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.55;
}

.figma-profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding-bottom: 28px;
}

.figma-profile-meta span {
  color: rgba(255, 255, 255, 0.45);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.figma-profile-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 6px;
  padding-bottom: 22px;
}

.figma-bio-toggle,
.figma-profile-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.34em;
  line-height: 1.5;
  text-transform: uppercase;
  transform-origin: left center;
  transition: color 180ms ease, transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.figma-bio-toggle span,
.figma-profile-link span {
  color: var(--red);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
  display: inline-block;
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.figma-bio-toggle:hover,
.figma-bio-toggle:focus-visible,
.figma-profile-link:hover,
.figma-profile-link:focus-visible {
  color: #ffffff;
}

.figma-bio-toggle.is-action-pressed,
.figma-profile-link.is-action-pressed {
  animation: profileActionPress 520ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.figma-bio-toggle.is-action-pressed span,
.figma-profile-link.is-action-pressed span {
  transform: rotate(90deg) scale(1.18);
}

@keyframes profileActionPress {
  0% {
    transform: translate3d(0, 0, 0);
    letter-spacing: 0.34em;
  }

  42% {
    transform: translate3d(8px, 0, 0);
    letter-spacing: 0.4em;
  }

  100% {
    transform: translate3d(0, 0, 0);
    letter-spacing: 0.34em;
  }
}

.figma-profile-block {
  width: min(640px, 100%);
  margin-top: 2px;
  padding-top: 20px;
  padding-bottom: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition:
    max-height 520ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 360ms ease,
    transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.figma-profile-block h2 {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.7);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1.35;
  text-transform: uppercase;
}

.figma-profile-block p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.35;
  transform: translate3d(0, 18px, 0);
  transition: transform 560ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.figma-profile-block.is-opening,
.figma-profile-block.is-open {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.figma-profile-block.is-opening p,
.figma-profile-block.is-open p {
  transform: translate3d(0, 0, 0);
}

.figma-profile-block.is-closing {
  opacity: 0;
  transform: translate3d(0, 8px, 0);
}

.figma-profile-block[hidden] {
  display: none;
}

.team-page .team-bio-static {
  max-height: none;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.team-page .team-bio-static p {
  transform: translate3d(0, 0, 0);
}

.team-page .figma-profile-quote,
.team-profile-page .figma-profile-quote {
  display: none;
}

.team-page .figma-profile-meta,
.team-profile-page .figma-profile-meta {
  display: none;
}

.figma-profile-event {
  margin-top: 144px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
}

.figma-profile-event p {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.4em;
  line-height: 1.5;
  text-transform: uppercase;
}

.figma-profile-event span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.45;
}

.individual-profile-page {
  color: var(--paper);
  background: #050505;
}

.individual-profile-page .speaker-motion-copy,
.individual-profile-page .speaker-motion-media {
  opacity: 1;
  transform: none;
}

.individual-profile-page .speaker-motion-copy > * {
  opacity: 1;
  transform: none;
  animation: none;
}

.individual-profile-page .speaker-motion-copy > .figma-profile-name,
.individual-profile-page .speaker-motion-copy > .figma-profile-meta,
.individual-profile-page .speaker-motion-copy > .figma-profile-actions {
  opacity: 1;
  transform: none;
}

.individual-profile-page .figma-profile-name .speaker-name-line {
  opacity: 1;
  transform: none;
  animation: none;
}

.individual-profile-page .page-topbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--paper, #f5f2ec) url("../images/Rectangle_52_1.webp") center top / 520px auto repeat;
  border-bottom: 1px solid rgba(10, 10, 10, 0.12);
  backdrop-filter: none;
}

.individual-profile-page .speaker-stage-shell {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.individual-profile-panel {
  padding: clamp(78px, 8vw, 112px) 24px 0;
}

.individual-profile-wrap {
  width: min(1658px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 0 48px 112px;
}

.individual-profile-back {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(54px, 6vw, 84px);
  color: #ffffff;
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.individual-profile-back::before {
  content: "<";
  color: rgba(255, 255, 255, 0.88);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
}

.individual-profile-grid {
  display: grid;
  grid-template-columns: minmax(320px, 589px) minmax(480px, 829px);
  gap: clamp(48px, 5vw, 96px);
  align-items: start;
}

.individual-profile-page .figma-profile-portrait {
  max-width: 589px;
  aspect-ratio: 0.884;
  justify-self: start;
}

.individual-profile-page .figma-profile-portrait img {
  transform: none;
  transition: filter 260ms ease;
}

.individual-profile-page .speaker-motion-block.is-visible .figma-profile-portrait img {
  --speaker-image-scale: 1;
}

.individual-profile-copy {
  max-width: 829px;
  padding-top: clamp(28px, 4vw, 68px);
}

.individual-profile-kicker-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 34px;
}

.individual-profile-page .speaker-label {
  margin: 0;
}

.individual-profile-page .speaker-label::after {
  display: none;
}

.individual-profile-kicker-line {
  width: 48px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.individual-profile-page .figma-profile-name {
  margin: 0 0 32px;
  max-width: 100%;
  overflow: visible;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  font-size: clamp(56px, 5.8vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  padding-bottom: 0.08em;
}

.individual-profile-page .figma-profile-name .speaker-name-line {
  max-width: 100%;
  overflow: visible;
  white-space: normal;
  line-height: 0.98;
}

.team-profile-page .figma-profile-name {
  font-size: var(--team-profile-name-fit-size, clamp(52px, 5.4vw, 82px));
  letter-spacing: -0.035em;
  line-height: 0.98;
  padding-bottom: 0.08em;
}

.team-profile-page .figma-profile-name .speaker-name-line {
  max-width: 100%;
  white-space: nowrap;
  line-height: 0.98;
  overflow-wrap: normal;
  word-break: normal;
}

.individual-profile-page .figma-profile-talk {
  margin: 0 0 34px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
}

.individual-profile-page .figma-profile-quote {
  width: min(576px, 100%);
  margin: 0 0 34px;
}

.individual-profile-page .figma-profile-meta {
  gap: 0 18px;
  margin: 0;
  padding-bottom: 40px;
}

.individual-profile-page .figma-profile-meta span {
  position: relative;
  padding-right: 22px;
}

.individual-profile-page .figma-profile-meta span:not(:last-child)::after {
  content: ".";
  position: absolute;
  right: 8px;
  top: 0;
  color: rgba(255, 255, 255, 0.2);
}

.individual-profile-page .figma-profile-block {
  width: min(672px, 100%);
  margin-top: 0;
  padding: 33px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-height: none;
  overflow: visible;
  opacity: 1;
  transform: none;
}

.individual-profile-page .figma-profile-block h2 {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.individual-profile-page .figma-profile-block p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 1.75;
  transform: none;
}

.individual-profile-page .figma-profile-event {
  margin-top: 118px;
  padding-top: 0;
  border-top: 0;
}

.individual-profile-page .figma-profile-event p {
  letter-spacing: 0.4em;
}

.individual-profile-page .figma-profile-event span {
  font-size: 14px;
}

.speaker-reference-page .site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.72);
  background-color: #0a0a0a;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    var(--cream-noise);
  background-size: auto, 520px auto;
  background-position: center, 0 0;
  background-repeat: no-repeat, repeat;
}

.speaker-interlude-copy,
.speaker-interlude-meta,
.speaker-roster-head,
.speaker-roster-grid,
.speaker-cta-wrap {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 640ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 640ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.speaker-roster.is-visible .speaker-roster-grid {
  transition-delay: 140ms;
}

.speaker-cta.is-visible .speaker-cta-wrap {
  transition-delay: 120ms;
}

@keyframes speakerRiseIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes speakerFadeContent {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes liveArcSpin {
  to {
    rotate: 360deg;
  }
}

@keyframes ghostMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 5vw));
  }
}

@media (max-width: 1200px) {
  .individual-profile-grid {
    grid-template-columns: 1fr;
  }

  .individual-profile-copy {
    max-width: 100%;
    padding-top: 0;
  }

  .individual-profile-page .figma-profile-portrait {
    max-width: 720px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 980px) {
  .individual-profile-wrap {
    padding: 0 0 88px;
  }

  .individual-profile-back {
    margin-bottom: 40px;
    font-size: 16px;
  }

  .individual-profile-page .figma-profile-name {
    margin-bottom: 24px;
    line-height: 0.98;
  }

  .individual-profile-page .figma-profile-talk {
    margin-bottom: 28px;
  }

  .individual-profile-page .figma-profile-meta {
    gap: 12px;
    padding-bottom: 28px;
  }

  .individual-profile-page .figma-profile-meta span {
    padding-right: 0;
  }

  .individual-profile-page .figma-profile-meta span::after {
    display: none;
  }

  .page-topbar .hero-topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-items: start;
    align-items: center;
    gap: 12px 16px;
  }

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

  .page-topbar .site-menu-panel {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    padding: 16px;
    border: 1px solid rgba(10, 10, 10, 0.16);
    border-radius: 24px;
    background: rgba(245, 242, 236, 0.96);
    box-shadow: 0 18px 40px rgba(10, 10, 10, 0.12);
  }

  .page-topbar .hero-topbar.is-menu-open .site-menu-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .page-topbar .site-menu-panel .top-nav {
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .page-topbar .site-menu-panel .btn {
    width: 100%;
  }

  .speakers-page .nav-wrap,
  .speakers-page .site-footer .wrap,
  .speakers-hero-wrap,
  .speakers-stage .wrap,
  .speaker-roster .wrap,
  .speaker-cta-wrap {
    width: min(100%, calc(100vw - 48px));
  }

  .speakers-hero-meta,
  .speaker-showcase,
  .speaker-showcase.is-reversed,
  .speaker-interlude-panel,
  .speaker-roster-head {
    grid-template-columns: 1fr;
  }

  .speaker-interlude-meta {
    max-width: none;
    justify-self: stretch;
  }

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

  .speaker-showcase.is-reversed .speaker-showcase-copy,
  .speaker-showcase.is-reversed .speaker-showcase-media {
    order: initial;
  }

  .speaker-showcase {
    gap: 36px;
  }

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

  .speaker-cta-meta {
    grid-template-columns: 1fr;
  }

  .figma-speaker-profile {
    padding-top: 64px;
    padding-bottom: 72px;
  }

  .figma-profile-grid,
  .perform-profile-page .figma-profile-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .figma-profile-copy {
    order: 1;
  }

  .figma-profile-portrait {
    order: 2;
    justify-self: start;
    max-width: min(420px, 100%);
  }

  .figma-profile-name {
    font-size: clamp(50px, 10vw, 72px);
    line-height: 0.98;
  }

  .figma-profile-actions {
    flex-wrap: wrap;
    gap: 18px 30px;
  }

  .home-page .section > .wrap {
    width: min(100%, calc(100vw - 48px));
  }

  .home-page .people-slider .people-grid,
  .sponsor-page .sponsor-card-slider .people-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .people-slider .person:nth-child(2n),
  .sponsor-page .sponsor-card-slider .person:nth-child(2n) {
    border-right: 0;
  }

  .home-page .people-slider .person:nth-child(4n),
  .sponsor-page .sponsor-card-slider .person:nth-child(4n) {
    border-right: 0;
  }

  .home-page .people-slider .person:nth-last-child(-n + 4),
  .sponsor-page .sponsor-card-slider .person:nth-last-child(-n + 4) {
    border-bottom: 1px solid var(--line);
  }

  .home-page .people-slider .person:nth-last-child(-n + 2),
  .sponsor-page .sponsor-card-slider .person:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .home-page .dark-slider .person,
  .home-page .dark-slider .person:nth-child(4n),
  .home-page .dark-slider .person:nth-last-child(-n + 4),
  .home-page .dark-slider .people-grid {
    border-color: rgba(245, 242, 236, 0.44);
  }

  .nav-wrap {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 14px;
    width: min(1280px, calc(100% - 48px));
    padding: 12px 0;
  }

  .brand {
    min-height: 0;
  }

  .nav-links {
    order: 0;
    width: 100%;
    justify-content: flex-start;
    gap: 14px 22px;
    overflow: visible;
    padding: 0;
    white-space: normal;
  }

  .nav-cta {
    padding: 15px 20px;
  }

  .hero-grid,
  .manifesto,
  .split,
  .section-head,
  .motion-inner,
  .terms-layout,
  .organizer-spotlight,
  .journey-grid {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: auto;
  }

  .hero-art img {
    width: min(340px, 100%);
  }

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

  .person:nth-child(2n) {
    border-right: 0;
  }

  .person:nth-child(4n) {
    border-right: 1px solid var(--line);
  }

  .person:nth-last-child(-n + 4) {
    border-bottom: 1px solid var(--line);
  }

  .person:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .tiers,
  .ops-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .people-track .people-grid {
    flex-basis: min(900px, calc(200vw - 48px));
  }

  .spotlight-stats {
    grid-template-columns: 1fr;
  }

  .apply-tabs {
    justify-content: flex-start;
    gap: 16px;
  }

  .ops-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .ops-card:last-child {
    border-bottom: 0;
  }

  .tier {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .tier:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .individual-profile-panel {
    padding-top: 48px;
  }

  .individual-profile-grid {
    gap: 32px;
  }

  .individual-profile-kicker-row {
    margin-bottom: 24px;
  }

  .individual-profile-page .figma-profile-block {
    padding: 26px 0 32px;
  }

  .individual-profile-page .figma-profile-event {
    margin-top: 72px;
  }

  .speakers-hero,
  .speakers-stage,
  .speaker-roster,
  .speaker-cta {
    padding-left: 18px;
    padding-right: 18px;
  }

  .speakers-page .nav-wrap,
  .speakers-page .site-footer .wrap,
  .speakers-hero-wrap,
  .speakers-stage .wrap,
  .speaker-roster .wrap,
  .speaker-cta-wrap {
    width: min(100%, calc(100vw - 36px));
  }

  .speakers-hero-title {
    font-size: 54px;
  }

  .speakers-hero-meta,
  .speaker-interlude-grid,
  .speaker-roster-grid {
    grid-template-columns: 1fr;
  }

  .speaker-interlude-copy h2,
  .speaker-interlude-meta p {
    max-width: none;
  }

  .speaker-name {
    font-size: 48px;
  }

  .speaker-talk {
    font-size: 24px;
  }

  .speaker-meta {
    gap: 12px;
  }

  .speaker-meta span {
    display: block;
    width: 100%;
  }

  .speaker-meta span::after {
    display: none;
  }

  .speaker-roster-copy strong {
    font-size: 14px;
  }

  .speaker-cta h2 {
    font-size: 62px;
  }

  .figma-speaker-profile {
    padding-left: 18px;
    padding-right: 18px;
  }

  .figma-profile-wrap {
    width: min(100%, calc(100vw - 36px));
  }

  .figma-profile-name {
    font-size: 48px;
  }

  .figma-profile-talk {
    font-size: 20px;
  }

  .figma-profile-quote,
  .figma-profile-block p {
    font-size: 16px;
  }

  .figma-profile-meta {
    gap: 10px;
  }

  .figma-profile-meta span {
    width: 100%;
  }

  .figma-profile-actions {
    gap: 14px 24px;
  }

  .figma-bio-toggle,
  .figma-profile-link {
    letter-spacing: 0.24em;
  }

  .home-page .section > .wrap {
    width: min(100%, calc(100vw - 36px));
  }

  .home-page .people-slider .people-grid,
  .sponsor-page .sponsor-card-slider .people-grid {
    grid-template-columns: 1fr;
  }

  .display {
    font-size: 76px;
  }

  .headline {
    font-size: 48px;
  }

  .event-meta,
  .people-grid,
  .faq,
  .term-cards,
  .form-grid,
  .journey-list article {
    grid-template-columns: 1fr;
  }

  .people-track .people-grid {
    flex-basis: min(640px, calc(200vw - 36px));
  }

  .journey-list article::before {
    left: 29px;
  }

  .journey-list article {
    grid-template-columns: 58px 1fr;
  }

  .apply-tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .person,
  .person:nth-child(4n),
  .person:nth-child(2n),
  .person:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .person:last-child {
    border-bottom: 0;
  }

  .home-page .people-slider .person,
  .home-page .people-slider .person:nth-child(4n),
  .home-page .people-slider .person:nth-child(2n),
  .home-page .people-slider .person:nth-last-child(-n + 4),
  .home-page .people-slider .person:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-page .people-slider .person:last-child {
    border-bottom: 0;
  }

  .home-page .dark-slider .person,
  .home-page .dark-slider .person:nth-child(4n),
  .home-page .dark-slider .person:nth-child(2n),
  .home-page .dark-slider .person:nth-last-child(-n + 4),
  .home-page .dark-slider .person:nth-last-child(-n + 2),
  .home-page .dark-slider .people-grid {
    border-color: rgba(245, 242, 236, 0.44);
  }

  .section,
  .page-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .wrap {
    width: min(100%, calc(100vw - 36px));
  }

  .nav-cta {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .terms-cta {
    grid-template-columns: 1fr;
  }

  .motion-stage,
  .motion-inner {
    min-height: 640px;
  }
}

/* Sponsor redesign final overrides: keep this after legacy sponsor/reveal rules. */
.sponsor-redesign .reveal {
  opacity: 1;
  transform: none;
  animation: sponsorFadeUp 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.sponsor-redesign .sponsor-pill {
  animation-delay: 90ms;
}

.sponsor-redesign .sponsor-display {
  animation-delay: 170ms;
}

.sponsor-redesign .sponsor-lede {
  animation-delay: 260ms;
}

.sponsor-redesign .pillar-panel,
.sponsor-redesign .sponsor-tier,
.sponsor-redesign .partner-photo,
.sponsor-redesign .sponsor-form {
  opacity: 1;
}

.sponsor-redesign .partner-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 74px;
  width: 100%;
}

.profile-card-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

a.pillar-panel,
a.sponsor-tier,
a.partner-photo {
  display: grid;
}

a.partner-photo {
  display: block;
}

a.partner-copy {
  display: block;
}

@keyframes sponsorFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sponsor and partner profile pages */
.profile-detail-page {
  min-height: 100vh;
  font-family: "Outfit", "Inter", sans-serif;
}

.profile-detail-page .page-topbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--paper, #f5f2ec) url("../images/Rectangle_52_1.webp") center top / 520px auto repeat;
  border-bottom: 1px solid rgba(10, 10, 10, 0.12);
  backdrop-filter: none;
}

.profile-detail-main {
  overflow: hidden;
}

.profile-detail-hero {
  padding: clamp(70px, 8vw, 128px) 24px clamp(96px, 10vw, 148px);
}

.profile-detail-wrap {
  width: min(1400px, calc(100vw - 48px));
  margin: 0 auto;
}

.profile-back {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: clamp(78px, 7vw, 110px);
  color: inherit;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.profile-back span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
}

.profile-kicker {
  margin: 0 0 22px;
  color: var(--red);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.profile-title {
  margin: 0;
  font-family: "Manrope", "Outfit", sans-serif;
  font-size: clamp(62px, 6.8vw, 104px);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.96;
}

.profile-subtitle {
  margin: 18px 0 0;
  color: inherit;
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 500;
  opacity: 0.68;
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(360px, 589px) minmax(520px, 1fr);
  gap: clamp(40px, 4.2vw, 58px);
  align-items: start;
  margin-top: clamp(78px, 7vw, 92px);
}

.profile-portrait-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #111;
}

.profile-portrait-card img {
  display: block;
  width: 100%;
  height: clamp(690px, 47vw, 895px);
  object-fit: cover;
  object-position: center top;
}

.profile-portrait-card figcaption {
  position: absolute;
  top: 32px;
  right: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 16px;
  color: #fff;
  background: var(--red);
  font-size: 14px;
  font-weight: 800;
}

.profile-content-stack {
  display: grid;
  gap: 24px;
}

.profile-glass-card,
.profile-paper-card {
  border-radius: 18px;
}

.profile-card-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: start;
}

.profile-card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(235, 0, 40, 0.28);
}

.profile-card-icon::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 5px;
  transform: rotate(45deg);
}

.profile-info-card,
.profile-benefits {
  padding: clamp(34px, 3vw, 42px);
}

.profile-info-card h2,
.profile-benefits h2,
.profile-paper-card h2 {
  margin: 0;
  font-size: clamp(25px, 2vw, 34px);
  line-height: 1.15;
}

.profile-info-card p {
  max-width: 760px;
  margin: 44px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 20px;
  line-height: 1.55;
}

.profile-two-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 7vw, 110px);
  margin-top: 44px;
}

.profile-two-cols small,
.profile-contact-card small,
.profile-contact-grid-light small {
  display: block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.52;
}

.profile-two-cols small::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--red);
  vertical-align: 0.18em;
}

.profile-two-cols strong,
.profile-contact-card strong,
.profile-contact-grid-light strong {
  display: block;
  font-size: 18px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.profile-two-cols span {
  display: block;
  margin-top: 8px;
  opacity: 0.58;
  font-size: 15px;
}

.profile-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.profile-contact-card {
  min-height: 150px;
  padding: 26px;
}

.profile-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  border-radius: 14px;
  color: #fff;
  background: rgba(235, 0, 40, 0.38);
}

.profile-icon::before,
.profile-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.profile-icon-mail::before {
  width: 17px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.profile-icon-mail::after {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.profile-icon-web::before {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.profile-icon-web::after {
  width: 10px;
  height: 2px;
  background: currentColor;
}

.profile-icon-pin::before {
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.profile-icon-pin::after {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  transform: translateY(-2px);
}

.profile-benefits ul,
.profile-goals-card ul {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
}

.profile-benefits ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 72px;
}

.profile-benefits li {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}

.profile-benefits li::before {
  content: "\2713";
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #fff;
  background: rgba(235, 0, 40, 0.78);
  font-size: 12px;
  font-weight: 900;
}

.profile-detail-dark {
  color: #fff;
  background:
    radial-gradient(circle at 74% 11%, rgba(112, 46, 55, 0.34), transparent 23%),
    radial-gradient(circle at 50% 58%, rgba(255, 255, 255, 0.08), transparent 32%),
    #050505;
}

.profile-detail-dark .profile-back {
  color: rgba(255, 255, 255, 0.72);
}

.profile-detail-dark .profile-back span {
  background: rgba(255, 255, 255, 0.06);
}

.profile-detail-dark .profile-glass-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 28px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(22px);
}

.profile-detail-light {
  color: #151515;
  background: var(--paper) url("../images/Rectangle_52_1.webp") center top / 1100px auto repeat;
}

.profile-detail-light .profile-detail-hero {
  padding-top: 64px;
}

.profile-detail-light .profile-back {
  margin-bottom: clamp(78px, 7vw, 96px);
  color: #151515;
}

.profile-detail-light .profile-back span {
  color: #151515;
}

.profile-detail-light .profile-title {
  color: var(--red);
}

.profile-detail-light .profile-layout {
  margin-top: 70px;
}

.profile-paper-card {
  padding: clamp(30px, 3vw, 36px);
  border: 1px solid rgba(10, 10, 10, 0.05);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(245, 242, 236, 0.9)),
    url("../images/Rectangle_52_1.webp") center top / 1100px auto repeat;
  box-shadow: 0 28px 70px rgba(10, 10, 10, 0.05);
}

.profile-organization-card {
  padding: 36px;
}

.profile-organization-card .profile-two-cols {
  margin-top: 36px;
}

.profile-contact-grid-light {
  margin-top: 42px;
}

.profile-contact-grid-light article {
  min-height: 126px;
  padding: 22px;
  border-radius: 12px;
  background: rgba(245, 245, 245, 0.95);
}

.profile-contact-grid-light .profile-icon {
  color: var(--red);
  background: rgba(235, 0, 40, 0.12);
}

.profile-organization-card > p {
  margin: 54px 0 0;
  color: rgba(10, 10, 10, 0.64);
  font-size: 17px;
  line-height: 1.55;
}

.profile-social-row {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(10, 10, 10, 0.08);
}

.profile-social-row > strong {
  display: block;
  margin-bottom: 16px;
  font-size: 14px;
}

.profile-social-row div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.profile-social-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 22px;
  border-radius: 10px;
  background: #f0f0f0;
  font-size: 13px;
  font-weight: 600;
}

.profile-goals-card {
  padding: 30px 36px 36px;
}

.profile-goals-card li {
  margin: 14px 0;
  color: rgba(10, 10, 10, 0.62);
  font-size: 15px;
  line-height: 1.35;
}

.profile-detail-light .site-footer,
.profile-detail-dark .site-footer {
  border-top: 1px solid rgba(245, 242, 236, 0.24);
}

.profile-detail-page .site-footer .brand-mark,
.profile-detail-page .site-footer .event-logo .brand-mark {
  color: var(--red);
}

.profile-detail-page .site-footer .event-logo span:not(.brand-mark) {
  color: var(--paper);
}

.profile-detail-page .profile-contact-card strong,
.profile-detail-page .profile-contact-grid-light strong {
  font-size: clamp(12px, 0.9vw, 15px);
  line-height: 1.25;
  word-break: normal;
}

.profile-detail-page .profile-contact-card strong {
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .profile-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .profile-portrait-card {
    max-width: 620px;
    width: 100%;
    justify-self: start;
    aspect-ratio: 0.76;
  }

  .profile-portrait-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
}

@media (max-width: 720px) {
  .profile-detail-wrap {
    width: min(100%, calc(100vw - 32px));
  }

  .profile-title {
    font-size: clamp(46px, 15vw, 68px);
  }

  .profile-contact-grid,
  .profile-two-cols,
  .profile-benefits ul {
    grid-template-columns: 1fr;
  }

  .profile-info-card,
  .profile-benefits,
  .profile-organization-card,
  .profile-goals-card {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .individual-profile-wrap {
    width: min(100%, calc(100vw - 24px));
    padding: 0 0 72px;
  }

  .individual-profile-back {
    gap: 10px;
    margin-bottom: 28px;
    font-size: 14px;
    line-height: 1.25;
  }

  .individual-profile-back::before {
    font-size: 24px;
  }

  .individual-profile-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .individual-profile-page .figma-profile-name {
    font-size: clamp(42px, 13vw, 60px);
    line-height: 0.98;
    padding-bottom: 0.08em;
  }

  .individual-profile-page .figma-profile-talk {
    margin-bottom: 22px;
    font-size: 18px;
  }

  .individual-profile-page .figma-profile-meta {
    flex-wrap: wrap;
    gap: 10px 14px;
    padding-bottom: 22px;
  }

  .individual-profile-page .figma-profile-meta span {
    white-space: normal;
  }

  .individual-profile-page .figma-profile-block h2 {
    font-size: 26px;
    line-height: 1.05;
  }

  .individual-profile-page .figma-profile-block p {
    font-size: 16px;
    line-height: 1.55;
  }

  .profile-detail-wrap {
    width: min(100%, calc(100vw - 24px));
  }

  .profile-back {
    gap: 12px;
    margin-bottom: 32px;
    font-size: 16px;
  }

  .profile-title {
    font-size: clamp(40px, 13vw, 58px);
    overflow-wrap: anywhere;
  }

  .profile-subtitle {
    font-size: 16px;
  }

  .profile-layout {
    align-items: start;
    gap: 28px;
    margin-top: 56px;
  }

  .profile-portrait-card {
    width: 100%;
    max-width: none;
    aspect-ratio: 0.76;
  }

  .profile-portrait-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .profile-contact-grid,
  .profile-two-cols,
  .profile-benefits ul {
    grid-template-columns: 1fr;
  }

  .profile-contact-card strong,
  .profile-contact-grid-light strong {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .profile-info-card,
  .profile-benefits,
  .profile-organization-card,
  .profile-goals-card {
    padding: 20px;
  }

  .page-topbar .hero-topbar {
    width: min(100%, calc(100vw - 24px));
  }

  .page-topbar .brand em {
    font-size: 16px;
  }

  .page-topbar .btn {
    width: 100%;
  }

  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-footer .wrap {
    width: min(100%, calc(100vw - 24px));
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer .footer-grid .footer-quote {
    font-size: clamp(34px, 10vw, 42px);
  }
}

/* Shared final polish for all inner pages. */
.page-topbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--paper, #f5f2ec) url("../images/Rectangle_52_1.webp") center top / 520px auto repeat;
  border-bottom: 1px solid rgba(10, 10, 10, 0.12);
  backdrop-filter: none;
}

.page-topbar .hero-topbar {
  width: min(1280px, calc(100vw - 48px));
  min-height: 64px;
  padding: 8px 0 10px;
  border-bottom: 0;
}

.page-topbar .brand > span,
.page-topbar .brand sup {
  color: var(--red) !important;
}

.page-topbar .brand > span {
  font-family: "Anton", Impact, sans-serif;
  font-size: 30px;
  line-height: 1;
}

.page-topbar .brand em {
  color: rgba(10, 10, 10, 0.78) !important;
}

.page-topbar .btn {
  color: var(--ink);
  background: transparent;
  border-color: rgba(10, 10, 10, 0.72);
}

.page-topbar .btn:hover,
.page-topbar .btn:focus-visible,
.btn:hover,
.btn:focus-visible,
.sponsor-form button:hover,
.sponsor-form button:focus-visible {
  color: var(--paper);
  background: var(--red);
  border-color: var(--red);
}

.sponsor-outline-btn {
  border-color: #0a0a0a;
  color: var(--paper);
  background: #0a0a0a;
}

.sponsor-outline-btn:hover,
.sponsor-outline-btn:focus-visible {
  color: var(--paper);
  background: var(--red);
  border-color: var(--red);
}

/* Keep light surfaces textured instead of flat white across inner pages. */
.profile-paper-card,
.profile-contact-grid-light article,
.form-card,
.term-card,
.tier {
  background-color: var(--paper);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(245, 242, 236, 0.9)),
    url("../images/Rectangle_52_1.webp");
  background-position: center, 0 0;
  background-size: auto, 1100px auto;
}

.sponsor-redesign .reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 820ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
  animation: none !important;
  will-change: opacity, transform;
}

.sponsor-redesign .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.sponsor-redesign .pillar-panel.is-visible,
.sponsor-redesign .sponsor-tier.is-visible,
.sponsor-redesign .partner-photo.is-visible,
.sponsor-redesign .sponsor-form.is-visible {
  animation: none !important;
}

.sponsor-redesign .sponsor-tier:nth-child(2) {
  transition-delay: 90ms;
}

.sponsor-redesign .sponsor-tier:nth-child(3) {
  transition-delay: 180ms;
}

.site-footer {
  overflow: hidden;
  padding: clamp(74px, 9vw, 112px) 24px 0;
  color: var(--paper);
  background: #0a0a0a;
}

.site-footer .wrap {
  width: min(1280px, calc(100vw - 48px));
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 42px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(245, 242, 236, 0.16);
}

.site-footer .event-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
}

.site-footer .event-logo .brand-mark {
  color: var(--red);
  font-family: "Anton", Impact, sans-serif;
  font-size: 50px;
  line-height: 0.92;
}

.site-footer .event-logo .brand-mark sup {
  font-size: 26px;
  top: -0.42em;
}

.site-footer .event-logo span:not(.brand-mark) {
  color: rgba(245, 242, 236, 0.9);
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.45px;
}

.site-footer .footer-license {
  position: relative;
  margin: 12px 0 0;
  padding-top: 12px;
  color: rgba(245, 242, 236, 0.45);
  font-size: 12px;
  letter-spacing: 4px;
}

.site-footer .footer-license::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  max-width: 460px;
  height: 1px;
  background: rgba(245, 242, 236, 0.28);
}

.site-footer .footer-title {
  margin: 0 0 14px;
  color: rgba(245, 242, 236, 0.4);
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 3.226px;
  text-transform: uppercase;
}

.site-footer .footer-quote {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(245, 242, 236, 0.9);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 3.5vw, 54px);
  font-style: normal;
  line-height: 1.06;
}

.site-footer .footer-links {
  display: grid;
  gap: 12px;
}

.site-footer a {
  color: rgba(245, 242, 236, 0.8);
  text-decoration: none;
}

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

.site-footer .footer-links a {
  font-size: 14px;
  line-height: 20px;
}

.site-footer .newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-bottom: 1px solid rgba(245, 242, 236, 0.3);
}

.site-footer .newsletter input {
  width: 100%;
  border: 0;
  padding: 10px 0;
  color: var(--paper);
  background: transparent;
  font: inherit;
  outline: none;
}

.site-footer .newsletter button {
  border: 0;
  color: var(--red);
  background: transparent;
  font-size: 11px;
  letter-spacing: 2.75px;
  text-transform: uppercase;
  cursor: pointer;
}

.site-footer .social-links {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.site-footer .social-links a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(245, 242, 236, 0.45);
  border-radius: 6px;
  color: rgba(245, 242, 236, 0.85);
}

.site-footer .social-links a:hover,
.site-footer .social-links a:focus-visible {
  color: var(--red);
  border-color: var(--red);
}

.site-footer .social-links svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 22px;
  padding-top: 28px;
}

.site-footer .footer-bottom span {
  margin: 0;
  color: rgba(245, 242, 236, 0.4);
  font-size: 12px;
}

.site-footer .footer-bottom span:nth-child(2) {
  margin-left: auto;
}

.site-footer .powered-by {
  flex-basis: 100%;
  order: 3;
  margin-left: 0 !important;
  margin-top: 2px;
  text-align: left;
}

.site-footer .powered-by a {
  color: var(--red);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.site-footer .ghost-word {
  display: flex;
  width: 100%;
  margin: 18px 0 -20px;
  overflow: hidden;
  white-space: nowrap;
  color: rgba(245, 242, 236, 0.04);
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(96px, 18vw, 300px);
  line-height: 0.85;
  letter-spacing: -2px;
  text-transform: uppercase;
  pointer-events: auto;
  animation: footerBanner 56s linear infinite;
}

.site-footer .ghost-word:hover {
  animation-play-state: paused;
}

@keyframes footerBanner {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.site-footer .footer-grid > *,
.site-footer .footer-bottom,
.site-footer .ghost-word {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 820ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-footer.is-visible .footer-grid > *,
.site-footer.is-visible .footer-bottom,
.site-footer.is-visible .ghost-word {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.site-footer.is-visible .footer-grid > *:nth-child(2) {
  transition-delay: 90ms;
}

.site-footer.is-visible .footer-grid > *:nth-child(3) {
  transition-delay: 160ms;
}

.site-footer.is-visible .footer-grid > *:nth-child(4) {
  transition-delay: 230ms;
}

.site-footer.is-visible .footer-bottom {
  transition-delay: 300ms;
}

.site-footer.is-visible .ghost-word {
  transition-delay: 380ms;
}

@media (prefers-reduced-motion: reduce) {
  .sponsor-redesign .reveal,
  .site-footer .footer-grid > *,
  .site-footer .footer-bottom,
  .site-footer .ghost-word {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (max-width: 1180px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .site-footer .wrap {
    width: min(100%, calc(100vw - 32px));
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-footer .footer-bottom {
    flex-direction: column;
  }

  .site-footer .footer-bottom span:nth-child(2) {
    margin-left: 0;
  }
}

/* Universal footer copied from the index page for all asset-based pages. */
.surface-dark.footer {
  color: var(--paper);
  background: #0a0a0a;
}

.footer {
  overflow: hidden;
  padding: clamp(74px, 9vw, 112px) 24px 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 42px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(245, 242, 236, 0.16);
}

.footer h5 {
  margin: 0 0 14px;
  color: rgba(245, 242, 236, 0.4);
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 3.226px;
  text-transform: uppercase;
}

.footer a {
  display: block;
  margin-bottom: 12px;
  color: rgba(245, 242, 236, 0.8);
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
}

.footer a:hover,
.footer a:focus-visible {
  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;
  margin-bottom: 0;
}

.footer-brand-block .brand span {
  font-family: "Anton", Impact, sans-serif;
  font-size: 50px;
  line-height: 0.92;
}

.footer-brand-block .brand sup {
  font-size: 26px;
  top: -0.42em;
}

.footer-brand-block .brand em {
  color: rgba(245, 242, 236, 0.9);
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.45px;
  margin-left: 0;
  text-transform: none;
}

.footer-brand-block .eyebrow {
  position: relative;
  margin: 12px 0 0;
  padding-top: 12px;
  color: rgba(245, 242, 236, 0.45);
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.footer-brand-block .eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  max-width: 460px;
  height: 1px;
  background: rgba(245, 242, 236, 0.28);
}

.footer-quote {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(245, 242, 236, 0.9);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 3.5vw, 54px);
  font-style: normal;
  line-height: 1.06;
}

.footer .newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-bottom: 1px solid rgba(245, 242, 236, 0.3);
}

.footer .newsletter input {
  width: 100%;
  border: 0;
  padding: 10px 0;
  color: var(--paper);
  background: transparent;
  font: inherit;
  outline: none;
}

.footer .newsletter button {
  border: 0;
  color: var(--red);
  background: transparent;
  font-size: 11px;
  letter-spacing: 2.75px;
  text-transform: uppercase;
  cursor: pointer;
}

.socials {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin: 0;
  border: 1px solid rgba(245, 242, 236, 0.45);
  border-radius: 6px;
  color: rgba(245, 242, 236, 0.85);
}

.socials a:hover,
.socials a:focus-visible {
  color: var(--red);
  border-color: var(--red);
}

.socials svg {
  display: block;
  width: 16px;
  height: 16px;
  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, 0.4);
  font-size: 12px;
}

.footer-bottom p:nth-child(2) {
  margin-left: auto;
}

.footer-bottom .powered-by {
  flex-basis: 100%;
  order: 3;
  margin-left: 0;
  margin-top: 2px;
  text-align: left;
}

.footer-bottom .powered-by a {
  color: var(--red);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-mark {
  display: flex;
  width: 100%;
  margin: 18px 0 -20px;
  overflow: hidden;
  white-space: nowrap;
  pointer-events: auto;
}

.footer-mark span {
  flex: 0 0 auto;
  color: rgba(245, 242, 236, 0.04);
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(96px, 18vw, 300px);
  line-height: 0.85;
  letter-spacing: -2px;
  animation: footerBanner 56s linear infinite;
}

.footer-mark:hover span {
  animation-play-state: paused;
}

@media (max-width: 1180px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .footer {
    padding-inline: 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom p:nth-child(2) {
    margin-left: 0;
  }
}

@media (max-width: 1180px) {
  .team-page .speaker-roster-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  .team-page .speaker-roster-grid {
    grid-template-columns: 1fr;
  }

  .team-directory-section {
    padding-inline: 18px;
  }

  .team-directory-wrap {
    width: min(100%, calc(100vw - 36px));
    grid-template-columns: 1fr;
  }
}

.sponsor-showcase-card--bronze {
  border: 2px solid rgba(245, 242, 236, 0.96);
  background: #050505;
}

.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(--paper, #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(--paper, #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(--paper, #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(--paper, #f5f2ec);
}

.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(--paper, #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;
  }

  .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;
  }
}

/* ==========================================================================
   Sponsor Redesign (Sponsors Page Light Theme Carousel Overrides)
   ========================================================================== */
.sponsor-redesign .sponsor-showcase-card--community,
.sponsor-redesign .sponsor-showcase-card--donor,
.sponsor-redesign .sponsor-showcase-card--bronze {
  background-color: var(--paper);
  background-image: var(--cream-noise);
  background-position: center top;
  background-size: 520px auto;
  background-repeat: repeat;
  border: 1px solid rgba(10, 10, 10, 0.14);
  box-shadow: 0 24px 70px rgba(10, 10, 10, 0.05);
  color: var(--ink);
}

.sponsor-redesign .community-supporter-copy h3 {
  color: var(--ink);
}

.sponsor-redesign .community-supporter-copy .showcase-description {
  color: rgba(10, 10, 10, 0.72);
}

.sponsor-redesign .community-supporter-profile h4,
.sponsor-redesign .donor-supporter-profile h4 {
  color: var(--ink);
}

.sponsor-redesign .community-supporter-features strong,
.sponsor-redesign .donor-supporter-features strong {
  color: rgba(10, 10, 10, 0.78);
}

.sponsor-redesign .community-supporter-divider {
  background: rgba(10, 10, 10, 0.16);
}

.sponsor-redesign .sponsor-showcase-card--bronze .sponsor-showcase-copy h3 span:first-child {
  color: var(--ink);
}

.sponsor-redesign .sponsor-showcase-card--bronze .showcase-description {
  color: var(--ink);
}

.sponsor-redesign .sponsor-showcase-features--bronze strong {
  color: var(--ink);
}

/* Dots and Arrows visible in light background */
.sponsor-redesign .sponsor-carousel-dots button {
  background: rgba(10, 10, 10, 0.24);
}

.sponsor-redesign .sponsor-carousel-dots button:hover,
.sponsor-redesign .sponsor-carousel-dots button.is-active {
  background: var(--red);
}

.sponsor-redesign .sponsor-carousel-arrows button {
  border-color: rgba(10, 10, 10, 0.24);
  background: rgba(0, 0, 0, 0.03);
  color: var(--ink);
}

.sponsor-redesign .sponsor-carousel-arrows button:hover,
.sponsor-redesign .sponsor-carousel-arrows button:focus-visible {
  border-color: var(--red);
  background: var(--red);
  color: var(--paper);
}

/* ── Team page: clean portrait image — keep only red X + red TEAM ── */
.team-page .team-profile-mark > strong {
  display: none;
}

.team-page .team-profile-name-stack {
  display: none;
}

.team-page .team-profile-portrait figcaption > div {
  display: none;
}

/* ── Team page: slim line above footer instead of thick cream gap ── */
.team-page {
  background-color: #0a0a0a;
  background-image: none;
}

.team-page .footer {
  border-top: 1px solid rgba(245, 242, 236, 0.10);
}

.team-page .figma-profile-name,
.team-profile-page .figma-profile-name {
  font-size: var(--team-profile-name-fit-size, clamp(46px, 5vw, 72px));
  max-width: 100%;
  overflow: visible;
}

.team-page .figma-profile-name .speaker-name-line,
.team-profile-page .figma-profile-name .speaker-name-line {
  max-width: 100%;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}

@media (max-width: 980px) {
  .team-page .figma-profile-grid {
    grid-template-columns: 1fr;
  }

  .team-page .figma-profile-copy,
  .team-profile-page .individual-profile-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .team-profile-page .individual-profile-grid,
  .team-profile-page .figma-profile-name {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .team-page .figma-profile-name,
  .team-profile-page .figma-profile-name {
    font-size: var(--team-profile-name-fit-size, clamp(36px, 11vw, 52px));
  }
}
