/* ==========================================================================
   MILKERS — design tokens (mirroring commodities.bid)
   ========================================================================== */
:root {
  --bg: #0b0d10;
  --bg-elev: #0f1114;
  --surface: #14171b;
  --surface-2: #1a1e23;
  --surface-3: #22272d;
  --line: #ffffff12;
  --line-strong: #ffffff24;
  --text: #f4f6f8;
  --text-2: #a3aab3;
  --text-3: #6f7780;
  --green: #34e08c;
  --green-bright: #5cff9f;
  --green-ink: #06140b;
  --green-tint: #34e08c1f;
  --green-glow: #34e08c47;
  --amber: #f2b544;
  --amber-tint: #f2b5441f;
  --pink: #fc87a5;
  --pink-bright: #ffa5bd;
  --pink-tint: #fc87a51f;
  --pink-glow: #fc87a54d;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-xs: 6px;
  --pill: 999px;
  --shadow: 0 12px 40px #00000073;
  --shell: 1200px;
  --header-h: 64px;
  --sans: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --mono: "JetBrains Mono", Consolas, "SFMono-Regular", monospace;
  --display: "Silkscreen", var(--mono);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  /* faint grid, like a trading terminal */
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, #ffffff05 1px, transparent 1px),
    linear-gradient(to bottom, #ffffff05 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 0%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 0%, transparent 70%);
  z-index: 0;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--text); }
button { font: inherit; color: inherit; }
h1, h2, h3, p, dl, dd, ul { margin: 0; }
ul { padding: 0; list-style: none; }
em { font-style: normal; color: var(--green); }
strong { font-weight: 600; color: var(--text); }
.nowrap { white-space: nowrap; }
.mono { font-family: var(--mono); }
.dim { color: var(--text-3); }

.shell {
  width: min(var(--shell), calc(100% - 40px));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: var(--radius-xs); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: .01em;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-lg { height: 44px; padding: 0 20px; font-size: 14.5px; }
.btn-primary {
  background: var(--green);
  color: var(--green-ink);
  box-shadow: 0 0 0 1px #ffffff1a inset, 0 8px 24px -8px var(--green-glow);
}
.btn-primary:hover { background: var(--green-bright); color: var(--green-ink); box-shadow: 0 0 0 1px #ffffff2a inset, 0 10px 30px -6px var(--green-glow); }
.btn-ghost {
  background: var(--surface);
  border-color: var(--line-strong);
  color: var(--text);
}
.btn-ghost:hover { background: var(--surface-2); border-color: #ffffff3a; }
.btn-arrow { width: 14px; height: 14px; opacity: .8; }

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  color: var(--text-2);
  transition: background .2s, color .2s, border-color .2s, transform .15s;
}
.icon-btn svg { width: 17px; height: 17px; }
.ds-logo {
  display: block;
  width: 18px; height: 18px;
  background: currentColor;
  -webkit-mask: url("assets/dexscreener.svg") center / contain no-repeat;
  mask: url("assets/dexscreener.svg") center / contain no-repeat;
}
.icon-btn:hover { color: var(--text); background: var(--surface-2); border-color: #ffffff3a; }
.icon-btn:active { transform: translateY(1px); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: #0b0d10cc;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 38px; height: 38px; color: var(--pink); flex: none; filter: drop-shadow(0 0 10px var(--pink-glow)); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--display); font-size: 17px; letter-spacing: .06em; color: var(--text); }
.brand-sub { font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); margin-top: 3px; }
.header-actions { display: flex; align-items: center; gap: 8px; }

/* ==========================================================================
   Eyebrow / labels
   ========================================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 20px;
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px var(--green-tint); }
.dot.live { animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px var(--green-tint); }
  50% { box-shadow: 0 0 0 7px transparent; }
}
.card-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .9fr);
  gap: 48px;
  align-items: start;
  padding: 72px 0 56px;
}
.hero h1 {
  font-size: clamp(38px, 5.2vw, 62px);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -.025em;
  margin-bottom: 22px;
}
.lede {
  font-size: 16.5px;
  color: var(--text-2);
  max-width: 56ch;
  margin-bottom: 28px;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  padding-top: 22px;
  gap: 16px;
}
.stat dt {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 6px;
}
.stat dd {
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.01em;
  font-variant-numeric: tabular-nums;
}
.stat + .stat { border-left: 1px solid var(--line); padding-left: 16px; }

/* Payout card */
.payout-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 22px 22px 20px;
  box-shadow: var(--shadow), 0 0 0 1px #ffffff05 inset;
}
.payout-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--green-glow), transparent 40%, transparent 60%, var(--pink-glow));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.payout-main { margin: 14px 0 18px; }
.payout-dc {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--mono);
  font-size: clamp(36px, 3.6vw, 46px);
  font-weight: 700;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.payout-dc .unit { font-size: 16px; font-weight: 600; color: var(--green); letter-spacing: .06em; }
