/* ── Variables ── */
:root {
  --bg:  #000000;
  --bg1: #060606;
  --bg2: #0f0f0f;
  --bg3: #161616;
  --bg4: #1e1e1e;
  --bd:  #1e1e1e;
  --bd2: #2a2a2a;
  --tx:  #ffffff;
  --tx2: #888888;
  --tx3: #3a3a3a;
  --ac:  #FF0033;
  --ac2: rgba(255,0,51,.07);
  --fd:  'Unbounded', sans-serif;
  --fd2: 'Montserrat Alternates', sans-serif;
  --fb:  'Work Sans', sans-serif;
  --r:   10px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--fb); font-size: 15px; line-height: 1.6; color: var(--tx); background: var(--bg); overflow-x: hidden; }
img { display: block; }
a { text-decoration: none; color: inherit; }

/* ── View containers ── */
.view { min-height: 100vh; }

/* ── View transition ── */
.view-enter { animation: vIn .38s cubic-bezier(.16,1,.3,1) both; }
.view-exit  { animation: vOut .2s ease both; }
@keyframes vIn  { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:none; } }
@keyframes vOut { to   { opacity:0; transform:scale(.99); } }

/* ══════════════ LANDING PAGE ══════════════ */
.lh {
  height: 52px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px;
  background: var(--bg1); border-bottom: 1px solid var(--bd);
  position: relative; z-index: 10;
}
.lh-logo { height: 20px; }
.lh-brand {
  font-family: var(--fd); font-size: 9px; color: var(--tx3);
  letter-spacing: .14em; text-transform: uppercase;
}
.lh-r { display: flex; gap: 20px; font-size: 11px; color: var(--tx3); }

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 1fr);
  height: calc(100vh - 52px);
  gap: 2px;
  background: var(--bg4);
}

.tile {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px; position: relative; overflow: hidden;
  color: var(--tx); text-decoration: none;
  transition: transform .22s cubic-bezier(.16,1,.3,1), box-shadow .22s;
}
.tile::after {
  content: ''; position: absolute; inset: 0;
  box-shadow: inset 0 0 0 0px var(--ac);
  transition: box-shadow .22s;
  pointer-events: none;
}
.tile:not(.tile-cover):hover { transform: scale(1.025); z-index: 5; }
.tile:not(.tile-cover):hover::after { box-shadow: inset 0 0 0 2px var(--ac); }
.tile:not(.tile-cover):hover .tile-arr { color: var(--ac); transform: translate(3px,-3px); }

.tile-cover { cursor: default; background: var(--bg1); }

.tile-n {
  position: absolute; top: 18px; left: 22px;
  font-family: var(--fd); font-size: 9px; font-weight: 700;
  color: var(--ac); letter-spacing: .2em; text-transform: uppercase;
}
.tile-name {
  font-family: var(--fd); font-size: clamp(12px, 1.3vw, 16px);
  font-weight: 700; line-height: 1.2; position: relative; z-index: 2;
}
.tile-cover .tile-name { font-size: clamp(16px, 2vw, 26px); }
.tile-arr {
  position: absolute; bottom: 18px; right: 18px;
  font-size: 13px; color: var(--tx3);
  transition: color .2s, transform .2s;
  font-family: var(--fd);
}

/* Tile vis (decorative background element) */
.tile-vis {
  position: absolute; inset: 0; pointer-events: none;
}

/* ══════════════ SECTION VIEW ══════════════ */
/* Sticky section header */
.sh {
  position: sticky; top: 0; z-index: 100;
  height: 52px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 36px;
  background: rgba(0,0,0,.9); backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--bd);
}
.sh-back {
  font-family: var(--fd); font-size: 10px; color: var(--tx2);
  letter-spacing: .06em; transition: color .15s;
  display: flex; align-items: center; gap: 8px;
}
.sh-back:hover { color: var(--tx); }
.sh-name {
  font-family: var(--fd); font-size: 10px; color: var(--tx3);
  letter-spacing: .15em; text-transform: uppercase;
}
.sh-next {
  font-family: var(--fd); font-size: 10px; color: var(--tx2);
  letter-spacing: .06em; transition: color .15s;
  display: flex; align-items: center; gap: 8px;
}
.sh-next:hover { color: var(--ac); }

