:root {
  color-scheme: light;
  --black: #ffffff;
  --black-soft: #f8f8f8;
  --surface: #f2f2f2;
  --surface-raised: #e8e8e8;
  --white: #111111;
  --muted: #606060;
  --muted-strong: #303030;
  --line: rgba(17, 17, 17, 0.14);
  --line-strong: rgba(17, 17, 17, 0.28);
  --cyan: #111111;
  --cyan-soft: #333333;
  --orange: #111111;
  --header-height: 78px;
  --page: min(1220px, calc(100vw - 80px));
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  font-family: "HarmonyOS Sans SC", "Microsoft YaHei UI", "PingFang SC", "Noto Sans CJK SC", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  min-width: 320px;
  min-height: 100dvh;
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-dialog-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

:focus-visible {
  outline: 2px solid var(--cyan-soft);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--black);
  background: var(--cyan-soft);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: var(--page);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  width: var(--page);
  height: var(--header-height);
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 36px;
  margin-inline: auto;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  transition: background-color 240ms ease, border-color 240ms ease, width 240ms ease;
}

.site-header::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  height: var(--header-height);
  content: "";
  pointer-events: none;
  background: rgba(255, 255, 255, 0);
  transition: background-color 240ms ease, backdrop-filter 240ms ease;
}

.site-header.is-scrolled::before {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  border-color: var(--line);
}

.brand {
  display: block;
  width: 184px;
  height: 50px;
  overflow: hidden;
}

.brand__crop {
  display: block;
  width: 184px;
  height: 50px;
  overflow: hidden;
}

.brand__crop img {
  width: 184px;
  height: 184px;
  object-fit: cover;
  object-position: 50% 50%;
  filter: none;
  mix-blend-mode: normal;
  transform: translateY(-67px);
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 14px;
  font-weight: 650;
}

.site-nav a {
  position: relative;
  padding: 29px 0 24px;
  color: #1a1a1a;
  transition: color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms var(--ease);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--cyan-soft);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  min-width: 58px;
  min-height: 42px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 950px;
  height: 100dvh;
  overflow: hidden;
  background: #ffffff;
  isolation: isolate;
}

.hero__visual {
  position: absolute;
  inset: -2% -2% -2% auto;
  z-index: -2;
  width: 104%;
  height: 104%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  will-change: transform;
  transition: transform 800ms var(--ease);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: rgba(17, 17, 17, 0.06);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: var(--page);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-inline: auto;
  padding-top: var(--header-height);
}

.kicker,
.section-label {
  margin: 0;
  color: var(--cyan-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: clamp(72px, 7.4vw, 116px);
  font-weight: 850;
  line-height: 0.96;
  letter-spacing: -0.075em;
}

.hero__lead {
  max-width: 470px;
  margin: 28px 0 0;
  color: var(--muted-strong);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.8;
}

.hero__actions,
.future__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #ffffff;
  background: var(--cyan);
  border-color: var(--cyan);
}

.button--primary:hover {
  background: var(--cyan-soft);
  border-color: var(--cyan-soft);
}

.button--quiet {
  color: var(--white);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(17, 17, 17, 0.28);
}

.button--quiet:hover {
  color: var(--cyan-soft);
  border-color: var(--cyan);
}

.hero__telemetry {
  position: absolute;
  bottom: 34px;
  left: 50%;
  z-index: 2;
  width: var(--page);
  display: flex;
  gap: 28px;
  color: rgba(17, 17, 17, 0.52);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  transform: translateX(-50%);
}

.partner-rail {
  padding: 30px 0 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f5f5f5;
}

.partner-rail .section-label {
  margin-bottom: 24px;
  color: rgba(17, 17, 17, 0.62);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: 0;
}

.partner-card {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 22px;
  overflow: hidden;
  border-right: 1px solid var(--line);
}

.partner-card:first-child {
  padding-left: 0;
}

.partner-card:last-child {
  padding-right: 0;
  border-right: 0;
}

.partner-card img {
  width: 100%;
  height: 42px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 180ms ease, filter 180ms ease;
}

.partner-card:hover img {
  filter: none;
  opacity: 1;
}

.partner-card--waytoagi img {
  filter: invert(1) grayscale(1) contrast(2);
  mix-blend-mode: screen;
}

.partner-card--songguo img {
  transform: scale(2.25);
}

.partner-card--heu {
  flex-direction: column;
}

.partner-card--heu img {
  height: 25px;
}

.partner-card--heu span {
  color: rgba(17, 17, 17, 0.55);
  font-size: 9px;
  white-space: nowrap;
}

.partner-card--watcha img {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  filter: none;
  opacity: 1;
}

.partner-card--watcha span {
  color: rgba(17, 17, 17, 0.72);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.orbit-section {
  padding-block: 122px 138px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.section-heading h2,
.future h2 {
  margin: 14px 0 0;
  font-size: clamp(42px, 4.4vw, 66px);
  font-weight: 820;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.section-intro {
  max-width: 430px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.event-tabs {
  display: flex;
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--line);
  background: var(--black-soft);
}

.event-tab {
  min-width: 74px;
  min-height: 42px;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.event-tab.is-active {
  color: var(--black);
  background: var(--cyan);
}

.event-orbit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 244px;
  gap: 34px;
  align-items: stretch;
}

.event-card {
  position: relative;
  min-height: 590px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.4);
}

.event-card > img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
  object-position: center;
  transition: opacity 220ms ease, transform 900ms var(--ease);
}

.event-card:hover > img {
  transform: scale(1.018);
}

.event-card__shade {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.06);
  pointer-events: none;
}

.event-card__copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 112px 38px 34px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
}

