:root {
  color-scheme: dark;
  --void: #000000;
  --obsidian: #0d0c11;
  --charcoal: #121212;
  --onyx: #12151d;
  --graphite: #3e3c41;
  --ash: #848895;
  --fog: #ababba;
  --white: #ffffff;
  --hairline: rgba(234, 236, 240, 0.12);
  --hairline-strong: rgba(234, 236, 240, 0.22);
  --purple: #9945ff;
  --green: #14f195;
  --magenta: #e04aff;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --button-shadow: rgba(0, 0, 0, 0.17) 0 2px 4px 1px,
    rgba(255, 255, 255, 0.29) 0 -4px 12px 0 inset,
    rgba(255, 255, 255, 0.4) 0 1px 0 0 inset,
    rgba(255, 255, 255, 0.2) 0 -1px 0 0 inset;
  --page: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
  background: var(--void);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--void);
  color: var(--white);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.012em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: rgba(153, 69, 255, 0.5);
  color: var(--white);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

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

svg {
  display: block;
}

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

address {
  font-style: normal;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--white);
  color: var(--void);
  transition: transform 160ms var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.page-shell {
  width: min(calc(100% - 48px), var(--page));
  margin-inline: auto;
}

.section {
  padding-block: 136px;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(18px) saturate(130%);
  transition: background-color 200ms var(--ease-out), border-color 200ms var(--ease-out);
}

.site-header.scrolled,
.site-header.menu-active {
  border-color: var(--hairline);
  background: rgba(5, 5, 7, 0.92);
}

.site-header.menu-active::after {
  position: fixed;
  z-index: -1;
  inset: 64px 0 0;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(4px);
  content: "";
}

.nav-shell {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(calc(100% - 48px), var(--page));
  height: 72px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  min-width: 178px;
  min-height: 44px;
  align-items: center;
}

.brand img {
  width: 178px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.desktop-nav a,
.footer-links a,
.social-link {
  color: var(--fog);
  font-size: 14px;
  font-weight: 400;
  transition: color 180ms var(--ease-out);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-link {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
}

.social-link svg {
  width: 15px;
  fill: currentColor;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 11px 20px;
  border: 0;
  border-radius: 9999px;
  background: var(--charcoal);
  box-shadow: var(--button-shadow);
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 160ms var(--ease-out), background-color 180ms var(--ease-out);
}

.button svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.button:active,
.social-link:active,
.menu-toggle:active {
  transform: scale(0.97);
}

.button-small {
  min-height: 42px;
  padding: 9px 17px;
  font-size: 14px;
}

.button-ghost {
  border: 1px solid var(--hairline-strong);
  background: rgba(13, 12, 17, 0.68);
  box-shadow: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--charcoal);
  cursor: pointer;
  transition: transform 160ms var(--ease-out);
}

.menu-toggle span {
  position: absolute;
  width: 17px;
  height: 1px;
  background: var(--white);
  transition: transform 180ms var(--ease-out);
}

.menu-toggle span:first-child {
  transform: translateY(-3px);
}

.menu-toggle span:last-child {
  transform: translateY(3px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), var(--page));
  margin-inline: auto;
  padding: 20px 0 28px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu > a:not(.button) {
  display: flex;
  min-height: 52px;
  align-items: center;
  border-bottom: 1px solid var(--hairline);
  color: var(--fog);
  font-size: 20px;
}

.mobile-menu .button {
  width: 100%;
  margin-top: 22px;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 132px 0 0;
  background: linear-gradient(180deg, #0b0313 0%, #000 46%, #000 100%);
}

.hero::after {
  position: absolute;
  z-index: 0;
  top: 68px;
  left: 50%;
  width: min(92vw, 1360px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent);
  content: "";
}

.hero-aurora,
.final-cta-aurora {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.aurora {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(54px);
  opacity: 0.7;
  mix-blend-mode: screen;
  animation: aurora-drift 15s var(--ease-in-out) infinite alternate;
}

.aurora-one {
  top: 8%;
  right: -8%;
  width: 48vw;
  height: 22vw;
  min-height: 180px;
  transform: rotate(-14deg);
  background: rgba(153, 69, 255, 0.48);
}

.aurora-two {
  top: 24%;
  right: 4%;
  width: 40vw;
  height: 7vw;
  min-height: 86px;
  transform: rotate(8deg);
  background: rgba(20, 241, 149, 0.34);
  animation-delay: -5s;
}

.aurora-three {
  top: 18%;
  right: 10%;
  width: 36vw;
  height: 9vw;
  min-height: 100px;
  transform: rotate(-2deg);
  background: rgba(224, 74, 255, 0.4);
  animation-delay: -9s;
}

@keyframes aurora-drift {
  from { transform: translate3d(-2%, -1%, 0) rotate(-8deg) scale(0.98); }
  to { transform: translate3d(4%, 3%, 0) rotate(4deg) scale(1.08); }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 56px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-block: 72px 94px;
}

.eyebrow,
.event-label,
.agenda-type,
.photo-tag {
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.105em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--fog);
}

.eyebrow::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(20, 241, 149, 0.85);
  content: "";
}

.hero h1 {
  max-width: 760px;
  margin-top: 26px;
  font-size: clamp(3.5rem, 6.4vw, 6.1rem);
  font-weight: 300;
  letter-spacing: -0.062em;
  line-height: 0.96;
}

.hero-lede {
  max-width: 590px;
  margin-top: 30px;
  color: var(--fog);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: var(--fog);
  font-size: 14px;
  transition: color 180ms var(--ease-out);
}

.text-link svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  transition: transform 180ms var(--ease-out);
}

