:root {
  --bg: #050308;
  --bg-elev: #16080e;
  --bg-card: rgba(24, 8, 16, 0.72);
  --wine: #6a1a32;
  --wine-hot: #ff6a22;
  --gold: #d4af77;
  --gold-2: #f0d7a8;
  --gold-3: #a67c42;
  --gold-line: rgba(212, 175, 119, 0.28);
  --cream: #f4ead8;
  --muted: #b9a38c;
  --text: #f3eadc;
  --black: #0a0610;
  --neon-blue: #3d6bff;
  --neon-red: #c310dd;
  --neon-orange: #ff6a22;
  --neon-magenta: #c44dff;
  --header-h: 84px;
  --container: 1220px;
  --pad: clamp(20px, 4.4vw, 72px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Arsenal", "Arial", sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-ui: "Outfit", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

html, body { margin: 0; padding: 0; }

html { color-scheme: dark; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.55;
  min-height: 100%;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
}
.skip:focus {
  left: 8px;
  z-index: 100;
  background: var(--gold);
  color: var(--black);
  padding: 8px 14px;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.container {
  width: min(100% - var(--pad) * 2, var(--container));
  margin-inline: auto;
}

.gold-text {
  background: linear-gradient(180deg, #f8edd4 0%, #e0c08a 42%, #b8894a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gold-rule {
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-2), transparent);
  border: 0;
  margin: 18px 0;
  transform-origin: left;
}

.kicker {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}

.section {
  position: relative;
  padding: clamp(72px, 10vw, 140px) 0;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 58px);
  letter-spacing: 0.08em;
  line-height: 1.12;
  margin: 10px 0 0;
  text-transform: uppercase;
}

.lead {
  max-width: 720px;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  color: var(--cream);
  margin: 28px 0 0;
}

.muted { color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 0;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s, color .35s, border-color .35s;
  white-space: nowrap;
}

.btn--gold {
  background: linear-gradient(180deg, #f3dfb4 0%, #d4af77 48%, #b88945 100%);
  color: #2a1608;
  box-shadow: 0 12px 40px rgba(184, 137, 69, 0.22);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(184, 137, 69, 0.34);
}

.btn--ghost {
  border: 1px solid var(--gold-line);
  color: var(--gold-2);
  background: transparent;
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--cream);
  background: rgba(212, 175, 119, 0.06);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .4s var(--ease), border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(5, 3, 8, 0.78);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--gold-line);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(100% - 32px, 1360px);
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-shrink: 0;
}

.logo img {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.logo-type {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-type span:first-child {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--gold-2);
}

.logo-type span:last-child {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--muted);
  margin-top: 3px;
}

::selection {
  background: rgba(212, 175, 119, 0.28);
  color: var(--cream);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.nav a {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(243, 234, 220, 0.78);
  transition: color .25s;
  position: relative;
}

.nav a:hover,
.nav a.is-active { color: var(--gold-2); }

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}

.nav a:hover::after,
.nav a.is-active::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.burger,
.header-actions .btn {
  flex-shrink: 0;
}

.lang {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.16em;
}

.lang button {
  color: var(--muted);
  padding: 0;
}

.lang button.is-active { color: var(--gold-2); }

.lang-sep { color: rgba(212, 175, 119, 0.35); }

.header-actions .btn { min-height: 42px; padding: 0 16px; font-size: 11px; }

.burger {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--gold-line);
}

.burger span,
.burger span::before,
.burger span::after {
  display: block;
  width: 16px;
  height: 1px;
  background: var(--gold-2);
  position: relative;
  transition: .3s;
}

.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
}

.burger span::before { top: -6px; }
.burger span::after { top: 6px; }

body.menu-open .burger span { background: transparent; }
body.menu-open .burger span::before { top: 0; transform: rotate(45deg); }
body.menu-open .burger span::after { top: 0; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(5, 3, 8, 0.96);
  display: block;
  padding: 110px var(--pad) 40px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .4s var(--ease), visibility .4s;
}