/* Hero block */
.hero {
  height: 100vh; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 0 80px 64px 80px;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--bd);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 75% 55%, rgba(255,0,51,.055) 0%, transparent 60%);
}
/* Subtle noise overlay */
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.hero-tag {
  font-family: var(--fd); font-size: 10px; font-weight: 700;
  color: var(--ac); letter-spacing: .22em; text-transform: uppercase;
  margin-bottom: 20px; position: relative; z-index: 2;
}
.hero-title {
  font-family: var(--fd);
  font-size: clamp(60px, 9.5vw, 136px);
  font-weight: 900; line-height: .92; letter-spacing: -.03em;
  color: var(--tx); position: relative; z-index: 2;
}
.hero-title em { color: var(--ac); font-style: normal; }
.hero-lead {
  font-size: 17px; color: var(--tx2); max-width: 540px;
  line-height: 1.7; margin-top: 28px; position: relative; z-index: 2;
}

/* Rotated section label (left side) */
.hero-side {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 40px; display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--bd);
}
.hero-side-txt {
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-family: var(--fd); font-size: 9px; color: var(--tx3);
  letter-spacing: .2em; text-transform: uppercase; white-space: nowrap;
}

/* Floating hero decoration chips */
.chip {
  position: absolute; border-radius: 8px; z-index: 1;
  display: flex; align-items: center; justify-content: center;
}
.chip-a { animation: float1 7s ease-in-out infinite; }
.chip-b { animation: float2 9s 1s ease-in-out infinite; }
.chip-c { animation: float3 11s .5s ease-in-out infinite; }
@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }
@keyframes float2 { 0%,100%{transform:translateY(-6px) rotate(2deg)} 50%{transform:translateY(12px) rotate(-2deg)} }
@keyframes float3 { 0%,100%{transform:translateY(4px) rotate(-1deg)} 50%{transform:translateY(-10px) rotate(3deg)} }

/* ── Section body ── */
.sec-body {
  padding: 96px 80px; position: relative;
}
.sec-body::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.016) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* ── Subsection ── */
.sub { margin-bottom: 80px; }
.sub:last-child { margin-bottom: 0; }
.sub-h3 {
  font-family: var(--fd2); font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--tx3);
  margin-bottom: 26px; padding-bottom: 12px; border-bottom: 1px solid var(--bd);
}

/* ── Next section footer ── */
.next-sec {
  display: flex; align-items: center; justify-content: space-between;
  padding: 40px 80px; border-top: 1px solid var(--bd);
  text-decoration: none; color: var(--tx);
  background: var(--bg1); transition: background .2s, padding .2s;
  margin-top: 80px;
}
.next-sec:hover { background: var(--bg2); padding-right: 60px; }
.next-sec-lbl {
  font-size: 10px; color: var(--tx3); letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: 6px;
}
.next-sec-title {
  font-family: var(--fd); font-size: clamp(18px, 2.5vw, 32px);
  font-weight: 700; color: var(--tx);
}
.next-sec-arr { font-family: var(--fd); font-size: 36px; color: var(--ac); flex-shrink: 0; }

/* ══════════════ REVEAL ANIMATION ══════════════ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.reveal.in-view { opacity: 1; transform: none; }
[data-delay="1"].reveal { transition-delay: .08s; }
[data-delay="2"].reveal { transition-delay: .16s; }
[data-delay="3"].reveal { transition-delay: .24s; }
[data-delay="4"].reveal { transition-delay: .32s; }
[data-delay="5"].reveal { transition-delay: .40s; }

/* ══════════════ SHARED COMPONENTS ══════════════ */
/* Rule */
.rule {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 20px; background: var(--bg2);
  border-left: 3px solid var(--ac); border-radius: 0 var(--r) var(--r) 0;
  margin-bottom: 12px;
}
.rule-tx { font-size: 13px; color: var(--tx2); line-height: 1.65; }
.rule-tx strong { color: var(--tx); }

/* Tag */
.tag { display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ac); background: var(--ac2); padding: 3px 9px; border-radius: 99px; border: 1px solid rgba(255,0,51,.18); }

/* Two-col */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

/* Manifesto */
.manifesto { font-family: var(--fd); font-size: clamp(22px, 3vw, 40px); font-weight: 700; line-height: 1.25; letter-spacing: -.01em; }
.manifesto em { color: var(--ac); font-style: normal; }

