:root {
  color-scheme: dark;
  font-family: Archivo, ui-sans-serif, system-ui, sans-serif;
  background: #09060d;
  color: #fff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: #09060d;
}

.page-shell {
  min-height: 100vh;
  overflow-x: clip;
}

.hero {
  --hero-focus-x: 0%;
  --hero-focus-y: 86%;
  font-size: clamp(6.4px, calc(100vw / 144), 10.4px);

  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  place-items: start center;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background-image:
    linear-gradient(180deg, rgba(5, 5, 9, 0.32) 0%, rgba(5, 5, 9, 0.04) 34%, rgba(5, 5, 9, 0.34) 100%),
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.12), transparent 28%),
    url("mmc-summit-hero.png");
  background-position:
    center,
    center,
    var(--hero-focus-x) var(--hero-focus-y);
  background-repeat: no-repeat;
  background-size:
    100% 100%,
    100% 100%,
    cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.24) 0%, transparent 38%, rgba(0, 0, 0, 0.3) 100%),
    radial-gradient(ellipse 90% 55% at 50% 24%, rgba(0, 0, 0, 0.1), transparent 72%);
}

.hero__image-preserve {
  display: none;
}

.announcement {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8em;
  min-height: 2.8em;
  padding: 0.7em 1.8em;
  background: rgba(0, 0, 0, 0.88);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3em;
  line-height: 1.2;
  text-align: center;
}

.announcement__badge {
  display: inline-flex;
  align-items: center;
  min-height: 1.5em;
  padding: 0.2em 0.5em;
  border-radius: 2px;
  background: #a8e8ff;
  color: #06151b;
  font-size: 0.9em;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-header {
  position: absolute;
  top: 5.4em;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6em;
  padding: 0 5.6em;
}

.brand-logo {
  width: 11.2em;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.34));
}

.brand-header__actions {
  display: flex;
  align-items: center;
  gap: 1.4em;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.brand-header__tag {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15em;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
  transition: color 0.25s ease;
}

.brand-header__tag:hover {
  color: rgba(255, 255, 255, 0.95);
}

.hero__content {
  position: relative;
  z-index: 1;
  align-self: start;
  justify-self: center;
  width: min(42em, calc(100% - 3.2em));
  padding-top: 13.2em;
  text-align: center;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
  flex-wrap: wrap;
  max-width: 100%;
  margin: 0 0 1.4em;
  padding: 0.5em 1.2em;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05em;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-wrap: balance;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.eyebrow::before {
  width: 0.7em;
  height: 0.7em;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #d0a64a;
  box-shadow: 0 0 14px rgba(208, 166, 74, 0.6);
  content: "";
  animation: gold-blink 1.4s ease-in-out infinite;
}

@keyframes gold-blink {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 14px rgba(208, 166, 74, 0.7);
    transform: scale(1);
  }

  50% {
    opacity: 0.45;
    box-shadow: 0 0 4px rgba(208, 166, 74, 0.3);
    transform: scale(0.82);
  }
}

h1 {
  margin: 0;
  font-family: Fraunces, "Times New Roman", serif;
  font-weight: 300;
  font-size: 5.2em;
  line-height: 0.95;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.hero h1 span {
  display: inline;
}

.hero h1 .hero__year {
  font-weight: 500;
  font-style: italic;
  color: #d0a64a;
  text-shadow:
    0 0 18px rgba(208, 166, 74, 0.65),
    0 0 42px rgba(208, 166, 74, 0.4),
    0 0 72px rgba(208, 166, 74, 0.22),
    0 2px 28px rgba(0, 0, 0, 0.45);
}

.hero__copy {
  max-width: 38em;
  margin: 1.4em auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.55em;
  line-height: 1.45;
}

.event-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8em;
  flex-wrap: wrap;
  margin-top: 2em;
  padding: 0;
  color: rgba(255, 255, 255, 0.94);
  font-family: Fraunces, "Times New Roman", serif;
  font-size: 1.25em;
  font-weight: 400;
}

.event-card span {
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  min-height: 3.2em;
  padding: 0.8em 1.12em;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  white-space: nowrap;
  backdrop-filter: blur(18px);
}

.event-card__icon {
  display: block;
  width: 1.4em;
  height: 1.4em;
  flex: 0 0 1.4em;
  color: rgba(255, 255, 255, 0.92);
}

.hero-horizon {
  position: relative;
  width: min(100%, 42em);
  height: 1px;
  margin: 2em auto 0;
  background: linear-gradient(90deg, transparent, rgba(208, 166, 74, 0.75), transparent);
}

.hero-horizon::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.8em;
  height: 0.8em;
  content: "";
  border-radius: 50%;
  background: #d0a64a;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 1.8em 0.35em rgba(208, 166, 74, 0.45);
}

