/* ============================================================
   AUREUS — style.css
   Graphite · platinum · oxblood · holographic foil.
   The WebGL canvas sits behind everything; the DOM floats
   above it on hairlines and translucent panels.
   ============================================================ */

:root {
  --void:   #0B0A0C;
  --coal:   #141216;
  --carbon: #1B181D;
  --plat:   #E9E7E4;
  --silver: #98939C;
  --mute:   #5C5762;
  --ox:     #7E2F3E;
  --ox-hi:  #C0546A;
  --h-cyan:   #7FD4DE;
  --h-violet: #A98FE0;
  --h-amber:  #E4C08A;
  --line: rgba(233, 231, 228, .09);
  --font-d: 'Noto Serif SC', 'Source Han Serif SC', 'STSong', 'SimSun', 'Songti SC', 'Times New Roman', serif;
  --font-s: 'Noto Sans SC', 'Source Han Sans SC', 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', sans-serif;
  --font-m: 'Fira Code', 'SF Mono', 'Consolas', 'Courier New', monospace;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --shell: min(1560px, 92vw);
}

/* ---------------- reset / base ---------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { background: var(--void); overflow-x: hidden; scrollbar-width: thin; scrollbar-color: var(--carbon) var(--void); }
body {
  background: var(--void);
  color: var(--plat);
  font-family: var(--font-s);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; background: none; border: 0; }
button { cursor: pointer; }
ul { list-style: none; }
::selection { background: var(--ox); color: var(--plat); }
:focus-visible { outline: 1px dashed var(--silver); outline-offset: 3px; }
::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: var(--carbon); border: 2px solid var(--void); border-radius: 8px; }

@media (hover: hover) and (pointer: fine) {
  .fx, .fx * { cursor: none; }
}

/* ---------------- utilities ---------------- */
.mono { font-family: var(--font-m); font-weight: 400; letter-spacing: .08em; }
.xp { letter-spacing: .08em; }
.serif-it { font-family: var(--font-d); font-weight: 400; }
.holo {
  background: linear-gradient(100deg, var(--h-cyan), var(--h-violet) 45%, var(--h-amber) 80%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.shell { width: var(--shell); margin-inline: auto; }

/* split-text scaffolding */
.w { display: inline-block; overflow: hidden; vertical-align: bottom; }
.c { display: inline-block; }
#statement .w, #statement .w[data-unit] { overflow: visible; display: inline; }
.hero__title .w, .sect__title .w { padding-bottom: .1em; margin-bottom: -.1em; }
#footBrand .w { overflow: visible; }

/* ---------------- fixed layers ---------------- */
#gl { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; }
.no-gl #gl { display: none; }
.fallback-bg {
  position: fixed; inset: 0; z-index: 0; display: none;
  background:
    radial-gradient(60% 50% at 18% 12%, rgba(169, 143, 224, .13), transparent 70%),
    radial-gradient(50% 45% at 82% 72%, rgba(126, 47, 62, .14), transparent 70%),
    var(--void);
}
.no-gl .fallback-bg { display: block; }

.grain {
  position: fixed; inset: -40px; z-index: 260; pointer-events: none; opacity: .05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='140' height='140' filter='url(%23n)'/></svg>");
}

#sc { position: relative; z-index: 2; }
.has-smooth #sc { position: fixed; top: 0; left: 0; width: 100%; will-change: transform; }

/* ---------------- cursor ---------------- */
#cursor { position: fixed; inset: 0; z-index: 300; pointer-events: none; }
.cursor__dot {
  position: fixed; top: -3px; left: -3px; width: 6px; height: 6px; border-radius: 50%;
  background: var(--plat); mix-blend-mode: difference;
}
.cursor__ring {
  position: fixed; top: -19px; left: -19px; width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(233, 231, 228, .5);
  display: flex; align-items: center; justify-content: center;
  transition: width .35s var(--ease), height .35s var(--ease), top .35s var(--ease), left .35s var(--ease),
              border-color .35s, background .35s;
}
.cursor__label {
  font-family: var(--font-m); font-size: 8px; letter-spacing: .22em; color: var(--void);
  opacity: 0; transition: opacity .25s;
}
#cursor.is-hover .cursor__ring { width: 58px; height: 58px; top: -29px; left: -29px; border-color: rgba(233, 231, 228, .9); }
#cursor.has-label .cursor__ring { width: 74px; height: 74px; top: -37px; left: -37px; background: var(--plat); }
#cursor.has-label .cursor__label { opacity: 1; }
#cursor.is-down .cursor__ring { transform: scale(.82); }

/* ---------------- wipe ---------------- */
#wipe {
  position: fixed; inset: 0; z-index: 250; display: none;
  align-items: center; justify-content: center;
  background: var(--carbon);
}
#wipe span { font-size: 11px; letter-spacing: .6em; color: var(--silver); padding-left: .6em; }

/* ---------------- loader ---------------- */
#loader {
  position: fixed; inset: 0; z-index: 240;
  background: var(--void);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  clip-path: inset(0 0 0 0);
}
.loader__seal { width: 74px; height: 74px; margin-bottom: 34px; }
.loader__seal svg { width: 100%; height: 100%; animation: spin 9s linear infinite; }
.loader__brand {
  font-weight: 800; font-size: clamp(2.2rem, 5.4vw, 3.8rem);
  letter-spacing: .3em; padding-left: .3em;
}
.loader__status { margin-top: 22px; font-size: 10px; color: var(--silver); letter-spacing: .3em; min-height: 1em; }
.loader__foot {
  position: absolute; left: 4vw; right: 4vw; bottom: 4.5vh;
  display: flex; align-items: flex-end; gap: 32px;
}
.loader__pct { font-size: clamp(3.4rem, 7vw, 5.6rem); line-height: .8; min-width: 2.2ch; }
.loader__bar { flex: 1; height: 1px; background: var(--line); overflow: hidden; margin-bottom: .55em; }
#loadBar {
  display: block; width: 100%; height: 100%;
  transform: scaleX(0); transform-origin: left;
  background: linear-gradient(90deg, var(--h-cyan), var(--h-violet), var(--h-amber));
}
.loader__tag { font-size: 9px; color: var(--mute); letter-spacing: .2em; margin-bottom: .4em; text-align: right; }

