:root {
  --bg: #050505;
  --bg-soft: #0e0e0e;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --text: #f6f1e5;
  --muted: #b8b1a5;
  --accent: #ff920f;
  --accent-soft: rgba(255, 146, 15, 0.12);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --shell: min(1180px, calc(100vw - 3rem));
  --nav-height: 74px;
  --radius-card: 1.15rem;
  --radius-card-mobile: 1.35rem;
  --banner-offset: 0px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 146, 15, 0.16), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.06), transparent 24%),
    linear-gradient(180deg, #070707 0%, #050505 50%, #080808 100%);
  line-height: 1.55;
}

body.has-event-banner {
  --banner-offset: 56px;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  width: var(--shell);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: var(--banner-offset) 0 auto;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(5, 5, 5, 0.52);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__inner {
  width: var(--shell);
  min-height: var(--nav-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.brand-lockup img {
  width: 2.65rem;
  height: 2.65rem;
  object-fit: contain;
}

.brand-lockup__meta {
  display: grid;
  gap: 0.1rem;
}

.brand-lockup__name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.brand-lockup__tag {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  width: auto;
  min-width: 2.75rem;
  height: 2.75rem;
  padding: 0 0.75rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 999px;
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.4rem;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

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

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.page-main {
  padding-top: calc(var(--nav-height) + var(--banner-offset));
}

.site-event-banner {
  position: fixed;
  inset: 0 0 auto;
  z-index: 24;
  border-bottom: 1px solid rgba(255, 146, 15, 0.22);
  background:
    linear-gradient(90deg, rgba(255, 146, 15, 0.22), rgba(255, 146, 15, 0.08) 42%, rgba(255, 255, 255, 0.03)),
    rgba(7, 7, 7, 0.96);
  backdrop-filter: blur(16px);
}

.site-event-banner__inner {
  width: var(--shell);
  min-height: 3.4rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
}

.site-event-banner__copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.9rem;
  min-width: 0;
}

.site-event-banner__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.site-event-banner__text {
  font-size: 0.92rem;
  color: var(--text);
}

.site-event-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  justify-content: flex-end;
}

.site-event-banner__link {
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}

.site-event-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.45rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: #050505;
  text-decoration: none;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-height));
  display: flex;
  align-items: flex-end;
  overflow: clip;
  border-bottom: 1px solid var(--line);
}

.hero--short {
  min-height: 72svh;
}

.hero__media,
.hero__media::after {
  position: absolute;
  inset: 0;
}

.hero__media {
  overflow: hidden;
}

.hero__media--ember {
  background:
    radial-gradient(circle at 22% 28%, rgba(255, 146, 15, 0.28), transparent 22%),
    radial-gradient(circle at 76% 34%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(135deg, #0a0a0a 0%, #131313 55%, #090909 100%);
}

.hero__media--grid {
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 18% 26%, rgba(255, 146, 15, 0.2), transparent 26%),
    linear-gradient(180deg, #090909 0%, #111111 100%);
  background-size: 72px 72px, 72px 72px, auto, auto;
}

.hero__media--columns {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 18%, transparent 18% 24%, rgba(255, 255, 255, 0.03) 24% 42%, transparent 42% 48%, rgba(255, 146, 15, 0.12) 48% 58%, transparent 58% 100%),
    linear-gradient(135deg, #0b0b0b 0%, #151515 50%, #090909 100%);
}

.hero__media--paper {
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 146, 15, 0.22), transparent 22%),
    radial-gradient(circle at 18% 72%, rgba(255, 255, 255, 0.08), transparent 18%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 44px),
    linear-gradient(180deg, #0b0b0b 0%, #101010 100%);
}

.hero__media--signal {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 146, 15, 0.18), transparent 18%),
    repeating-radial-gradient(circle at center, rgba(255, 255, 255, 0.04) 0 2px, transparent 2px 60px),
    linear-gradient(180deg, #080808 0%, #121212 100%);
}

