:root {
  --bg-deep: #05060a;
  --bg-panel: rgba(18, 20, 32, 0.72);
  --pink: #ff2d95;
  --pink-dim: #c91b72;
  --yellow: #ffe600;
  --gold: #d4af37;
  --text: #eef0ff;
  --muted: rgba(238, 240, 255, 0.68);
  --border: rgba(255, 255, 255, 0.1);
  --radius: 16px;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --font-tag: "Permanent Marker", cursive;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg-deep);
  background-image:
    radial-gradient(1200px 600px at 10% -10%, rgba(255, 45, 149, 0.28), transparent 55%),
    radial-gradient(900px 500px at 90% 0%, rgba(255, 230, 0, 0.08), transparent 50%),
    radial-gradient(800px 500px at 50% 100%, rgba(212, 175, 55, 0.12), transparent 55%);
  overflow-x: hidden;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(5, 6, 10, 0.85);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.brand {
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  font-size: 1.75rem;
  color: var(--pink);
  text-shadow:
    0 0 12px rgba(255, 45, 149, 0.9),
    0 0 32px rgba(255, 45, 149, 0.45);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 2px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  align-items: center;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav a {
  padding: 0.35rem 0.2rem;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s, text-shadow 0.2s;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--yellow);
  border-color: var(--pink);
  outline: none;
}

@media (max-width: 760px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 1px);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    background: rgba(5, 6, 10, 0.97);
    border-bottom: 1px solid var(--border);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
  }
}

main {
  position: relative;
  z-index: 1;
}

.container {
  width: min(1100px, 100% - 2rem);
  margin-inline: auto;
}

.container.narrow {
  width: min(640px, 100% - 2rem);
}

.hero {
  padding: clamp(2rem, 6vw, 4rem) 1rem 3rem;
  text-align: center;
}

.hero-inner {
  max-width: min(720px, 100%);
  margin-inline: auto;
}

.eyebrow {
  font-family: var(--font-tag);
  color: var(--muted);
  font-size: 1rem;
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 18vw, 9rem);
  line-height: 0.9;
  margin: 0;
  letter-spacing: 0.02em;
  color: var(--pink);
  text-shadow:
    0 0 20px rgba(255, 45, 149, 0.85),
    0 0 60px rgba(255, 45, 149, 0.35),
    3px 3px 0 var(--pink-dim);
}

.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  pointer-events: none;
}

.glitch::before {
  color: var(--yellow);
  z-index: -1;
  transform: translate(2px, 2px);
  opacity: 0.35;
}

.glitch::after {
  color: #7cf7ff;
  z-index: -2;
  transform: translate(-2px, -1px);
  opacity: 0.2;
}

.hero-tagline {
  font-size: clamp(1.15rem, 3.5vw, 1.5rem);
  font-weight: 700;
  max-width: 34ch;
  margin: 1rem auto 0;
}

.hl-yellow {
  color: var(--yellow);
}

.hl-pink {
  color: var(--pink);
}

.hl-black {
  color: #0c0c0f;
  font-weight: 800;
}

.glow-sm {
  text-shadow: 0 0 18px rgba(255, 45, 149, 0.75);
}

.hero-visual {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 3vw, 1.5rem);
  margin-top: 1.75rem;
  max-width: min(640px, 100%);
  margin-inline: auto;
}

.hero-coin-wrap {
  margin: 0 auto;
  max-width: min(260px, 68vw);
  position: relative;
}

.hero-side-art {
  flex: 0 1 auto;
  max-width: min(200px, 42vw);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.42),
    0 0 24px rgba(255, 45, 149, 0.1);
  transform: rotate(1.5deg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-side-art:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.48),
    0 0 32px rgba(255, 45, 149, 0.18);
}