/* ---------------- nav ---------------- */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 120;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 4vw;
  transition: background .5s, padding .5s var(--ease), border-color .5s;
  border-bottom: 1px solid transparent;
}
#nav.is-scrolled {
  padding: 14px 4vw;
  background: rgba(11, 10, 12, .55);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line);
}
.nav__brand { font-weight: 800; font-size: 13px; letter-spacing: .34em; display: flex; align-items: center; gap: 12px; }
.nav__brand::before { content: '\25C9'; color: var(--ox-hi); font-size: 10px; }
.nav__links { display: flex; gap: 36px; }
.nav__link { font-family: var(--font-m); font-size: 10px; letter-spacing: .22em; color: var(--silver); }
.nav__link .nl { display: inline-block; overflow: hidden; height: 1.3em; }
.nav__link .nl span { display: block; transition: transform .45s var(--ease); }
.nav__link:hover .nl span { transform: translateY(-100%); }
.nav__link:hover { color: var(--plat); }
.nav__right { display: flex; align-items: center; gap: 26px; }
#navClock { font-size: 10px; color: var(--silver); }

.snd { display: flex; align-items: center; gap: 9px; }
.snd__bars { display: flex; align-items: flex-end; gap: 2px; height: 11px; }
.snd__bars i {
  width: 2px; height: 100%; background: var(--mute); transform-origin: bottom; transform: scaleY(.25);
}
.snd.is-on .snd__bars i { background: var(--plat); animation: sndbar .9s ease-in-out infinite alternate; }
.snd.is-on .snd__bars i:nth-child(2) { animation-delay: .18s; }
.snd.is-on .snd__bars i:nth-child(3) { animation-delay: .36s; }
.snd__state { font-size: 9px; letter-spacing: .28em; color: var(--silver); }

