:root {
  --ink:       #f3f3f6;
  --ink_soft:  #b8b8c0;
  --ink_dim:  #6e6e76;
  --void:      #000000;
  --void2:     #050507;
  --void3:     #0c0c10;
  --silver:    #d8d8de;
  --silver2:   #b4b4bc;
  --silver_dim:#7a7a82;
  --chrome:    #fafafe;
  --chrome_hi: #ffffff;
  --tile:      rgba(255,255,255,0.06);
  --tile_hi:   rgba(255,255,255,0.14);
  --glint:     rgba(255,255,255,0.85);
  --rule:      rgba(255,255,255,0.10);
  --rule_soft: rgba(255,255,255,0.05);
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--void);
  color: var(--ink);
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* mirror tile grid texture + distant spotlight glints */
body {
  background-color: var(--void);
  background-image:
    radial-gradient(circle at 18% 8%,  rgba(255,255,255,0.10), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(255,255,255,0.06), transparent 28%),
    radial-gradient(circle at 12% 78%, rgba(255,255,255,0.05), transparent 30%),
    radial-gradient(circle at 88% 92%, rgba(255,255,255,0.06), transparent 30%),
    repeating-linear-gradient(0deg,  rgba(255,255,255,0.028) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.028) 0 1px, transparent 1px 22px);
  background-attachment: fixed, fixed, fixed, fixed, fixed, fixed;
}

main {
  max-width: 980px;
  margin: 0 auto;
  padding: 36px 22px 60px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  text-align: center;
  padding: 28px 0 36px;
}

.hero-logo {
  display: block;
  margin: 0 auto 14px;
  width: 320px;
  max-width: 70vw;
  height: auto;
  border-radius: 20px;
  box-shadow:
    0 0 60px rgba(255,255,255,0.18),
    0 0 120px rgba(255,255,255,0.10),
    0 14px 60px rgba(0,0,0,0.7),
    inset 0 0 0 1px rgba(255,255,255,0.18);
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.22));
}