.hero__media--forum {
  background:
    linear-gradient(120deg, rgba(255, 146, 15, 0.12) 0 18%, transparent 18% 100%),
    radial-gradient(circle at 78% 26%, rgba(255, 255, 255, 0.08), transparent 20%),
    linear-gradient(180deg, #090909 0%, #141414 100%);
}

.hero__media--debates-mark {
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 146, 15, 0.18), transparent 20%),
    radial-gradient(circle at 84% 86%, rgba(255, 146, 15, 0.12), transparent 22%),
    url("./assets/wdc-debates-logo.png") center 54% / 56% auto no-repeat,
    linear-gradient(180deg, #070707 0%, #121212 62%, #090909 100%);
}

.hero__media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.88) 0%, rgba(5, 5, 5, 0.58) 45%, rgba(5, 5, 5, 0.9) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.18) 0%, rgba(5, 5, 5, 0.45) 60%, rgba(5, 5, 5, 0.94) 100%);
  z-index: 1;
}

.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero__wash {
  position: absolute;
  inset: auto -12vw -14vw auto;
  width: min(48vw, 44rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 146, 15, 0.24) 0%, rgba(255, 146, 15, 0) 72%);
  filter: blur(24px);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: var(--shell);
  margin: 0 auto;
  padding: 6rem 0 4.5rem;
  display: grid;
  gap: 1.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.82rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow::before {
  content: "";
  width: 3rem;
  height: 1px;
  background: var(--accent);
}

.display-title {
  margin: 0;
  max-width: 8ch;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 13vw, 9.6rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 0.88;
  text-transform: uppercase;
}

.display-title--wide {
  max-width: 10.5ch;
}

.lede {
  max-width: 42rem;
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: #dbd4c8;
}

.hero__meta {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: end;
}

.cta-row,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  text-decoration: none;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

.button--solid {
  background: var(--accent);
  border-color: var(--accent);
  color: #050505;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.03);
}

.button--ghost:hover {
  border-color: var(--text);
}

.hero__panel,
.stat-band,
.split-panel,
.image-frame,
.contact-panel,
.form-panel {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
  border-radius: var(--radius-card);
}

.hero__panel {
  padding: 1.5rem;
  max-width: 22rem;
  justify-self: end;
}