.hero-countdown {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(1em, 3vw, 2.2em);
  width: 100%;
  margin-top: 1.6em;
  text-align: center;
}

.hero-countdown__unit {
  flex: 0 0 auto;
}

.hero-countdown__num {
  font-family: Fraunces, "Times New Roman", serif;
  font-size: 3.64em;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, 0.96);
}

.hero-countdown__lbl {
  margin-top: 0.35em;
  font-size: 0.85em;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  white-space: nowrap;
}

.video-section {
  position: relative;
  z-index: 3;
  height: 0;
  overflow: visible;
  font-size: clamp(6.4px, calc(100vw / 144), 10.4px);
  scroll-margin-top: 1.5rem;
  pointer-events: none;
}

.video-card {
  position: absolute;
  right: 2.8em;
  bottom: 2.8em;
  z-index: 2;
  width: 21em;
  margin: 0;
  padding: 1em;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.2em;
  background: rgba(18, 18, 18, 0.68);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
  color: #fff;
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.video-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.35);
  object-fit: cover;
}

.video-card__trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 7px;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}

.video-card__trigger:hover .video-card__play {
  transform: translate(-50%, -50%) scale(1.06);
}

.video-card__poster {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 7px;
}

.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 3.4em;
  height: 3.4em;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: rgba(20, 16, 13, 0.9);
  font-size: 1.2em;
  line-height: 1;
  text-indent: 2px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
  pointer-events: none;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 40px);
}

.video-modal[hidden] {
  display: none;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 3, 8, 0.72);
  backdrop-filter: blur(14px);
}

.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 92vw);
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
}

.video-modal__media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  object-fit: cover;
}

.video-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.video-modal__close:hover {
  background: rgba(0, 0, 0, 0.72);
}

body.video-modal-open {
  overflow: hidden;
}

.video-card p {
  margin: 0.9em 0.2em 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.2em;
  line-height: 1.35;
}

@media (max-width: 640px) {
  .hero {
    --hero-focus-y: 72%;
    min-height: 100svh;
  }

  .announcement {
    flex-wrap: wrap;
    gap: 0.6em;
    min-height: auto;
    padding: 0.8em 1.2em;
    font-size: 1em;
    line-height: 1.35;
  }

  .announcement__badge {
    flex-shrink: 0;
  }

  .hero__content {
    width: calc(100% - 2.4em);
    padding-top: 12.4em;
    padding-bottom: 2.8em;
  }

  h1 {
    font-size: 3.6em;
  }

  .brand-header {
    top: 5em;
    padding: 0 2.8em;
    gap: 1em;
  }

  .brand-logo {
    width: 8.8em;
  }

  .brand-header__actions {
    gap: 0.8em;
  }

  .brand-header__tag {
    font-size: 0.95em;
    letter-spacing: 0.1em;
  }

  .brand-header .btn-gold {
    padding: 0.75em 1.2em;
    font-size: 0.95em;
  }

  .eyebrow {
    padding: 0.5em 1em;
    font-size: 0.9em;
    line-height: 1.3;
  }

  .hero__copy {
    max-width: 100%;
  }

  .event-card {
    gap: 0.6em;
    margin-top: 1.4em;
    font-size: 1.1em;
  }

  .event-card span {
    min-height: 3.6em;
    padding: 0.8em 1.1em;
    font-size: 1em;
  }

  .event-card__icon {
    width: 1.2em;
    height: 1.2em;
    flex-basis: 1.2em;
  }

  .hero-countdown {
    gap: 0.9em;
    margin-top: 1.2em;
  }

  .hero-countdown__lbl {
    font-size: 0.7em;
    letter-spacing: 0.1em;
  }

  .video-section {
    height: auto;
    padding: 28px 20px 36px;
    background: #09060d;
    pointer-events: auto;
  }

  .video-card {
    position: static;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding: 12px;
    border-radius: 14px;
    font-size: 10px;
  }

  .video-card p {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.35;
    text-align: center;
  }
}

@media (max-width: 430px) {
  .hero {
    --hero-focus-y: 68%;
  }

  .announcement {
    font-size: 0.9em;
    padding-inline: 1em;
  }

  .brand-header {
    top: 5em;
    flex-wrap: wrap;
    row-gap: 0.8em;
  }

  .brand-header__tag {
    display: none;
  }

  .hero__content {
    padding-top: 11em;
  }

  .event-card span {
    min-height: 3.4em;
    padding: 0.7em 0.9em;
    font-size: 0.95em;
  }

  .hero-countdown {
    gap: 0.7em;
  }
}

.tease {
  position: relative;
  isolation: isolate;
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(72px, 12vh, 130px) clamp(24px, 6vw, 72px);
  text-align: center;
}

