:root {
  --paper: #f4efe6;
  --paper-2: #ebe4d6;
  --ink: #12100e;
  --ink-soft: #2a2622;
  --signal: #e63228;
  --signal-dark: #a01812;
  --brass: #c4a035;
  --brass-hot: #f0d060;
  --sky: #7eb8c9;
  --muted: #6b645a;
  --rail: 76px;
  --font-display: "Archivo Black", Impact, sans-serif;
  --font-body: "Space Grotesk", system-ui, sans-serif;
  --font-accent: "Instrument Serif", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
  cursor: none;
}

@media (pointer: coarse) {
  body { cursor: auto; }
  .cursor-blob { display: none !important; }
}

img { max-width: 100%; display: block; }

a {
  color: var(--signal);
  text-decoration: none;
}

a:hover { color: var(--signal-dark); }

/* Custom cursor */
.cursor-blob {
  position: fixed;
  width: 18px;
  height: 18px;
  border: 2px solid var(--signal);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: multiply;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-blob.hot {
  width: 42px;
  height: 42px;
  background: rgba(230, 50, 40, 0.15);
}

/* Rubber stamps floating */
.stamp-pop {
  position: fixed;
  pointer-events: none;
  z-index: 40;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--signal);
  border: 3px solid var(--signal);
  padding: 0.35rem 0.7rem;
  transform: rotate(-12deg) scale(0.4);
  opacity: 0;
  animation: stampIn 1.1s ease forwards;
}

@keyframes stampIn {
  0% { opacity: 0; transform: rotate(-18deg) scale(1.4); }
  30% { opacity: 1; transform: rotate(-8deg) scale(1); }
  100% { opacity: 0; transform: rotate(-4deg) scale(0.9) translateY(-40px); }
}

/* Side rail */
.siderail {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--rail);
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0;
  gap: 1rem;
  border-right: 3px solid var(--signal);
}

.siderail-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--brass);
  animation: spinFace 8s linear infinite;
}

