/* ============================================================
   ONCHAIN DRIP — velvet case, 24k foil, hood-green tickers
   ============================================================ */
:root {
  --velvet: #0b0a08;
  --velvet-2: #12100c;
  --velvet-3: #1a1712;
  --ink: #efe6cf;
  --ink-dim: #9f9276;
  --gold: #e8b923;
  --gold-hi: #fff3b0;
  --gold-lo: #8a6117;
  --gold-line: rgba(232, 185, 35, 0.28);
  --hood: #00c805;
  --hood-dim: rgba(0, 200, 5, 0.14);
  --rose: #ff4d6d;
  --violet: #8b7bff;

  --font-display: "Anton", "Arial Narrow", Impact, sans-serif;
  --font-plaque: "Cinzel", "Times New Roman", serif;
  --font-mono: "IBM Plex Mono", "Consolas", monospace;

  --foil: linear-gradient(
    105deg,
    var(--gold-lo) 0%,
    var(--gold) 22%,
    var(--gold-hi) 40%,
    var(--gold) 55%,
    var(--gold-lo) 78%,
    var(--gold) 100%
  );
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--velvet);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
  background-image:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(232, 185, 35, 0.07), transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% 110%, rgba(0, 200, 5, 0.05), transparent 60%);
}

::selection { background: var(--gold); color: var(--velvet); }

a { color: inherit; }

.g { color: var(--hood); }

/* ---------- foil text utility ---------- */
.foil {
  background: var(--foil);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: foil-sweep 5.5s ease-in-out infinite;
}
@keyframes foil-sweep {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ============================================================
   TICKER RAIL
   ============================================================ */
.ticker-rail {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(11, 10, 8, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gold-line);
  overflow: hidden;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  user-select: none;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-roll 42s linear infinite;
  padding: 9px 0;
}
@keyframes ticker-roll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ticker-set { display: flex; }
.tick {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  padding: 0 26px;
  white-space: nowrap;
}
.tick .sym { color: var(--ink); font-weight: 600; }
.tick .up { color: var(--hood); font-variant-numeric: tabular-nums; }
.tick .dia { color: var(--gold); font-size: 10px; align-self: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 24px 80px;
  overflow: hidden;
}

/* the chain photo backdrop, dimmed for legibility and faded into velvet below */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 10, 8, 0.5), rgba(11, 10, 8, 0.28) 45%, rgba(11, 10, 8, 0.96) 97%),
    url("assets/hero-chains.webp") center / cover no-repeat;
}

/* the three.js dust stage sits between the photo and the content */
#stage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* hero content paints above the absolutely-positioned canvas */
.hero-eyebrow, .hero h1, .hero-sub, .hero-cta { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-line);
  padding: 9px 22px;
  border-radius: 999px;
  background: rgba(232, 185, 35, 0.05);
  margin-bottom: 34px;
}
.hero-eyebrow .live {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--hood);
  box-shadow: 0 0 10px var(--hood), 0 0 22px rgba(0, 200, 5, 0.6);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.6); opacity: 0.6; }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(74px, 17vw, 236px);
  line-height: 0.88;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  filter: drop-shadow(0 18px 45px rgba(232, 185, 35, 0.22));
}
/* row = mask, rw = the glyphs GSAP slides up into view */
.hero h1 .row { display: block; overflow: hidden; padding-bottom: 0.04em; }
.hero h1 .rw { display: block; }

