
@font-face {
  font-family: "Mortend";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("assets/fonts/mortend-bold.woff2") format("woff2");
}

@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("assets/fonts/nunito-sans-latin-var.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --black: #000000;
  --red: #ce1126;
  --yellow: #fcd106;
  --white: #ffffff;
  --charcoal: #101010;
  --graphite: #181818;
  --muted: #b8b8b8;
  --display: Mortend, "Arial Black", Impact, system-ui, sans-serif;
  --body: "Nunito Sans", Inter, Arial, sans-serif;
  --max: 1180px;
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-offset: 10px;
  --section-pad: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  line-height: 1.5;
  /* Full-bleed decoration (the hero glow) is sized in vw, which counts the
     scrollbar the document's content box does not have — 100vw is ~15px wider
     than the page on desktop, which showed up as a real horizontal scrollbar.
     `clip` rather than `hidden`: it contains the overflow without creating a
     scroll container, so the sticky header keeps working. */
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(120deg, rgba(206, 17, 38, 0.2), transparent 36%),
    linear-gradient(300deg, rgba(252, 209, 6, 0.16), transparent 28%),
    #000;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  background-image:
    linear-gradient(30deg, transparent 47%, rgba(255, 255, 255, 0.28) 49%, transparent 51%),
    linear-gradient(150deg, transparent 47%, rgba(255, 255, 255, 0.24) 49%, transparent 51%);
  background-size: 44px 44px;
  pointer-events: none;
}

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

p,
h1,
h2,
h3 {
  margin: 0;
}

.site-header {
  position: sticky;
  top: var(--header-offset);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(100% - 32px, var(--max));
  margin: var(--header-offset) auto 0;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(16px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  width: 126px;
  min-width: 126px;
}

.brand-mark picture {
  display: block;
  width: 100%;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--yellow);
}

.section-status {
  position: fixed;
  top: calc(var(--header-offset) + 96px);
  left: max(18px, calc((100vw - var(--max)) / 2));
  z-index: 9;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(252, 209, 6, 0.28);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.78);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 180ms ease,
    transform 180ms var(--ease-out);
}

.section-status.is-shown {
  opacity: 1;
  transform: none;
}

.section-status span,
.section-status strong {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.section-status span {
  color: var(--yellow);
}

.nav-cta,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  overflow: hidden;
  padding: 0 18px;
  border-radius: 8px;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 900;
  isolation: isolate;
  text-transform: uppercase;
}

.nav-cta::after,
.button::after {
  content: "";
  position: absolute;
  inset: -35% -70%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, 0.58) 50%, transparent 58%);
  opacity: 0;
  transform: translateX(-85%) skewX(-18deg);
  transition: opacity 120ms ease;
}

.nav-cta,
.button.primary {
  background: var(--red);
  color: var(--white);
  border: 1px solid rgba(252, 209, 6, 0.42);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.nav-cta:hover,
.button.primary:hover {
  background: var(--yellow);
  color: var(--black);
  box-shadow:
    0 14px 30px rgba(252, 209, 6, 0.2),
    0 0 0 1px rgba(0, 0, 0, 0.18) inset;
}

.button.secondary:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: 64px;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.hero {
  isolation: isolate;
  position: relative;
  min-height: auto;
  align-items: stretch;
  padding: 54px 0 44px;
  overflow: visible;
}

.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: 0;
  width: 100vw;
  height: min(760px, 78vw);
  pointer-events: none;
  background:
    radial-gradient(ellipse at 62% 58%, rgba(252, 209, 6, 0.16), transparent 42%),
    radial-gradient(ellipse at 70% 34%, rgba(206, 17, 38, 0.14), transparent 44%);
  transform: translate(-50%, -50%);
}

.hero.section-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 0.72fr);
  gap: 56px;
  width: min(100% - 40px, var(--max));
}

.hero::after,
.register::before {
  content: "";
  position: absolute;
  border: 1px solid rgba(252, 209, 6, 0.42);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  right: 7vw;
  bottom: 8vh;
  width: 220px;
  aspect-ratio: 1;
  border-left-color: var(--red);
  z-index: 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow span {
  width: 56px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red) 0 48%, var(--yellow) 48% 100%);
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.track-heading strong,
.audience-grid strong,
.side-grid strong,
.partner-logo {
  overflow-wrap: break-word;
}