.event-card__copy > p:first-child {
  margin: 0 0 10px;
  color: var(--orange);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.event-card__copy h3 {
  margin: 0;
  font-size: clamp(30px, 3.3vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.event-card__copy > p:last-child {
  max-width: 620px;
  margin: 14px 0 0;
  color: #424242;
  line-height: 1.75;
}

.event-console {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 28px;
  padding: 32px;
  border: 1px solid var(--line);
  background: #f5f5f5;
}

.event-console::before,
.event-console::after {
  position: absolute;
  left: -35px;
  width: 35px;
  height: 1px;
  content: "";
  background: var(--cyan);
}

.event-console::before {
  top: 28%;
}

.event-console::after {
  bottom: 28%;
  background: var(--orange);
}

.date-dial {
  width: 142px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  align-self: center;
  text-align: center;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  box-shadow: inset 0 0 38px rgba(17, 17, 17, 0.08), 0 0 48px rgba(17, 17, 17, 0.1);
}

.date-dial strong {
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 26px;
  font-weight: 500;
}

.date-dial span {
  margin-top: 8px;
  color: var(--muted);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
}

.event-console__meta {
  display: grid;
  gap: 7px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.event-console__meta span {
  color: var(--muted);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
}

.event-console__meta strong {
  font-size: 14px;
}

.text-action {
  min-height: 46px;
  border: 1px solid var(--line-strong);
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.text-action:hover {
  color: var(--black);
  border-color: var(--cyan);
  background: var(--cyan);
}

.mission {
  padding-block: 118px 130px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background-color: #f7f7f7;
  background-image: url("/public/assets/aurora/aurora-orbit-globe.png");
  background-repeat: no-repeat;
  background-size: 92% auto;
  background-position: 82% 142%;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 58px;
  border-top: 1px solid var(--line-strong);
}

.mission-grid article {
  min-height: 300px;
  padding: 32px 30px 38px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  transition: background-color 220ms ease, transform 220ms var(--ease);
}

.mission-grid article:first-child {
  border-left: 1px solid var(--line);
}

.mission-grid article:hover {
  background: rgba(245, 245, 245, 0.96);
  transform: translateY(-8px);
}

.mission-grid article > span {
  display: block;
  margin-bottom: 80px;
  color: var(--cyan);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 11px;
}

.mission-grid h3 {
  margin: 0 0 16px;
  font-size: 21px;
}

.mission-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.gallery {
  padding-block: 122px 150px;
  overflow: clip;
  background: #ffffff;
}

.gallery .section-heading {
  margin-bottom: 0;
}

.gallery-heading-shell {
  position: relative;
  z-index: 1;
  margin-bottom: 56px;
  background: #ffffff;
}

.gallery-curtain-layout {
  --gallery-frame-height: min(680px, calc(100svh - var(--header-height) - 80px));
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  align-items: start;
  gap: 20px;
  width: min(1220px, calc(100% - 64px));
  margin-inline: auto;
}

.gallery-curtain-sequence {
  position: relative;
  width: 100%;
  height: var(--gallery-frame-height);
  overflow-x: hidden;
  overflow-y: hidden;
  border: 1px solid #d8d8d8;
  background: #000000;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.14);
  overscroll-behavior-y: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.gallery-curtain-sequence.is-scroll-ready {
  overflow-y: auto;
}

.gallery-curtain-sequence::-webkit-scrollbar {
  display: none;
}

.gallery-curtain-group {
  position: relative;
  z-index: var(--gallery-group-layer);
  width: 100%;
  height: calc(var(--gallery-frame-height) + var(--gallery-frame-height) + var(--gallery-frame-height));
}

.gallery-curtain-group + .gallery-curtain-group {
  margin-top: calc(0px - var(--gallery-frame-height));
}

.gallery-curtain-page {
  isolation: isolate;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #111111;
}

.gallery-curtain-page::before {
  content: "";
  position: absolute;
  inset: -30px;
  z-index: 0;
  background-image: var(--gallery-bg);
  background-position: center;
  background-size: cover;
  filter: blur(24px) brightness(0.62) saturate(0.9);
  transform: scale(1.08);
}

.gallery-fixed-page {
  position: sticky;
  top: 0;
  z-index: 0;
  height: var(--gallery-frame-height);
}

.gallery-sliding-page {
  position: relative;
  z-index: 10;
  height: var(--gallery-frame-height);
  margin-top: calc(0px - var(--gallery-frame-height));
  box-shadow: 0 -30px 60px rgba(0, 0, 0, 0.32), 0 30px 60px rgba(0, 0, 0, 0.24);
}

.gallery-curtain-page img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.gallery-curtain-page figcaption {
  position: absolute;
  right: 38px;
  bottom: 34px;
  left: auto;
  z-index: 3;
  max-width: min(72%, 720px);
  padding: 0;
  color: #ffffff;
  background: transparent;
  font-size: clamp(18px, 2vw, 32px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.08em;
  text-align: right;
  text-wrap: balance;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.82), 0 10px 30px rgba(0, 0, 0, 0.68);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.gallery-curtain-page.is-current figcaption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-progress {
  display: flex;
  height: var(--gallery-frame-height);
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
}

.gallery-progress__bar {
  display: block;
  width: 14px;
  height: 4px;
  background: #d7d7d7;
  transition: width 260ms var(--ease), background-color 260ms ease;
}

.gallery-progress__bar.is-active {
  width: 28px;
  background: #000000;
}

.future {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #ffffff;
  isolation: isolate;
}

.future__visual {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.future::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: rgba(17, 17, 17, 0.06);
}

.future__content {
  position: relative;
  z-index: 2;
}

.future h2 {
  max-width: 620px;
  font-size: clamp(56px, 6vw, 92px);
}

.future__content > p:not(.section-label) {
  max-width: 520px;
  margin: 24px 0 0;
  color: var(--muted-strong);
  font-size: 17px;
  line-height: 1.9;
}

.future__pin {
  position: absolute;
  right: 20%;
  bottom: 25%;
  margin: 0;
  padding: 9px 12px;
  border: 1px solid var(--cyan);
  color: var(--cyan-soft);
  background: rgba(255, 255, 255, 0.86);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.site-footer {
  padding: 34px 0 30px;
  border-top: 1px solid var(--line);
  background: var(--black);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand--footer {
  width: 170px;
  height: 44px;
}

.brand--footer .brand__crop {
  width: 170px;
  height: 44px;
}

.brand--footer .brand__crop img {
  width: 170px;
  height: 170px;
  transform: translateY(-62px);
}

.site-footer p,
.site-footer small {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.site-footer nav {
  display: flex;
  gap: 24px;
  color: var(--muted-strong);
  font-size: 12px;
}

.site-footer nav a:hover {
  color: var(--cyan-soft);
}

.site-footer small {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-dialog,
.lightbox {
  border: 1px solid var(--line-strong);
  border-radius: 0;
  color: var(--white);
  background: #ffffff;
  box-shadow: 0 36px 140px rgba(0, 0, 0, 0.72);
}

.contact-dialog::backdrop,
.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
}

.contact-dialog {
  width: min(640px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  padding: 0;
}

.contact-form {
  display: grid;
  gap: 20px;
  padding: 34px;
}

.dialog-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.dialog-heading h2 {
  margin: 12px 0 0;
  font-size: 31px;
  letter-spacing: -0.04em;
}

.dialog-close,
.lightbox__close {
  min-width: 58px;
  min-height: 42px;
  border: 1px solid var(--line-strong);
  color: var(--muted-strong);
  background: transparent;
  cursor: pointer;
}

.dialog-close:hover,
.lightbox__close:hover {
  color: var(--black);
  background: var(--cyan-soft);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  color: var(--white);
  background: #f5f5f5;
}

.contact-form input,
.contact-form select {
  height: 48px;
  padding: 0 13px;
}

.contact-form textarea {
  padding: 13px;
  resize: vertical;
}

.contact-form small {
  color: var(--muted);
  font-weight: 400;
}

.field-error {
  min-height: 18px;
  color: #333333;
  font-size: 12px;
  font-weight: 400;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.form-status {
  margin: 0;
  color: var(--cyan-soft);
  font-size: 12px;
  line-height: 1.5;
}

.lightbox {
  width: min(1180px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  padding: 60px 14px 16px;
}

.lightbox__close {
  position: absolute;
  top: 10px;
  right: 10px;
}

.lightbox img {
  width: 100%;
  max-height: calc(100dvh - 150px);
  object-fit: contain;
}

.lightbox p {
  margin: 12px 0 0;
  color: var(--muted-strong);
  font-size: 13px;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 720ms var(--ease), transform 720ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  :root {
    --page: min(100% - 48px, 900px);
  }

  .site-header {
    grid-template-columns: 190px 1fr auto;
  }

  .site-nav {
    gap: 22px;
  }

  .hero__visual {
    width: 118%;
    object-position: 58% center;
  }

  .partner-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 20px;
  }

  .partner-card:nth-child(3) {
    border-right: 0;
  }

  .event-orbit {
    grid-template-columns: minmax(0, 1fr) 210px;
    gap: 24px;
  }

  .event-console {
    padding: 24px;
  }

  .mission-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mission-grid article:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .mission-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
    --page: calc(100% - 32px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .brand,
  .brand__crop {
    width: 156px;
    height: 44px;
  }

  .brand__crop img {
    width: 156px;
    height: 156px;
    transform: translateY(-57px);
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: calc(var(--header-height) + 8px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 8px 18px;
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    height: auto;
    min-height: 920px;
  }

  .hero__visual {
    inset: var(--header-height) auto auto 0;
    width: 150%;
    height: auto;
    object-fit: contain;
    object-position: center;
    transform: translateX(-31.25%);
    will-change: auto;
  }

  .hero::after {
    top: 50%;
    background: rgba(17, 17, 17, 0.72);
  }

  .hero__content {
    min-height: 920px;
    justify-content: flex-end;
    padding: 0 0 118px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(57px, 18vw, 78px);
  }

  .hero__lead {
    margin-top: 20px;
    font-size: 16px;
  }

  .hero__actions {
    width: 100%;
    margin-top: 26px;
  }

  .hero__actions .button {
    flex: 1 1 0;
    padding-inline: 14px;
  }

  .hero__telemetry {
    bottom: 28px;
    flex-wrap: wrap;
    gap: 8px 18px;
  }

  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-card,
  .partner-card:nth-child(3) {
    border-right: 1px solid var(--line);
  }

  .partner-card:nth-child(2n) {
    border-right: 0;
  }

  .orbit-section,
  .mission {
    padding-block: 82px 94px;
  }

  .gallery {
    padding-block: 82px 94px;
  }

  .gallery-curtain-layout {
    --gallery-frame-height: clamp(228px, 72vw, 310px);
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .gallery-curtain-sequence,
  .gallery-curtain-sequence.is-scroll-ready {
    overflow-y: hidden;
    border-right: 0;
    border-left: 0;
  }

  .gallery-curtain-page img {
    object-fit: cover;
  }

  .gallery-progress {
    position: absolute;
    top: 0;
    right: 8px;
    z-index: 20;
    gap: 7px;
    pointer-events: none;
  }

  .gallery-progress__bar {
    width: 4px;
    height: 2px;
    background: rgba(255, 255, 255, 0.56);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.72);
  }

  .gallery-progress__bar.is-active {
    width: 8px;
    background: #ffffff;
  }

  .gallery-curtain-page figcaption {
    right: 16px;
    bottom: 16px;
    left: auto;
    max-width: calc(100% - 32px);
    padding: 0;
    font-size: clamp(14px, 4.5vw, 20px);
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 34px;
  }

  .section-heading h2,
  .future h2 {
    font-size: 46px;
  }

  .event-orbit {
    grid-template-columns: 1fr;
  }

  .event-card,
  .event-card > img {
    min-height: 500px;
  }

  .event-card > img {
    object-position: 62% center;
  }

  .event-card__copy {
    padding: 76px 22px 24px;
  }

  .event-console {
    display: grid;
    grid-template-columns: 118px 1fr;
    gap: 18px 24px;
  }

  .event-console::before,
  .event-console::after {
    display: none;
  }

  .date-dial {
    width: 118px;
    grid-row: span 2;
  }

  .event-console .text-action {
    grid-column: 1 / -1;
  }

  .mission {
    background-size: auto 52%;
    background-position: 70% 110%;
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }

  .mission-grid article,
  .mission-grid article:first-child,
  .mission-grid article:nth-child(2) {
    min-height: 230px;
    border-top: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .mission-grid article > span {
    margin-bottom: 44px;
  }

  .future {
    min-height: 760px;
    align-items: flex-end;
  }

  .future__visual {
    height: 62%;
    object-position: 62% center;
  }

  .future::after {
    top: 45%;
    background: rgba(255, 255, 255, 0.74);
  }

  .future__content {
    padding-bottom: 82px;
  }

  .future h2 {
    font-size: 57px;
  }

  .future__actions {
    width: 100%;
  }

  .future__actions .button {
    flex: 1 1 100%;
  }

  .future__pin {
    top: 30%;
    right: 8%;
    bottom: auto;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 16px;
    justify-items: center;
    text-align: center;
  }

  .brand--footer {
    justify-self: center;
  }

  .site-footer nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-footer small {
    width: 100%;
    text-align: center;
  }

  .contact-form {
    padding: 24px;
  }

  .form-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 960px) {
  main#main {
    margin-bottom: var(--hero-page-shift);
  }
}

/* wide-flow-layout-20260808 */
@media (min-width: 961px) {
  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0 !important;
    height: auto !important;
    overflow: hidden;
    background: #000000;
  }

  main > .hero {
    position: relative !important;
    top: auto !important;
    z-index: 0;
    margin-bottom: 0 !important;
  }

  main > :not(.hero) {
    transform: none !important;
    will-change: auto;
  }

  canvas.hero__visual {
    position: relative !important;
    inset: auto !important;
    z-index: 0 !important;
    order: 2;
    display: block;
    width: 100% !important;
    height: 56.25vw !important;
    min-width: 0 !important;
    min-height: 0 !important;
    aspect-ratio: 16 / 9;
  }

  .hero__content.reveal,
  .hero__content.reveal.is-visible {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    z-index: 1 !important;
    order: 1;
    width: min(calc(100% - 64px), 900px) !important;
    max-width: none !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    padding: clamp(30px, 4vw, 58px) 0 clamp(24px, 3vw, 44px) !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: center !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    will-change: auto;
  }

  .hero__content .kicker,
  .hero__content .hero__lead,
  .hero__content h1,
  .hero__content .hero__actions {
    align-self: center;
    text-align: center;
  }

  .hero h1 {
    max-width: none;
    margin-top: 14px;
    font-size: clamp(52px, 5.3vw, 82px);
    line-height: 1;
    white-space: nowrap;
  }

  .hero__lead {
    max-width: none;
    margin-top: 16px;
    font-size: clamp(16px, 1.45vw, 20px);
    line-height: 1.55;
    white-space: nowrap;
  }

  .hero h1 br,
  .hero__lead br {
    display: none;
  }

  .hero__actions {
    justify-content: center;
    margin-top: 22px;
  }

  .hero__telemetry {
    display: none;
  }
}

/* wide-overlay-layout-final-20260808 */
@media (min-width: 961px) {
  .hero canvas.hero__visual {
    order: 1;
  }

  .hero .hero__content.reveal,
  .hero .hero__content.reveal.is-visible {
    position: absolute !important;
    top: clamp(42px, 5vw, 92px) !important;
    right: auto !important;
    bottom: auto !important;
    left: 50% !important;
    z-index: 2 !important;
    width: min(calc(100% - 64px), 900px) !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 1 !important;
    filter: none !important;
    transform: translateX(-50%) !important;
  }
}

@media (max-width: 760px) and (max-height: 760px) {
  .hero {
    min-height: 100dvh;
  }

  .hero__visual {
    width: 135%;
    transform: translateX(-26%);
  }

  .hero__content {
    min-height: 100dvh;
    padding-bottom: 70px;
  }

  .hero h1 {
    margin-top: 14px;
    font-size: clamp(50px, 16vw, 60px);
  }

  .hero__lead {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.6;
  }

  .hero__actions {
    margin-top: 18px;
  }

  .hero__telemetry {
    display: none;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* hero-cover-layout-20260808 */
.hero {
  min-height: 100svh;
  height: 100svh;
  background: #000;
}

.hero__visual {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transform: none;
}

.hero::after,
.hero__content,
.hero__telemetry {
  display: none;
}

.site-header {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.site-header::before {
  background: rgba(2, 7, 11, 0);
}

.site-header.is-scrolled::before {
  background: rgba(2, 7, 11, 0.9);
}

.brand__crop img {
  filter: invert(1) grayscale(1) contrast(1.9);
  mix-blend-mode: screen;
}

.site-nav a {
  color: #dce7ea;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #ffffff;
}

.site-nav a::after {
  background: #ffffff;
}

.menu-button {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(2, 7, 11, 0.8);
}

/* hero-responsive-layout-20260808 */
.hero {
  min-height: 100dvh;
  height: 100dvh;
}

.hero__visual {
  inset: auto 0 0;
  width: 100vw;
  min-width: 100%;
  height: 100dvh;
  min-height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

/* partner-icons-light-20260808 */
.partner-card img,
.partner-card:hover img {
  filter: grayscale(1) brightness(0);
  opacity: 0.72;
  mix-blend-mode: normal;
}

.partner-card:hover img {
  opacity: 1;
}

/* partner-icons-real-colors-20260808 */
.partner-card img,
.partner-card:hover img {
  filter: none;
  opacity: 1;
  mix-blend-mode: normal;
}

/* partner-icons-selective-black-20260808 */
.partner-card--songguo img,
.partner-card--heu img {
  filter: grayscale(1) brightness(0);
  opacity: 1;
  mix-blend-mode: normal;
}

/* partner-icons-hover-color-20260808 */
.partner-card img {
  filter: grayscale(1);
  opacity: 0.56;
  mix-blend-mode: normal;
}

.partner-card:hover img {
  filter: none;
  opacity: 1;
}

/* partner-logo-corrections-20260808 */
.partner-card--waytoagi img {
  filter: grayscale(1);
  opacity: 0.56;
  mix-blend-mode: multiply;
}

.partner-card--waytoagi:hover img {
  filter: none;
  opacity: 1;
  mix-blend-mode: multiply;
}

.partner-card--songguo img,
.partner-card--heu img {
  filter: grayscale(1) brightness(0);
  opacity: 0.56;
  mix-blend-mode: normal;
}

.partner-card--songguo:hover img,
.partner-card--heu:hover img {
  filter: none;
  opacity: 1;
}

/* partner-hover-black-20260808 */
.partner-card--songguo:hover img,
.partner-card--heu:hover img {
  filter: grayscale(1) brightness(0);
  opacity: 1;
  mix-blend-mode: normal;
}

/* partner-uniform-size-20260808 */
.partner-card img {
  width: auto;
  max-width: 100%;
  height: 25px;
  transform: none;
  flex: 0 1 auto;
}

/* partner-optical-size-20260808 */
.partner-card--waytoagi img {
  transform: scale(2.04);
  transform-origin: center;
}

.partner-card--songguo img {
  transform: scale(4.72);
  transform-origin: center;
}

.partner-card--heu img {
  transform: none;
}

/* header-frosted-glass-20260808 */
.site-header {
  border-bottom-color: rgba(17, 17, 17, 0.12);
}

.site-header::before,
.site-header.is-scrolled::before {
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.brand__crop img {
  filter: none;
  mix-blend-mode: multiply;
}

.site-nav a,
.site-nav a:hover,
.site-nav a.is-active,
.menu-button {
  color: #161616;
}

.site-nav a::after {
  background: #161616;
}

.menu-button {
  border-color: rgba(17, 17, 17, 0.28);
  background: rgba(255, 255, 255, 0.38);
}

/* header-strong-glass-20260808 */
.site-header {
  border-bottom-color: rgba(255, 255, 255, 0.46);
}

.site-header::before,
.site-header.is-scrolled::before {
  background: linear-gradient(112deg, rgba(255, 255, 255, 0.46) 0%, rgba(255, 255, 255, 0.16) 48%, rgba(255, 255, 255, 0.34) 100%);
  backdrop-filter: blur(34px) saturate(185%) contrast(112%);
  -webkit-backdrop-filter: blur(34px) saturate(185%) contrast(112%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 10px 28px rgba(4, 13, 19, 0.16);
}

/* logo-true-transparent-20260808 */
.brand__crop img {
  filter: none;
  mix-blend-mode: normal;
}

/* logo-multiply-no-frame-20260808 */
.brand__crop img {
  filter: none;
  mix-blend-mode: multiply;
}

/* header-original-restore-20260808 */
.site-header {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.site-header::before {
  background: rgba(2, 7, 11, 0);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.site-header.is-scrolled::before {
  background: rgba(2, 7, 11, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: none;
}

.site-header.is-scrolled {
  border-color: var(--line);
}

.site-header .brand__crop img {
  filter: invert(1) grayscale(1) contrast(1.9);
  mix-blend-mode: screen;
}

.site-header .site-nav a {
  color: #dce7ea;
}

.site-header .site-nav a:hover,
.site-header .site-nav a.is-active {
  color: var(--cyan-soft);
}

.site-header .site-nav a::after {
  background: var(--cyan);
}

.site-header .menu-button {
  color: #dce7ea;
  border-color: var(--line-strong);
  background: rgba(2, 7, 11, 0.8);
}

/* hero-curtain-scroll-20260808 */
main {
  position: relative;
}

main > .hero {
  position: sticky;
  top: 0;
  z-index: 0;
}

main > :not(.hero) {
  position: relative;
  z-index: 1;
}

main > .orbit-section {
  background: #ffffff;
  box-shadow: 0 0 0 100vmax #ffffff;
  clip-path: inset(0 -100vmax);
}

/* hero-scroll-video-20260808 */
video.hero__visual {
  object-fit: cover;
  object-position: center;
  background: #000000;
  transform: none !important;
}

/* hero-canvas-scroll-20260808: continuously rendered, never MP4-seeked */
canvas.hero__visual {
  display: block;
  width: 100%;
  height: 100%;
  background: #02070b;
  touch-action: pan-y;
  transform: none !important;
}

/* hero-apple-stack-20260808: copy on top, animation as the lower visual */
.hero {
  background: #000000;
}

main > .hero {
  margin-bottom: 100dvh;
}

canvas.hero__visual {
  z-index: 0;
}

.hero::after {
  display: none;
}

.hero__content {
  display: flex;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  width: min(calc(100% - 48px), 720px);
  min-height: 0;
  margin: 0;
  padding: clamp(92px, 10vh, 132px) 0 0;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  transform: translateX(-50%);
}

.hero__content .kicker {
  color: #72eaff;
}

.hero h1 {
  max-width: 760px;
  margin-top: 16px;
  color: #ffffff;
  font-size: clamp(58px, 6.6vw, 106px);
}

.hero__lead {
  max-width: 540px;
  margin-top: 18px;
  color: rgba(239, 248, 255, 0.82);
}

.hero__actions {
  justify-content: center;
  margin-top: 24px;
}

@media (max-width: 760px) {
  .hero__content {
    width: min(calc(100% - 32px), 440px);
    padding-top: calc(var(--header-height) + 28px);
  }

  .hero h1 {
    margin-top: 12px;
    font-size: clamp(46px, 14vw, 64px);
  }

  .hero__lead {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.6;
  }

  .hero__actions {
    width: 100%;
    margin-top: 20px;
  }
}

.gallery-curtain-stack .gallery-flow__item,
.gallery-curtain-stack .gallery-flow__item--sliding {
  box-shadow: none !important;
}

/* hero-scroll-curtain-20260808: copy dissolves, visual rises, white page closes the scene */
.hero {
  --hero-scroll: 0;
  --hero-copy-opacity: 1;
  --hero-copy-y: 0px;
  --hero-copy-scale-x: 1;
  --hero-copy-scale-y: 1;
  --hero-copy-blur: 0px;
  background: #000000;
}

canvas.hero__visual {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  transform: none !important;
}

.hero__content.reveal,
.hero__content.reveal.is-visible {
  position: absolute !important;
  top: 0 !important;
  right: auto !important;
  bottom: auto !important;
  left: 50% !important;
  z-index: 3 !important;
  box-sizing: border-box;
  display: flex !important;
  width: min(calc(100vw - 48px), 720px) !important;
  max-width: 720px !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: clamp(86px, 9vh, 116px) 0 0 !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: center !important;
  opacity: var(--hero-copy-opacity) !important;
  filter: blur(var(--hero-copy-blur));
  transform: translate3d(-50%, var(--hero-copy-y), 0) scale(var(--hero-copy-scale-x), var(--hero-copy-scale-y)) !important;
  transform-origin: center top;
  transition: none !important;
  will-change: opacity, filter, transform;
}

.hero__content .kicker,
.hero__content .hero__lead,
.hero__content h1,
.hero__content .hero__actions {
  align-self: center;
  text-align: center;
}

.hero h1 {
  max-width: 700px;
  margin-top: 14px;
  color: #ffffff;
  font-size: clamp(52px, 5.6vw, 86px);
}

.hero__lead {
  max-width: 520px;
  margin-top: 16px;
  color: rgba(239, 248, 255, 0.84);
}

.hero__actions {
  justify-content: center;
  margin-top: 22px;
}

main > :not(.hero) {
  position: relative;
  z-index: 1;
}

/* hero-page-link-20260808: the page follows the rising image, then becomes its curtain */
main {
  --hero-page-shift: 0px;
}

main > :not(.hero) {
  transform: translate3d(0, var(--hero-page-shift), 0);
  will-change: transform;
}

main > .partner-rail {
  background: #ffffff;
  box-shadow: 0 -1px 0 rgba(17, 17, 17, 0.12);
}

/* wide-hero-stage-20260808 */
@media (min-width: 961px) {
  .hero__content.reveal,
  .hero__content.reveal.is-visible {
    left: clamp(48px, 8vw, 160px) !important;
    width: min(48vw, 760px) !important;
    max-width: none !important;
    padding: clamp(112px, 18vh, 190px) 0 0 !important;
    align-items: flex-start !important;
    text-align: left !important;
    transform: translate3d(0, var(--hero-copy-y), 0) scale(var(--hero-copy-scale-x), var(--hero-copy-scale-y)) !important;
    transform-origin: left top;
  }

  .hero__content .kicker,
  .hero__content .hero__lead,
  .hero__content h1,
  .hero__content .hero__actions {
    align-self: flex-start;
    text-align: left;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(52px, 5.1vw, 82px);
    white-space: nowrap;
  }

  .hero h1 br {
    display: none;
  }

  .hero__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .hero__content.reveal,
  .hero__content.reveal.is-visible {
    width: calc(100vw - 32px) !important;
    max-width: 440px !important;
    padding-top: calc(var(--header-height) + 20px) !important;
  }

  .hero h1 {
    margin-top: 12px;
    font-size: clamp(46px, 13.5vw, 60px);
  }

  .hero__lead {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.6;
  }

  .hero__actions {
    width: 100%;
    margin-top: 20px;
  }
}

/* wide-flow-layout-final-20260808 */
@media (min-width: 961px) {
  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0 !important;
    height: auto !important;
    overflow: hidden;
    background: #000000;
  }

  main > .hero {
    position: relative !important;
    top: auto !important;
    z-index: 0;
    margin-bottom: 0 !important;
  }

  main > :not(.hero) {
    transform: none !important;
    will-change: auto;
  }

  canvas.hero__visual {
    position: relative !important;
    inset: auto !important;
    z-index: 0 !important;
    order: 2;
    display: block;
    width: 100% !important;
    height: 56.25vw !important;
    min-width: 0 !important;
    min-height: 0 !important;
    aspect-ratio: 16 / 9;
  }

  .hero__content.reveal,
  .hero__content.reveal.is-visible {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    z-index: 1 !important;
    order: 1;
    width: min(calc(100% - 64px), 900px) !important;
    max-width: none !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    padding: clamp(30px, 4vw, 58px) 0 clamp(24px, 3vw, 44px) !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: center !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    will-change: auto;
  }

  .hero__content .kicker,
  .hero__content .hero__lead,
  .hero__content h1,
  .hero__content .hero__actions {
    align-self: center;
    text-align: center;
  }

  .hero h1 {
    max-width: none;
    margin-top: 14px;
    font-size: clamp(52px, 5.3vw, 82px);
    line-height: 1;
    white-space: nowrap;
  }

  .hero__lead {
    max-width: none;
    margin-top: 16px;
    font-size: clamp(16px, 1.45vw, 20px);
    line-height: 1.55;
    white-space: nowrap;
  }

  .hero h1 br,
  .hero__lead br {
    display: none;
  }

  .hero__actions {
    justify-content: center;
    margin-top: 22px;
  }

  .hero__telemetry {
    display: none;
  }
}

/* header-clear-wide-20260808 */
@media (min-width: 961px) {
  .site-header + main#main {
    padding-top: var(--header-height) !important;
  }
}

/* header-ui-dark-20260808 */
.site-header {
  border-bottom-color: rgba(109, 229, 241, 0.16) !important;
}

.site-header::before,
.site-header.is-scrolled::before {
  background: #000000 !important;
  -webkit-backdrop-filter: blur(18px) saturate(125%) !important;
  backdrop-filter: blur(18px) saturate(125%) !important;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2) !important;
}

.site-header .brand__crop img {
  filter: invert(1) grayscale(1) contrast(1.9) !important;
  mix-blend-mode: screen !important;
}

@media (min-width: 761px) {
  .site-header .site-nav {
    gap: 4px;
  }

  .site-header .site-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    color: #aebbc3;
    letter-spacing: 0.03em;
    transition: color 180ms ease, background-color 180ms ease;
  }

  .site-header .site-nav a::after {
    display: none;
  }

  .site-header .site-nav a:hover,
  .site-header .site-nav a.is-active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.09);
  }
}

.site-header .menu-button {
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
}

/* wide-curtain-cover-20260808 */
@media (min-width: 961px) {
  .site-header + main#main > .hero {
    position: sticky !important;
    top: var(--header-height) !important;
    z-index: 0 !important;
  }

  .site-header + main#main > :not(.hero) {
    position: relative;
    z-index: 2;
  }

  .site-header + main#main > .partner-rail {
    background: #ffffff;
    box-shadow: 0 -18px 36px rgba(0, 0, 0, 0.14);
  }

  .site-header + main#main > .hero .hero__content.reveal,
  .site-header + main#main > .hero .hero__content.reveal.is-visible {
    opacity: var(--hero-copy-opacity) !important;
  }
}

/* events-fullbleed-hover-20260808 */
#events.orbit-section.section-shell {
  width: 100% !important;
  max-width: none !important;
  padding: 104px 0 0 !important;
}

#events > .section-heading {
  width: var(--page);
  margin: 0 auto 36px;
}

#events .event-orbit {
  position: relative;
  display: block;
  width: 100%;
  min-height: 0;
  overflow: hidden;
}

#events .event-card {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1672 / 941;
  border: 0;
  background: #000000;
  box-shadow: none;
}

#events .event-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  transition: transform 900ms var(--ease);
}

#events .event-card__shade {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.16), transparent 52%, rgba(0, 0, 0, 0.08));
}

#events .event-hover-hint {
  position: absolute;
  right: 28px;
  bottom: 24px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
  transition: opacity 220ms ease, transform 220ms ease;
}

#events .event-hover-hint::after {
  color: var(--cyan);
  content: "←";
}

#events .event-console {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 5;
  display: flex;
  width: min(39vw, 480px);
  min-width: 340px;
  padding: clamp(32px, 4vw, 58px);
  align-items: stretch;
  justify-content: space-between;
  gap: 26px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.97) 18%, #000000);
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(100%, 0, 0);
  transition: opacity 340ms ease, transform 520ms var(--ease);
}

#events .event-console::before,
#events .event-console::after {
  display: none;
}

#events .event-orbit:hover .event-console,
#events .event-orbit:focus-within .event-console {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

#events .event-orbit:hover .event-card > img,
#events .event-orbit:focus-within .event-card > img {
  transform: scale(1.025);
}