.hero-visual {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  background: var(--obsidian);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
  object-position: 54% center;
  filter: saturate(0.92) contrast(1.04);
}

.hero-visual-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.06), transparent 56%, rgba(0,0,0,0.78));
}

.hero-visual figcaption,
.gallery-card figcaption {
  position: absolute;
  inset: auto 24px 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.event-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.event-bar > div {
  display: grid;
  min-height: 112px;
  align-content: center;
  gap: 8px;
  padding: 20px 28px;
  border-left: 1px solid var(--hairline);
}

.event-bar > div:first-child {
  border-left: 0;
  padding-left: 0;
}

.event-label {
  color: var(--ash);
}

.event-bar strong {
  font-size: 15px;
  font-weight: 400;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ash);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-kicker span:first-child {
  color: var(--white);
}

.section-kicker::after {
  width: 52px;
  height: 1px;
  background: var(--hairline-strong);
  content: "";
}

.section-title {
  max-width: 900px;
  font-size: clamp(2.7rem, 5.2vw, 4.7rem);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.7fr);
  gap: 100px;
  margin-top: 54px;
  align-items: end;
}

.manifesto-copy {
  display: grid;
  gap: 20px;
  color: var(--fog);
  font-size: 16px;
  line-height: 1.7;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 84px;
}

.value-card {
  position: relative;
  min-height: 330px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  background: var(--obsidian);
}

.value-number {
  color: var(--ash);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 11px;
}

.value-icon {
  width: 42px;
  margin: 66px 0 34px;
  fill: none;
  stroke: var(--fog);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1;
}

.value-card h3 {
  font-size: 23px;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.value-card p {
  max-width: 330px;
  margin-top: 10px;
  color: var(--fog);
  font-size: 14px;
  line-height: 1.65;
}

.value-card::after {
  position: absolute;
  top: 27px;
  right: 28px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--hairline-strong);
  border-radius: 50%;
  content: "";
}

.photo-break {
  position: relative;
  min-height: min(70vw, 760px);
  overflow: hidden;
  background: var(--obsidian);
}

.photo-break > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
}

.photo-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.06) 45%, rgba(0,0,0,0.85));
}