body.menu-open { overflow: hidden; }
body.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .45s var(--ease), transform .45s var(--ease), color .25s;
}

body.menu-open .mobile-menu a {
  opacity: 1;
  transform: none;
}

body.menu-open .mobile-menu a:nth-child(1) { transition-delay: .04s; }
body.menu-open .mobile-menu a:nth-child(2) { transition-delay: .08s; }
body.menu-open .mobile-menu a:nth-child(3) { transition-delay: .12s; }
body.menu-open .mobile-menu a:nth-child(4) { transition-delay: .16s; }
body.menu-open .mobile-menu a:nth-child(5) { transition-delay: .2s; }
body.menu-open .mobile-menu a:nth-child(6) { transition-delay: .24s; }
body.menu-open .mobile-menu a:nth-child(7) { transition-delay: .28s; }

.mobile-menu .btn { margin-top: 28px; width: 100%; }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 24px) 0 56px;
  overflow: hidden;
  background: #000;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #000;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.55) 22%, rgba(0, 0, 0, 0.12) 40%, transparent 58%);
  pointer-events: none;
  z-index: 1;
}

.hero-bg picture { display: contents; }

.hero-bg img.hero-art {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: right center;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: end;
  min-height: calc(100svh - var(--header-h) - 90px);
}

.hero-copy { max-width: 640px; padding-bottom: 12px; position: relative; z-index: 3; }

.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(42px, 6.4vw, 86px);
  line-height: 0.92;
  letter-spacing: 0.06em;
  margin: 0;
  text-transform: uppercase;
}

.hero h1 span { display: block; }

.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.6vw, 22px);
  font-style: italic;
  color: var(--muted);
  margin: 18px 0 0;
}

.hero-slogan {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.3vw, 16px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin: 22px 0 0;
  max-width: 520px;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
  max-width: 640px;
}

.meta-item {
  border-top: 1px solid var(--gold-line);
  padding-top: 14px;
}

.meta-item small {
  display: block;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.meta-item b {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 18px;
  color: var(--cream);
}

.hero-trophy-space { min-height: 40vh; }

/* About */
.about {
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  grid-template-areas:
    "copy stats"
    "body stats";
  gap: 12px clamp(40px, 7vw, 96px);
  align-items: center;
}

.about-copy { grid-area: copy; }
.about-body { grid-area: body; }
.about-stats { grid-area: stats; }

.about-manifest {
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(22px, 4.2vw, 56px);
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: none;
  color: var(--cream);
  margin: 16px 0 0;
  white-space: nowrap;
}

.about-lead {
  max-width: 540px;
  margin: 8px 0 0;
  font-size: 20px;
  line-height: 1.5;
  color: var(--muted);
}

.goals-kicker {
  margin: 36px 0 14px;
}

.goals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-top: 0;
  max-width: 560px;
}

.goals li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 8px;
  align-items: start;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: var(--muted);
}

.goals em {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gold);
  padding-top: 1px;
}