.hero-sub {
  margin-top: 30px;
  max-width: 46ch;
  color: var(--ink-dim);
  font-size: 15px;
}
.hero-sub b { color: var(--hood); font-weight: 600; }

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 42px;
}
.btn {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 17px 34px;
  border-radius: 3px;
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn:active { transform: translateY(2px); }
.btn-gold {
  background: var(--foil);
  background-size: 220% 100%;
  color: #241a05;
  box-shadow: 0 6px 30px rgba(232, 185, 35, 0.35);
  animation: foil-sweep 5.5s ease-in-out infinite;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 44px rgba(232, 185, 35, 0.5);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(239, 230, 207, 0.25);
}
.btn-ghost:hover { border-color: var(--hood); color: var(--hood); box-shadow: 0 0 24px var(--hood-dim); }
.btn:focus-visible, a:focus-visible {
  outline: 2px solid var(--hood);
  outline-offset: 3px;
}

/* the feathers */
.feather {
  position: absolute;
  z-index: 1;
  width: clamp(60px, 9vw, 120px);
  top: 16%;
  right: 12%;
  color: var(--hood);
  filter: drop-shadow(0 0 18px rgba(0, 200, 5, 0.55));
  animation: drift 7s ease-in-out infinite;
  pointer-events: none;
}
.feather-2 {
  top: auto; right: auto;
  bottom: 18%; left: 10%;
  width: clamp(40px, 6vw, 80px);
  color: var(--gold);
  filter: drop-shadow(0 0 14px rgba(232, 185, 35, 0.5));
  animation: drift 9s 1.2s ease-in-out infinite reverse;
}
@keyframes drift {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-26px) rotate(7deg); }
}

.scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 10.5px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-dim);
  animation: hint-bob 2.4s ease-in-out infinite;
}
@keyframes hint-bob {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.7; }
  50% { transform: translate(-50%, 8px); opacity: 1; }
}

/* ============================================================
   POEM VITRINE
   ============================================================ */
.poem {
  position: relative;
  padding: 140px 24px 150px;
  display: flex;
  justify-content: center;
}
.plaque {
  position: relative;
  max-width: 880px;
  width: 100%;
  text-align: center;
  padding: clamp(48px, 8vw, 96px) clamp(24px, 6vw, 80px);
  background: linear-gradient(180deg, var(--velvet-3), var(--velvet-2));
  border: 1px solid var(--gold-line);
  box-shadow:
    inset 0 0 0 1px rgba(11, 10, 8, 1),
    inset 0 0 0 2px rgba(232, 185, 35, 0.14),
    0 30px 80px rgba(0, 0, 0, 0.6);
}
.plaque::before,
.plaque::after {
  content: "";
  position: absolute;
  width: 34px; height: 34px;
  border-style: solid;
  border-color: var(--gold);
}
.plaque::before { top: 12px; left: 12px; border-width: 2px 0 0 2px; }
.plaque::after { bottom: 12px; right: 12px; border-width: 0 2px 2px 0; }

.plaque-label {
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
}
.plaque-label::before, .plaque-label::after { content: " ◆ "; color: var(--gold-lo); }

.verse {
  font-family: var(--font-plaque);
  font-weight: 700;
  font-size: clamp(28px, 5.4vw, 58px);
  line-height: 1.32;
  text-wrap: balance;
}
.verse .line { display: block; }