.photo-break-copy {
  position: absolute;
  inset: auto 0 44px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.photo-tag {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  background: rgba(0,0,0,0.26);
  backdrop-filter: blur(12px);
}

.photo-break-copy p {
  color: rgba(255,255,255,0.76);
  font-size: 13px;
  letter-spacing: 0.01em;
}

.program {
  border-bottom: 1px solid var(--hairline);
}

.program-heading,
.voices-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  gap: 80px;
  margin-top: 54px;
}

.program-heading > p,
.voices-heading > p {
  max-width: 420px;
  padding-bottom: 8px;
  color: var(--fog);
  line-height: 1.7;
}

.agenda {
  margin-top: 86px;
  border-top: 1px solid var(--hairline);
}

.agenda-row {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) 36px;
  gap: 32px;
  align-items: start;
  padding: 36px 4px;
  border-bottom: 1px solid var(--hairline);
}

.agenda-row time {
  color: var(--fog);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 13px;
}

.agenda-type {
  color: var(--ash);
}

.agenda-row h3 {
  margin-top: 9px;
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  font-weight: 300;
  letter-spacing: -0.035em;
}

.agenda-row p {
  max-width: 680px;
  margin-top: 9px;
  color: var(--fog);
  font-size: 14px;
}

.agenda-index {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  color: var(--ash);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 10px;
}

.agenda-note {
  margin-top: 20px;
  color: var(--ash);
  font-size: 12px;
}

.voices-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 48px;
  margin-top: 86px;
}

.panel-photo {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--obsidian);
}

.panel-photo img {
  width: 100%;
  height: 100%;
  min-height: 570px;
  object-fit: cover;
  object-position: center;
}

.panel-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.84));
  content: "";
}

.panel-photo figcaption {
  position: absolute;
  z-index: 1;
  inset: auto 24px 22px;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
}

.voice-list {
  border-top: 1px solid var(--hairline);
}

.voice-row {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  min-height: 114px;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--hairline);
}

.voice-initials {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  color: var(--fog);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 10px;
}

.voice-row h3 {
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.voice-row p,
.voice-topic {
  margin-top: 4px;
  color: var(--ash);
  font-size: 13px;
}

.voice-topic {
  margin: 0;
  padding: 6px 11px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
}

.gallery {
  padding-top: 40px;
}

.gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.gallery-heading .section-title {
  max-width: 740px;
  margin-top: 48px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.34fr 0.66fr;
  gap: 12px;
  margin-top: 70px;
}

.gallery-card {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--obsidian);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.gallery-card-wide img {
  object-position: center;
}

.gallery-card:not(.gallery-card-wide) img {
  object-position: 55% center;
}

.gallery-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7));
  content: "";
}

.gallery-card figcaption {
  z-index: 1;
}

.venue {
  padding-top: 0;
}

.venue-card {
  position: relative;
  display: grid;
  min-height: 610px;
  overflow: hidden;
  grid-template-columns: 0.8fr 1.2fr;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  background: var(--obsidian);
}

.venue-copy {
  position: relative;
  z-index: 2;
  display: flex;
  padding: 64px;
  flex-direction: column;
  align-items: flex-start;
}

.venue-copy .section-title {
  max-width: 560px;
  margin-top: 48px;
}

.venue-copy > p {
  max-width: 520px;
  margin-top: 26px;
  color: var(--fog);
  line-height: 1.7;
}

.venue-copy address {
  margin-top: auto;
  padding-top: 40px;
  color: var(--fog);
  font-size: 14px;
  line-height: 1.65;
}

.venue-copy .button {
  margin-top: 24px;
}

.venue-mark {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 610px;
  place-content: center;
}