#navToggle { display: none; flex-direction: column; gap: 6px; padding: 6px 0; }
#navToggle span { width: 26px; height: 1px; background: var(--plat); transition: transform .4s var(--ease); }
.menu-open #navToggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-open #navToggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* ---------------- menu overlay ---------------- */
#menu {
  position: fixed; inset: 0; z-index: 110;
  display: flex; align-items: center; justify-content: center;
  background: rgba(11, 10, 12, .92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  opacity: 0; visibility: hidden; transition: opacity .55s var(--ease), visibility .55s;
}
#menu.is-open { opacity: 1; visibility: visible; }
.menu__links { display: flex; flex-direction: column; gap: 8px; text-align: center; }
.m-link {
  font-family: var(--font-d);
  font-size: clamp(2.4rem, 8vw, 4rem); line-height: 1.2; color: var(--plat);
  opacity: 0; transform: translateY(26px);
  transition: opacity .6s var(--ease), transform .6s var(--ease), color .3s;
}
#menu.is-open .m-link { opacity: 1; transform: none; }
#menu.is-open .m-link:nth-child(2) { transition-delay: .06s; }
#menu.is-open .m-link:nth-child(3) { transition-delay: .12s; }
#menu.is-open .m-link:nth-child(4) { transition-delay: .18s; }
.m-link:hover { color: var(--h-amber); }

/* ---------------- HUD ---------------- */
#hud {
  position: fixed; right: 26px; top: 50%; transform: translateY(-50%);
  z-index: 100; display: flex; flex-direction: column; align-items: center; gap: 16px;
}
#hudLabel {
  writing-mode: vertical-rl; font-size: 9px; letter-spacing: .3em; color: var(--silver);
  min-height: 12ch; white-space: nowrap;
}
.hud__rail { width: 1px; height: 130px; background: var(--line); overflow: hidden; }
#hudBar {
  display: block; width: 100%; height: 100%;
  transform: scaleY(0); transform-origin: top;
  background: linear-gradient(var(--h-cyan), var(--h-violet), var(--h-amber));
}
#hudPct { font-size: 9px; color: var(--mute); letter-spacing: .1em; }

/* ---------------- sections generic ---------------- */
.sect { position: relative; padding: clamp(120px, 16vh, 190px) 0; }
.label {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-m); font-size: 10px; letter-spacing: .32em; color: var(--silver);
}
.label::before { content: ''; width: 30px; height: 1px; background: var(--silver); opacity: .5; }
.sect__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 64px; flex-wrap: wrap; }
.sect__title {
  font-weight: 750;
  font-size: clamp(2.5rem, 5vw, 4.4rem); line-height: 1.02;
  text-transform: uppercase; letter-spacing: .04em;
  margin-top: 22px;
}
.sect__title em {
  font-family: var(--font-d); font-weight: 400;
  text-transform: none; letter-spacing: 0; color: var(--silver);
  font-size: .94em;
}
.sect__intro { max-width: 460px; color: var(--silver); font-size: 15px; line-height: 1.7; }

/* ---------------- hero ---------------- */
#hero { min-height: 100vh; min-height: 100svh; display: flex; position: relative; }
#hero .shell { position: relative; display: flex; flex-direction: column; justify-content: center; padding: 130px 0 120px; }
.hero__eyebrow { margin-bottom: 34px; }
.hero__title { font-weight: 400; line-height: .98; }
.ht__line { display: block; font-weight: 800; font-size: clamp(3.2rem, 8.2vw, 8rem); text-transform: uppercase; }
.ht__serif {
  font-family: var(--font-d); font-weight: 400;
  text-transform: none; letter-spacing: 0;
  font-size: clamp(3rem, 7.6vw, 7.4rem); color: var(--plat);
  margin-top: .04em;
}
.hero__lede { margin-top: 44px; max-width: 540px; color: var(--silver); font-size: 16px; line-height: 1.75; }
.hero__cta { margin-top: 48px; display: flex; gap: 18px; flex-wrap: wrap; }

.hero__ticker {
  position: absolute; left: 0; bottom: 36px;
  display: flex; align-items: center; gap: 16px; font-size: 10px; color: var(--silver);
}
.tk__live { display: flex; align-items: center; gap: 8px; color: var(--ox-hi); letter-spacing: .3em; }
.tk__live::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--ox-hi); animation: pulse 1.6s ease-in-out infinite; }
#tickerText { letter-spacing: .18em; }