.tease::before {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(520px, 78vw);
  height: min(920px, 118%);
  z-index: -1;
  content: "";
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(88, 40, 130, 0.55) 0%,
    rgba(74, 36, 110, 0.3) 30%,
    rgba(74, 36, 110, 0.12) 52%,
    transparent 72%
  );
  transform: translate(-50%, -50%);
  opacity: 0;
  filter: blur(40px);
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.tease.is-glowing::before {
  opacity: 1;
}

.tease__kicker {
  position: relative;
  margin: 0 0 22px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #d0a64a;
}

.tease h2 {
  position: relative;
  margin: 0;
  font-family: Fraunces, "Times New Roman", serif;
  font-weight: 300;
  font-size: clamp(30px, 4.5vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  text-wrap: balance;
}

.tease p {
  position: relative;
  margin: 24px 0 0;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
  text-wrap: pretty;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.facts__cell {
  padding: clamp(36px, 5vw, 56px) clamp(20px, 3vw, 40px);
  text-align: center;
  background: #09060d;
}

.facts__big {
  font-family: Fraunces, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.2;
  color: #fff;
}

.facts__small {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 640px) {
  .tease {
    padding: 64px 20px 72px;
  }

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

.closing {
  position: relative;
  isolation: isolate;
  text-align: center;
  padding: clamp(64px, 10vw, 120px) clamp(24px, 5vw, 48px) clamp(96px, 12vw, 140px);
  background: #09060d;
}

.closing::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, #09060d 0%, #12081c 48%, #09060d 100%);
}

.closing__inner {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(560px, 100%);
  margin: 0 auto;
  padding: clamp(36px, 5vw, 52px) clamp(28px, 4vw, 40px);
  text-align: center;
}

.closing__inner::before {
  position: absolute;
  left: 50%;
  top: 48%;
  width: min(520px, 90vw);
  height: min(520px, 90vw);
  z-index: -1;
  content: "";
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(88, 40, 130, 0.52) 0%,
    rgba(74, 36, 110, 0.28) 28%,
    rgba(74, 36, 110, 0.1) 48%,
    transparent 68%
  );
  transform: translate(-50%, -50%);
  opacity: 0;
  filter: blur(36px);
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.closing__inner:hover::before {
  opacity: 1;
}

.closing__eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #d0a64a;
}

.closing__title {
  margin: 0;
  font-family: Fraunces, "Times New Roman", serif;
  font-weight: 300;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
}

.closing__year {
  font-weight: 500;
  font-style: italic;
  color: #d0a64a;
}

.closing__when {
  margin: 18px 0 0;
  font-family: Fraunces, "Times New Roman", serif;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

.closing__dot {
  padding: 0 8px;
  color: #d0a64a;
}

.closing .btn-gold {
  margin-top: 28px;
}

@media (max-width: 640px) {
  .closing {
    padding: 56px 20px 80px;
  }

  .closing__inner {
    padding: 28px 16px;
  }
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 34px;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-gold {
  background: #d0a64a;
  color: #09060d;
}

.brand-header .btn-gold {
  margin-top: 0;
  padding: 0.85em 1.6em;
  font-size: 1.05em;
}

.btn-gold:hover {
  transform: translateY(-2px);
  background: #e4b45a;
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(28px, 4vw, 40px) clamp(24px, 5vw, 48px);
  background: #120a14;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer::before {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(900px, 95vw);
  height: 220%;
  z-index: -1;
  content: "";
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(88, 40, 130, 0.52) 0%,
    rgba(74, 36, 110, 0.28) 28%,
    rgba(74, 36, 110, 0.1) 48%,
    transparent 68%
  );
  transform: translate(-50%, -50%);
  opacity: 0;
  filter: blur(28px);
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.site-footer:hover::before {
  opacity: 1;
}

.site-footer__inner {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.site-footer__brand {
  flex: 0 0 auto;
  display: block;
  width: clamp(120px, 14vw, 168px);
  text-decoration: none;
}

.site-footer__logo {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  text-align: right;
}

.site-footer__address {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(13px, 1.5vw, 15px);
  line-height: 1.5;
}

.site-footer__link {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(13px, 1.5vw, 15px);
  text-decoration: none;
  transition: color 0.45s ease;
}

.site-footer:hover .site-footer__link,
.site-footer__link:hover {
  color: #d0a64a;
}

.site-footer__copyright {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

@media (max-width: 640px) {
  .site-footer {
    padding: 32px 20px 40px;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
  }

  .site-footer__brand {
    width: clamp(140px, 42vw, 180px);
  }

  .site-footer__meta {
    align-items: center;
    text-align: center;
  }
}