h1 {
  max-width: 680px;
  margin-top: 20px;
  font-size: clamp(4rem, 8.8vw, 7.4rem);
  line-height: 0.9;
}

.hero-copy h1 {
  position: relative;
  color: var(--white);
  animation: rise-only 620ms var(--ease-out) both;
}

.hero-copy h1::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      105deg,
      transparent 0 35%,
      rgba(255, 255, 255, 0.08) 41%,
      #b9c4cf 46%,
      #f7fbff 50%,
      #8f9aa5 55%,
      transparent 61% 100%
    );
  background-position: 150% 0;
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: headline-light-sweep 8.8s ease-in-out 1.2s infinite;
}

h2 {
  font-size: clamp(2.2rem, 5.5vw, 5.2rem);
  line-height: 0.94;
}

h3 {
  font-size: clamp(1.8rem, 4vw, 3.7rem);
  line-height: 0.95;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto auto auto 1fr auto;
}

.hero-line {
  margin-top: 22px;
  color: var(--yellow);
  font-family: var(--display);
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
}

.hero-text {
  max-width: 650px;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
  align-self: end;
}

.hero-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  min-width: 0;
  grid-template-rows: minmax(0, 1fr) auto;
}

.hero-image {
  isolation: isolate;
  position: relative;
  display: grid;
  min-height: 0;
  place-items: center;
  overflow: visible;
  border: 0;
  border-radius: 0;
  justify-items: end;
}

.hero-image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(92%, 540px);
  aspect-ratio: 1;
  border: 2px solid rgba(252, 209, 6, 0.28);
  border-radius: 50%;
  border-left-color: rgba(206, 17, 38, 0.48);
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.hero-image picture {
  position: relative;
  z-index: 2;
  display: block;
  justify-self: end;
  width: min(95%, 650px);
}

.hero-character {
  --hero-x: 0%;
  --hero-y: -2%;
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.98;
  transform: translate(var(--hero-x), var(--hero-y));
}

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

.event-facts div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: var(--graphite);
}

.event-facts span {
  display: block;
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-facts strong {
  display: block;
  margin-top: 5px;
  font-size: 1rem;
  line-height: 1.2;
}

.countdown {
  width: min(100% - 40px, var(--max));
  margin: 64px auto 28px;
  padding: 0 0 8px;
  text-align: center;
}

.countdown-title {
  margin-top: 14px;
  color: var(--muted);
  font-family: var(--body);
  font-size: clamp(0.8rem, 1.35vw, 1rem);
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 1px 0 #000;
  text-transform: uppercase;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 2.1vw, 21px);
  width: min(100%, 860px);
  margin: 0 auto;
}

.countdown-item {
  display: grid;
  justify-items: center;
  gap: 9px;
  min-width: 0;
}

.countdown-item strong {
  position: relative;
  display: grid;
  width: 100%;
  min-height: clamp(78px, 10.5vw, 118px);
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #474747 0%, #2c2c2c 48%, #090909 50%, #202020 100%);
  color: #eeeeee;
  font-family: var(--display);
  font-size: clamp(2.45rem, 6.3vw, 5.6rem);
  font-weight: 900;
  line-height: 1;
  text-shadow:
    0 2px 0 #000,
    0 0 1px #000,
    0 16px 24px rgba(0, 0, 0, 0.55);
  box-shadow:
    0 18px 22px rgba(0, 0, 0, 0.42),
    0 2px 0 rgba(255, 255, 255, 0.2) inset,
    0 -16px 28px rgba(0, 0, 0, 0.28) inset;
}

.countdown-item strong::before,
.countdown-item strong::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}

.countdown-item strong::before {
  top: 50%;
  z-index: 1;
  height: 2px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.85), rgba(255, 255, 255, 0.08));
  box-shadow:
    0 -1px 0 rgba(255, 255, 255, 0.18),
    0 1px 0 rgba(0, 0, 0, 0.95);
}

.countdown-item strong::after {
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0 16%, rgba(255, 255, 255, 0.16) 18%, transparent 30%),
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.2), transparent 32%);
  opacity: 0.55;
}