@keyframes spinFace {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

.siderail-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.4rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.siderail-nav a {
  color: rgba(244, 239, 230, 0.55);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.2s, transform 0.2s;
}

.siderail-nav a:hover,
.siderail-nav a.active {
  color: var(--brass-hot);
}

.siderail-buy {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  background: var(--signal);
  color: var(--paper) !important;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  padding: 1rem 0.55rem;
  transition: background 0.2s, transform 0.2s;
}

.siderail-buy:hover {
  background: var(--brass);
  color: var(--ink) !important;
}

.menu-fab {
  display: none;
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 120;
  width: 48px;
  height: 48px;
  border: 2px solid var(--ink);
  background: var(--paper);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.menu-fab span {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--ink);
}

.mobile-drawer {
  display: none;
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 110;
  background: var(--ink);
  padding: 5rem 1.5rem 1.5rem;
  flex-direction: column;
  gap: 1rem;
  transform: translateY(-110%);
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.mobile-drawer.open { transform: translateY(0); }

.mobile-drawer a {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}

main {
  margin-left: var(--rail);
  padding-bottom: 5rem;
}

/* —— HERO —— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #1a1210;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  background: transparent;
}

.hero-video.is-hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.hero-slideshow .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
  animation: ken 16s ease-in-out infinite;
}

.hero-slideshow .slide.active {
  opacity: 1;
  z-index: 1;
}

@keyframes ken {
  0%, 100% { transform: scale(1.05); }
  50% { transform: scale(1.12); }
}

.hero-grade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(18, 16, 14, 0.88) 0%, rgba(18, 16, 14, 0.35) 48%, transparent 70%),
    linear-gradient(0deg, rgba(18, 16, 14, 0.95) 0%, transparent 45%);
}

.hero-slash {
  position: absolute;
  z-index: 2;
  right: -10%;
  top: -20%;
  width: 42%;
  height: 140%;
  background: var(--signal);
  mix-blend-mode: multiply;
  opacity: 0.35;
  transform: skewX(-18deg);
  animation: slashPulse 5s ease-in-out infinite;
}

@keyframes slashPulse {
  0%, 100% { opacity: 0.28; }
  50% { opacity: 0.42; }
}

.hero-board {
  position: relative;
  z-index: 3;
  padding: clamp(2rem, 6vw, 4rem);
  padding-bottom: 5rem;
  max-width: 820px;
  color: var(--paper);
}

.hero-live {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  margin-bottom: 1rem;
  color: var(--brass-hot);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 0 rgba(230, 50, 40, 0.7);
  animation: livePing 1.6s infinite;
}

@keyframes livePing {
  0% { box-shadow: 0 0 0 0 rgba(230, 50, 40, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(230, 50, 40, 0); }
  100% { box-shadow: 0 0 0 0 rgba(230, 50, 40, 0); }
}

.hero-brand {
  font-family: var(--font-display);
  line-height: 0.88;
  margin-bottom: 1rem;
}

.hb-sm {
  display: block;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  letter-spacing: 0.35em;
  color: var(--brass-hot);
  margin-bottom: 0.35rem;
  animation: slideIn 0.7s ease both;
}

.hb-lg {
  display: block;
  font-size: clamp(3.2rem, 12vw, 7rem);
  letter-spacing: -0.02em;
  animation: slideIn 0.8s ease both;
  animation-delay: 0.1s;
}

.hb-lg.outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--paper);
  text-stroke: 2px var(--paper);
  animation-delay: 0.2s;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-one {
  font-family: var(--font-accent);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-style: italic;
  max-width: 22em;
  margin-bottom: 1.5rem;
  color: rgba(244, 239, 230, 0.88);
  animation: slideIn 0.9s ease both;
  animation-delay: 0.25s;
}

.hero-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.ticker-chip {
  font-family: var(--font-display);
  font-size: 1.6rem;
  background: var(--brass);
  color: var(--ink);
  padding: 0.55rem 1rem;
  display: grid;
  place-items: center;
  letter-spacing: 0.08em;
}

.wobble {
  animation: wobble 2.8s ease-in-out infinite;
}

@keyframes wobble {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(3deg) scale(1.04); }
}

.ca-stamp {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--paper);
  color: var(--ink);
  border: 3px dashed var(--signal);
  padding: 0.55rem 0.75rem;
  max-width: 100%;
  transform: rotate(-1deg);
}

.ca-stamp-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--signal);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.ca-stamp code {
  font-family: ui-monospace, monospace;
  font-size: clamp(0.7rem, 1.8vw, 0.9rem);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: min(48vw, 300px);
}

.ca-copy {
  border: 2px solid var(--ink);
  background: var(--signal);
  color: var(--paper);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  cursor: none;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.ca-copy:hover { transform: scale(1.1) rotate(-8deg); }

.ca-copy.copied { animation: slam 0.4s ease; }

@keyframes slam {
  0%, 100% { transform: scale(1); }
  40% { transform: scale(1.25) rotate(-12deg); }
  70% { transform: scale(0.9) rotate(8deg); }
}

.copy-toast {
  position: absolute;
  top: -1.6rem;
  right: 0;
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--signal);
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  transform: translateY(6px);
}

.copy-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn-slash,
.btn-ghost {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.95rem 1.35rem;
  display: inline-block;
  transition: transform 0.2s, background 0.2s, color 0.2s;
  cursor: none;
}

.btn-slash {
  background: var(--signal);
  color: var(--paper) !important;
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%);
  box-shadow: 6px 6px 0 var(--ink);
}

.btn-slash:hover {
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0 var(--ink);
  background: var(--brass);
  color: var(--ink) !important;
}

.btn-slash.big {
  margin-top: 2rem;
  font-size: 1.05rem;
  padding: 1.15rem 2rem;
}

.btn-ghost {
  border: 2px solid rgba(244, 239, 230, 0.55);
  color: var(--paper) !important;
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--brass-hot);
  color: var(--brass-hot) !important;
  transform: translateY(-3px);
}

.hero-scroll-cue {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  z-index: 3;
  writing-mode: vertical-rl;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: rgba(244, 239, 230, 0.55);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-scroll-cue i {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(var(--brass-hot), transparent);
  animation: cue 1.5s ease-in-out infinite;
}

@keyframes cue {
  0%, 100% { transform: scaleY(0.6); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Ticker */
.ticker-tape {
  background: var(--signal);
  color: var(--paper);
  overflow: hidden;
  border-block: 3px solid var(--ink);
  padding: 0.65rem 0;
}

.ticker-tape-track {
  display: inline-flex;
  white-space: nowrap;
  animation: tape 26s linear infinite;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
}

.ticker-tape-track span { padding-right: 2rem; }

@keyframes tape {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Bands */
.band {
  padding: clamp(3.5rem, 9vw, 6.5rem) clamp(1.25rem, 4vw, 3rem);
  position: relative;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 0.75rem;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.mega {
  font-size: clamp(3rem, 12vw, 7.5rem);
  margin-bottom: 2rem;
}

.mega span {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}

.lede {
  font-family: var(--font-accent);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  max-width: 28em;
  margin-bottom: 1rem;
}

/* About */
.about {
  background:
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 18px,
      rgba(18, 16, 14, 0.03) 18px,
      rgba(18, 16, 14, 0.03) 19px
    ),
    var(--paper);
}

.band-grid {
  display: grid;
  grid-template-columns: minmax(200px, 320px) 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: 1100px;
}

.about-stamp {
  position: relative;
  width: min(100%, 280px);
  margin: 0 auto;
}

.about-stamp img {
  width: 70%;
  margin: 15% auto;
  border-radius: 50%;
  border: 4px solid var(--ink);
  position: relative;
  z-index: 1;
  animation: faceBob 3.5s ease-in-out infinite;
}

@keyframes faceBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.seal-ring {
  position: absolute;
  inset: 0;
  animation: spinFace 18s linear infinite;
}

.seal-text {
  fill: var(--signal);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.about-copy p {
  margin-bottom: 1rem;
  color: var(--ink-soft);
  max-width: 38em;
}

.slash-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.slash-list li {
  position: relative;
  padding: 0.85rem 1rem 0.85rem 1.25rem;
  background: var(--paper-2);
  border-left: 5px solid var(--signal);
  transform: skewX(-4deg);
  transition: transform 0.25s, background 0.25s;
}

.slash-list li:hover {
  transform: skewX(-4deg) translateX(8px);
  background: #fff;
}

.slash-list li > * {
  display: inline;
  transform: skewX(4deg);
}

.slash-list b {
  font-family: var(--font-display);
  font-weight: 400;
  margin-right: 0.35rem;
}

/* Tokenomics mosaic */
.tokenomics {
  background: var(--ink);
  color: var(--paper);
}

.tokenomics .eyebrow { color: var(--brass-hot); }

.tokenomics .mega span {
  -webkit-text-stroke: 2px var(--paper);
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.tile {
  padding: 1.5rem 1.1rem;
  border: 2px solid rgba(244, 239, 230, 0.2);
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.tile::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% -20%;
  height: 70%;
  background: var(--signal);
  opacity: 0.15;
  transform: rotate(-8deg);
  transition: opacity 0.3s;
}

.tile:hover {
  transform: translateY(-8px) rotate(-1deg);
  border-color: var(--brass-hot);
}

.tile:hover::before { opacity: 0.35; }

.tile-a { background: #1c1814; }
.tile-b { background: var(--signal-dark); }
.tile-c { background: #24343a; }
.tile-d { background: #3a2e14; }

.tile-ico {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--brass-hot);
  animation: bounceIco 2.5s ease-in-out infinite;
}

.tile:nth-child(2) .tile-ico { animation-delay: 0.3s; }
.tile:nth-child(3) .tile-ico { animation-delay: 0.6s; }
.tile:nth-child(4) .tile-ico { animation-delay: 0.9s; }

@keyframes bounceIco {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.tile h3 {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.6);
  margin-bottom: 0.35rem;
  position: relative;
}

.tile .big {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
  margin-bottom: 0.35rem;
  position: relative;
}

.tile span {
  font-size: 0.85rem;
  color: rgba(244, 239, 230, 0.65);
  position: relative;
}

.pair-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 2px dashed var(--brass);
  background: rgba(0, 0, 0, 0.25);
}

.pair-tag {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--brass-hot);
}

.pair-bar code {
  font-family: ui-monospace, monospace;
  font-size: 0.85rem;
  word-break: break-all;
  flex: 1;
}

.pair-bar a {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--paper);
  border-bottom: 2px solid var(--signal);
  padding-bottom: 2px;
}

.pair-bar a:hover { color: var(--brass-hot); }

/* How to buy ladder */
.howtobuy {
  background: var(--paper-2);
}

.howtobuy em {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--signal);
  font-weight: 400;
}

.ladder {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  max-width: 1000px;
}

.rung {
  display: grid;
  grid-template-columns: 64px 1fr minmax(110px, 160px);
  gap: 1rem;
  align-items: center;
  background: var(--paper);
  border: 2px solid var(--ink);
  padding: 0.75rem;
  box-shadow: 8px 8px 0 var(--ink);
  transition: transform 0.25s, box-shadow 0.25s;
}

.rung:hover {
  transform: translate(-4px, -4px);
  box-shadow: 14px 14px 0 var(--signal);
}

.rung:nth-child(even) {
  transform: rotate(0.4deg);
}

.rung:nth-child(even):hover {
  transform: translate(-4px, -4px) rotate(0.4deg);
}

.rung-num {
  font-family: var(--font-display);
  font-size: 2rem;
  text-align: center;
  color: var(--signal);
  line-height: 1;
}

.rung-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.rung-body p {
  color: var(--muted);
  font-size: 0.95rem;
}

.rung img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 2px solid var(--ink);
  filter: contrast(1.05) saturate(1.1);
  transition: transform 0.4s;
}

.rung:hover img {
  transform: scale(1.06) rotate(-2deg);
}

/* Gallery filmstrip */
.gallery {
  background: var(--paper);
  padding-right: 0;
}

.gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-right: clamp(1.25rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.gallery-hint {
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  color: var(--muted);
  animation: nudge 1.8s ease-in-out infinite;
}

@keyframes nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

.filmstrip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1.5rem;
  padding-right: clamp(1.25rem, 4vw, 3rem);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: var(--signal) var(--paper-2);
}

.filmstrip figure {
  flex: 0 0 min(85vw, 640px);
  scroll-snap-align: start;
  border: 3px solid var(--ink);
  position: relative;
  overflow: hidden;
  background: var(--ink);
  transition: transform 0.3s;
  aspect-ratio: 16 / 9;
}

.filmstrip figure:hover {
  transform: rotate(-1deg) scale(1.02);
}

.filmstrip img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #1a1612;
  transition: transform 0.6s;
}

.filmstrip figure:hover img {
  transform: scale(1.04);
}

.filmstrip figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0.75rem 1rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  background: var(--signal);
  color: var(--paper);
  transform: translateY(100%);
  transition: transform 0.3s;
}