.hero-side-art img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 640px) {
  .hero-visual {
    gap: 1rem;
  }

  .hero-side-art {
    max-width: min(200px, 72vw);
    transform: rotate(0deg);
    order: 1;
    margin-inline: auto;
  }

  .hero-coin-wrap {
    order: 0;
    max-width: min(240px, 72vw);
  }
}

.hero-coin-wrap::before {
  content: "";
  position: absolute;
  inset: 12% 8%;
  background: radial-gradient(circle, rgba(255, 45, 149, 0.45) 0%, transparent 70%);
  filter: blur(28px);
  z-index: 0;
}

.hero-coin {
  position: relative;
  z-index: 1;
  margin-inline: auto;
  border-radius: 50%;
  filter: drop-shadow(0 0 24px rgba(212, 175, 55, 0.45));
  transition: transform 0.35s ease, filter 0.35s ease;
}

.hero-coin:hover {
  transform: scale(1.03) rotate(-1.5deg);
  filter: drop-shadow(0 0 36px rgba(255, 45, 149, 0.55));
}

.tape {
  display: inline-block;
  margin: 2rem auto 0;
  padding: 0.65rem 1.25rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  max-width: 100%;
  transform: rotate(-1.5deg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.tape-pink {
  background: linear-gradient(90deg, var(--yellow), #fff48a);
  color: #12131a;
  border: 2px dashed rgba(0, 0, 0, 0.15);
}

.tape-yellow {
  background: linear-gradient(90deg, var(--yellow), #fff48a);
  color: #12131a;
  border: 2px dashed rgba(0, 0, 0, 0.15);
  transform: rotate(0.5deg);
}

.hero-cta {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
}

.hero-cta strong {
  color: var(--pink);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-dim));
  color: #fff;
  box-shadow: 0 0 24px rgba(255, 45, 149, 0.45);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(255, 45, 149, 0.6);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.section {
  padding: clamp(2.5rem, 6vw, 4.5rem) 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  letter-spacing: 0.06em;
  margin: 0 0 1.25rem;
  color: var(--yellow);
  text-shadow: 0 0 18px rgba(255, 230, 0, 0.25);
}

.section-title .dot {
  color: var(--pink);
}

.section-title.centered,
.section-lede.centered {
  text-align: center;
}

.section-lede {
  margin-top: -0.5rem;
  color: var(--muted);
  font-weight: 600;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.section-launch {
  padding-top: clamp(2rem, 5vw, 3.25rem);
  padding-bottom: clamp(2rem, 5vw, 3.25rem);
}

.countdown-shell {
  max-width: min(640px, 100%);
  margin-inline: auto;
}

.countdown-sub {
  margin: -0.35rem 0 1.5rem;
  font-weight: 600;
  color: var(--muted);
  font-size: 0.98rem;
}

.countdown-sub .countdown-tz {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(238, 240, 255, 0.45);
}

.countdown-live[hidden],
.countdown-expired[hidden] {
  display: none !important;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.5rem, 3vw, 1rem);
}

.countdown-cell {
  text-align: center;
  padding: clamp(0.65rem, 2.5vw, 1rem) 0.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 45, 149, 0.28);
  background: linear-gradient(160deg, rgba(18, 20, 36, 0.92), rgba(6, 7, 14, 0.98));
  box-shadow:
    0 0 24px rgba(255, 45, 149, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.countdown-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 7vw, 2.65rem);
  line-height: 1.05;
  letter-spacing: 0.04em;
  color: var(--yellow);
  text-shadow:
    0 0 18px rgba(255, 230, 0, 0.35),
    0 0 40px rgba(255, 45, 149, 0.2);
}

.countdown-unit {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.countdown-expired {
  margin: 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5.5vw, 2.5rem);
  letter-spacing: 0.06em;
  color: var(--pink);
  text-shadow:
    0 0 20px rgba(255, 45, 149, 0.75),
    0 0 50px rgba(255, 45, 149, 0.25);
  animation: flicker 4s ease-in-out infinite;
}

.section-gallery .container {
  width: min(720px, 100% - 2rem);
}

.section-gallery .section-lede {
  margin-bottom: 1.5rem;
  max-width: 36ch;
  margin-inline: auto;
}

.marketing-bento {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .marketing-bento {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }

  .marketing-tile--wide {
    grid-column: 1 / -1;
  }

  .marketing-tile--full {
    grid-column: 1 / -1;
  }
}

.marketing-tile {
  margin: 0;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(14, 16, 28, 0.95), rgba(6, 7, 12, 0.98));
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.45rem, 2vw, 0.65rem);
  min-height: 0;
}