.about-stats {
  --stat-num: clamp(88px, 11vw, 152px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 18px;
}

.about-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-stat b {
  display: block;
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: var(--stat-num);
  line-height: 0.8;
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  background: linear-gradient(165deg, #f8edd4 0%, #ff6a22 26%, #c310dd 52%, #c44dff 78%, #3d6bff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.about-stat:last-child b {
  background: linear-gradient(200deg, #3d6bff 0%, #c44dff 30%, #c310dd 58%, #ff6a22 82%, #f8edd4 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.about-stat::before {
  content: "";
  position: absolute;
  top: calc(var(--stat-num) * 0.4);
  left: 50%;
  width: calc(var(--stat-num) * 0.92);
  height: calc(var(--stat-num) * 0.92);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(195, 16, 221, 0.32), rgba(195, 16, 221, 0.08) 55%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.about-stat span {
  display: block;
  margin-top: 10px;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.28em;
  margin-right: -0.28em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}

.about-stats-rule {
  display: block;
  width: 1px;
  height: calc(var(--stat-num) * 0.8);
  margin-top: 0;
  background: var(--gold-line);
  align-self: start;
}

/* Nominations */
.noms {
  background:
    radial-gradient(70% 70% at 50% 45%, rgba(195, 16, 221, 0.22), transparent 62%),
    linear-gradient(180deg, #050308 0%, #160610 50%, #050308 100%);
}

.noms-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 48px;
}

.noms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.nom-col {
  border: 1px solid var(--gold-line);
  padding: clamp(28px, 3vw, 42px);
  background: rgba(24, 8, 16, 0.55);
}

.nom-col h3 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0 0 28px;
  color: var(--gold-2);
}

.nom-col ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
}

.nom-col li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid rgba(212, 175, 119, 0.12);
  font-size: 20px;
}

.nom-col li:first-child { border-top: 0; padding-top: 0; }

.nom-col li em {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--gold);
  padding-top: 6px;
}

/* History */
.history {
  overflow: hidden;
}

.history-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 48px);
}

.merge {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
  max-width: 920px;
}

.legacy-card {
  border: 1px solid var(--gold-line);
  min-height: 280px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  text-align: center;
  transition: border-color .3s, transform .35s var(--ease);
}

.legacy-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.legacy-card b {
  font-family: var(--font-display);
  font-size: 34px;
  letter-spacing: 0.18em;
  font-weight: 400;
}

.legacy-card p {
  font-size: 16px;
  color: var(--muted);
  margin: 16px 0 24px;
}

/* Partners */
.partners-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 22px;
  margin-top: 48px;
}

.org-card {
  border: 1px solid var(--gold-line);
  padding: 36px 32px;
  min-height: 220px;
  background: rgba(24, 8, 16, 0.5);
}

.org-card small {
  font-family: var(--font-ui);
  letter-spacing: 0.24em;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--gold);
}

.org-card h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  margin: 18px 0 0;
  line-height: 1.25;
}

.partner-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.partner-slot {
  border: 1px solid rgba(212, 175, 119, 0.16);
  min-height: 104px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(212, 175, 119, 0.04), transparent);
}

.partner-slot::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.45;
}

/* Contacts */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 22px;
  margin-top: 0;
}

.contact-list a,
.contact-list span {
  display: block;
}

.contact-list small {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-list b {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-line);
  color: var(--gold-2);
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.socials a:hover { border-color: var(--gold); }

/* Footer */
.site-footer {
  border-top: 1px solid var(--gold-line);
  padding: 48px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr auto;
  gap: 32px;
  align-items: start;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.footer-nav a {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.footer-nav a:hover { color: var(--gold-2); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(212, 175, 119, 0.12);
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* Inner pages */
.page-hero {
  padding: calc(var(--header-h) + 64px) 0 48px;
  border-bottom: 1px solid var(--gold-line);
  background:
    radial-gradient(70% 80% at 90% 0%, rgba(195, 16, 221, 0.22), transparent 55%),
    radial-gradient(50% 60% at 10% 100%, rgba(255, 106, 34, 0.12), transparent 50%),
    #050308;
}

.doc {
  max-width: 860px;
  margin: 48px auto 80px;
  padding: 0 var(--pad);
}

.doc h2 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--gold-2);
  margin: 42px 0 14px;
}

.doc p, .doc li {
  color: var(--cream);
  font-size: 20px;
}

.doc ol, .doc ul { padding-left: 22px; }
.doc li { margin: 8px 0; }
.doc ul { list-style: disc; }

.press-card a { color: var(--gold-2); }

.press-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--gold-2);
  margin: 32px 0 12px;
}

.press-card h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.25;
  margin: 0 0 24px;
}