.venue-mark > span {
  position: absolute;
  color: rgba(255,255,255,0.42);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.venue-mark > span:first-child { top: 28px; right: 32px; }
.venue-mark > span:nth-child(2) { bottom: 28px; left: 32px; }

.venue-orbit {
  position: relative;
  width: min(34vw, 430px);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
}

.venue-orbit::before,
.venue-orbit::after {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  content: "";
}

.venue-orbit::before { inset: 14%; }
.venue-orbit::after { inset: 36%; }

.venue-orbit i {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  border: 2px solid var(--white);
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 0 26px rgba(255,255,255,0.42);
}

.venue-aurora {
  position: absolute;
  z-index: 0;
  right: -5%;
  bottom: -20%;
  width: 62%;
  height: 80%;
  transform: rotate(-12deg);
  border-radius: 50%;
  background: linear-gradient(110deg, rgba(153,69,255,0.24), rgba(224,74,255,0.16) 42%, rgba(20,241,149,0.24));
  filter: blur(60px);
}

.final-cta {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-top: 1px solid var(--hairline);
  background: linear-gradient(180deg, #000, #100018 62%, #000);
  text-align: center;
}

.final-cta-aurora::before,
.final-cta-aurora::after {
  position: absolute;
  left: 50%;
  border-radius: 50%;
  filter: blur(70px);
  content: "";
}

.final-cta-aurora::before {
  top: 40%;
  width: 70vw;
  height: 160px;
  transform: translate(-50%, -50%) rotate(-7deg);
  background: linear-gradient(90deg, transparent, rgba(153,69,255,0.72), rgba(224,74,255,0.52), transparent);
}

.final-cta-aurora::after {
  top: 55%;
  width: 55vw;
  height: 90px;
  transform: translate(-50%, -50%) rotate(4deg);
  background: linear-gradient(90deg, transparent, rgba(20,241,149,0.52), transparent);
}

.final-cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta h2 {
  margin-top: 30px;
  font-size: clamp(3.2rem, 7vw, 6.7rem);
  font-weight: 300;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.final-cta-content > p:not(.eyebrow) {
  max-width: 610px;
  margin-top: 30px;
  color: var(--fog);
  line-height: 1.7;
}

.final-cta .button {
  margin-top: 34px;
}

.site-footer {
  padding: 76px 0 26px;
  border-top: 1px solid var(--hairline);
  background: var(--void);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  align-items: start;
}

.footer-brand {
  width: max-content;
}

.footer-main > p {
  color: var(--fog);
  font-size: 14px;
  line-height: 1.65;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-meta {
  display: flex;
  margin-top: 70px;
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
  justify-content: space-between;
  gap: 32px;
  color: var(--ash);
  font-size: 10px;
  letter-spacing: 0.02em;
}

.footer-meta a {
  color: var(--fog);
}

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms var(--ease-out), transform 520ms var(--ease-out);
}

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

@media (hover: hover) and (pointer: fine) {
  .desktop-nav a:hover,
  .footer-links a:hover,
  .social-link:hover,
  .text-link:hover {
    color: var(--white);
  }

  .button:hover {
    transform: translateY(-1px);
    background: #181818;
  }

  .text-link:hover svg {
    transform: translateY(2px);
  }

  .gallery-heading .text-link:hover svg,
  .venue-copy .button:hover svg {
    transform: translate(2px, -2px);
  }

  .value-card {
    transition: border-color 200ms var(--ease-out), background-color 200ms var(--ease-out);
  }

  .value-card:hover {
    border-color: var(--hairline-strong);
    background: #100f14;
  }
}

@media (max-width: 1080px) {
  .desktop-nav { gap: 24px; }
  .desktop-cta { display: none; }

  .hero-content {
    grid-template-columns: 0.86fr 1.14fr;
    gap: 30px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 540px;
  }

  .manifesto-grid { gap: 56px; }
  .voices-layout { gap: 28px; }
  .venue-copy { padding: 48px; }
}

@media (max-width: 860px) {
  .page-shell,
  .nav-shell,
  .mobile-menu {
    width: min(calc(100% - 32px), var(--page));
  }

  .section { padding-block: 104px; }
  .desktop-nav, .social-link { display: none; }
  .menu-toggle { display: grid; }

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

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .hero-copy { padding: 52px 0 28px; }
  .hero h1 { max-width: 720px; }
  .hero-visual, .hero-visual img { min-height: 520px; }

  .event-bar {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
  }

  .event-bar > div:nth-child(3) {
    border-left: 0;
  }

  .event-bar > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--hairline);
  }

  .event-bar > div:first-child,
  .event-bar > div:nth-child(3) {
    padding-left: 0;
  }

  .manifesto-grid,
  .program-heading,
  .voices-heading,
  .voices-layout,
  .venue-card {
    grid-template-columns: 1fr;
  }

  .manifesto-grid,
  .program-heading,
  .voices-heading { gap: 34px; }

  .value-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 280px; }
  .value-icon { margin: 44px 0 28px; }

  .photo-break { min-height: 620px; }

  .program-heading > p,
  .voices-heading > p { padding-bottom: 0; }

  .agenda-row { grid-template-columns: 118px minmax(0, 1fr) 34px; }
  .panel-photo, .panel-photo img { min-height: 520px; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card, .gallery-card img { min-height: 540px; }

  .venue-copy { min-height: 540px; }
  .venue-mark { min-height: 500px; }
  .venue-orbit { width: min(62vw, 400px); }
  .venue-aurora { width: 110%; height: 55%; }

  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .nav-shell { height: 64px; }
  .brand { min-width: 148px; }
  .brand img { width: 148px; }
  .section { padding-block: 88px; }

  .hero { padding-top: 84px; }
  .hero-copy { padding-top: 44px; }
  .hero h1 {
    margin-top: 20px;
    font-size: clamp(3.25rem, 16vw, 4.5rem);
    line-height: 0.94;
  }

  .hero-lede { margin-top: 24px; }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
  }

  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { justify-content: center; }
  .hero-visual, .hero-visual img { min-height: 410px; }
  .hero-visual img { object-position: 59% center; }
  .hero-visual figcaption { inset-inline: 16px; bottom: 15px; }

  .event-bar { grid-template-columns: 1fr; }
  .event-bar > div {
    min-height: 92px;
    padding-inline: 0;
    border-left: 0;
    border-bottom: 1px solid var(--hairline);
  }
  .event-bar > div:last-child { border-bottom: 0; }

  .section-title { font-size: clamp(2.5rem, 13vw, 3.65rem); }
  .manifesto-grid { margin-top: 42px; }
  .value-grid { margin-top: 60px; }

  .photo-break { min-height: 540px; }
  .photo-break > img { object-position: 43% center; }
  .photo-break-copy {
    bottom: 24px;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .program-heading,
  .voices-heading { margin-top: 42px; }
  .agenda { margin-top: 58px; }
  .agenda-row {
    grid-template-columns: 1fr 28px;
    gap: 14px;
    padding-block: 30px;
  }
  .agenda-row time { grid-column: 1 / -1; }
  .agenda-row > div { grid-column: 1; }
  .agenda-index { grid-column: 2; grid-row: 2; }

  .voices-layout { margin-top: 58px; }
  .panel-photo, .panel-photo img { min-height: 440px; }
  .panel-photo img { object-position: 55% center; }
  .voice-row {
    grid-template-columns: 46px 1fr;
    min-height: 108px;
    gap: 14px;
  }
  .voice-topic { display: none; }

  .gallery { padding-top: 10px; }
  .gallery-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .gallery-heading .section-title { margin-top: 40px; }
  .gallery-grid { margin-top: 52px; }
  .gallery-card, .gallery-card img { min-height: 460px; }
  .gallery-card-wide img { object-position: 48% center; }
  .gallery-card figcaption { inset-inline: 16px; bottom: 15px; }

  .venue { padding-bottom: 88px; }
  .venue-card { min-height: auto; }
  .venue-copy {
    min-height: 570px;
    padding: 34px 24px;
  }
  .venue-copy .section-title { margin-top: 40px; }
  .venue-mark { min-height: 360px; }
  .venue-orbit { width: min(72vw, 310px); }

  .final-cta { min-height: 680px; }
  .final-cta h2 { font-size: clamp(3.4rem, 16vw, 4.9rem); }

  .footer-main { grid-template-columns: 1fr; }
  .footer-links {
    grid-column: auto;
    flex-wrap: wrap;
  }
  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 50px;
  }
}

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

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

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