.marketing-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 45, 149, 0.22);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.45),
    0 0 28px rgba(255, 45, 149, 0.08);
}

.marketing-tile img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: clamp(180px, 28vw, 260px);
  display: block;
  margin-inline: auto;
  object-fit: contain;
  border-radius: 6px;
}

.marketing-tile--wide img,
.marketing-tile--full img {
  max-height: clamp(220px, 34vw, 320px);
}

@media (max-width: 639px) {
  .marketing-tile img {
    max-height: min(220px, 48vh);
  }

  .marketing-tile--wide img,
  .marketing-tile--full img {
    max-height: min(260px, 52vh);
  }
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  align-items: stretch;
}

.about-art-frame {
  align-self: center;
  width: fit-content;
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    0 10px 32px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 0.4rem;
  background: linear-gradient(165deg, rgba(12, 14, 22, 0.9), rgba(6, 7, 12, 0.95));
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-art-frame img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(280px, 42vw);
  display: block;
  object-fit: contain;
  border-radius: 8px;
}

@media (max-width: 860px) {
  .about-art-frame img {
    max-height: min(240px, 58vh);
  }
}

.poster-stack-compact {
  gap: 0.85rem;
}

@media (max-width: 860px) {
  .split-grid {
    grid-template-columns: 1fr;
  }
}

.features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  background: var(--bg-panel);
  border: 1px solid var(--border);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.88rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.feature-icon {
  font-size: 1.5rem;
  line-height: 1;
  filter: drop-shadow(0 0 10px rgba(255, 230, 0, 0.35));
}

.poster-stack {
  display: grid;
  gap: 1rem;
}

.poster {
  padding: 1.25rem 1.35rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 800;
  letter-spacing: 0.03em;
  font-size: 1rem;
  line-height: 1.45;
  position: relative;
  overflow: hidden;
}

.poster::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
}

.poster-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

.tape-inline {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  background: var(--yellow);
  color: #15151a;
  transform: skewX(-6deg);
}