.line-rose {
  background: linear-gradient(100deg, #b3243f, var(--rose) 45%, #ffb3c0 65%, var(--rose));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.line-violet {
  background: linear-gradient(100deg, #4f43a8, var(--violet) 45%, #cfc7ff 65%, var(--violet));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.line-gold {
  font-weight: 900;
  font-size: 1.16em;
  margin-top: 10px;
}

.seal {
  margin: 52px auto 0;
  width: 108px; height: 108px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: radial-gradient(circle at 32% 28%, var(--gold-hi), var(--gold) 42%, var(--gold-lo) 88%);
  color: #241a05;
  box-shadow:
    0 10px 30px rgba(232, 185, 35, 0.35),
    inset 0 2px 4px rgba(255, 255, 255, 0.5),
    inset 0 -3px 6px rgba(0, 0, 0, 0.3);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: rotate(-8deg);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.seal:hover { transform: rotate(4deg) scale(1.06); }
.seal .check { font-size: 26px; line-height: 1; }

/* ============================================================
   GRAIL — the neon suit
   ============================================================ */
.grail {
  padding: 20px 24px 150px;
}
.grail-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 480px) 1fr;
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}
@media (max-width: 860px) {
  .grail-inner { grid-template-columns: 1fr; }
  .grail-copy { text-align: center; }
  .grail-specs li { text-align: left; }
}

.grail-frame {
  position: relative;
  border: 1px solid var(--gold-line);
  padding: 14px;
  background: linear-gradient(180deg, var(--velvet-3), var(--velvet-2));
  box-shadow:
    inset 0 0 0 2px rgba(232, 185, 35, 0.12),
    0 30px 90px rgba(0, 0, 0, 0.65),
    0 0 70px rgba(0, 200, 5, 0.16);
  overflow: hidden;
}
.grail-frame::before,
.grail-frame::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 30px; height: 30px;
  border-style: solid;
  border-color: var(--gold);
}
.grail-frame::before { top: 8px; left: 8px; border-width: 2px 0 0 2px; }
.grail-frame::after { bottom: 8px; right: 8px; border-width: 0 2px 2px 0; }

.grail-frame img {
  display: block;
  width: 100%;
  height: auto;
}
.grail-frame .sheen {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: radial-gradient(
    520px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 243, 176, 0.16),
    rgba(0, 200, 5, 0.06) 45%,
    transparent 70%
  );
}
.grail-frame:hover .sheen { opacity: 1; }

.grail-tag {
  position: absolute;
  z-index: 2;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #241a05;
  background: var(--foil);
  background-size: 220% 100%;
  animation: foil-sweep 5.5s ease-in-out infinite;
  padding: 8px 18px;
  border-radius: 2px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.55);
}

.grail-copy .kicker {
  display: block;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--hood);
  margin-bottom: 18px;
}
.grail-copy h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(46px, 7vw, 96px);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 24px;
  text-wrap: balance;
}
.grail-lede {
  color: var(--ink-dim);
  font-size: 14.5px;
  max-width: 52ch;
  margin-bottom: 30px;
}
.grail-lede b { color: var(--hood); font-weight: 600; }

.grail-specs {
  list-style: none;
  margin-bottom: 30px;
}
.grail-specs li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 0;
  border-bottom: 1px dashed rgba(232, 185, 35, 0.22);
  font-size: 12.5px;
}
.grail-specs li span:first-child {
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10.5px;
  padding-top: 2px;
}
.grail-specs li span:last-child { color: var(--ink); text-align: right; }

.grail .price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  max-width: 340px;
  padding-top: 6px;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 860px) { .grail .price-row { margin: 0 auto; } }
.grail .price { color: var(--gold); font-weight: 600; font-size: 19px; }
.grail .delta { color: var(--hood); font-size: 14px; font-weight: 600; }

/* ============================================================
   COLLECTION
   ============================================================ */
.collection {
  padding: 40px 24px 130px;
  max-width: 1240px;
  margin: 0 auto;
}
.section-head {
  text-align: center;
  margin-bottom: 70px;
}
.section-head .kicker {
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--hood);
  display: block;
  margin-bottom: 18px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(42px, 7.5vw, 92px);
  line-height: 0.95;
  text-transform: uppercase;
  text-wrap: balance;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.card {
  position: relative;
  background: linear-gradient(180deg, var(--velvet-3), var(--velvet-2));
  border: 1px solid rgba(232, 185, 35, 0.18);
  padding: 34px 28px 30px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  border-color: rgba(232, 185, 35, 0.55);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55), 0 0 40px rgba(232, 185, 35, 0.12);
}
/* holographic sheen follows the pointer via --mx/--my */
.card .sheen {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: radial-gradient(
    420px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 243, 176, 0.14),
    rgba(0, 200, 5, 0.05) 45%,
    transparent 70%
  );
}
.card:hover .sheen { opacity: 1; }