.countdown-item.is-ticking strong {
  animation: countdown-flip 480ms ease;
}

.countdown-item span {
  color: var(--yellow);
  font-family: var(--body);
  font-size: clamp(0.68rem, 1.2vw, 0.82rem);
  font-weight: 900;
  text-transform: uppercase;
}

@keyframes countdown-flip {
  0% {
    transform: rotateX(0deg);
    filter: brightness(1);
  }

  46% {
    transform: rotateX(-14deg);
    filter: brightness(0.7);
  }

  100% {
    transform: rotateX(0deg);
    filter: brightness(1);
  }
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.stats-band div {
  padding: 28px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.stats-band strong {
  display: block;
  color: var(--yellow);
  font-family: var(--display);
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 0.9;
  white-space: nowrap;
}

.stats-band strong .stat-plus {
  color: inherit;
  font-family: var(--body);
  font-size: 0.72em;
  font-weight: 900;
  line-height: 1;
  margin-left: 0.04em;
  position: relative;
  top: -0.04em;
}

.stats-band span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.manifesto,
.audiences,
.venue {
  align-items: start;
  padding: var(--section-pad) 0;
}

:where(.manifesto, .experience, .audiences, .schedule, .side-program, .partners, .venue, .register) {
  scroll-margin-top: calc(var(--header-offset) + 112px);
}

.experience,
.audiences,
.side-program,
.partners,
.venue,
.register {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.manifesto h2,
.audiences h2,
.venue h2 {
  margin-top: 18px;
}

.manifesto-list {
  display: grid;
  gap: 16px;
}

.manifesto-list article,
.audience-grid article,
.side-grid article {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(16, 16, 16, 0.88);
}

.manifesto-list article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  padding: 24px;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.manifesto-list article:hover {
  border-color: rgba(252, 209, 6, 0.36);
  background:
    linear-gradient(90deg, rgba(206, 17, 38, 0.16), transparent 42%),
    rgba(16, 16, 16, 0.92);
  transform: translateY(-2px);
}

.manifesto-list span,
.zone-number,
.side-grid span {
  color: var(--red);
  font-family: var(--body);
  font-weight: 900;
}

.manifesto-list strong {
  display: block;
  color: var(--yellow);
  font-family: var(--body);
  font-size: 1.05rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.manifesto-list p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 1rem;
}

.experience,
.schedule,
.side-program,
.partners,
.register {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 880px;
}

.section-heading.compact h2 {
  font-size: clamp(2.2rem, 4.8vw, 4.5rem);
}

.section-heading h2 {
  margin-top: 18px;
}

.section-heading p:last-child {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

.side-program .section-heading {
  max-width: 100%;
}

.side-program h2 {
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.zone-list {
  display: grid;
  gap: 18px;
}

.zone {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: stretch;
  padding: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.zone.reverse .zone-media {
  order: 2;
}

.zone-media {
  min-height: 320px;
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 52%, rgba(252, 209, 6, 0.11), transparent 42%),
    radial-gradient(circle at 62% 34%, rgba(206, 17, 38, 0.12), transparent 34%);
}

.zone-media picture,
.venue-map picture {
  display: block;
  width: 100%;
  height: 100%;
}

.zone-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.58));
  transition: transform 220ms ease;
}

.zone:hover .zone-media img {
  transform: scale(1.035);
}

.zone-copy {
  align-self: center;
  padding: 16px 0;
}

.zone-copy h3 {
  margin-top: 8px;
}

.zone-tags {
  margin-top: 12px;
  color: var(--yellow);
  font-family: var(--body);
  font-weight: 900;
  text-transform: uppercase;
}

.zone-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.zone-copy li {
  padding: 8px 12px;
  border: 1px solid rgba(252, 209, 6, 0.35);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
}

.zone-copy p:last-child {
  color: var(--muted);
  font-size: 1rem;
}

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

.audience-grid article {
  padding: 20px;
}

.audience-grid strong,
.side-grid strong {
  display: block;
  color: var(--yellow);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.audience-grid p,
.side-grid p,
.venue p,
.partner-copy,
.register p,
.schedule-note {
  color: var(--muted);
}

.schedule {
  border-block: 1px solid rgba(255, 255, 255, 0.14);
}

.schedule-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.tab-button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-family: var(--body);
  font-weight: 900;
  text-transform: uppercase;
}

.tab-button.active {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--black);
}

.schedule-panel {
  display: none;
}

.schedule-panel.active {
  display: block;
}

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

.schedule-track {
  min-height: 240px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(252, 209, 6, 0.08), transparent 32%),
    var(--graphite);
}