/* sparkle stars */
.sparkles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.sp {
  position: absolute;
  width: 14px; height: 14px;
  background:
    radial-gradient(circle, #fff 0%, rgba(255,255,255,0.7) 22%, transparent 60%);
  border-radius: 50%;
  animation: twinkle 2.6s infinite ease-in-out;
}
.sp::before, .sp::after {
  content: ""; position: absolute;
  left: -50%; right: -50%; top: 50%;
  height: 2px; transform: translateY(-1px);
  background: linear-gradient(90deg, transparent, #fff, transparent);
  filter: blur(0.3px);
}
.sp::after { transform: translateY(-1px) rotate(90deg); }
.sp1 { top: 6%;  left: 8%;  animation-delay: 0s;   }
.sp2 { top: 12%; right: 10%; animation-delay: 0.5s; }
.sp3 { top: 32%; left: 4%;   animation-delay: 1.0s; }
.sp4 { top: 40%; right: 6%;  animation-delay: 1.5s; width: 10px; height: 10px; }
.sp5 { top: 68%; left: 12%;  animation-delay: 2.0s; }
.sp6 { top: 76%; right: 14%; animation-delay: 0.3s; width: 18px; height: 18px; }
@keyframes twinkle {
  0%, 100% { opacity: 0.15; transform: scale(0.6); }
  50%      { opacity: 1;    transform: scale(1.5); }
}

/* DISCO MODE wordmark, polished chrome */
.wordmark {
  font-family: 'Impact', 'Anton', 'Arial Black', 'Helvetica Neue', sans-serif;
  font-size: clamp(54px, 13vw, 130px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin: 8px 0 6px;
  text-transform: uppercase;
}
.wm {
  display: inline-block;
  color: transparent;
  background:
    linear-gradient(180deg,
      #ffffff 0%,
      #f4f4f8 22%,
      #c2c2cc 46%,
      #6e6e78 52%,
      #d8d8e0 58%,
      #ffffff 82%,
      #ffffff 100%);
  background-size: 100% 240%;
  background-position: 0% 0%;
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow:
    0 0 1px rgba(255,255,255,0.85),
    0 2px 4px rgba(0,0,0,0.85),
    0 6px 22px rgba(255,255,255,0.22),
    0 0 40px rgba(255,255,255,0.10);
  animation: shimmer 3.2s linear infinite;
}
.wm-gap { display: inline-block; width: 0.35ch; }
@keyframes shimmer {
  0%   { background-position: 0% 0%; }
  100% { background-position: 0% 240%; }
}
.wm1 { animation-delay: 0s;    }
.wm2 { animation-delay: 0.10s; }
.wm3 { animation-delay: 0.20s; }
.wm4 { animation-delay: 0.30s; }
.wm5 { animation-delay: 0.40s; }
.wm6 { animation-delay: 0.50s; }
.wm7 { animation-delay: 0.60s; }
.wm8 { animation-delay: 0.70s; }
.wm9 { animation-delay: 0.80s; }

.ticker {
  margin: 6px 0 14px;
  font-family: ui-monospace, 'SF Mono', Consolas, 'Courier New', monospace;
  font-size: 12px;
  letter-spacing: 0.42em;
  color: var(--silver2);
  text-transform: uppercase;
}

.tag {
  margin: 0 auto 28px;
  max-width: 540px;
  font-size: 19px;
  font-style: italic;
  color: var(--silver);
  letter-spacing: 0.01em;
  text-shadow: 0 0 14px rgba(255,255,255,0.12);
}

/* CTA buttons, all chrome */
.cta-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 8px 0 0;
}
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  text-decoration: none;
  transition: transform 0.12s, box-shadow 0.18s, background 0.18s, color 0.18s, border-color 0.18s;
  border: 1px solid rgba(255,255,255,0.35);
  position: relative;
}
.btn-primary {
  background:
    linear-gradient(180deg, #ffffff 0%, #d4d4dc 38%, #8a8a92 52%, #d8d8e0 66%, #ffffff 100%);
  color: #050307;
  box-shadow:
    0 4px 20px rgba(255,255,255,0.18),
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 -1px 0 rgba(0,0,0,0.25);
  border-color: rgba(255,255,255,0.65);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 8px 30px rgba(255,255,255,0.30),
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 -1px 0 rgba(0,0,0,0.25);
}
.btn-ghost {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.03) 100%);
  border-color: rgba(255,255,255,0.22);
}
.btn-ghost:hover {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.06) 100%);
  border-color: var(--chrome);
  color: var(--chrome);
}

/* ============ SECTION HEADER ============ */
.sect-h {
  font-family: 'Impact', 'Anton', 'Arial Black', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: clamp(28px, 5vw, 44px);
  margin: 0 0 6px;
  background:
    linear-gradient(180deg,
      #ffffff 0%,
      #d4d4dc 40%,
      #6e6e78 52%,
      #d8d8e0 60%,
      #ffffff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 22px rgba(255,255,255,0.12);
}
.sect-sub {
  margin: 0 0 22px;
  color: var(--silver2);
  font-size: 14px;
  letter-spacing: 0.04em;
}

/* ============ LORE ============ */
.lore {
  margin: 36px 0;
  padding: 28px 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}
/* faint mirror tile facet pattern inside the card */
.lore::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 18px;
  pointer-events: none;
  background:
    repeating-linear-gradient(45deg,  rgba(255,255,255,0.025) 0 1px, transparent 1px 12px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 12px),
    radial-gradient(circle at 0% 0%,   rgba(255,255,255,0.10), transparent 45%),
    radial-gradient(circle at 100% 100%, rgba(255,255,255,0.08), transparent 45%);
}
.lore p {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 16.5px;
  line-height: 1.72;
  position: relative;
}
.lore p strong { color: var(--chrome); font-weight: 800; letter-spacing: 0.01em; }
.lore-tag {
  margin: 18px 0 0;
  font-family: 'Comic Sans MS', 'Comic Sans', cursive;
  font-style: italic;
  font-size: 18px;
  text-align: center;
  color: var(--chrome);
  text-shadow: 0 0 14px rgba(255,255,255,0.45);
  position: relative;
}