.hero__panel-label,
.small-label {
  margin: 0 0 0.7rem;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__panel strong {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}

.hero__panel p,
.section-copy,
.muted-copy {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 5.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section--tight {
  padding: 4.25rem 0;
}

.section-header {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 2.4rem;
}

.section-title {
  margin: 0;
  max-width: 11ch;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-title--wide {
  max-width: 15ch;
}

.section-grid {
  display: grid;
  gap: 2rem;
}

.section-grid--split {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
}

.section-grid--gallery {
  grid-template-columns: 0.75fr 1.25fr;
  align-items: stretch;
}

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

.stat-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  padding: 1.6rem;
}

.stat-band__item {
  display: grid;
  gap: 0.45rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-band__item:first-child {
  border-left: 0;
  padding-left: 0;
}

.stat-band__value {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.7rem, 5vw, 4rem);
  letter-spacing: 0.04em;
  line-height: 0.9;
}

.stat-band__label {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.editorial-list,
.route-list,
.program-list,
.guide-list,
.detail-list,
.faq-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.editorial-list li,
.route-list li,
.program-list li,
.guide-list li,
.detail-list li,
.faq-list li {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.editorial-list li:last-child,
.route-list li:last-child,
.program-list li:last-child,
.guide-list li:last-child,
.detail-list li:last-child,
.faq-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.editorial-list a,
.route-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem 0;
  text-decoration: none;
}

.editorial-list strong,
.route-list strong,
.program-list strong,
.guide-list strong,
.faq-list strong {
  font-size: 1.15rem;
}

.editorial-list span,
.route-list span,
.program-list p,
.guide-list p,
.faq-list p {
  color: var(--muted);
}

.route-list a:hover strong,
.editorial-list a:hover strong {
  color: var(--accent);
}

.split-panel {
  padding: 1.5rem;
}

.split-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-panel--logo {
  min-height: 32rem;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.split-panel--logo img {
  width: min(24rem, 90%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.35));
}

.founder-panel {
  padding: 1.8rem 1.8rem 2rem;
  border-top: 1px solid var(--accent);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border-radius: var(--radius-card);
  overflow: hidden;
}

.founder-panel--subtle {
  border-top-color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
}

.founder-panel--subtle .founder-panel__id {
  color: rgba(255, 255, 255, 0.7);
  font-size: 3.2rem;
}

.founder-panel__id {
  margin-bottom: 1rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem;
  line-height: 0.9;
  color: var(--accent);
}

.founder-panel h3 {
  margin: 0 0 0.3rem;
  font-size: 1.6rem;
}

.founder-panel p {
  margin: 0.9rem 0 0;
  color: var(--muted);
}

.program-list li,
.guide-list li,
.detail-list li,
.faq-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  padding: 1.2rem 0;
}

.list-number {
  width: 3rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--accent);
}

.program-list h3,
.guide-list h3,
.detail-list h3,
.faq-list h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.program-list p,
.guide-list p,
.detail-list p,
.faq-list p {
  margin: 0;
}

.image-frame {
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.image-frame:hover img {
  transform: scale(1.04);
}

.gallery-stack {
  display: grid;
  gap: 1rem;
}

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

.story-poster {
  min-height: 100%;
  padding: 1rem;
  border-radius: var(--radius-card);
}

.story-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-block {
  padding: 2rem 0 0;
  max-width: 42rem;
}

.quote-block p {
  margin: 0;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  color: #efe8dc;
}

.quote-block cite {
  display: block;
  margin-top: 0.8rem;
  font-style: normal;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
}

.article-layout {
  max-width: 52rem;
  display: grid;
  gap: 1.4rem;
}

.article-layout p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.article-layout h2 {
  margin: 1.2rem 0 0.4rem;
  font-size: 1.45rem;
}

.article-layout h3 {
  margin: 0 0 0.35rem;
  font-size: 1.08rem;
}

.event-spotlight {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.6rem;
  align-items: stretch;
}

.event-poster {
  overflow: hidden;
}

.event-poster--compact {
  max-width: 32rem;
  justify-self: end;
}

.event-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-panel {
  display: grid;
  gap: 1.25rem;
  padding: 1.7rem;
}

.event-panel__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.event-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.event-panel h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-family: "Bebas Neue", sans-serif;
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.event-panel p {
  margin: 0;
  color: var(--muted);
}

.event-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.event-facts__item {
  padding: 1rem 1rem 1.05rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.event-facts__label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.event-facts__value {
  display: block;
  color: var(--text);
  font-weight: 700;
}

.topic-frame {
  padding: 2rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 146, 15, 0.2);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 146, 15, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
}

.topic-frame__label {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 146, 15, 0.3);
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.topic-frame blockquote {
  margin: 1rem 0 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  line-height: 0.97;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text);
}

.topic-frame p {
  margin: 1rem 0 0;
  color: var(--muted);
}

.event-register {
  display: grid;
  gap: 1.15rem;
  padding: 1.8rem;
}

.event-register__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.event-register__note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-list {
  display: grid;
  gap: 0.9rem;
}

.contact-list__item {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.contact-list__item strong {
  font-size: 1rem;
}

.contact-list__item a {
  color: var(--muted);
  text-decoration-color: rgba(255, 146, 15, 0.45);
  text-underline-offset: 0.2rem;
}

.article-layout ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.article-layout li + li {
  margin-top: 0.55rem;
}

.contact-panel,
.form-panel {
  padding: 1.6rem;
}

.contact-panel h3,
.form-panel h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
}

.contact-panel p {
  margin: 0.3rem 0 0;
  color: var(--muted);
}

.contact-panel a,
.inline-link {
  color: var(--text);
  text-decoration-color: rgba(255, 146, 15, 0.5);
  text-underline-offset: 0.2rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.form-field label {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 0.95rem 1rem;
  resize: vertical;
  border-radius: 0.85rem;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 0;
  border-color: var(--accent);
}

.site-footer {
  padding: 2rem 0 3rem;
}

.site-footer__inner {
  width: var(--shell);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.86rem;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.page-intro {
  max-width: 48rem;
}

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

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

.hero [data-stagger] {
  opacity: 0;
  transform: translateY(22px);
  animation: rise-in 720ms ease forwards;
}

.hero [data-stagger="2"] {
  animation-delay: 100ms;
}

.hero [data-stagger="3"] {
  animation-delay: 200ms;
}

.hero [data-stagger="4"] {
  animation-delay: 300ms;
}

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

@media (max-width: 960px) {
  body.has-event-banner {
    --banner-offset: 72px;
  }

  .site-header__inner,
  .hero__inner {
    width: min(100vw - 1.6rem, 1180px);
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    min-width: 3.85rem;
    height: 2.95rem;
    padding: 0 0.95rem;
    font-size: 0.94rem;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0.8rem;
    right: 0.8rem;
    display: none;
    padding: 1rem 1.05rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    background: rgba(9, 9, 9, 0.98);
    border: 1px solid var(--line-strong);
    border-radius: 1.2rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
  }

  .site-nav a {
    font-size: 0.92rem;
    letter-spacing: 0.12em;
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .hero__meta,
  .section-grid--split,
  .section-grid--gallery,
  .section-grid--founders,
  .contact-grid,
  .gallery-stack--two,
  .stat-band,
  .event-spotlight,
  .event-facts {
    grid-template-columns: 1fr;
  }

  .hero__panel {
    justify-self: start;
    max-width: 100%;
  }

  .display-title {
    max-width: 100%;
    font-size: clamp(3.3rem, 18vw, 6.4rem);
  }

  .section-title {
    max-width: 100%;
  }

  .split-panel--logo {
    min-height: 20rem;
  }

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

@media (max-width: 640px) {
  :root {
    --shell: min(100vw - 1.2rem, 1180px);
  }

  body.has-event-banner {
    --banner-offset: 92px;
  }

  .site-event-banner__inner {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    min-height: auto;
    gap: 0.45rem 0.8rem;
    padding: 0.55rem 0 0.65rem;
  }

  .site-event-banner__copy {
    display: grid;
    gap: 0.15rem;
    flex: 1 1 100%;
  }

  .site-event-banner__text {
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .site-event-banner__actions {
    width: 100%;
    justify-content: flex-start;
    gap: 0.55rem;
  }

  .site-event-banner__button,
  .site-event-banner__link {
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }

  .site-event-banner__button {
    min-height: 2.15rem;
    padding: 0.62rem 0.95rem;
  }

  .hero__media--debates-mark {
    background-size: 86% auto;
    background-position: center 30%;
  }

  .hero__inner {
    padding: 5.2rem 0 3rem;
  }

  .brand-lockup {
    gap: 0.6rem;
    min-width: 0;
  }

  .brand-lockup img {
    width: 2.15rem;
    height: 2.15rem;
  }

  .brand-lockup__meta {
    min-width: 0;
  }

  .brand-lockup__name {
    max-width: 13rem;
    font-size: 1rem;
    letter-spacing: 0.06em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-lockup__tag {
    display: none;
  }

  .nav-toggle {
    min-width: 4.2rem;
    height: 2.8rem;
    padding: 0 0.85rem;
    font-size: 0.9rem;
  }

  .site-nav {
    border-radius: 1.35rem;
  }

  .section {
    padding: 4rem 0;
  }

  .hero__panel,
  .stat-band,
  .split-panel,
  .image-frame,
  .contact-panel,
  .form-panel,
  .founder-panel,
  .story-poster,
  .topic-frame,
  .event-panel,
  .event-register,
  .event-facts__item,
  .contact-list__item {
    border-radius: var(--radius-card-mobile);
  }

  .hero__panel,
  .stat-band,
  .split-panel,
  .topic-frame,
  .event-panel,
  .event-register,
  .event-facts__item,
  .contact-list__item {
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.9), rgba(8, 8, 8, 0.82));
    backdrop-filter: blur(20px);
  }

  .event-panel__meta {
    display: grid;
    gap: 0.55rem;
    justify-items: start;
  }

  .event-pill {
    max-width: 100%;
    white-space: normal;
    line-height: 1.35;
  }

  .event-panel,
  .event-register,
  .topic-frame {
    padding: 1.35rem;
  }

  .stat-band {
    padding: 1.2rem;
    gap: 0.9rem;
  }

  .stat-band__item {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 0.9rem;
  }

  .stat-band__item:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .program-list li,
  .guide-list li,
  .detail-list li,
  .faq-list li {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .list-number {
    width: auto;
  }
}