#events .event-orbit:hover .event-hover-hint,
#events .event-orbit:focus-within .event-hover-hint {
  opacity: 0;
  transform: translateX(14px);
}

#events .date-dial {
  display: flex;
  width: 100%;
  aspect-ratio: auto;
  align-items: baseline;
  justify-content: space-between;
  align-self: stretch;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}

#events .date-dial strong {
  color: #ffffff;
  font-size: clamp(38px, 4vw, 58px);
}

#events .date-dial span {
  color: var(--cyan);
}

#events .event-card__copy {
  position: static;
  padding: 0;
  color: #ffffff;
  background: transparent;
  backdrop-filter: none;
}

#events .event-card__copy > p:first-child {
  color: var(--cyan);
}

#events .event-card__copy h3 {
  color: #ffffff;
  font-size: clamp(34px, 3.2vw, 52px);
}

#events .event-card__copy > p:last-child {
  color: rgba(230, 238, 242, 0.76);
}

#events .event-console__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

#events .event-console__meta strong {
  color: #ffffff;
}

#events .event-console .text-action {
  min-height: 50px;
  border: 0;
  color: #000000;
  background: #ffffff;
}

#events .event-console .text-action:hover {
  color: #000000;
  background: var(--cyan);
}

@media (max-width: 960px) {
  #events.orbit-section.section-shell {
    padding-top: 82px !important;
  }

  #events > .section-heading {
    width: calc(100% - 32px);
    margin-bottom: 28px;
  }

  #events .event-card {
    height: auto;
  }

  #events .event-card > img {
    object-position: center;
  }

  #events .event-hover-hint {
    display: none;
  }

  #events .event-console {
    position: relative;
    inset: auto;
    display: flex;
    width: 100%;
    min-width: 0;
    padding: 28px 20px 32px;
    gap: 20px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  #events .event-card__copy h3 {
    font-size: clamp(30px, 8vw, 46px);
  }

  #events .date-dial {
    grid-row: auto;
  }

  #events .event-console .text-action {
    grid-column: auto;
  }
}