/* ============ DEMO VIDEO ============ */
.demo { margin: 48px 0; text-align: center; }
.video-frame {
  position: relative;
  margin: 0 auto;
  max-width: 720px;
  padding: 6px;
  background:
    conic-gradient(from 0deg,
      #ffffff 0deg,
      #6e6e78 60deg,
      #ffffff 120deg,
      #8a8a92 180deg,
      #ffffff 240deg,
      #6e6e78 300deg,
      #ffffff 360deg);
  border-radius: 22px;
  animation: rotateSlow 10s linear infinite;
  box-shadow:
    0 0 40px rgba(255,255,255,0.18),
    0 16px 50px rgba(0,0,0,0.6);
}
.video-frame::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0) 40%);
  pointer-events: none;
}
@keyframes rotateSlow {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* counter rotate inner so video stays upright */
.video-frame video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  background: #000;
  position: relative;
  animation: rotateSlowReverse 10s linear infinite;
}
@keyframes rotateSlowReverse {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

/* ============ GALLERY ============ */
.gallery { margin: 56px 0; text-align: center; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 440px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
.g-tile {
  margin: 0;
  background: #000;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.18s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
}
.g-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), transparent 35%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}
.g-tile:hover {
  transform: translateY(-3px) scale(1.012);
  border-color: rgba(255,255,255,0.7);
  box-shadow:
    0 16px 38px rgba(0,0,0,0.6),
    0 0 30px rgba(255,255,255,0.25),
    inset 0 0 0 1px rgba(255,255,255,0.35);
}
.g-tile:hover::after { opacity: 1; }
.g-tile img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.g-tile figcaption {
  padding: 10px 8px;
  font-size: 13px;
  color: var(--silver);
  letter-spacing: 0.06em;
  text-transform: lowercase;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0));
  position: relative;
}
.g-tile-wide { grid-column: span 3; }
.g-tile-wide img { height: 260px; object-fit: cover; }
@media (max-width: 720px) {
  .g-tile-wide { grid-column: span 2; }
}
@media (max-width: 440px) {
  .g-tile-wide { grid-column: span 1; }
  .g-tile img { height: 220px; }
}

/* ============ COIN ============ */
.coin { margin: 56px 0 36px; text-align: center; }
.ca-box {
  margin: 6px auto 14px;
  display: inline-flex;
  align-items: stretch;
  max-width: 100%;
  border-radius: 999px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.32);
  box-shadow:
    0 0 22px rgba(255,255,255,0.16),
    inset 0 1px 0 rgba(255,255,255,0.18);
}
.ca-label {
  background:
    linear-gradient(180deg, #ffffff 0%, #d4d4dc 40%, #6e6e78 56%, #d8d8e0 68%, #ffffff 100%);
  color: #050307;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  font-family: ui-monospace, monospace;
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.9);
}
.ca-copy {
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 11px 14px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font: inherit;
  min-width: 0;
}
.ca-text {
  font-family: ui-monospace, 'SF Mono', Consolas, 'Courier New', monospace;
  font-size: 13px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 34ch;
  color: var(--chrome);
}
.ca-hint {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver);
  flex-shrink: 0;
}
.ca-copy:hover .ca-hint { color: var(--chrome); text-shadow: 0 0 8px rgba(255,255,255,0.6); }
.ca-copy.copied .ca-hint { color: var(--chrome); text-shadow: 0 0 12px rgba(255,255,255,0.9); }

@media (max-width: 480px) {
  .ca-text { max-width: 18ch; font-size: 12px; }
}

.coin-links {
  margin: 6px 0 0;
  color: var(--silver2);
  font-size: 14px;
}
.coin-links a {
  color: var(--chrome);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.18s, text-shadow 0.18s;
}
.coin-links a:hover {
  border-bottom-color: var(--chrome);
  text-shadow: 0 0 12px rgba(255,255,255,0.6);
}
.coin-links .dot { color: var(--ink_dim); margin: 0 4px; }

/* ============ FOOTER ============ */
.foot {
  margin: 60px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  text-align: center;
  position: relative;
}
.foot::before {
  content: "";
  position: absolute; left: 50%; top: -1px;
  transform: translateX(50%);
  width: 50%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  pointer-events: none;
}
.foot p { margin: 4px 0; }
.foot-mark {
  font-family: 'Impact', 'Anton', sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--silver);
}
.foot-copy {
  font-size: 11.5px;
  color: var(--ink_dim);
  letter-spacing: 0.04em;
}

/* ============ A11Y / motion ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .video-frame video { transform: none !important; }
}