.poster-dark {
  background: linear-gradient(135deg, #12131f, #0a0b12);
  color: var(--text);
}

.poster-pink {
  background: linear-gradient(135deg, #ff2d95, #a31155);
  color: #08080c;
}

.poster-gold {
  background: linear-gradient(135deg, #c79b2e, #8a6618);
  color: #0c0a06;
}

.section-chart .section-lede {
  text-align: center;
  margin-bottom: 1.5rem;
}

.chart-promo-banner {
  margin: 0 auto 1.25rem;
  max-width: min(480px, 94%);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  padding: 0.5rem;
  background: linear-gradient(165deg, rgba(12, 14, 22, 0.9), rgba(6, 7, 12, 0.96));
  display: flex;
  align-items: center;
  justify-content: center;
}

.chart-promo-banner img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(240px, 38vw);
  display: block;
  object-fit: contain;
  border-radius: 8px;
}

@media (max-width: 600px) {
  .chart-promo-banner img {
    max-height: min(200px, 52vh);
  }
}

.chart-panel {
  margin-top: 0.5rem;
  padding: 1.25rem;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(10, 12, 22, 0.85));
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.chart-svg {
  width: 100%;
  height: auto;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 0%, rgba(255, 45, 149, 0.08), transparent 55%);
}

.chart-line {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: drawLine 2.4s ease forwards 0.2s;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

.chart-caption {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.pill {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 45, 149, 0.45);
  color: var(--muted);
}

.section-donate {
  padding-bottom: 2rem;
}

.donate-intro {
  margin: 0 auto 1.5rem;
  max-width: 42ch;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.6;
}

.donate-intro strong {
  color: var(--yellow);
}

.donate-box {
  margin-top: 0;
  padding: 1.35rem;
  border-radius: 18px;
  background: rgba(10, 12, 22, 0.9);
  border: 1px solid rgba(255, 230, 0, 0.25);
  text-align: center;
  box-shadow: 0 0 40px rgba(255, 45, 149, 0.12);
}

.donate-label {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: 0.22em;
  color: var(--gold);
}

.donate-address {
  display: block;
  margin: 0.85rem 0 1rem;
  padding: 0.75rem;
  word-break: break-all;
  font-size: clamp(0.82rem, 2.6vw, 0.98rem);
  color: var(--yellow);
  background: rgba(0, 0, 0, 0.35);
  border-radius: 10px;
  border: 1px dashed rgba(255, 255, 255, 0.15);
}

.btn-copy {
  background: transparent;
  color: var(--pink);
  border-color: rgba(255, 45, 149, 0.55);
  font-size: 0.85rem;
}

.btn-copy:hover {
  background: rgba(255, 45, 149, 0.12);
  box-shadow: 0 0 20px rgba(255, 45, 149, 0.25);
}

.donate-toast {
  min-height: 1.5em;
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: var(--gold);
}

.section-community {
  text-align: center;
  padding-bottom: 4rem;
}

.community-hero-img {
  margin: 0 auto 1.5rem;
  max-width: min(560px, 94%);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    0 10px 34px rgba(0, 0, 0, 0.4),
    0 0 28px rgba(255, 45, 149, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  padding: 0.5rem;
  background: linear-gradient(165deg, rgba(12, 14, 22, 0.9), rgba(6, 7, 12, 0.96));
  display: flex;
  align-items: center;
  justify-content: center;
}

.community-hero-img img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(260px, 40vw);
  display: block;
  object-fit: contain;
  border-radius: 8px;
}

@media (max-width: 600px) {
  .community-hero-img img {
    max-height: min(220px, 48vh);
  }
}

.coming-soon {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 10vw, 5rem);
  margin: 0;
  letter-spacing: 0.08em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 45, 149, 0.55);
  text-shadow:
    0 0 20px rgba(255, 45, 149, 0.75),
    0 0 60px rgba(255, 45, 149, 0.35);
  animation: flicker 4s ease-in-out infinite;
}

@keyframes flicker {
  0%,
  100% {
    opacity: 1;
  }
  45% {
    opacity: 0.92;
  }
  50% {
    opacity: 0.85;
  }
  55% {
    opacity: 0.95;
  }
}

.stay-chaos {
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0.75rem 0 1.75rem;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: rgba(0, 0, 0, 0.35);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.social-pill span:first-child {
  font-size: 1.05rem;
}

.social-pill:hover {
  transform: translateY(-2px);
  border-color: var(--pink);
  box-shadow: 0 0 24px rgba(255, 45, 149, 0.25);
}

.footer-tape {
  margin-inline: auto;
  font-weight: 800;
  font-size: clamp(0.85rem, 2.8vw, 1rem);
}

.tagline-bottom {
  margin-top: 1.25rem;
  font-family: var(--font-tag);
  color: var(--muted);
}

.disclaimer {
  max-width: 52ch;
  margin: 2.5rem auto 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.skull {
  color: var(--pink);
  margin-right: 0.35rem;
}

.site-footer {
  padding: 1.25rem 1rem 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--muted);
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-row a {
  font-weight: 600;
  color: var(--yellow);
}

.footer-row a:hover {
  color: var(--pink);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto;
  }

  .chart-line {
    stroke-dashoffset: 0;
  }
}