/* mission-light-matrix-20260808 */
#about.mission {
  padding: 104px 0 0;
  border-top: 0;
  border-bottom: 0;
  background-color: #ffffff;
  background-image: none;
}

#about > .section-shell {
  width: 100%;
}

#about .section-heading {
  width: var(--page);
  margin: 0 auto 36px;
}

#about .mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  margin: 0;
  border-top: 1px solid #d8dddf;
  background: #f5f6f6;
}

#about .mission-grid article {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  padding: 32px clamp(30px, 4vw, 64px) 38px;
  border: 0;
  color: #080808;
  background: rgba(255, 255, 255, 0.78);
  transform: none;
  transition: background-color 320ms ease;
}

#about .mission-grid article:nth-child(odd) {
  border-right: 1px solid #d8dddf;
}

#about .mission-grid article:nth-child(-n + 2) {
  border-bottom: 1px solid #d8dddf;
}

#about .mission-grid article::before {
  position: absolute;
  inset: -20%;
  z-index: 0;
  content: "";
  background:
    radial-gradient(circle at 72% 34%, rgba(15, 157, 170, 0.24), transparent 19%),
    repeating-linear-gradient(104deg, transparent 0 8%, rgba(15, 157, 170, 0.08) 9% 11%, transparent 12% 18%),
    linear-gradient(135deg, #ffffff, #dff9fb);
  filter: blur(12px);
  opacity: 0;
  transform: scale(0.94) rotate(-3deg);
  transition: opacity 420ms ease, transform 650ms var(--ease);
}