.press-meta {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

/* Reveal */
.js-anim .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
  transition-delay: var(--d, 0s);
}

.js-anim .reveal.is-in {
  opacity: 1;
  transform: none;
}

.js-anim .reveal-d1 { --d: .12s; }
.js-anim .reveal-d2 { --d: .24s; }
.js-anim .reveal-d3 { --d: .36s; }

.js-anim .gold-rule {
  transform: scaleX(0);
  transition: transform .8s var(--ease);
}

.js-anim .gold-rule.is-in,
.js-anim .is-in .gold-rule {
  transform: scaleX(1);
}

.js-anim .noms-grid .nom-col:nth-child(2),
.js-anim .merge .legacy-card:nth-child(2),
.js-anim .partners-grid .org-card:nth-child(2) {
  --d: .14s;
}

.js-anim .goals li,
.js-anim .nom-col li {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}

.js-anim .is-in .goals li,
.js-anim .nom-col.is-in li {
  opacity: 1;
  transform: none;
}

.js-anim .is-in .goals li:nth-child(1),
.js-anim .nom-col.is-in li:nth-child(1) { transition-delay: .05s; }
.js-anim .is-in .goals li:nth-child(2),
.js-anim .nom-col.is-in li:nth-child(2) { transition-delay: .1s; }
.js-anim .is-in .goals li:nth-child(3),
.js-anim .nom-col.is-in li:nth-child(3) { transition-delay: .15s; }
.js-anim .is-in .goals li:nth-child(4),
.js-anim .nom-col.is-in li:nth-child(4) { transition-delay: .2s; }
.js-anim .is-in .goals li:nth-child(5),
.js-anim .nom-col.is-in li:nth-child(5) { transition-delay: .25s; }
.js-anim .is-in .goals li:nth-child(6),
.js-anim .nom-col.is-in li:nth-child(6) { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .gold-rule,
  .goals li,
  .nom-col li {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* Responsive */
@media (max-width: 1240px) {
  .nav { display: none; }
  .burger { display: grid; }
  .logo-type { display: none; }
  .header-inner {
    width: 100%;
    margin-inline: 0;
    padding: 0 0 0 16px;
    gap: 12px;
    grid-template-columns: 1fr auto;
  }
  .header-actions {
    gap: 10px;
    margin-left: auto;
    justify-self: end;
  }
  .burger { border-right: 0; }
  .hero-inner { grid-template-columns: 1fr; min-height: calc(100svh - var(--header-h) - 48px); }
  .hero-trophy-space { display: none; }
  .hero-bg img.hero-art {
    inset: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: auto;
    height: 100%;
    max-width: none;
    opacity: 1;
    transform: none;
  }
  .noms-grid,
  .partners-grid,
  .contact-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "stats"
      "body";
    gap: 28px;
  }
  .about-stats {
    min-height: 0;
    max-width: 420px;
  }
  .meta-grid { grid-template-columns: 1fr 1fr; }
  .noms-head { flex-direction: column; align-items: start; }
  .partner-slots { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  :root { --header-h: 64px; }

  body { font-size: 17px; }
  .grain { opacity: 0.035; }

  .header-inner {
    gap: 10px;
    width: 100%;
    padding: 0 0 0 12px;
    grid-template-columns: 1fr auto;
  }
  .logo img { height: 42px; }
  .header-actions { gap: 6px; }
  .header-actions .btn { display: none; }
  .burger {
    width: 44px;
    height: 44px;
    border: 0;
  }

  .mobile-menu { padding: 88px 20px 32px; }
  .mobile-menu a { font-size: 22px; letter-spacing: 0.06em; }

  .hero {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: var(--header-h) 0 40px;
  }
  .hero-bg {
    position: relative;
    height: min(54svh, 400px);
    min-height: 240px;
  }
  .hero-bg img.hero-art {
    inset: auto;
    top: 0;
    right: auto;
    bottom: 0;
    left: 50%;
    height: 100%;
    width: auto;
    max-width: none;
    transform: translateX(-62%);
    opacity: 1;
    object-fit: contain;
    object-position: center center;
  }
  .hero-bg::after {
    background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.45) 72%, #000 100%);
  }
  .hero-inner {
    min-height: 0;
    display: block;
    margin-top: -8px;
    padding: 0;
  }
  .hero-copy { max-width: none; padding-bottom: 0; }
  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 0.16em;
    margin-bottom: 12px;
  }
  .hero h1 {
    font-size: clamp(34px, 10.2vw, 48px);
    letter-spacing: 0.03em;
    line-height: 0.96;
  }
  .hero-slogan {
    font-size: 13px;
    letter-spacing: 0.08em;
    line-height: 1.45;
    margin-top: 14px;
  }
  .gold-rule { margin: 14px 0; }
  .meta-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 26px;
    max-width: none;
  }
  .meta-item { padding: 13px 0; }
  .meta-item small { font-size: 9px; letter-spacing: 0.16em; }
  .meta-item b { font-size: 16px; }
  .btn-row {
    flex-direction: column;
    align-items: stretch;
    margin-top: 24px;
    gap: 10px;
  }
  .btn-row .btn { width: 100%; }

  .section { padding: 52px 0; }
  .section-title {
    font-size: clamp(26px, 8vw, 34px);
    letter-spacing: 0.05em;
  }
  .lead { font-size: 18px; margin-top: 16px; }
  .kicker { font-size: 10px; letter-spacing: 0.22em; }

  .about-grid { gap: 22px; }
  .about-manifest {
    white-space: normal;
    font-size: clamp(26px, 7.4vw, 34px);
    line-height: 1.15;
  }
  .about-stats {
    --stat-num: clamp(64px, 20vw, 84px);
    max-width: none;
    gap: 12px;
  }
  .about-lead { font-size: 16px; }
  .goals { grid-template-columns: 1fr; gap: 11px; }
  .goals-kicker { margin-top: 28px; }

  .noms-head { margin-bottom: 28px; gap: 18px; }
  .noms-head .btn { width: 100%; }
  .nom-col { padding: 22px 18px; }
  .nom-col h3 {
    font-size: 15px;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    line-height: 1.35;
  }
  .nom-col li {
    font-size: 16px;
    padding: 12px 0;
    grid-template-columns: 32px 1fr;
    gap: 8px;
  }

  .merge { grid-template-columns: 1fr; gap: 12px; }
  .legacy-card { min-height: 0; padding: 24px 20px; }
  .legacy-card b { font-size: 26px; letter-spacing: 0.12em; }
  .legacy-card p { font-size: 15px; }

  .org-card { min-height: 0; padding: 22px 18px; }
  .org-card h3 { font-size: 17px; letter-spacing: 0.06em; }
  .partners-soon { display: none; }

  .contact-list { gap: 16px; }
  .contact-list b { font-size: 20px; }
  .socials { margin-top: 22px; }

  .site-footer { padding: 32px 0 24px; }
  .footer-top { gap: 22px; }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }
  .footer-nav a { font-size: 13px; }
  .footer-bottom { margin-top: 24px; padding-top: 16px; font-size: 11px; }
}

html.qa .hero,
html.qa .hero-inner {
  min-height: 0 !important;
  height: auto !important;
}
html.qa .hero {
  padding-top: 120px;
}
html.qa .hero-art {
  height: 100% !important;
  width: auto !important;
  max-height: none;
}

@media print {
  .site-header, .site-footer, .btn-row, .grain, .burger, .mobile-menu { display: none !important; }
  body { background: #fff; color: #111; }
  .gold-text, .doc p, .doc li, .section-title, .about-manifest, .about-stat b { color: #111; -webkit-text-fill-color: #111; }
  .page-hero { padding-top: 0; border: 0; background: none; }
}