.payout-usd { font-family: var(--mono); font-size: 15px; color: var(--text-2); margin-top: 8px; }
.payout-meta { display: grid; gap: 8px; padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.meta-row { display: flex; justify-content: space-between; gap: 12px; font-size: 12.5px; }
.meta-key { color: var(--text-3); }
.meta-val { font-family: var(--mono); color: var(--text-2); text-align: right; }

.cycle { padding-top: 16px; }
.cycle-head { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--text-2); margin-bottom: 8px; }
.cycle-head .mono { color: var(--green); font-weight: 600; font-variant-numeric: tabular-nums; }
.cycle-bar { height: 4px; border-radius: 2px; background: #ffffff10; overflow: hidden; }
.cycle-bar i { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--green), var(--green-bright)); border-radius: 2px; transition: width 1s linear; }
.cycle-foot { font-size: 11.5px; color: var(--text-3); margin-top: 10px; font-family: var(--mono); }

.card-watermark {
  position: absolute;
  right: -30px;
  bottom: -40px;
  width: 200px;
  height: 200px;
  color: var(--pink);
  opacity: .05;
  pointer-events: none;
}

/* ==========================================================================
   Fee split
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
  padding: 24px 0 64px;
}
.split h2 { font-size: 22px; font-weight: 600; letter-spacing: -.01em; margin-bottom: 8px; }
.split p { color: var(--text-2); font-size: 14px; max-width: 52ch; }
.split-bar { display: flex; height: 8px; border-radius: 4px; overflow: hidden; gap: 3px; }
.seg { flex: var(--w); height: 100%; border-radius: 3px; }
.seg.holders, .sw.holders { background: var(--green); }
.seg.creator, .sw.creator { background: var(--amber); }
.seg.protocol, .sw.protocol { background: #4a525c; }
.split-legend { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 14px; font-size: 13px; color: var(--text-2); }
.split-legend li { display: inline-flex; align-items: center; gap: 8px; }
.split-legend .mono { font-size: 12px; }
.sw { width: 10px; height: 10px; border-radius: 2px; display: inline-block; }

/* ==========================================================================
   Section heads / cards
   ========================================================================== */
.section-head { margin-bottom: 26px; }
.section-head h2 { font-size: 30px; font-weight: 600; letter-spacing: -.02em; margin-bottom: 8px; }
.section-head p { color: var(--text-2); max-width: 64ch; }
.section-head a { color: var(--green); }
.section-head a:hover { color: var(--green-bright); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: border-color .2s, transform .2s, background .2s;
}
.card:hover { border-color: var(--line-strong); background: var(--surface-2); transform: translateY(-2px); }
.card-num { font-family: var(--mono); font-size: 11.5px; color: var(--green); letter-spacing: .1em; margin-bottom: 20px; }
.card h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.card p { color: var(--text-2); font-size: 13.5px; }

.how { padding: 32px 0 72px; }
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }

/* ==========================================================================
   Fridge section
   ========================================================================== */