/* Do/Dont */
.dd-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.dd-card { border-radius: var(--r); overflow: hidden; }
.dd-vis { height: 130px; position: relative; overflow: hidden; }
.dd-vis.do   { border: 2px solid #2e7d32; border-bottom: none; border-radius: var(--r) var(--r) 0 0; }
.dd-vis.dont { border: 2px solid #c62828; border-bottom: none; border-radius: var(--r) var(--r) 0 0; }
.dd-bar { padding: 8px 12px; display: flex; gap: 7px; align-items: center; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.dd-bar.do   { background: rgba(46,125,50,.12); color: #5cb85c; border: 2px solid #2e7d32; border-top: none; border-radius: 0 0 var(--r) var(--r); }
.dd-bar.dont { background: rgba(198,40,40,.12); color: #e05252; border: 2px solid #c62828; border-top: none; border-radius: 0 0 var(--r) var(--r); }
.dd-txt { font-size: 11px; color: var(--tx3); margin-top: 6px; line-height: 1.4; }

/* Logo */
.logo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 32px; }
.logo-bg { border-radius: var(--r); padding: 48px 40px; display: flex; align-items: center; justify-content: center; min-height: 160px; }
.logo-bg img { max-width: 180px; max-height: 56px; object-fit: contain; }
.logo-bg.dark  { background: #000; border: 1px solid #1a1a1a; }
.logo-bg.light { background: #f0f0f0; }
.logo-bg.red   { background: var(--ac); }
.logo-fb { font-family: var(--fd); font-size: 32px; font-weight: 700; }

/* Suffix */
.suffix-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.suffix-card { background: var(--bg2); border: 1px solid var(--bd); border-radius: var(--r); padding: 24px 20px; }
.suffix-n { font-family: var(--fd); font-size: 22px; font-weight: 700; color: var(--tx); line-height: 1.15; margin-bottom: 8px; }
.suffix-sub { font-size: 11px; color: var(--tx3); letter-spacing: .05em; }

/* Color strip */
.pal-strip { display: flex; gap: 3px; overflow-x: auto; padding-bottom: 6px; }
.pal-strip::-webkit-scrollbar { height: 3px; }
.pal-strip::-webkit-scrollbar-thumb { background: var(--bd2); border-radius: 2px; }
.sw-card { flex-shrink: 0; width: 180px; }
.sw-bg { height: 160px; border-radius: var(--r) var(--r) 0 0; position: relative; cursor: pointer; transition: filter .15s; }
.sw-bg:hover { filter: brightness(1.08); }
.sw-copy { position: absolute; bottom: 10px; right: 10px; width: 26px; height: 26px; border-radius: 50%; background: rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; font-size: 11px; pointer-events: none; }
.sw-info { padding: 12px 14px; background: var(--bg2); border: 1px solid var(--bd); border-top: none; border-radius: 0 0 var(--r) var(--r); }
.sw-name { font-family: var(--fd); font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--tx); margin-bottom: 2px; }
.sw-hex { font-family: monospace; font-size: 11px; color: var(--tx3); }
.sw-role { font-size: 10px; color: var(--tx3); margin-top: 4px; }

/* Inline color chip in text */
.ic { display: inline-block; width: 1em; height: 1em; border-radius: 3px; vertical-align: middle; margin: 0 4px; flex-shrink: 0; }

/* Big statement text (animated words) */
.statement {
  font-family: var(--fd);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900; line-height: 1.15;
  letter-spacing: -.02em; color: var(--tx);
  margin-bottom: 24px;
}
.statement .word { display: inline-block; overflow: hidden; }
.statement .word-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.statement .word-inner.show { transform: none; }
.statement em { color: var(--ac); font-style: normal; }

/* ── Font Playground ── */
.fp { background: var(--bg2); border: 1px solid var(--bd); border-radius: var(--r); overflow: hidden; margin-bottom: 20px; }
.fp-preview {
  padding: 48px 40px; font-family: var(--fd);
  font-size: clamp(36px, 7vw, 88px); font-weight: 700;
  line-height: .95; color: var(--tx); min-height: 180px;
  display: flex; align-items: center;
  border-bottom: 1px solid var(--bd);
  cursor: default; user-select: none;
}
.fp-controls {
  padding: 20px 24px; display: flex; gap: 24px; align-items: flex-end; flex-wrap: wrap;
}
.fp-grp { display: flex; flex-direction: column; gap: 6px; }
.fp-lbl { font-size: 10px; color: var(--tx3); letter-spacing: .08em; text-transform: uppercase; }
.fp-slider { width: 160px; accent-color: var(--ac); cursor: pointer; height: 3px; }
.fp-btns { display: flex; gap: 6px; }
.fp-btn {
  padding: 6px 14px; font-family: var(--fd); font-size: 10px; font-weight: 700; letter-spacing: .04em;
  border: 1px solid var(--bd); border-radius: 6px; background: var(--bg3);
  color: var(--tx2); cursor: pointer; transition: all .15s;
}
.fp-btn:hover { border-color: var(--bd2); color: var(--tx); }
.fp-btn.on { background: var(--ac); border-color: var(--ac); color: #fff; }
.fp-wval { font-family: monospace; font-size: 11px; color: var(--tx3); margin-top: 2px; }

/* Font specimen */
.font-block { margin-bottom: 48px; }
.font-block:last-child { margin-bottom: 0; }
.spec-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--bd); }
.spec-name { font-size: 13px; font-weight: 600; color: var(--tx); }
.spec-use { font-size: 10px; color: var(--tx3); letter-spacing: .1em; text-transform: uppercase; }
.spec-abc { font-size: 12px; color: var(--tx3); letter-spacing: .04em; margin-bottom: 14px; }
.spec-ex { font-size: 13px; color: var(--tx2); padding: 14px 16px; background: var(--bg2); border-radius: 6px; line-height: 1.6; }

/* Type hierarchy demo */
.type-hier { background: var(--bg2); border: 1px solid var(--bd); border-radius: var(--r); padding: 32px; display: flex; flex-direction: column; gap: 20px; }
.type-level { border-bottom: 1px solid var(--bd); padding-bottom: 18px; }
.type-level:last-child { border-bottom: none; padding-bottom: 0; }
.type-lbl { font-size: 10px; color: var(--tx3); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; }

/* ── Copy Tabs ── */
.copy-tabs { display: flex; gap: 4px; margin-bottom: 20px; }
.ctab { padding: 7px 16px; font-family: var(--fd); font-size: 10px; font-weight: 700; letter-spacing: .06em; border: 1px solid var(--bd); border-radius: 6px; background: transparent; color: var(--tx3); cursor: pointer; transition: all .15s; }
.ctab:hover { border-color: var(--bd2); color: var(--tx2); }
.ctab.on { background: var(--ac2); border-color: var(--ac); color: var(--ac); }
.cpanel { display: none; }
.cpanel.on { display: block; animation: fadeUp .2s ease; }
@keyframes fadeUp { from { opacity:0; transform:translateY(4px); } to { opacity:1; transform:none; } }
.copy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.copy-block { background: var(--bg2); border: 1px solid var(--bd); border-radius: var(--r); padding: 24px; }
.copy-ctx { font-size: 9px; letter-spacing: .15em; text-transform: uppercase; color: var(--ac); margin-bottom: 12px; }
.copy-main { font-size: 20px; font-weight: 700; color: var(--tx); line-height: 1.35; margin-bottom: 10px; }
.copy-body { font-size: 13px; color: var(--tx2); line-height: 1.7; }

/* ── Personas ── */
.persona-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.persona { background: var(--bg2); border: 1px solid var(--bd); border-radius: var(--r); overflow: hidden; }
.persona-top { display: flex; align-items: center; gap: 14px; padding: 20px; }
.persona-av { width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: var(--fd); font-size: 18px; font-weight: 700; color: #fff; }
.persona-name { font-family: var(--fd2); font-size: 14px; font-weight: 700; }
.persona-role { font-size: 11px; color: var(--tx3); margin-top: 2px; }
.persona-body { padding: 16px 20px; border-top: 1px solid var(--bd); }
.persona-detail { font-size: 12px; color: var(--tx2); line-height: 1.6; margin-bottom: 12px; }
.persona-q { padding: 10px 14px; background: var(--bg3); border-left: 3px solid var(--ac); font-size: 12px; font-style: italic; color: var(--tx2); line-height: 1.5; }

/* ── Pillars ── */
.pillars-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.pillar { background: var(--bg2); border: 1px solid var(--bd); border-radius: var(--r); padding: 28px; }
.pillar-icon { font-size: 24px; margin-bottom: 12px; color: var(--ac); }
.pillar-title { font-family: var(--fd); font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.pillar-desc { font-size: 13px; color: var(--tx2); line-height: 1.65; }

/* ── Naming ── */
.naming-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.naming-card { background: var(--bg2); border: 1px solid var(--bd); border-radius: var(--r); overflow: hidden; }
.naming-top { height: 8px; }
.naming-body { padding: 22px 20px; }
.naming-name { font-family: var(--fd); font-size: 24px; font-weight: 700; color: var(--tx); margin-bottom: 6px; }
.naming-hex { font-family: monospace; font-size: 10px; color: var(--tx3); letter-spacing: .06em; }
.naming-usage { font-size: 12px; color: var(--tx2); margin-top: 10px; line-height: 1.5; }
.dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; vertical-align: middle; margin-right: 5px; }

/* ── Imagery ── */
.imagery-still { width: 100%; height: 300px; border-radius: var(--r); overflow: hidden; background: #060606; position: relative; }
.imagery-still::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 40% 85%, rgba(255,0,51,.38) 0%, transparent 55%); }
.imagery-product { position: absolute; top: 50%; left: 40%; transform: translate(-50%,-50%); width: 60px; height: 90px; background: linear-gradient(160deg,#1a1a1a,#0a0a0a); border-radius: 4px; box-shadow: 0 0 60px rgba(255,0,51,.5), 0 0 120px rgba(255,0,51,.15); }
.imagery-rules { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.img-rule { background: var(--bg2); border: 1px solid var(--bd); border-radius: var(--r); padding: 16px; }
.img-rule-t { font-size: 11px; font-weight: 600; color: var(--tx); margin-bottom: 4px; }
.img-rule-v { font-size: 11px; color: var(--tx3); line-height: 1.5; }
.img-rule.do-block { border-color: rgba(46,125,50,.4); }
.img-rule.dont-block { border-color: rgba(198,40,40,.3); }
.img-rule-t.do   { color: #5cb85c; }
.img-rule-t.dont { color: #e05252; }

/* ── Hela ── */
.hela-label { background: #060606; border: 1px solid var(--bd); border-radius: var(--r); max-width: 360px; overflow: hidden; }
.hela-label-inner { padding: 28px 32px; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hela-pbh { font-size: 8px; color: rgba(255,255,255,.18); letter-spacing: .1em; margin-top: 4px; }

/* ── Channel cards ── */
.channel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.channel { background: var(--bg2); border: 1px solid var(--bd); border-radius: var(--r); overflow: hidden; }
.channel-vis { height: 110px; background: var(--bg3); position: relative; overflow: hidden; }
.channel-body { padding: 20px; }
.channel-name { font-family: var(--fd2); font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.channel-rules { list-style: none; }
.channel-rules li { font-size: 12px; color: var(--tx2); padding: 5px 0; border-bottom: 1px solid var(--bd); display: flex; gap: 8px; align-items: flex-start; }
.channel-rules li::before { content: '→'; color: var(--ac); flex-shrink: 0; margin-top: 1px; }
.channel-rules li:last-child { border-bottom: none; }

/* ── Toast ── */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(12px); background: var(--bg2); color: var(--tx); font-size: 12px; padding: 9px 16px; border-radius: 99px; border: 1px solid var(--bd); opacity: 0; transition: opacity .2s, transform .2s; pointer-events: none; z-index: 999; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── Splash ── */
#splash {
  position: fixed; inset: 0; z-index: 9000;
  background: #000;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px;
  pointer-events: none;
}
#splash svg { width: min(300px, 58vw); height: auto; }
#splash .sp-letters path { opacity: 0; }
#splash .sp-x           { opacity: 0; }
#splash .sp-tag {
  font-family: var(--fb);
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
  color: rgba(255,255,255,.42);
  opacity: 0;
}
#splash.out {
  animation: splashOut .55s cubic-bezier(.4,0,1,1) .1s both;
}
@keyframes splashOut {
  to { opacity: 0; transform: scale(1.04); }
}