#about .mission-grid article:nth-child(2)::before {
  background:
    radial-gradient(circle at 28% 72%, rgba(15, 157, 170, 0.22), transparent 20%),
    repeating-linear-gradient(76deg, transparent 0 9%, rgba(15, 157, 170, 0.08) 10% 12%, transparent 13% 19%),
    linear-gradient(135deg, #ffffff, #dff9fb);
}

#about .mission-grid article:nth-child(3)::before {
  background:
    repeating-radial-gradient(ellipse at 76% 80%, transparent 0 12%, rgba(15, 157, 170, 0.09) 13% 14%, transparent 15% 21%),
    linear-gradient(135deg, #ffffff, #dff9fb);
}

#about .mission-grid article:nth-child(4)::before {
  background:
    radial-gradient(circle at 42% 30%, rgba(15, 157, 170, 0.22), transparent 18%),
    repeating-linear-gradient(118deg, transparent 0 8%, rgba(15, 157, 170, 0.08) 9% 11%, transparent 12% 18%),
    linear-gradient(135deg, #ffffff, #dff9fb);
}

#about .mission-grid article::after {
  position: absolute;
  top: 32px;
  right: clamp(30px, 4vw, 64px);
  z-index: 2;
  color: #0f9daa;
  content: "↗";
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 220ms ease, transform 300ms ease;
}