.fridge-section {
  position: relative;
  padding: 80px 0 96px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(60% 60% at 70% 40%, #34e08c0d, transparent 70%),
    radial-gradient(40% 50% at 20% 80%, #fc87a50d, transparent 70%),
    var(--bg-elev);
  overflow: hidden;
}
.fridge-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 56px;
  align-items: center;
}
.fridge-copy h2 { font-size: clamp(32px, 4vw, 46px); font-weight: 600; letter-spacing: -.025em; line-height: 1.05; margin-bottom: 18px; }
.fridge-copy p { color: var(--text-2); font-size: 16px; max-width: 50ch; margin-bottom: 28px; }
.fridge-facts { display: grid; gap: 10px; }
.fridge-facts li { display: flex; gap: 14px; align-items: baseline; color: var(--text-2); font-size: 14.5px; padding: 10px 0; border-top: 1px solid var(--line); }
.fridge-facts li:last-child { border-bottom: 1px solid var(--line); }
.fridge-facts .mono { color: var(--green); font-size: 12px; letter-spacing: .1em; }

/* --- Stage --- */
.fridge-stage {
  position: relative;
  width: min(360px, 100%);
  margin-inline: auto;
}
.fridge {
  all: unset;
  display: block;
  cursor: pointer;
  width: 100%;
  position: relative;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
  -webkit-tap-highlight-color: transparent;
}
.fridge:hover { transform: translateY(-4px); }
.fridge:focus-visible { outline: 2px solid var(--green); outline-offset: 10px; border-radius: 26px; }

.fridge-body {
  position: relative;
  aspect-ratio: 340 / 580;
  border-radius: 22px;
  background: linear-gradient(180deg, #2b3138 0%, #20252b 55%, #1a1e23 100%);
  box-shadow:
    0 0 0 1px #ffffff14 inset,
    0 -1px 0 1px #ffffff0a inset,
    0 40px 80px -30px #000000cc,
    0 10px 30px -10px #00000099;
}
.fridge-body::after {
  /* brushed metal */
  content: "";
  position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: repeating-linear-gradient(90deg, #ffffff06 0 1px, transparent 1px 3px);
  opacity: .6;
}

/* --- Interior --- */
.fridge-interior {
  position: absolute;
  inset: 4.2%;
  border-radius: 14px;
  background: linear-gradient(180deg, #11161c, #0c1014);
  box-shadow: 0 0 0 1px #ffffff0a inset, 0 30px 60px -20px #000 inset;
  overflow: hidden;
}
.interior-back {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 50% 0%, #1b232c 0%, transparent 60%),
    repeating-linear-gradient(0deg, #ffffff04 0 1px, transparent 1px 22px);
}
.interior-light {
  position: absolute; inset: 0;
  background:
    radial-gradient(90% 50% at 50% -5%, #eafbff 0%, #9fdcff66 35%, transparent 75%),
    linear-gradient(180deg, #bfefff33, #bfefff0a 60%, transparent);
  opacity: 0;
  transition: opacity .6s ease .25s;
  mix-blend-mode: screen;
}
.fridge.open .interior-light { opacity: 1; }

.shelf {
  position: absolute;
  left: 6%; right: 6%;
  height: 22%;
  display: flex;
  align-items: flex-end;
  justify-content: space-evenly;
  padding: 0 2% 3px;
}
.shelf-1 { top: 7%; }
.shelf-2 { top: 33%; }
.shelf-3 { top: 59%; }
.shelf-glass {
  position: absolute; left: -4%; right: -4%; bottom: 0; height: 5px;
  border-radius: 2px;
  background: linear-gradient(180deg, #d6f4ff66, #7fbfdc33);
  box-shadow: 0 6px 14px -4px #7fd9ff33, 0 1px 0 #ffffff33 inset;
}
.bottle {
  height: 92%;
  width: auto;
  filter: drop-shadow(0 6px 8px #00000080);
  transform-origin: 50% 100%;
  opacity: .0;
  transform: translateY(6px) scale(.97);
  transition: opacity .5s ease, transform .6s cubic-bezier(.2,.8,.2,1);
}
.fridge.open .bottle { opacity: 1; transform: none; }
.fridge.open .shelf .bottle { animation: wobble .9s cubic-bezier(.2,.8,.2,1) both; }
.shelf .bottle:nth-child(1) { animation-delay: .32s !important; }
.shelf .bottle:nth-child(2) { animation-delay: .40s !important; }
.shelf .bottle:nth-child(3) { animation-delay: .48s !important; }
.shelf .bottle:nth-child(4) { animation-delay: .56s !important; }
@keyframes wobble {
  0% { transform: rotate(0deg); }
  30% { transform: rotate(-3.5deg); }
  60% { transform: rotate(2.4deg); }
  80% { transform: rotate(-1deg); }
  100% { transform: rotate(0deg); }
}

.crisper {
  position: absolute;
  left: 6%; right: 6%; bottom: 4.5%;
  height: 11%;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff0f, #ffffff05);
  border: 1px solid #ffffff1a;
  box-shadow: 0 10px 20px -10px #000;
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 10px; letter-spacing: .18em; color: var(--text-3);
}
.crisper::before {
  content: ""; position: absolute; left: 35%; right: 35%; top: 30%; height: 3px; border-radius: 2px; background: #ffffff22;
}

.mist { position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity .4s; }
.fridge.open .mist { opacity: 1; }
.mist i {
  position: absolute; bottom: 12%; width: 60px; height: 60px; border-radius: 50%;
  background: radial-gradient(circle, #ffffff55, transparent 70%);
  filter: blur(8px);
  animation: mist 4.5s ease-in-out infinite;
}
.mist i:nth-child(1) { left: 5%;  animation-delay: 0s; }
.mist i:nth-child(2) { left: 30%; animation-delay: .9s; }
.mist i:nth-child(3) { left: 55%; animation-delay: 1.8s; }
.mist i:nth-child(4) { left: 75%; animation-delay: 2.7s; }
.mist i:nth-child(5) { left: 18%; animation-delay: 3.6s; }
@keyframes mist {
  0% { transform: translateY(0) scale(.6); opacity: 0; }
  30% { opacity: .5; }
  100% { transform: translateY(-140px) scale(1.4); opacity: 0; }
}

/* --- Door (sliding: retracts left into the cabinet wall) --- */
.door-track {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  overflow: hidden;
  pointer-events: none;
}
.fridge-door {
  position: absolute;
  inset: 0;
  transition: transform .9s cubic-bezier(.3,.9,.25,1);
  border-radius: 22px;
  will-change: transform;
}
.fridge.open .fridge-door { transform: translateX(-91%); }
.fridge.peek:not(.open) .fridge-door { transform: translateX(-9%); transition-duration: .6s; }
.fridge.peek:not(.open) .interior-light { opacity: .5; transition-delay: 0s; }
/* soft edge where the door disappears into the wall */
.door-track::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 14px; z-index: 2;
  background: linear-gradient(90deg, #00000099, transparent);
  opacity: 0; transition: opacity .4s;
}
.fridge.open .door-track::before { opacity: 1; }
.door-face {
  position: absolute; inset: 0;
  border-radius: 22px;
}
.door-front {
  background: linear-gradient(180deg, #2f353d 0%, #23282e 50%, #1c2026 100%);
  box-shadow:
    0 0 0 1px #ffffff14 inset,
    0 1px 0 1px #ffffff0c inset,
    0 -6px 18px -8px #00000099 inset;
  overflow: hidden;
}
.door-front::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: repeating-linear-gradient(90deg, #ffffff07 0 1px, transparent 1px 3px);
}
.door-front::after {
  /* specular sweep */
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, #ffffff0a 45%, transparent 60%);
}
.door-seam {
  position: absolute; left: 6%; right: 6%; top: 36%; height: 2px;
  background: linear-gradient(90deg, transparent, #00000099 15%, #00000099 85%, transparent);
  box-shadow: 0 1px 0 #ffffff10;
}
.door-handle {
  position: absolute;
  right: 7.5%; top: 40%;
  width: 4.5%; height: 34%;
  border-radius: 6px;
  background: linear-gradient(90deg, #3a4149, #5a636d 40%, #2a3036);
  box-shadow: 0 6px 14px -4px #000, 0 0 0 1px #ffffff1c inset;
}
.door-handle::before, .door-handle::after {
  content: ""; position: absolute; left: -60%; width: 220%; height: 4%; border-radius: 2px; background: #171b1f; box-shadow: 0 1px 0 #ffffff14;
}
.door-handle::before { top: 4%; }
.door-handle::after { bottom: 4%; }

.door-lcd {
  position: absolute;
  left: 50%; top: 23%;
  transform: translateX(-50%);
  width: 78%;
  padding: 11px 70px 10px 14px;
  border-radius: 10px;
  background: #06090b;
  box-shadow: 0 0 0 1px #ffffff12 inset, 0 8px 16px -8px #000;
  display: grid; gap: 4px;
  overflow: hidden;
}
.lcd-label { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 8.5px; letter-spacing: .18em; text-transform: uppercase; color: #34e08c99; }
.lcd-value { font-family: var(--display); font-size: 17px; color: var(--green-bright); text-shadow: 0 0 10px var(--green-glow); letter-spacing: .04em; white-space: nowrap; }
.lcd-led { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); animation: blink 1.6s steps(1) infinite; flex: none; }
@keyframes blink { 50% { opacity: .25; } }

/* logo watermark parked on the right of the display */
.magnet {
  position: absolute;
  right: 6px; top: 50%;
  width: 62px; height: 62px;
  transform: translateY(-50%);
  display: grid; place-items: center;
  opacity: .5;
}
.magnet svg { width: 100%; height: 100%; color: var(--pink); }

.fridge-feet { display: flex; justify-content: space-between; padding: 0 9%; margin-top: -2px; }
.fridge-feet i { width: 26px; height: 14px; border-radius: 0 0 6px 6px; background: linear-gradient(180deg, #1a1e23, #0e1114); box-shadow: 0 0 0 1px #ffffff0a inset; }

.fridge-shadow {
  position: absolute; left: 10%; right: 10%; bottom: -22px; height: 40px;
  background: radial-gradient(50% 100% at 50% 0%, #00000099, transparent 70%);
  filter: blur(6px);
  z-index: -1;
}

.fridge-hint {
  position: absolute;
  left: 50%; bottom: -46px;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px 7px 10px;
  border-radius: var(--pill);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  color: var(--text-2);
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase;
  transition: opacity .3s, transform .3s;
  animation: hintbob 2.4s ease-in-out infinite;
}
.fridge-hint svg { width: 14px; height: 14px; color: var(--green); }
.fridge-stage.opened .fridge-hint { opacity: 0; transform: translateX(-50%) translateY(6px); pointer-events: none; }
@keyframes hintbob { 50% { transform: translateX(-50%) translateY(-3px); } }

/* ==========================================================================
   Token section
   ========================================================================== */
.token { padding: 8px 0 88px; }
.token-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 16px; }
.token-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex; flex-direction: column; gap: 12px;
}
.token-card .card-label + .addr { margin-bottom: 6px; }
.token-card .token-links { margin-top: auto; padding-top: 6px; }
.addr {
  all: unset;
  position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  cursor: pointer;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--line-strong);
  font-family: var(--mono); font-size: 13px; color: var(--text);
  transition: border-color .2s, background .2s;
}
.addr:hover { border-color: #ffffff3a; background: var(--bg-elev); }
.addr:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }
.addr-text { overflow-wrap: anywhere; }
.copy-ic { display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 6px; background: var(--surface-2); color: var(--text-2); flex: none; }
.copy-ic svg { width: 14px; height: 14px; }
.copied {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%) translateX(6px);
  padding: 4px 8px; border-radius: 6px;
  background: var(--green); color: var(--green-ink);
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  opacity: 0; transition: opacity .2s, transform .2s;
  pointer-events: none;
}
.addr.is-copied .copied { opacity: 1; transform: translateY(-50%) translateX(0); }
.token-links { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 13px; color: var(--text-2); }
.token-links a:hover { color: var(--green); }

.token-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.token-facts > div { padding: 16px 20px; border-bottom: 1px solid var(--line); }
.token-facts > div:nth-child(odd) { border-right: 1px solid var(--line); }
.token-facts > div:nth-last-child(-n+2) { border-bottom: 0; }
.token-facts dt { font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 5px; }
.token-facts dd { font-family: var(--mono); font-size: 13.5px; font-weight: 600; }
.mono-link { color: var(--green); }
.mono-link:hover { color: var(--green-bright); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { border-top: 1px solid var(--line); padding: 28px 0 40px; color: var(--text-3); font-size: 12.5px; }
.footer-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center; }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); letter-spacing: .06em; color: var(--text-2); }
.footer-brand .brand-mark { width: 26px; height: 26px; filter: none; }
.footer-note { max-width: 60ch; }
.footer-note a { color: var(--text-2); border-bottom: 1px solid var(--line-strong); }
.footer-note a:hover { color: var(--text); }
.footer-links { display: flex; gap: 18px; font-family: var(--mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.footer-links a:hover { color: var(--green); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 36px; padding-top: 56px; }
  .payout-card { max-width: 560px; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .fridge-grid { grid-template-columns: 1fr; gap: 48px; }
  .fridge-stage { margin-top: 12px; }
  .split { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 720px) {
  body { font-size: 14.5px; }
  .brand-sub { display: none; }
  .btn-primary .btn-arrow { display: none; }
  .hero { padding: 40px 0 40px; }
  .stats { grid-template-columns: 1fr 1fr; gap: 18px 14px; }
  .stat + .stat { border-left: 0; padding-left: 0; }
  .stat:nth-child(even) { border-left: 1px solid var(--line); padding-left: 14px; }
  .how-grid { grid-template-columns: 1fr; }
  .token-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 14px; }
  .fridge-section { padding: 56px 0 84px; }
  .fridge-hint { bottom: -52px; }
}
@media (max-width: 420px) {
  .header-actions .btn { padding: 0 10px; font-size: 12.5px; }
  .stats { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