.filmstrip figure:hover figcaption {
  transform: translateY(0);
}

/* Community */
.community {
  background:
    linear-gradient(135deg, rgba(244, 239, 230, 0.92), rgba(244, 239, 230, 0.82)),
    url("../assets/triumph.png") center/cover;
  text-align: center;
}

.community-face {
  width: 110px;
  height: 110px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  border: 4px solid var(--ink);
  object-fit: cover;
  animation: faceBob 3s ease-in-out infinite;
}

.community .lede {
  margin-left: auto;
  margin-right: auto;
}

.social-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 280px));
  gap: 0.85rem;
  justify-content: center;
  margin-top: 2rem;
}

.social-slash {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--ink);
  color: var(--paper) !important;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%);
  transition: transform 0.25s, background 0.25s;
}

.social-slash span {
  color: var(--brass-hot);
  font-size: 0.75rem;
}

.social-slash:hover {
  background: var(--signal);
  transform: translateX(6px);
}

/* Footer */
.foot {
  margin-left: var(--rail);
  background: var(--ink);
  color: rgba(244, 239, 230, 0.7);
  padding: 2.5rem 1.5rem 6rem;
  text-align: center;
  border-top: 4px solid var(--signal);
}

.foot-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--paper);
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  font-size: 0.85rem;
}

