:root {
  --navy-950: #06152e;
  --navy-900: #081c3a;
  --navy-800: #102a50;
  --navy-700: #173a69;
  --gold-500: #eeb844;
  --gold-400: #f5c760;
  --red-500: #cf2838;
  --ink: #0b1b33;
  --muted: #5f6875;
  --paper: #f7f2e8;
  --white: #fffdf8;
  --line: rgba(11, 27, 51, 0.15);
  --shadow: 0 24px 70px rgba(1, 13, 31, 0.2);
  --sans: Inter, Avenir, "Helvetica Neue", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  color: var(--navy-950);
  background: var(--gold-400);
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition: background-color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(6, 21, 46, 0.94);
  box-shadow: 0 8px 35px rgba(2, 11, 25, 0.24);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 11px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  color: var(--gold-500);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.brand-copy small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--gold-500);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

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

.site-nav .nav-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 13px;
  padding: 0 20px;
  color: var(--navy-950);
  background: var(--gold-500);
  transition: background-color 180ms ease, transform 180ms ease;
}

.site-nav .nav-cta.is-active {
  color: var(--navy-950);
  box-shadow: inset 0 -4px 0 var(--red-500);
}

.site-nav .nav-cta:hover {
  background: var(--gold-400);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  place-content: center;
  gap: 7px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
  transform: translateY(4.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
  transform: translateY(-4.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 880px;
  padding: 164px 0 0;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 44%, rgba(43, 76, 128, 0.52), transparent 29%),
    radial-gradient(circle at 13% 0%, rgba(238, 184, 68, 0.1), transparent 27%),
    var(--navy-950);
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 26vw;
  height: 170px;
  background: var(--gold-500);
  clip-path: polygon(66% 0, 100% 0, 100% 100%);
  content: "";
}

.hero-grid,
.impact-map {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(90deg, transparent 4%, #000 50%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 4%, #000 50%, transparent 100%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 590px;
  grid-template-columns: minmax(0, 1.02fr) minmax(460px, 0.98fr);
  align-items: center;
  gap: 72px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--gold-400);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 42px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 730px;
  margin-top: 28px;
  font-family: var(--serif);
  font-size: clamp(4.1rem, 7vw, 7.4rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.hero h1 em {
  color: var(--gold-400);
  font-weight: 400;
}

.hero-lede {
  max-width: 600px;
  margin-top: 35px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

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

.button-gold {
  color: var(--navy-950);
  background: var(--gold-500);
  box-shadow: 0 12px 32px rgba(238, 184, 68, 0.17);
}

.button-gold:hover {
  background: var(--gold-400);
  box-shadow: 0 16px 40px rgba(238, 184, 68, 0.25);
}

.button-dark {
  color: var(--white);
  background: var(--navy-950);
}

.button-dark:hover {
  background: var(--navy-800);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.hero-stage {
  position: relative;
  min-height: 570px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(238, 184, 68, 0.2);
  border-radius: 50%;
}

.orbit-one {
  inset: 0 -180px -110px 10px;
}

.orbit-two {
  inset: 80px -85px -25px 90px;
}

.award-card {
  position: absolute;
  z-index: 4;
  top: 15px;
  left: 0;
  width: 265px;
  padding: 28px 30px 25px;
  color: var(--navy-950);
  background: var(--gold-500);
  box-shadow: var(--shadow);
}

.award-kicker,
.award-card small {
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.award-card strong {
  display: block;
  margin: 3px 0 -4px;
  font-family: var(--serif);
  font-size: 6.6rem;
  font-weight: 400;
  letter-spacing: -0.09em;
  line-height: 1;
}

.award-card strong span {
  color: var(--red-500);
  font-size: 0.44em;
  vertical-align: top;
}

.award-card > p:not(.award-kicker) {
  font-size: 0.91rem;
  font-weight: 750;
  line-height: 1.35;
}

.award-rule {
  display: flex;
  align-items: center;
  width: 100%;
  height: 1px;
  margin: 22px 0 15px;
  background: rgba(6, 21, 46, 0.27);
}

.award-rule span {
  width: 7px;
  height: 7px;
  margin-left: 38%;
  background: var(--red-500);
  border-radius: 50%;
}

.hero-photo {
  position: absolute;
  overflow: hidden;
  background: var(--navy-800);
  box-shadow: var(--shadow);
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(6, 21, 46, 0.45));
  content: "";
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-photo-main {
  z-index: 2;
  top: 104px;
  right: 0;
  width: 390px;
  height: auto;
  aspect-ratio: 1400 / 1345;
}

.hero-photo-main img {
  filter: saturate(0.84) contrast(1.08);
  object-position: center;
}

.hero-photo-small {
  z-index: 3;
  right: 264px;
  bottom: 18px;
  width: 214px;
  height: 145px;
  border: 8px solid var(--navy-950);
}

.hero-stamp {
  position: absolute;
  z-index: 5;
  right: -18px;
  bottom: 22px;
  display: grid;
  width: 116px;
  height: 116px;
  place-items: center;
  color: var(--white);
  background: var(--red-500);
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  transform: rotate(9deg);
}

.hero-stamp span {
  margin-top: 24px;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-stamp svg {
  width: 31px;
  margin-top: -25px;
  fill: none;
  stroke: var(--gold-400);
  stroke-width: 1.3;
}

.hero-footnote {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.hero-footnote p {
  padding: 22px 28px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.hero-footnote p + p {
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.page-hero {
  position: relative;
  min-height: 610px;
  padding: 166px 0 92px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 35%, rgba(43, 76, 128, 0.5), transparent 28%),
    var(--navy-950);
}

.page-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 220px;
  height: 126px;
  background: var(--gold-500);
  clip-path: polygon(62% 0, 100% 0, 100% 100%);
  content: "";
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 65%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 65%, transparent);
}

.page-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: 100px;
}

.page-hero-copy h1,
.quiet-hero-layout h1,
.register-copy h1 {
  font-family: var(--serif);
  font-size: clamp(3.8rem, 6.5vw, 6.8rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.93;
}

.page-hero-copy h1 {
  max-width: 760px;
  margin-top: 28px;
}

.page-hero-copy h1 em {
  color: var(--gold-400);
  font-weight: 400;
}

.page-hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.75;
}

.page-hero-copy .button {
  margin-top: 34px;
}

.page-hero-photo {
  position: relative;
  height: auto;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 1px solid rgba(238, 184, 68, 0.45);
  box-shadow: var(--shadow);
}

.page-hero-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(6, 21, 46, 0.48));
  content: "";
}

.page-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.8) contrast(1.05);
}

.page-hero-quiet {
  min-height: 470px;
  padding-bottom: 82px;
}

.quiet-hero-layout {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.quiet-hero-layout h1 {
  margin-top: 28px;
}

.quiet-hero-layout > p:not(.eyebrow) {
  max-width: 690px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

.quiet-hero-layout .button {
  margin-top: 32px;
}

.home-overview {
  background: var(--paper);
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.overview-card {
  position: relative;
  min-height: 285px;
  padding: 34px 30px;
  color: inherit;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.overview-card + .overview-card {
  border-left: 1px solid var(--line);
}

.overview-card > span {
  color: var(--red-500);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.overview-card h3 {
  margin-top: 52px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.overview-card p {
  margin-top: 15px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.overview-card b {
  position: absolute;
  right: 28px;
  bottom: 25px;
  font-size: 1.2rem;
  font-weight: 400;
}

.overview-card:hover,
.overview-card:focus-visible,
.overview-card-accent {
  color: var(--white);
  background: var(--navy-900);
}

.overview-card:hover p,
.overview-card:focus-visible p,
.overview-card-accent p {
  color: rgba(255, 255, 255, 0.67);
}

.overview-card-accent > span {
  color: var(--gold-400);
}

.overview-card-primary {
  background: rgba(238, 184, 68, 0.09);
  box-shadow: inset 0 4px 0 var(--gold-500);
}

.overview-card-primary > span {
  color: var(--navy-700);
}

.conference-band {
  overflow: hidden;
  color: var(--navy-950);
  background: var(--gold-500);
}

.conference-track {
  display: flex;
  width: max-content;
  align-items: center;
  padding: 17px 0;
  animation: ticker 32s linear infinite;
}

.conference-track span {
  padding: 0 26px;
  font-family: var(--serif);
  font-size: 1.02rem;
  font-style: italic;
  white-space: nowrap;
}

.conference-track i {
  width: 6px;
  height: 6px;
  flex: none;
  background: var(--red-500);
  border-radius: 50%;
}

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

.section {
  position: relative;
  padding: 130px 0;
}

.program-section,
.delegates-section {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: start;
  gap: 46px;
  margin-bottom: 70px;
}

.section-heading > div {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 60px;
}

.section-number {
  padding-top: 12px;
  color: var(--red-500);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-number.light {
  color: var(--gold-400);
}

.section h2 {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-heading > div > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.program-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
  gap: 70px;
  align-items: stretch;
}

.schedule-card {
  position: relative;
  min-height: 530px;
  padding: 34px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(238, 184, 68, 0.16), transparent 30%),
    var(--navy-900);
  box-shadow: var(--shadow);
}

.schedule-card::after {
  position: absolute;
  right: -85px;
  bottom: -85px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(238, 184, 68, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(238, 184, 68, 0.04), 0 0 0 84px rgba(238, 184, 68, 0.03);
  content: "";
}

.schedule-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.live-dot {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-400);
}

.live-dot::before {
  width: 7px;
  height: 7px;
  background: var(--red-500);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 4px rgba(207, 40, 56, 0.16);
}

.schedule-time {
  position: relative;
  z-index: 1;
  padding: 51px 0 41px;
}

.schedule-time p {
  color: var(--gold-400);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
}

.schedule-time strong {
  display: block;
  margin-top: 8px;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 5.4vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 1;
  white-space: nowrap;
}

.schedule-time strong span {
  padding-inline: 3px;
  color: var(--gold-500);
  font-size: 0.55em;
}

.schedule-time small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.schedule-details {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 21px;
}

.schedule-details > div {
  display: flex;
  align-items: center;
  gap: 15px;
}

.schedule-details svg {
  width: 28px;
  flex: none;
  fill: none;
  stroke: var(--gold-400);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.schedule-details span {
  display: grid;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.77rem;
  line-height: 1.4;
}

.schedule-details b {
  color: var(--white);
  font-size: 0.88rem;
}

.learning-list {
  border-top: 1px solid var(--line);
}

.learning-item {
  display: grid;
  min-height: 176px;
  grid-template-columns: 44px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.learning-item > span {
  color: var(--red-500);
  font-size: 0.68rem;
  font-weight: 850;
}

.learning-item h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.learning-item p {
  max-width: 540px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.65;
}

.learning-item svg {
  width: 24px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 180ms ease;
}

.learning-item:hover svg {
  transform: translateX(5px);
}

.moments-section {
  overflow: hidden;
  background: var(--white);
}

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

.experience-card {
  min-height: 300px;
  padding: 34px 32px;
  background: var(--white);
}

.experience-card + .experience-card {
  border-left: 1px solid var(--line);
}

.experience-card > span {
  color: var(--red-500);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.experience-card > div {
  margin-top: 78px;
}

.experience-card h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.experience-card p {
  margin-top: 15px;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

.moments-intro {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: start;
  gap: 46px;
  margin-bottom: 62px;
}

.moments-intro > div {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 60px;
}

.moments-intro p:last-child {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.moments-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
  grid-template-rows: repeat(2, 300px);
  gap: 18px;
}

.moment-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-800);
}

.moment-card::after {
  position: absolute;
  inset: 36% 0 0;
  background: linear-gradient(180deg, transparent, rgba(3, 13, 31, 0.88));
  content: "";
  pointer-events: none;
}

.moment-main {
  grid-row: 1 / 3;
}

.moment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.moment-main img {
  object-position: center;
}

.moment-fun img {
  object-position: center 48%;
}

.moment-community img {
  object-position: center 42%;
}

.moment-card:hover img {
  transform: scale(1.025);
}

.moment-card figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: end;
  gap: 13px;
  padding: 28px;
}

.moment-card figcaption > span {
  padding-bottom: 5px;
  color: var(--gold-400);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.moment-card figcaption strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.moment-card figcaption p {
  max-width: 430px;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  line-height: 1.5;
}

.impact-section {
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.impact-map {
  opacity: 0.14;
  background-size: 58px 58px;
}

.impact-section::before {
  position: absolute;
  top: -180px;
  left: -140px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(238, 184, 68, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(238, 184, 68, 0.025), 0 0 0 160px rgba(238, 184, 68, 0.02);
  content: "";
}

.impact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(400px, 0.96fr);
  align-items: center;
  gap: 100px;
}

.impact-copy h2 {
  margin-top: 35px;
}

.impact-copy h2 em {
  color: var(--gold-400);
  font-weight: 400;
}

.impact-copy > p:not(.section-number) {
  max-width: 650px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.69);
  font-size: 1rem;
  line-height: 1.8;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.impact-stats div {
  padding: 27px 15px 27px 0;
}

.impact-stats div + div {
  padding-left: 21px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.impact-stats strong {
  display: block;
  color: var(--gold-400);
  font-family: var(--serif);
  font-size: 3.25rem;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.impact-stats span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  line-height: 1.45;
  text-transform: uppercase;
}

.impact-visual {
  position: relative;
  padding: 0 42px 55px 0;
}

.impact-proof {
  padding: 42px;
  color: var(--ink);
  background: var(--gold-500);
  box-shadow: var(--shadow);
}

.event-type {
  color: var(--red-500);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.proof-label,
.coverage-card > div > p {
  color: var(--navy-700);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.impact-proof blockquote {
  margin-top: 30px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  font-style: italic;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.impact-proof ul {
  padding: 0;
  margin: 38px 0 0;
  list-style: none;
  border-top: 1px solid rgba(6, 21, 46, 0.22);
}

.impact-proof li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(6, 21, 46, 0.22);
}

.impact-proof li > span {
  color: var(--navy-700);
  font-size: 0.63rem;
  font-weight: 850;
}

.impact-proof li p {
  color: rgba(6, 21, 46, 0.74);
  font-size: 0.76rem;
  line-height: 1.55;
}

.impact-proof li strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy-950);
  font-size: 0.88rem;
}

.impact-visual figure {
  position: relative;
  height: 515px;
  overflow: hidden;
  background: var(--navy-800);
}

.impact-visual figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(6, 21, 46, 0.63));
  content: "";
}

.impact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  image-rendering: auto;
  filter: saturate(0.78) contrast(1.08);
}

.impact-visual blockquote {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: 86%;
  padding: 31px 34px 31px 70px;
  color: var(--navy-950);
  background: var(--gold-500);
  font-family: var(--serif);
  font-size: 1.12rem;
  font-style: italic;
  line-height: 1.5;
}

.impact-visual blockquote span {
  position: absolute;
  top: 17px;
  left: 28px;
  color: var(--red-500);
  font-family: var(--serif);
  font-size: 4.1rem;
  font-style: normal;
  line-height: 1;
}

.vertical-label {
  position: absolute;
  top: 18px;
  right: -4px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.event-feature {
  background: var(--paper);
}

.event-layout {
  display: grid;
  gap: 64px;
}

.event-intro {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  column-gap: 54px;
}

.event-intro .section-number,
.event-type {
  grid-column: 1;
}

.event-intro h2,
.event-lede {
  grid-column: 2;
}

.event-intro h2 {
  grid-row: 1 / span 2;
}

.event-type {
  align-self: end;
  margin-bottom: 8px;
}

.event-lede {
  max-width: 760px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.event-record {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.7fr);
  overflow: hidden;
  background: var(--navy-900);
  box-shadow: var(--shadow);
}

.event-photo {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(238, 184, 68, 0.35);
  background: var(--navy-950);
}

.event-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.88) contrast(1.03);
}

.event-stats {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0;
  color: var(--white);
  background: var(--navy-900);
}

.event-stats div {
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: center;
  padding: 28px 34px;
}

.event-stats div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.event-stats dt {
  color: var(--gold-400);
  font-family: var(--serif);
  font-size: clamp(2.7rem, 4vw, 4rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.event-stats dt span {
  color: var(--red-500);
  font-size: 0.5em;
  vertical-align: top;
}

.event-stats dd {
  max-width: 220px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  line-height: 1.55;
  text-transform: uppercase;
}

.event-story {
  border-top: 1px solid var(--line);
}

.event-step {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 34px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.event-step > span {
  padding-top: 7px;
  color: var(--red-500);
  font-size: 0.68rem;
  font-weight: 850;
}

.event-step h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.event-step p {
  max-width: 760px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.coverage-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 42px;
  background: var(--gold-500);
}

.coverage-card h3 {
  max-width: 650px;
  margin-top: 12px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.delegates-refined {
  background: var(--paper);
}

.team-note {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) minmax(280px, 0.56fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 76px;
}

.team-note h2 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.6vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.team-note > p:last-child {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.delegate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 62px;
  row-gap: 0;
  border-top: 1px solid var(--line);
}

.delegate-card {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  align-items: start;
  gap: 26px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.leader-portrait {
  display: block;
  width: 128px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  background: var(--navy-800);
  filter: saturate(0.84) contrast(1.02);
}

.delegate-content {
  min-width: 0;
}

.delegate-meta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(11, 27, 51, 0.1);
}

.delegate-meta p {
  color: var(--red-500);
  font-size: 0.56rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.delegate-meta h3 {
  margin-top: 3px;
  font-family: var(--serif);
  font-size: 1.95rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.delegate-meta > span {
  color: var(--muted);
  font-size: 0.55rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-align: right;
  text-transform: uppercase;
}

.delegate-bio {
  padding-top: 17px;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.68;
}

.team-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 58px;
  padding: 30px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.team-cta p {
  font-family: var(--serif);
  font-size: 1.65rem;
}

.register-section {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 10%, rgba(238, 184, 68, 0.12), transparent 30%),
    var(--navy-900);
}

.register-page-main .register-section {
  min-height: calc(100vh - 190px);
  padding-top: 172px;
}

.register-section::after {
  position: absolute;
  right: -130px;
  bottom: -250px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(238, 184, 68, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 75px rgba(238, 184, 68, 0.025), 0 0 0 150px rgba(238, 184, 68, 0.02);
  content: "";
}

.register-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 105px;
}

.flyer-card {
  position: relative;
  display: block;
  width: min(100%, 390px);
  padding: 12px;
  color: var(--navy-950);
  background: var(--gold-500);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  text-decoration: none;
  transform: rotate(-2.5deg);
  transition: transform 220ms ease;
}

.flyer-card:hover {
  transform: rotate(0deg) translateY(-5px);
}

.flyer-card img {
  width: 100%;
  max-height: 505px;
  object-fit: cover;
  object-position: top;
}

.flyer-card > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 6px 3px;
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.register-copy h2,
.register-copy h1 {
  max-width: 720px;
  margin-top: 31px;
}

.register-copy > p:not(.section-number, .contact-line) {
  max-width: 650px;
  margin-top: 31px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

.registration-status {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: 100%;
  margin: 31px 0 20px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.registration-status span {
  width: 8px;
  height: 8px;
  flex: none;
  background: var(--red-500);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(207, 40, 56, 0.16);
}

.registration-status.is-live {
  color: var(--gold-400);
}

.registration-status.is-live span {
  background: #55bd77;
  box-shadow: 0 0 0 5px rgba(85, 189, 119, 0.16);
}

.register-facts {
  display: grid;
  max-width: 650px;
  grid-template-columns: repeat(3, 1fr);
  margin: 31px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.register-facts div {
  padding: 18px 15px 18px 0;
}

.register-facts div + div {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.register-facts dt {
  color: var(--gold-400);
  font-size: 0.57rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.register-facts dd {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.76rem;
  line-height: 1.5;
}

.button-large {
  min-height: 62px;
  padding-inline: 30px;
}

.contact-line {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
}

  .contact-line a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: rgba(255, 255, 255, 0.77);
    text-decoration-color: rgba(238, 184, 68, 0.5);
    text-underline-offset: 3px;
  }

.site-footer {
  padding: 62px 0 27px;
  color: var(--white);
  background: #030d1f;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  align-items: center;
  gap: 50px;
  padding-bottom: 46px;
}

.footer-top > p {
  color: rgba(255, 255, 255, 0.53);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--gold-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 1080px) {
  .site-nav {
    gap: 14px;
  }

  .site-nav a {
    font-size: 0.67rem;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(4rem, 7.7vw, 6.3rem);
  }

  .hero-stage {
    min-height: 540px;
  }

  .hero-photo-main {
    width: 350px;
  }

  .hero-photo-small {
    right: 220px;
  }

  .program-grid,
  .impact-layout {
    gap: 48px;
  }

  .page-hero-layout {
    gap: 58px;
  }

  .team-note {
    grid-template-columns: 160px minmax(0, 1fr) minmax(245px, 0.5fr);
    gap: 32px;
  }

  .delegate-card {
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 22px;
  }

  .leader-portrait {
    width: 110px;
  }

  .delegate-meta {
    display: block;
  }

  .delegate-meta > span {
    display: block;
    margin-top: 9px;
    text-align: left;
  }
}

@media (max-width: 900px) {
  .site-nav {
    gap: 12px;
  }

  .site-nav a {
    font-size: 0.63rem;
  }

  .hero {
    min-height: 0;
    padding-top: 150px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-stage {
    width: min(100%, 620px);
    min-height: 570px;
    margin: 0 auto;
  }

  .hero-footnote {
    margin-top: 25px;
  }

  .page-hero-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .page-hero-copy {
    max-width: 760px;
  }

  .page-hero-photo {
    width: min(100%, 620px);
  }

  .event-record {
    grid-template-columns: 1fr;
  }

  .event-photo {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .section-heading,
  .section-heading > div,
  .moments-intro,
  .moments-intro > div,
  .team-note {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

  .overview-card:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .overview-card:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .overview-card:nth-child(5) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section-heading > div > p {
    max-width: 650px;
  }

  .moments-intro > div > p {
    max-width: 650px;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .schedule-card {
    min-height: 0;
  }

  .schedule-details {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-layout {
    grid-template-columns: 1fr;
    gap: 75px;
  }

  .impact-visual {
    width: min(100%, 650px);
  }

  .impact-proof {
    width: min(100%, 650px);
  }

  .delegate-grid {
    grid-template-columns: 1fr;
  }

  .delegate-card {
    grid-template-columns: 128px minmax(0, 1fr);
  }

  .leader-portrait {
    width: 128px;
  }

  .register-layout {
    gap: 55px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top > p {
    display: none;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 78px;
  }

  .shell {
    width: min(100% - 32px, 620px);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-mark {
    width: 37px;
  }

  .brand-copy strong {
    font-size: 1.02rem;
  }

  .brand-copy small {
    font-size: 0.51rem;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: 72px;
    right: 16px;
    left: 16px;
    display: none;
    padding: 13px;
    background: var(--white);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    min-height: 50px;
    padding: 15px 12px;
    color: var(--navy-950);
    border-bottom: 1px solid rgba(11, 27, 51, 0.1);
    font-size: 0.72rem;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .nav-cta {
    margin-top: 5px;
    justify-content: space-between;
    border-bottom: 0;
  }

  .hero {
    padding-top: 126px;
  }

  .hero::before {
    width: 160px;
    height: 105px;
  }

  .hero-layout {
    gap: 56px;
  }

  .eyebrow {
    font-size: 0.61rem;
    letter-spacing: 0.12em;
  }

  .eyebrow span {
    width: 27px;
  }

  .hero h1 {
    margin-top: 24px;
    font-size: clamp(3.4rem, 16.7vw, 5.1rem);
    line-height: 0.91;
  }

  .hero-lede {
    margin-top: 27px;
    font-size: 0.95rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 15px;
    margin-top: 31px;
  }

  .button {
    justify-content: space-between;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-stage {
    min-height: 520px;
  }

  .award-card {
    top: 0;
    width: 218px;
    padding: 23px;
  }

  .award-card strong {
    font-size: 5.4rem;
  }

  .hero-photo-main {
    top: 119px;
    right: -42px;
    width: 78%;
    height: auto;
  }

  .hero-photo-small {
    right: auto;
    bottom: 5px;
    left: 4px;
    width: 50%;
    height: 130px;
    border-width: 6px;
  }

  .hero-stamp {
    right: 2px;
    bottom: 0;
    width: 92px;
    height: 92px;
  }

  .hero-stamp span {
    margin-top: 17px;
    font-size: 0.52rem;
  }

  .hero-stamp svg {
    width: 25px;
    margin-top: -20px;
  }

  .hero-footnote {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .hero-footnote p {
    padding: 15px 10px;
  }

  .hero-footnote p + p {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
  }

  .page-hero {
    min-height: 0;
    padding: 124px 0 72px;
  }

  .page-hero::before {
    width: 150px;
    height: 98px;
  }

  .page-hero-layout {
    gap: 44px;
  }

  .page-hero-copy h1,
  .quiet-hero-layout h1,
  .register-copy h1 {
    font-size: clamp(3rem, 14vw, 4.35rem);
  }

  .page-hero-copy > p:not(.eyebrow),
  .quiet-hero-layout > p:last-child {
    font-size: 0.94rem;
  }

  .page-hero-photo {
    height: auto;
  }

  .page-hero-quiet {
    padding-bottom: 70px;
  }

  .conference-track {
    padding-block: 14px;
  }

  .section {
    padding: 91px 0;
  }

  .section-heading {
    margin-bottom: 48px;
  }

  .moments-intro {
    margin-bottom: 48px;
  }

  .section-number {
    padding-top: 0;
  }

  .section h2 {
    font-size: clamp(2.75rem, 13.2vw, 4rem);
  }

  .section-heading > div > p {
    font-size: 0.93rem;
  }

  .overview-grid {
    grid-template-columns: 1fr;
  }

  .overview-card {
    min-height: 185px;
    padding: 27px 24px;
  }

  .overview-card + .overview-card,
  .overview-card:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .overview-card h3 {
    margin-top: 26px;
  }

  .program-grid {
    gap: 43px;
  }

  .schedule-card {
    padding: 27px 23px 31px;
  }

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

  .schedule-time {
    padding: 42px 0 35px;
  }

  .schedule-time strong {
    font-size: clamp(3.15rem, 16vw, 4.6rem);
  }

  .schedule-details {
    grid-template-columns: 1fr;
  }

  .learning-item {
    min-height: 0;
    grid-template-columns: 31px minmax(0, 1fr);
    gap: 14px;
    padding: 29px 0;
  }

  .learning-item svg {
    display: none;
  }

  .learning-item h3 {
    font-size: 1.55rem;
  }

  .moments-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 12px;
  }

  .moment-card,
  .moment-main {
    grid-row: auto;
    height: 310px;
  }

  .moment-fun {
    height: 410px;
  }

  .moment-card figcaption {
    padding: 22px;
  }

  .moment-card figcaption strong {
    font-size: 1.38rem;
  }

  .experience-grid,
  .event-stats {
    grid-template-columns: 1fr;
  }

  .experience-card {
    min-height: 220px;
    padding: 28px 24px;
  }

  .experience-card + .experience-card,
  .event-stats div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .experience-card > div {
    margin-top: 40px;
  }

  .event-layout {
    gap: 52px;
  }

  .event-intro {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .event-intro .section-number,
  .event-type,
  .event-intro h2,
  .event-lede {
    grid-column: 1;
  }

  .event-intro h2 {
    grid-row: auto;
  }

  .event-type {
    grid-row: 2;
    margin-bottom: 0;
  }

  .event-lede {
    margin-top: 10px;
  }

  .event-stats div {
    min-height: 0;
    padding: 30px;
  }

  .event-stats div + div {
    border-color: rgba(255, 255, 255, 0.15);
  }

  .event-step {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 18px;
  }

  .coverage-card {
    align-items: stretch;
    flex-direction: column;
    padding: 30px;
  }

  .impact-layout {
    gap: 58px;
  }

  .impact-copy h2 {
    margin-top: 25px;
  }

  .impact-copy > p:not(.section-number) {
    margin-top: 27px;
    font-size: 0.93rem;
  }

  .impact-stats {
    grid-template-columns: 1fr;
    margin-top: 39px;
  }

  .impact-stats div,
  .impact-stats div + div {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
  }

  .impact-stats div:first-child {
    border-top: 0;
  }

  .impact-stats strong {
    min-width: 85px;
    font-size: 2.85rem;
  }

  .impact-stats span {
    margin-top: 0;
  }

  .impact-visual {
    padding: 0 18px 60px 0;
  }

  .impact-visual figure {
    height: 400px;
  }

  .impact-visual blockquote {
    width: 94%;
    padding: 24px 24px 24px 52px;
    font-size: 0.92rem;
  }

  .impact-visual blockquote span {
    top: 13px;
    left: 18px;
    font-size: 3.3rem;
  }

  .vertical-label {
    display: none;
  }

  .delegate-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 18px;
    padding: 30px 0;
  }

  .leader-portrait {
    width: 96px;
    aspect-ratio: 4 / 5;
  }

  .delegate-meta {
    display: flex;
  }

  .delegate-meta > span {
    margin-top: 0;
    text-align: right;
  }

  .delegate-bio {
    font-size: 0.77rem;
    line-height: 1.62;
  }

  .team-note {
    margin-bottom: 48px;
  }

  .team-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .register-page-main .register-section {
    padding-top: 124px;
  }

  .register-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .flyer-card {
    width: min(86%, 390px);
    margin-inline: auto;
  }

  .flyer-card img {
    max-height: none;
  }

  .register-copy > p:not(.section-number, .contact-line) {
    font-size: 0.95rem;
  }

  .register-facts {
    grid-template-columns: 1fr;
  }

  .register-facts div,
  .register-facts div + div {
    padding: 15px 0;
    border-left: 0;
  }

  .register-facts div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .button-large {
    width: 100%;
  }

  .contact-line {
    display: grid;
    gap: 4px;
  }

  .contact-line span {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

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

@media (max-width: 390px) {
  .shell {
    width: calc(100% - 28px);
  }

  .hero h1 {
    font-size: 3.32rem;
  }

  .hero-stage {
    min-height: 490px;
  }

  .award-card {
    width: 198px;
  }

  .award-card strong {
    font-size: 4.8rem;
  }

  .hero-photo-main {
    top: 124px;
    height: auto;
  }

  .hero-photo-small {
    height: 115px;
  }

  .schedule-time strong {
    font-size: 3.05rem;
  }

  .delegate-meta {
    display: block;
  }

  .delegate-card {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 15px;
  }

  .leader-portrait {
    width: 86px;
  }

  .delegate-meta > span {
    margin-top: 8px;
    text-align: left;
  }

  .registration-status {
    align-items: flex-start;
    line-height: 1.5;
  }
}

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

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

  .conference-track {
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }

  .conference-track [aria-hidden="true"] {
    display: none;
  }

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