#about .mission-grid article > span,
#about .mission-grid article > h3,
#about .mission-grid article > p {
  position: relative;
  z-index: 1;
}

#about .mission-grid article > span {
  margin-bottom: 64px;
  color: #697176;
}

#about .mission-grid article > h3 {
  transition: color 220ms ease;
}

#about .mission-grid article > p {
  max-width: 42ch;
  color: #697176;
}

#about .mission-grid article:hover {
  background: rgba(255, 255, 255, 0.92);
  transform: none;
}

#about .mission-grid article:hover::before {
  opacity: 1;
  transform: scale(1.06) rotate(0deg);
}

#about .mission-grid article:hover::after {
  opacity: 1;
  transform: translateX(0);
}

#about .mission-grid article:hover > h3 {
  color: #0f9daa;
}

@media (max-width: 760px) {
  #about.mission {
    padding-top: 82px;
  }

  #about .section-heading {
    width: calc(100% - 32px);
    margin-bottom: 28px;
  }

  #about .mission-grid {
    grid-template-columns: 1fr;
  }

  #about .mission-grid article,
  #about .mission-grid article:first-child,
  #about .mission-grid article:nth-child(2),
  #about .mission-grid article:nth-child(odd) {
    min-height: 0;
    padding: 24px 20px 30px;
    border-right: 0;
    border-bottom: 1px solid #d8dddf;
  }

  #about .mission-grid article > span {
    margin-bottom: 22px;
  }

  #about .mission-grid article::after {
    top: 24px;
    right: 20px;
    opacity: 1;
    transform: none;
  }

  #about .mission-grid article::before {
    opacity: 0.48;
  }
}

/* section-inset-balance-20260808 */
@media (min-width: 761px) {
  #events.orbit-section.section-shell {
    width: var(--page) !important;
    margin-inline: auto;
  }

  #events > .section-heading {
    width: 100%;
  }

  #about > .section-shell {
    width: var(--page);
  }

  #about .section-heading {
    width: 100%;
  }
}

@media (max-width: 760px) {
  #events.orbit-section.section-shell,
  #about > .section-shell {
    width: calc(100% - 32px) !important;
    margin-inline: auto;
  }

  #events > .section-heading,
  #about .section-heading {
    width: 100%;
  }
}

/* mission-editorial-list-20260808 */
#about .mission-grid {
  display: block;
  border-top: 1px solid #d8dddf;
  background: #ffffff;
}

#about .mission-grid article,
#about .mission-grid article:first-child,
#about .mission-grid article:nth-child(2),
#about .mission-grid article:nth-child(odd),
#about .mission-grid article:nth-child(-n + 2) {
  display: grid;
  grid-template-columns: 70px minmax(190px, 0.56fr) minmax(0, 1fr) 34px;
  min-height: 138px;
  padding: 28px 34px;
  align-items: center;
  column-gap: 28px;
  border: 0;
  border-bottom: 1px solid #d8dddf;
  background: #ffffff;
}

#about .mission-grid article::before {
  inset: 0;
  filter: none;
  background:
    radial-gradient(circle at 82% 50%, rgba(15, 157, 170, 0.16), transparent 23%),
    linear-gradient(90deg, transparent 34%, rgba(223, 249, 251, 0.72));
  transform: translateX(4%);
}

#about .mission-grid article::after {
  position: relative;
  top: auto;
  right: auto;
  grid-column: 4;
  grid-row: 1;
  justify-self: end;
}

#about .mission-grid article > span {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
}

#about .mission-grid article > h3 {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
}

#about .mission-grid article > p {
  grid-column: 3;
  grid-row: 1;
  max-width: none;
  margin: 0;
}

#about .mission-grid article:hover::before {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 760px) {
  #about .mission-grid article,
  #about .mission-grid article:first-child,
  #about .mission-grid article:nth-child(2),
  #about .mission-grid article:nth-child(odd),
  #about .mission-grid article:nth-child(-n + 2) {
    grid-template-columns: 42px minmax(0, 1fr) 24px;
    min-height: 0;
    padding: 22px 4px 24px;
    column-gap: 10px;
  }

  #about .mission-grid article > span {
    grid-column: 1;
    grid-row: 1;
  }

  #about .mission-grid article > h3 {
    grid-column: 2;
    grid-row: 1;
  }

  #about .mission-grid article > p {
    grid-column: 2 / 4;
    grid-row: 2;
    margin-top: 12px;
  }

  #about .mission-grid article::after {
    grid-column: 3;
    grid-row: 1;
  }
}