.hero__scroll {
  position: absolute; right: 0; bottom: 36px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 9px; letter-spacing: .34em; color: var(--mute);
  writing-mode: vertical-rl;
}
.sline { width: 1px; height: 52px; background: var(--line); position: relative; overflow: hidden; }
.sline::after {
  content: ''; position: absolute; left: 0; top: -100%; width: 100%; height: 100%;
  background: var(--plat); animation: sline 2.2s var(--ease) infinite;
}

/* ---------------- buttons ---------------- */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 12px;
  padding: 17px 32px; border-radius: 999px;
  font-weight: 650; font-size: 11.5px; letter-spacing: .22em; text-transform: uppercase;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color .4s, background .4s, color .4s;
  will-change: transform;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(233, 231, 228, .18) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .8s var(--ease);
}
.btn:hover::after { transform: translateX(120%); }
.btn--prime { background: var(--ox); border-color: transparent; color: #F3EDEA; }
.btn--prime:hover { background: #8F3848; }
.btn--ghost:hover { border-color: var(--silver); }

/* ---------------- marquees ---------------- */
.marquees { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 30px 0; overflow: hidden; }
.marquee { overflow: hidden; white-space: nowrap; }
.marquee + .marquee { margin-top: 18px; }
.mq__row { display: inline-flex; align-items: center; will-change: transform; }
.mq__item { font-weight: 800; padding: 0 10px; }
#marqueeA .mq__item {
  font-size: clamp(1.7rem, 3.4vw, 2.8rem);
  color: transparent; -webkit-text-stroke: 1px rgba(233, 231, 228, .38);
}
#marqueeB .mq__item {
  font-family: var(--font-m); font-weight: 400;
  font-size: 11px; letter-spacing: .34em; color: var(--mute);
}
.mq__dot { color: var(--ox-hi); font-size: 9px; padding: 0 26px; }