.card .art {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  color: var(--gold);
  filter: drop-shadow(0 6px 18px rgba(232, 185, 35, 0.3));
}
.card .art svg { width: 92px; height: 92px; }
.card:nth-child(3) .art { color: var(--hood); filter: drop-shadow(0 6px 18px rgba(0, 200, 5, 0.35)); }

.card .no {
  position: absolute;
  top: 18px; right: 20px;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--ink-dim);
}
.card h3 {
  font-family: var(--font-plaque);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  color: var(--ink);
}
.card p {
  font-size: 12.5px;
  color: var(--ink-dim);
  line-height: 1.7;
  min-height: 3.4em;
}
.card .price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed rgba(232, 185, 35, 0.25);
  font-variant-numeric: tabular-nums;
}
.card .price { color: var(--gold); font-weight: 600; font-size: 15px; }
.card .delta { color: var(--hood); font-size: 12.5px; font-weight: 600; }

/* ============================================================
   FIT LAB — build your own drip
   ============================================================ */
.lab {
  padding: 40px 24px 140px;
  max-width: 1240px;
  margin: 0 auto;
}
.lab-inner {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: start;
}
@media (max-width: 860px) {
  .lab-inner { grid-template-columns: 1fr; }
}

.lab-preview { position: sticky; top: 70px; }
@media (max-width: 860px) { .lab-preview { position: static; } }

.lab-frame img { transition: opacity 0.25s ease; }
.lab-frame img.swapping { opacity: 0; }

.lab-score {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 18px;
  padding: 16px 20px;
  border: 1px solid var(--gold-line);
  background: linear-gradient(180deg, rgba(232, 185, 35, 0.05), transparent);
}
.lab-score-cap {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.lab-score-num {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  color: var(--hood);
  font-variant-numeric: tabular-nums;
}

.lab-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 26px 0 12px;
  display: block;
}
.lab-label:first-child { margin-top: 0; }
.lab-hint {
  text-transform: none;
  letter-spacing: 0.05em;
  color: var(--ink-dim);
  font-size: 10.5px;
}

.lab-input {
  width: 100%;
  max-width: 340px;
  background: var(--velvet-3);
  border: 1px solid rgba(232, 185, 35, 0.3);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 16px;
  border-radius: 3px;
}
.lab-input:focus-visible {
  outline: 2px solid var(--hood);
  outline-offset: 2px;
  border-color: var(--hood);
}
.lab-input::placeholder { color: var(--ink-dim); opacity: 0.6; }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.chip {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink);
  background: var(--velvet-3);
  border: 1px solid rgba(239, 230, 207, 0.18);
  border-radius: 999px;
  padding: 9px 17px;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.chip:hover { border-color: var(--gold); }
.chip:focus-visible { outline: 2px solid var(--hood); outline-offset: 2px; }
.chip[aria-pressed="true"] {
  color: #241a05;
  background: var(--foil);
  background-size: 220% 100%;
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(232, 185, 35, 0.35);
  font-weight: 600;
}
.chips.disabled .chip {
  opacity: 0.35;
  pointer-events: none;
}

.lab-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.lab-receipt {
  margin-top: 22px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-dim);
  border-top: 1px dashed rgba(232, 185, 35, 0.25);
  padding-top: 16px;
  min-height: 2.6em;
  font-variant-numeric: tabular-nums;
}
.lab-receipt b { color: var(--gold); font-weight: 600; }

/* ============================================================
   PFP STUDIO — drag the drip
   ============================================================ */
.studio {
  padding: 40px 24px 140px;
  max-width: 1240px;
  margin: 0 auto;
}
.studio-inner {
  display: grid;
  grid-template-columns: minmax(300px, 520px) 1fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: start;
}
@media (max-width: 900px) {
  .studio-inner { grid-template-columns: 1fr; }
}