/* mission-shared-aurora-background-20260808 */
#about .mission-grid article::before,
#about .mission-grid article:nth-child(2)::before,
#about .mission-grid article:nth-child(3)::before,
#about .mission-grid article:nth-child(4)::before {
  background:
    radial-gradient(circle at 82% 50%, rgba(15, 157, 170, 0.16), transparent 23%),
    linear-gradient(90deg, transparent 34%, rgba(223, 249, 251, 0.72));
}

/* gallery-natural-flow-20260808 */
.gallery {
  --gallery-darkness: 0;
  --gallery-ink-rgb: 17 17 17;
  position: relative;
  isolation: isolate;
  color: rgb(var(--gallery-ink-rgb));
  background: #ffffff;
}

.gallery::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: #000000;
  opacity: var(--gallery-darkness);
  pointer-events: none;
}

.gallery > * {
  position: relative;
  z-index: 1;
}

.gallery-heading-shell {
  background: transparent;
}

.gallery-flow {
  display: grid;
  gap: clamp(92px, 12vw, 180px);
  width: min(1220px, calc(100% - 64px));
  margin-inline: auto;
}

.gallery-flow__item {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #050505;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.gallery-flow__item img {
  display: block;
  width: 100%;
  height: auto;
}

.gallery-flow__item figcaption {
  position: absolute;
  right: 30px;
  bottom: 26px;
  z-index: 2;
  display: grid;
  gap: 8px;
  max-width: calc(100% - 60px);
  color: #ffffff;
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.06em;
  text-align: right;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.86), 0 12px 32px rgba(0, 0, 0, 0.72);
  will-change: opacity, transform;
}

.gallery-flow__item figcaption span {
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

@media (max-width: 760px) {
  .gallery {
    padding-block: 82px 110px;
  }

  .gallery-flow {
    gap: 15svh;
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .gallery-flow__item {
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.3);
  }

  .gallery-flow__item figcaption {
    right: 16px;
    bottom: 14px;
    max-width: calc(100% - 32px);
    font-size: clamp(15px, 4.8vw, 20px);
  }
}

/* gallery-global-curtain-20260808 */
.gallery-global-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: #000000;
  opacity: var(--gallery-darkness, 0);
  pointer-events: none;
  will-change: opacity;
}

.gallery {
  isolation: auto;
  z-index: 31;
  background: transparent;
}

main#main > .gallery {
  z-index: 31 !important;
  background: transparent;
}

.gallery::before {
  display: none;
}

.gallery-heading-shell,
.gallery-flow {
  z-index: 35;
}

.gallery-flow {
  display: block;
}

.gallery-flow__item {
  z-index: 1;
}

.gallery-flow__item:nth-child(2) { z-index: 2; }
.gallery-flow__item:nth-child(3) { z-index: 3; }
.gallery-flow__item:nth-child(4) { z-index: 4; }
.gallery-flow__item:nth-child(5) { z-index: 5; }
.gallery-flow__item:nth-child(6) { z-index: 6; }

.gallery-flow__item + .gallery-flow__item {
  margin-top: calc(-1 * clamp(72px, 9vw, 132px));
  box-shadow: 0 -32px 68px rgba(0, 0, 0, 0.42), 0 32px 78px rgba(0, 0, 0, 0.28);
}

.gallery-flow__item:not(:last-child) figcaption {
  bottom: calc(26px + clamp(72px, 9vw, 132px));
}

@media (max-width: 760px) {
  .gallery-flow {
    display: block;
  }

  .gallery-flow__item + .gallery-flow__item {
    margin-top: calc(-1 * clamp(58px, 18vw, 78px));
    box-shadow: 0 -22px 48px rgba(0, 0, 0, 0.48), 0 24px 54px rgba(0, 0, 0, 0.3);
  }

  .gallery-flow__item:not(:last-child) figcaption {
    bottom: calc(14px + clamp(58px, 18vw, 78px));
  }
}

/* gallery-template-curtain-20260808 */
main#main > .gallery {
  overflow: visible;
  padding-bottom: 0;
  background: #ffffff;
  transform: none !important;
  will-change: auto;
}

.gallery-flow {
  display: block;
  width: 100%;
  margin: 0;
}

.gallery-curtain-stack {
  position: relative;
  width: 100%;
  height: 300svh;
  z-index: 10;
}

.gallery-curtain-stack:nth-child(2) { z-index: 11; }
.gallery-curtain-stack:nth-child(3) { z-index: 12; }

.gallery-curtain-stack + .gallery-curtain-stack {
  margin-top: -100svh;
}

.gallery-curtain-stack .gallery-flow__item {
  width: 100%;
  height: 100svh;
  margin: 0;
  overflow: hidden;
  background: #000000;
}

.gallery-curtain-stack .gallery-flow__item::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: #ffffff;
  opacity: calc(1 - var(--gallery-darkness));
  filter: none;
  transform: none;
}

.gallery-flow__item--fixed {
  position: sticky;
  top: 0;
  z-index: 0;
}

.gallery-curtain-stack .gallery-flow__item--sliding {
  position: relative;
  z-index: 10;
  margin-top: 0;
  box-shadow: 0 -30px 60px rgba(0, 0, 0, 0.72), 0 30px 60px rgba(0, 0, 0, 0.72);
}

.gallery-curtain-stack .gallery-flow__item img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.gallery-curtain-stack .gallery-flow__item figcaption,
.gallery-curtain-stack .gallery-flow__item:not(:last-child) figcaption {
  right: 30px;
  bottom: 30px;
  z-index: 2;
}

@media (max-width: 960px) {
  main#main > .gallery {
    top: var(--hero-page-shift);
    transform: none !important;
    will-change: top;
  }
}

@media (min-width: 961px) {
  main#main > .gallery {
    top: auto;
    transform: none !important;
    will-change: auto;
  }
}

@media (max-width: 760px) {
  .gallery-flow {
    width: 100%;
    margin-left: 0;
  }

  .gallery-curtain-stack .gallery-flow__item {
    background: rgb(var(--gallery-surface-rgb, 255 255 255));
  }

  .gallery-curtain-stack .gallery-flow__item::before {
    inset: -28px;
    background-color: transparent;
    background-image: var(--gallery-photo);
    background-position: center;
    background-size: cover;
    opacity: var(--gallery-darkness);
    filter: blur(24px) brightness(0.48) saturate(0.9);
    transform: scale(1.08);
  }

  .gallery-curtain-stack .gallery-flow__item figcaption,
  .gallery-curtain-stack .gallery-flow__item:not(:last-child) figcaption {
    right: calc(var(--gallery-photo-inset-right, 0px) + 16px);
    bottom: calc(var(--gallery-photo-inset-bottom, 0px) + 20px);
  }
}

@media (min-width: 961px) {
  .gallery-curtain-stack .gallery-flow__item figcaption,
  .gallery-curtain-stack .gallery-flow__item:not(:last-child) figcaption {
    right: calc(var(--gallery-photo-inset-right, 0px) + 30px);
    bottom: calc(var(--gallery-photo-inset-bottom, 0px) + 30px);
  }
}

/* future-poster-frame-20260808 */
.future {
  min-height: 0;
  display: block;
  padding: clamp(36px, 5vw, 72px) 0;
  overflow: hidden;
  border-top: 1px solid #d8d8d8;
  background: #ffffff;
}

.future__visual,
.future::after {
  display: none;
}

.future__content.section-shell {
  width: min(1280px, calc(100% - 80px));
  min-height: clamp(600px, 70svh, 760px);
  margin: 0 auto;
  padding: clamp(30px, 3.5vw, 52px);
  border: 1px solid #111111;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto minmax(260px, 1fr) auto;
  column-gap: 36px;
  color: #111111;
  background: #ffffff;
}