/* ---------------- manifesto ---------------- */
#statement {
  font-family: var(--font-d); font-weight: 400;
  font-size: clamp(1.9rem, 3.6vw, 3.3rem); line-height: 1.36;
  max-width: 1120px; margin-top: 56px;
}
#statement .hl { font-weight: 600; }
#statement .hl,
.hl {
  background: linear-gradient(100deg, var(--h-cyan), var(--h-violet) 45%, var(--h-amber) 80%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stats {
  margin-top: 96px; display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
.stat { padding: 34px 28px 38px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat__num { font-weight: 800; font-size: clamp(2.2rem, 3.8vw, 3.4rem); line-height: 1; }
.stat__num::after { content: attr(data-suffix); color: var(--ox-hi); }
.stat__label { margin-top: 14px; font-size: 9px; letter-spacing: .26em; color: var(--silver); }

/* ---------------- archive / vault ---------------- */
#filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter {
  font-size: 10px; letter-spacing: .18em; color: var(--silver);
  padding: 10px 19px; border: 1px solid var(--line); border-radius: 999px;
  transition: color .3s, border-color .3s, background .3s;
}
.filter:hover { border-color: var(--silver); color: var(--plat); }
.filter.is-on { background: var(--plat); border-color: var(--plat); color: var(--void); }

#vaultGrid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}
.card {
  position: relative; min-height: 340px; padding: 26px 26px 24px;
  background: rgba(15, 13, 17, .84);
  display: flex; flex-direction: column;
  transition: background .5s;
}
@property --ang { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
.card::before {
  content: ''; position: absolute; inset: -1px; pointer-events: none;
  padding: 1px;
  background: conic-gradient(from var(--ang), var(--h-cyan), var(--h-violet), var(--h-amber), var(--h-cyan));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .5s;
}
.card:hover { background: rgba(20, 17, 23, .92); }
.card:hover::before { opacity: 1; animation: ang 3.6s linear infinite; }
.seal { position: absolute; top: 20px; right: 20px; opacity: .8; }
.seal__spin { transform-origin: center; animation: spin 46s linear infinite; }
.card:hover .seal__spin { animation-duration: 7s; }
.card__year { font-weight: 800; font-size: 2.9rem; line-height: 1; }
.card__tag { margin-top: 8px; font-size: 9px; letter-spacing: .3em; }
.k-a .card__tag { color: var(--ox-hi); }
.k-b .card__tag { color: var(--h-cyan); }
.card__title { margin-top: auto; padding-top: 46px; font-weight: 600; font-size: 1.32rem; line-height: 1.3; letter-spacing: .01em; }
.card__meta { margin-top: 20px; font-size: 9.5px; color: var(--silver); }
.card__meta > div {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 9px 0; border-top: 1px solid var(--line);
}
.card__meta b { color: var(--plat); font-weight: 400; }
.card__cta {
  margin-top: 18px; font-size: 9.5px; letter-spacing: .26em; color: var(--mute);
  display: flex; align-items: center; gap: 10px;
  transition: color .35s;
}
.card__cta .arr { transition: transform .35s var(--ease); }
.card:hover .card__cta { color: var(--plat); }
.card:hover .card__cta .arr { transform: translateX(6px); }

/* ---------------- timeline / spine ---------------- */
#timeline { position: relative; }
#tlPin { height: 100vh; overflow: hidden; display: flex; align-items: center; position: relative; }
.tl__head {
  position: absolute; top: 9vh; left: 4vw; right: 4vw;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 30px;
}
.tl__hint { font-size: 9px; letter-spacing: .3em; color: var(--mute); }
#tlYear {
  position: absolute; right: 3vw; bottom: 5vh; z-index: 0;
  font-weight: 800;
  font-size: clamp(6rem, 15vw, 12.5rem); line-height: .8;
  color: transparent; -webkit-text-stroke: 1px rgba(152, 147, 156, .3);
  pointer-events: none;
}
.tl__railwrap { position: absolute; left: 4vw; bottom: 7vh; width: 230px; height: 1px; background: var(--line); }
#tlRail { display: block; width: 100%; height: 100%; background: var(--ox-hi); transform: scaleX(0); transform-origin: left; }
.tl__track { display: flex; width: max-content; align-items: center; gap: 5vw; padding: 0 30vw 0 4vw; }
.tl__item { position: relative; width: min(560px, 62vw); flex-shrink: 0; padding-top: 110px; }
.tl__ghost {
  position: absolute; top: -.16em; left: -.05em; z-index: 0;
  font-weight: 800;
  font-size: clamp(6.5rem, 13vw, 11rem); line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(233, 231, 228, .1);
  pointer-events: none;
}
.tl__card { position: relative; z-index: 1; border-top: 1px solid var(--line); padding-top: 26px; }
.tl__city { font-size: 9.5px; letter-spacing: .28em; color: var(--h-cyan); }
.tl__title { margin-top: 16px; font-weight: 700; font-size: clamp(1.5rem, 2.4vw, 2.1rem); text-transform: uppercase; }
.tl__desc { margin-top: 16px; color: var(--silver); font-size: 14.5px; line-height: 1.75; max-width: 46ch; }

/* ---------------- signal / chart ---------------- */
.chart__panel {
  border: 1px solid var(--line);
  background: rgba(16, 14, 18, .62);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: clamp(20px, 3vw, 40px);
}
.chart__plot { position: relative; }
#chartSvg { width: 100%; height: auto; }
.chart__grid { stroke: var(--line); }
.chart__line { stroke-linecap: round; stroke-linejoin: round; }
.chart__dot { transition: r .2s; }
#chartCross { stroke: rgba(233, 231, 228, .4); stroke-dasharray: 3 5; opacity: 0; transition: opacity .25s; }
#chartHit { position: absolute; inset: 0; touch-action: none; }
#chartTip {
  position: absolute; top: 8px; transform: translateX(-50%); z-index: 5;
  min-width: 168px; padding: 13px 15px;
  background: rgba(11, 10, 12, .94); border: 1px solid var(--line);
  pointer-events: none; opacity: 0; transition: opacity .25s;
  font-size: 9.5px;
}
#chartTip.is-on { opacity: 1; }
.tip__year { font-family: var(--font-s); font-weight: 800; font-size: 15px; letter-spacing: .06em; margin-bottom: 4px; }
.tip__row { display: flex; align-items: center; gap: 9px; margin-top: 7px; color: var(--silver); }
.tip__row i { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.tip__row b { margin-left: auto; color: var(--plat); font-weight: 400; }
.chart__x { display: flex; justify-content: space-between; padding: 14px 1.6% 0 4.6%; }
.chart__x span { font-size: 9px; color: var(--mute); letter-spacing: .12em; }
#chartLegend { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.leg {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 9.5px; letter-spacing: .16em; color: var(--silver);
  padding: 9px 16px; border: 1px solid var(--line); border-radius: 999px;
  transition: opacity .3s, border-color .3s, color .3s;
}
.leg i { width: 8px; height: 8px; border-radius: 50%; }
.leg:hover { border-color: var(--silver); color: var(--plat); }
.leg.is-off { opacity: .38; }
.leg.is-off i { filter: grayscale(1); }

/* ---------------- access ---------------- */
#access .shell { max-width: 880px; }
.access__lede { margin-top: 30px; color: var(--silver); font-size: 15.5px; line-height: 1.75; max-width: 560px; }
#accessForm { margin-top: 54px; display: flex; gap: 22px; align-items: flex-end; flex-wrap: wrap; }
#accessEmail {
  flex: 1; min-width: 260px;
  padding: 16px 2px; font-size: 15px; letter-spacing: .04em;
  border-bottom: 1px solid var(--line);
  transition: border-color .4s;
}
#accessEmail::placeholder { color: var(--mute); }
#accessEmail:focus { border-color: var(--plat); outline: none; }
.access__note { margin-top: 26px; font-size: 9.5px; letter-spacing: .22em; color: var(--silver); min-height: 1.2em; }
.access__note.is-err { color: var(--ox-hi); }

/* ---------------- footer ---------------- */
.foot { position: relative; border-top: 1px solid var(--line); background: rgba(11, 10, 12, .72); padding: 90px 0 40px; }
#footBrand {
  font-weight: 800;
  font-size: clamp(4rem, 13vw, 11rem); line-height: .9; letter-spacing: .02em;
  user-select: none;
}
.foot__cols {
  margin-top: 74px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  padding-top: 44px; border-top: 1px solid var(--line);
}
.foot__col h4 { font-family: var(--font-m); font-weight: 400; font-size: 9px; letter-spacing: .3em; color: var(--mute); margin-bottom: 20px; }
.foot__col li { margin-bottom: 12px; }
.foot__col a, .foot__col span { font-size: 12.5px; color: var(--silver); transition: color .3s; }
.foot__col a:hover { color: var(--plat); }
.foot__bottom {
  margin-top: 74px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 9px; letter-spacing: .2em; color: var(--mute);
}
#toTop { font-size: 9px; letter-spacing: .3em; color: var(--silver); transition: color .3s; }
#toTop:hover { color: var(--plat); }