.studio-frame {
  position: relative;
  border: 1px solid var(--gold-line);
  padding: 12px;
  background: linear-gradient(180deg, var(--velvet-3), var(--velvet-2));
  box-shadow:
    inset 0 0 0 2px rgba(232, 185, 35, 0.12),
    0 30px 90px rgba(0, 0, 0, 0.65),
    0 0 60px rgba(0, 200, 5, 0.12);
}
#pfpCanvas {
  display: block;
  width: 100%;
  height: auto;
  cursor: grab;
  touch-action: none;
}
#pfpCanvas.grabbing { cursor: grabbing; }
.studio-hint {
  margin-top: 14px;
  text-align: center;
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.studio-bases {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.base-thumb {
  width: 72px;
  height: 72px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid rgba(239, 230, 207, 0.2);
  overflow: hidden;
  cursor: pointer;
  background: var(--velvet-3);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.base-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.base-thumb:hover { border-color: var(--gold); transform: translateY(-2px); }
.base-thumb:focus-visible { outline: 2px solid var(--hood); outline-offset: 2px; }
.base-thumb[aria-pressed="true"] {
  border-color: var(--hood);
  box-shadow: 0 0 18px rgba(0, 200, 5, 0.45);
}
.base-upload {
  border-style: dashed;
  border-color: var(--gold-line);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 28px;
  line-height: 1;
}
.base-upload:hover { border-color: var(--gold); }

.studio-tools .chip { font-size: 11.5px; padding: 8px 14px; }

/* ============================================================
   RECEIPTS
   ============================================================ */
.receipts {
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  background: linear-gradient(180deg, rgba(232, 185, 35, 0.04), transparent);
}
.receipts-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.receipt {
  padding: 44px 28px;
  text-align: center;
  border-left: 1px solid rgba(232, 185, 35, 0.14);
}
.receipt:first-child { border-left: none; }
.receipt .big {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.receipt .cap {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
@media (max-width: 720px) {
  .receipt { border-left: none; border-top: 1px solid rgba(232, 185, 35, 0.14); }
  .receipt:first-child { border-top: none; }
}

/* ============================================================
   GIANT MARQUEE
   ============================================================ */
.mega-marquee {
  overflow: hidden;
  padding: 90px 0;
  user-select: none;
}
.mega-track {
  display: flex;
  width: max-content;
  animation: ticker-roll 30s linear infinite;
}
.mega-track span {
  font-family: var(--font-display);
  font-size: clamp(60px, 11vw, 150px);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  padding-right: 60px;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(232, 185, 35, 0.5);
}
.mega-track span em {
  font-style: normal;
  -webkit-text-stroke: 0;
  background: var(--foil);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: foil-sweep 5.5s ease-in-out infinite;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  border-top: 1px solid var(--gold-line);
  padding: 64px 24px 46px;
  text-align: center;
}
footer .mini-verse {
  font-family: var(--font-plaque);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--ink-dim);
  margin-bottom: 26px;
}
footer .mini-verse b { color: var(--gold); font-weight: 700; }
footer .fine {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(159, 146, 118, 0.65);
  max-width: 62ch;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================================
   RAIN + SPARKLE
   ============================================================ */
.rain-drop {
  position: fixed;
  top: -60px;
  z-index: 90;
  pointer-events: none;
  animation: rain-fall linear forwards;
  will-change: transform;
}
@keyframes rain-fall {
  to { transform: translateY(115vh) rotate(340deg); }
}
.spark {
  position: fixed;
  z-index: 95;
  pointer-events: none;
  width: 6px; height: 6px;
  background: radial-gradient(circle, var(--gold-hi), var(--gold) 55%, transparent 75%);
  border-radius: 50%;
  animation: spark-fade 0.7s ease-out forwards;
  will-change: transform, opacity;
}
@keyframes spark-fade {
  to { transform: translateY(-22px) scale(0.1); opacity: 0; }
}

/* ============================================================
   MOTION SAFETY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