.foot-row img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--brass);
}

.foot-disc {
  font-size: 0.8rem;
  max-width: 420px;
  margin: 0 auto 1rem;
}

.foot-copy {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--brass);
  font-family: var(--font-display);
}

/* Bottom dock */
.dock {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(calc(-50% + var(--rail) / 2));
  z-index: 90;
  display: flex;
  gap: 0.4rem;
  background: var(--ink);
  border: 2px solid var(--paper);
  padding: 0.4rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.dock a,
.dock button {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.7rem 0.95rem;
  border: none;
  background: transparent;
  color: var(--paper);
  cursor: none;
  transition: background 0.2s, color 0.2s;
}

.dock a:first-child {
  background: var(--signal);
}

.dock a:hover,
.dock button:hover {
  background: var(--brass);
  color: var(--ink);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px) rotate(-0.5deg);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 960px) {
  .mosaic { grid-template-columns: repeat(2, 1fr); }
  .band-grid { grid-template-columns: 1fr; }
  .social-stack { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 780px) {
  :root { --rail: 0px; }

  .siderail { display: none; }
  .menu-fab { display: flex; }
  .mobile-drawer { display: flex; }

  main, .foot { margin-left: 0; }

  .dock { transform: translateX(-50%); }

  .rung {
    grid-template-columns: 48px 1fr;
  }

  .rung img { display: none; }

  .hero-scroll-cue { display: none; }

  .hb-lg.outline {
    -webkit-text-stroke-width: 1.5px;
  }

  body { cursor: auto; }
  .btn-slash, .btn-ghost, .ca-copy, .dock a, .dock button { cursor: pointer; }
}

@media (max-width: 480px) {
  .mosaic { grid-template-columns: 1fr; }
  .hero-ctas .btn-ghost { flex: 1 1 40%; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