.schedule-track.wide {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(206, 17, 38, 0.16), transparent 38%),
    var(--graphite);
}

.track-heading {
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(90deg, var(--red), rgba(206, 17, 38, 0.68));
}

.track-heading span {
  display: block;
  color: var(--yellow);
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.track-heading strong {
  display: block;
  margin-top: 6px;
  color: var(--white);
  font-family: var(--body);
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.schedule-items {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.schedule-items p {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.35;
}

.schedule-items time {
  color: var(--yellow);
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.schedule-note {
  margin-top: 18px;
  padding: 14px 18px;
  border-left: 5px solid var(--yellow);
  background: rgba(252, 209, 6, 0.1);
}

.side-grid,
.partner-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.side-grid article {
  min-height: 188px;
  padding: 22px;
}

.side-grid strong {
  margin-top: 16px;
}

.side-grid p {
  margin-top: 12px;
}

.partner-strip {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 32px;
}

.partner-logo {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.partner-copy {
  max-width: 860px;
  margin-top: 24px;
}

.venue-button {
  margin-top: 28px;
}

.venue-map {
  position: relative;
  display: grid;
  min-height: 420px;
  margin: 0;
  align-self: center;
  overflow: hidden;
  background: transparent;
  isolation: isolate;
  place-items: center;
}

.venue-map picture {
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}

.venue-map img {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.venue-map img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.01);
}

.register {
  position: relative;
  padding-bottom: calc(var(--section-pad) + 12px);
}

.register::before {
  left: -40px;
  top: 70px;
  width: 180px;
  aspect-ratio: 1;
  border-color: rgba(206, 17, 38, 0.55);
  border-right-color: var(--yellow);
}

.register-inner {
  position: relative;
  padding: 52px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(115deg, rgba(206, 17, 38, 0.22), transparent 42%),
    var(--charcoal);
}

.register-inner h2 {
  margin-top: 18px;
}

.register-inner p {
  max-width: 680px;
  margin: 18px 0 28px;
  font-size: 1.08rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 32px 0 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--muted);
  font-size: 0.9rem;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(252, 209, 6, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(206, 17, 38, 0.94), rgba(206, 17, 38, 0.78)),
    var(--red);
  color: var(--white);
  font-family: var(--body);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.back-to-top:hover {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--black);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    overflow-x: auto;
  }

  .section-grid,
  .hero.section-grid,
  .zone,
  .zone.reverse,
  .event-facts,
  .countdown-grid,
  .stats-band,
  .audience-grid,
  .schedule-track-grid,
  .side-grid,
  .partner-strip {
    
    grid-template-columns: minmax(0, 1fr);
  }

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

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

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

  .schedule-track.wide {
    grid-column: auto;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero::before {
    top: 64%;
    width: 100vw;
    height: 112vw;
    background:
      radial-gradient(ellipse at 48% 58%, rgba(252, 209, 6, 0.15), transparent 42%),
      radial-gradient(ellipse at 54% 32%, rgba(206, 17, 38, 0.13), transparent 44%);
    transform: translate(-50%, -50%);
  }

  .hero-copy {
    display: block;
  }

  .hero-image,
  .zone-media,
  .venue-map {
    min-height: 300px;
  }

  .venue-map img {
    min-height: 300px;
  }

  .hero-image picture {
    justify-self: center;
    width: min(96%, 520px);
  }

  .hero-character {
    --hero-x: 0%;
    --hero-y: 0%;
  }

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

  .zone.reverse .zone-media {
    order: 0;
  }

}

@media (max-width: 620px) {
  :root {
    --section-pad: 64px;
  }

  .site-header {
    align-items: center;
    width: min(100% - 20px, var(--max));
    gap: 12px;
  }

  .nav-cta {
    width: auto;
    min-height: 42px;
    margin-left: auto;
    padding: 0 14px;
    font-size: 0.72rem;
  }

  .brand-mark {
    width: 118px;
    min-width: 118px;
  }

  .section-grid,
  .countdown,
  .experience,
  .schedule,
  .side-program,
  .partners,
  .register,
  .stats-band,
  .site-footer {
    width: min(100% - 24px, var(--max));
  }

  .section-status {
    top: auto;
    bottom: 14px;
    left: 14px;
    max-width: calc(100vw - 78px);
  }

  h1 {
    
    font-size: clamp(3rem, 15vw, 5rem);
  }

  h2 {
    
    font-size: clamp(2rem, 10vw, 3.25rem);
  }

  .manifesto,
  .audiences,
  .venue,
  .experience,
  .schedule,
  .side-program,
  .partners,
  .register {
    padding: var(--section-pad) 0;
  }

  .experience .section-heading {
    margin-bottom: 24px;
  }

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

  .experience .section-heading p:last-child {
    margin-top: 12px;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .zone-list {
    gap: 12px;
  }

  .zone,
  .zone.reverse {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 14px 0;
  }

  .zone.reverse .zone-media {
    order: 0;
  }

  .zone-media {
    width: 86px;
    min-height: 86px;
    aspect-ratio: 1;
  }

  .zone-media img {
    height: 86px;
    min-height: 0;
    object-fit: contain;
    filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.5));
  }

  .zone-copy {
    padding: 0;
  }

  .zone-number {
    font-size: 0.82rem;
  }

  .zone-copy h3 {
    margin-top: 2px;
    
    font-size: clamp(1.2rem, 6vw, 2rem);
    line-height: 0.95;
  }

  .zone-tags {
    margin-top: 6px;
    font-size: 0.72rem;
  }

  .zone-copy ul {
    gap: 6px;
    margin: 10px 0;
  }

  .zone-copy li {
    padding: 5px 8px;
    font-size: 0.68rem;
  }

  .zone-copy p:last-child {
    font-size: 0.88rem;
    line-height: 1.4;
  }

  .side-program {
    padding-top: 54px;
  }

  .side-program .section-heading {
    margin-bottom: 22px;
  }

  .side-program h2 {
    max-width: 12ch;
    
    font-size: clamp(1.6rem, 8.5vw, 3.35rem);
    line-height: 0.9;
  }

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

  .side-grid article {
    min-height: 0;
    padding: 16px 14px;
  }

  .side-grid span {
    font-size: 1.05rem;
  }

  .side-grid strong {
    margin-top: 10px;
    font-size: clamp(0.82rem, 4vw, 0.98rem);
  }

  .side-grid p {
    margin-top: 8px;
    font-size: clamp(0.82rem, 3.5vw, 0.95rem);
    line-height: 1.35;
  }

  .partner-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 22px;
  }

  .partner-logo {
    min-height: 64px;
    padding: 10px 6px;
    font-size: clamp(0.62rem, 2.8vw, 0.78rem);
    line-height: 1.05;
  }

  .audience-grid {
    gap: 10px;
  }

  .audience-grid article {
    padding: 14px;
  }

  .audience-grid strong {
    font-size: clamp(0.78rem, 3.6vw, 0.95rem);
  }

  .audience-grid p {
    margin-top: 8px;
    font-size: clamp(0.78rem, 3.4vw, 0.9rem);
    line-height: 1.35;
  }

  .manifesto-list article {
    grid-template-columns: 1fr;
  }

  .countdown {
    margin: 60px auto 24px;
    padding-bottom: 8px;
  }

  .countdown-grid {
    gap: 12px;
  }

  .countdown-item strong {
    min-height: 72px;
    border-radius: 10px;
    font-size: clamp(2.1rem, 12vw, 3.2rem);
  }

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

  .stats-band div {
    padding: 20px 12px;
  }

  .stats-band div:nth-child(1),
  .stats-band div:nth-child(2) {
    grid-column: span 3;
  }

  .stats-band div:nth-child(n + 3) {
    grid-column: span 2;
  }

  .stats-band strong {
    font-size: clamp(2.05rem, 13vw, 3.25rem);
  }

  .stats-band span {
    font-size: clamp(0.62rem, 3vw, 0.76rem);
  }

  .schedule-items p {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .register-inner {
    padding: 28px;
  }

  .register {
    padding-bottom: 72px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
  }
}

html.js
  :where(
    .countdown-grid,
    .countdown-title,
    .manifesto > div,
    .manifesto-list article,
    .stats-band,
    .section-heading,
    .zone,
    .audiences > div,
    .audience-grid article,
    .schedule-tabs,
    .schedule-track,
    .schedule-note,
    .side-grid article,
    .partner-logo,
    .venue > div,
    .venue-map,
    .register-inner
  ) {
  opacity: 0;
}

html.js .is-revealing {
  animation: reveal-up 620ms var(--ease-out) var(--reveal-delay, 0ms) both;
}

html.js .is-visible {
  opacity: 1;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.hero-copy > *,
.event-facts {
  animation: rise-in 620ms var(--ease-out) both;
}

.hero-copy .eyebrow {
  animation-delay: 60ms;
}

.hero-copy .hero-line {
  animation-delay: 180ms;
}

.hero-copy .hero-text {
  animation-delay: 250ms;
}

.hero-copy .hero-actions {
  animation-delay: 320ms;
}

.event-facts {
  animation-delay: 400ms;
}

.hero-image {
  animation: rise-only 700ms var(--ease-out) both;
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes rise-only {
  from {
    transform: translateY(18px);
  }

  to {
    transform: none;
  }
}

@keyframes headline-light-sweep {
  0%,
  18% {
    background-position: 140% 0;
  }

  62%,
  100% {
    background-position: -45% 0;
  }
}

@keyframes button-light-sweep {
  0% {
    transform: translateX(-85%) skewX(-18deg);
  }

  100% {
    transform: translateX(85%) skewX(-18deg);
  }
}

.hero-character {
  animation: hero-float 7s ease-in-out 1s infinite;
}

@keyframes hero-float {
  0%,
  100% {
    transform: translate(var(--hero-x), var(--hero-y));
  }

  50% {
    transform: translate(var(--hero-x), calc(var(--hero-y) - 10px));
  }
}

/* Parked by IntersectionObserver once the hero leaves the viewport. The sweep
   repaints the headline through background-clip:text on every frame, so this
   is the difference between paying that cost for 8s and paying it forever. */
.hero.is-paused .hero-character,
.hero.is-paused .hero-copy h1::after {
  animation-play-state: paused;
}

.nav-links a {
  position: relative;
  transition: color 160ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease-out);
}

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

.nav-links a.is-active {
  color: var(--white);
}

.nav-cta,
.button {
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms var(--ease-out);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-cta:is(:hover, :focus-visible)::after,
.button:is(:hover, :focus-visible)::after {
  opacity: 1;
  animation: button-light-sweep 1.8s ease-in-out;
  will-change: transform;
}

.nav-cta:focus-visible,
.button:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

.nav-cta:active,
.button:active {
  transform: translateY(0) scale(0.98);
}

.tab-button {
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms var(--ease-out);
}

.tab-button:hover {
  border-color: rgba(252, 209, 6, 0.5);
  transform: translateY(-2px);
}

.tab-button:active {
  transform: translateY(0);
}

.schedule-panel.active {
  animation: reveal-up 260ms var(--ease-out) both;
}

.site-header {
  transition: border-color 240ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(252, 209, 6, 0.28);
}

html.js .back-to-top {
  opacity: 0;
  transform: translateY(14px) scale(0.9);
  pointer-events: none;
  transition:
    opacity 260ms ease,
    transform 260ms var(--ease-out),
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

html.js .back-to-top.is-shown {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

@media (max-width: 620px) {
  
  .hero-character {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.js
    :where(
      .countdown-grid,
      .countdown-title,
      .manifesto > div,
      .manifesto-list article,
      .stats-band,
      .section-heading,
      .zone,
      .audiences > div,
      .audience-grid article,
      .schedule-tabs,
      .schedule-track,
      .schedule-note,
      .side-grid article,
      .partner-logo,
      .venue > div,
      .venue-map,
      .register-inner
    ) {
    opacity: 1;
  }

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

  .hero-copy h1::after {
    opacity: 0;
  }
}