.future__content .section-label {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  margin: 0;
  line-height: 1.2;
}

.future__content > p.future__pin {
  position: static;
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  margin: 0;
  padding: 0;
  border: 0;
  color: #666666;
  background: transparent;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.future__content > h2 {
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: center;
  max-width: 1060px;
  margin: 0;
  color: #111111;
  font-size: clamp(72px, 8vw, 132px);
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.future__content > h2 + p {
  grid-column: 1;
  grid-row: 3;
  align-self: end;
  max-width: 610px;
  margin: 0;
  color: #555555;
  font-size: 17px;
  line-height: 1.8;
}

.future__content > .future__actions {
  grid-column: 2;
  grid-row: 3;
  align-self: end;
  justify-content: flex-end;
  margin: 0;
}

@media (max-width: 760px) {
  .future {
    min-height: 0;
    padding: 18px 0 32px;
    align-items: initial;
    scroll-margin-top: 68px;
  }

  .future__content.section-shell {
    width: calc(100% - 28px);
    min-height: 680px;
    padding: 22px 18px;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto minmax(220px, 1fr) auto auto;
    column-gap: 12px;
  }

  .future__content > h2 {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: clamp(48px, 14vw, 66px);
  }

  .future__content > h2 + p {
    grid-column: 1 / -1;
    grid-row: 3;
    max-width: none;
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
  }

  .future__content > .future__actions {
    grid-column: 1 / -1;
    grid-row: 4;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    margin-top: 24px;
  }

  .future__content > .future__actions .button {
    width: 100%;
  }

  .future__content > p.future__pin {
    font-size: 8px;
    line-height: 1.2;
  }
}

.gallery-curtain-stack,
.gallery-curtain-stack:nth-child(2),
.gallery-curtain-stack:nth-child(3) {
  z-index: auto;
}

.gallery-curtain-stack:nth-child(2) {
  margin-top: -200svh;
}

.gallery-curtain-stack:nth-child(3) {
  margin-top: -100svh;
}

.gallery-curtain-stack:nth-child(n + 2) .gallery-flow__item--sliding {
  margin-top: 100svh;
}

/* mobile-hero-smooth-v4 */
.gallery + .future {
  border-top: 0;
}

@media (max-width: 760px) {
  main#main {
    margin-bottom: 0 !important;
  }

  main > .hero {
    margin-bottom: 0 !important;
  }

  main > :not(.hero) {
    transform: none !important;
    will-change: auto;
  }

  main#main > .gallery {
    top: 0;
    will-change: auto;
  }

  .hero__content.reveal,
  .hero__content.reveal.is-visible {
    transform: translate3d(-50%, var(--hero-copy-y), 0) !important;
  }
}

/* gallery-progress-top-left-v5 */
.gallery-curtain-stack .gallery-flow__item::after {
  position: absolute;
  left: calc(var(--gallery-photo-inset-right, 0px) + 30px);
  top: calc(var(--gallery-photo-inset-bottom, 0px) + 30px);
  z-index: 2;
  content: attr(data-gallery-progress);
  color: #ffffff;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.86), 0 12px 32px rgba(0, 0, 0, 0.72);
  pointer-events: none;
}

/* cms-event-switcher-20260809 */
.event-tab--all {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding-inline: 14px;
  border-left: 1px solid rgba(17, 17, 17, 0.18);
  color: #111;
  text-decoration: none;
  white-space: nowrap;
}

.past-event-index {
  position: absolute;
  z-index: 8;
  top: 50%;
  right: 18px;
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  transform: translateY(-50%);
}

.event-orbit.is-viewing-past .past-event-index {
  display: flex;
}

.past-event-index__bar {
  width: 5px;
  height: 20px;
  padding: 0;
  border: 0;
  border-radius: 1px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: width 180ms ease, height 180ms ease, background-color 180ms ease;
}

.past-event-index__bar:hover,
.past-event-index__bar:focus-visible {
  width: 12px;
  background: rgba(255, 255, 255, 0.78);
}

.past-event-index__bar.is-active {
  width: 12px;
  height: 30px;
  background: #fff;
}

@media (max-width: 760px) {
  .event-tabs {
    flex-wrap: wrap;
  }

  .event-tab--all {
    margin-left: 3px;
    padding-inline: 10px;
  }

  .past-event-index {
    right: 10px;
    gap: 5px;
  }

  .past-event-index__bar {
    width: 4px;
    height: 13px;
  }

  .past-event-index__bar.is-active {
    width: 8px;
    height: 20px;
  }
}

@media (max-width: 960px) {
  .gallery-curtain-stack .gallery-flow__item::after {
    left: calc(var(--gallery-photo-inset-right, 0px) + 16px);
    top: calc(var(--gallery-photo-inset-bottom, 0px) + 20px);
    font-size: 14px;
  }
}

/* mobile-hero-compact-v6 */
@media (max-width: 760px) {
  main > .hero {
    position: relative !important;
    top: auto !important;
    height: min(420px, 112.5vw) !important;
    min-height: 0 !important;
    margin-bottom: 0 !important;
  }
}

/* mobile-hero-type-v7 */
@media (max-width: 760px) {
  .hero__content .kicker {
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 48px);
  }

  .hero__lead {
    font-size: 13px;
  }

  .hero__actions .button {
    font-size: 12px;
  }
}

/* mobile-hero-buttons-v8 */
@media (max-width: 760px) {
  .hero__actions {
    width: min(78vw, 300px) !important;
    gap: 8px;
    margin-top: 16px;
  }

  .hero__actions .button {
    min-height: 40px;
    padding-inline: 10px;
    font-size: 11px;
  }
}

/* mobile-menu-v9 */
@media (max-width: 760px) {
  .site-header .menu-button {
    min-width: 54px;
    min-height: 38px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 4px;
    color: #ffffff;
    background: #000000;
    font-size: 14px;
    letter-spacing: 0.08em;
  }

  .site-header .menu-button:hover,
  .site-header .menu-button[aria-expanded="true"] {
    border-color: #ffffff;
    color: #000000;
    background: #ffffff;
  }

  .site-header .site-nav {
    top: var(--header-height);
    padding: 6px 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    color: #ffffff;
    background: #000000;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.36);
  }

  .site-header .site-nav a {
    border-bottom-color: rgba(255, 255, 255, 0.16);
    border-radius: 0;
    color: #ffffff;
    background: transparent;
  }

  .site-header .site-nav a:hover,
  .site-header .site-nav a.is-active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
  }
}

/* mobile-menu-v10 */
@media (max-width: 760px) {
  .site-header .menu-button,
  .site-header .menu-button:hover,
  .site-header .menu-button[aria-expanded="true"] {
    border-color: #ffffff;
    color: #ffffff;
    background: #000000;
  }

  .site-header .site-nav {
    align-items: stretch;
  }

  .site-header .site-nav a {
    display: flex;
    box-sizing: border-box;
    width: 100%;
    padding: 15px 14px;
    align-items: center;
    justify-content: flex-start;
  }

  .site-header .site-nav a:hover,
  .site-header .site-nav a.is-active {
    width: 100%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
  }
}

/* partners-color-v11 */
.partner-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.partner-card img,
.partner-card:hover img,
.partner-card--songguo img,
.partner-card--songguo:hover img,
.partner-card--heu img,
.partner-card--heu:hover img {
  filter: none !important;
  opacity: 1 !important;
}

.partner-card--waytoagi img,
.partner-card--waytoagi:hover img {
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: multiply;
}

@media (max-width: 960px) {
  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-card:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .partner-card:nth-child(even) {
    border-right: 0;
  }
}

/* partners-black-v12 */
.partner-card--songguo img,
.partner-card--songguo:hover img,
.partner-card--heu img,
.partner-card--heu:hover img {
  filter: brightness(0) !important;
  opacity: 1 !important;
}