/* ---------------- reveal defaults (fx only) ---------------- */
.fx [data-reveal] { opacity: 0; transform: translateY(34px); }

/* ---------------- keyframes ---------------- */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes ang { to { --ang: 360deg; } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.7); } }
@keyframes sline { 0% { top: -100%; } 55% { top: 100%; } 100% { top: 100%; } }
@keyframes sndbar { from { transform: scaleY(.2); } to { transform: scaleY(1); } }

/* ---------------- responsive ---------------- */
@media (max-width: 1080px) {
  .nav__links { display: none; }
  #navToggle { display: flex; }
  #hud { right: 14px; }
}
@media (max-width: 900px) {
  #hud { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .foot__cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  #navClock { display: none; }
  #timeline { padding: 110px 0; }
  #tlPin { height: auto; overflow: visible; display: block; }
  .tl__head { position: static; flex-direction: column; align-items: flex-start; gap: 16px; margin: 0 4vw 60px; }
  .tl__track { width: auto; flex-direction: column; align-items: stretch; gap: 84px; padding: 0 4vw; transform: none !important; }
  .tl__item { width: 100%; padding-top: 90px; }
  #tlYear, .tl__railwrap { display: none; }
  .hero__scroll { display: none; }
  .hero__ticker { max-width: 88vw; overflow: hidden; }
  #vaultGrid { grid-template-columns: 1fr; }
  .sect__head { margin-bottom: 44px; }
}
@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 24px 18px 26px; }
  #accessForm .btn { width: 100%; justify-content: center; }
}

/* ---------------- reduced motion ---------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
