/* ============================================================
   MAD PUMPKIN ($MPUMP) — styles  v2 "premium"
   ============================================================ */
:root {
  --bg:        #08060d;
  --bg-2:      #0e0916;
  --panel:     rgba(255, 255, 255, 0.045);
  --panel-2:   rgba(255, 255, 255, 0.07);
  --panel-brd: rgba(255, 180, 80, 0.16);
  --text:      #f7f1e8;
  --muted:     #a59cb2;
  --orange:    #ff7a18;
  --orange-2:  #ffb020;
  --gold:      #ffd24a;
  --ton:       #2fb6ff;
  --pink:      #ff4d9d;
  --green:     #38e08a;
  --radius:    20px;
  --maxw:      1160px;
  --shadow:    0 24px 70px rgba(0,0,0,.55);
  --ease:      cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
::selection { background: var(--orange); color: #1a0d00; }

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
code { font-family: 'SFMono-Regular', ui-monospace, Menlo, Consolas, monospace; }

/* custom scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--orange), var(--orange-2)); border-radius: 99px; border: 3px solid var(--bg); }

/* ---------- ambient background ---------- */
.bg-blobs { position: fixed; inset: 0; z-index: -2; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55; }
.blob-1 { width: 620px; height: 620px; top: -160px; right: -120px; background: radial-gradient(circle, rgba(255,122,24,.55), transparent 70%); animation: drift1 22s var(--ease) infinite alternate; }
.blob-2 { width: 560px; height: 560px; bottom: -180px; left: -120px; background: radial-gradient(circle, rgba(47,182,255,.4), transparent 70%); animation: drift2 26s var(--ease) infinite alternate; }
.blob-3 { width: 420px; height: 420px; top: 40%; left: 45%; background: radial-gradient(circle, rgba(255,77,157,.28), transparent 70%); animation: drift3 30s var(--ease) infinite alternate; }
@keyframes drift1 { to { transform: translate(-80px, 80px) scale(1.15); } }
@keyframes drift2 { to { transform: translate(90px, -60px) scale(1.1); } }
@keyframes drift3 { to { transform: translate(-120px, -40px) scale(1.2); } }

.grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .035;
  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='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* falling coins */
.coins-layer { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.coins-layer span { position: absolute; top: -40px; animation: fall linear infinite; }
@keyframes fall { to { transform: translateY(112vh) rotate(360deg); } }

/* ---------- buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 1.5rem; border-radius: 999px; font-weight: 700; font-size: .98rem;
  cursor: pointer; border: 1px solid transparent; overflow: hidden;
  transition: transform .18s var(--ease), box-shadow .25s var(--ease), background .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-buy {
  background: linear-gradient(135deg, var(--orange), var(--orange-2) 55%, var(--gold));
  background-size: 180% 180%; color: #1a0d00;
  box-shadow: 0 10px 30px rgba(255,122,24,.4), inset 0 1px 0 rgba(255,255,255,.4);
  animation: hue 6s ease infinite;
}
@keyframes hue { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.btn-buy:hover { transform: translateY(-3px); box-shadow: 0 18px 46px rgba(255,122,24,.6), inset 0 1px 0 rgba(255,255,255,.5); }
.btn-ghost { background: var(--panel); color: var(--text); border-color: var(--panel-brd); backdrop-filter: blur(10px); }
.btn-ghost:hover { border-color: rgba(255,180,80,.5); background: var(--panel-2); transform: translateY(-3px); }
.btn-sm { padding: .55rem 1rem; font-size: .88rem; }
.btn-lg { padding: 1.1rem 2.2rem; font-size: 1.1rem; }

/* shine sweep */
.btn-shine::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg); animation: shine 3.4s ease-in-out infinite;
}
@keyframes shine { 0% { left: -120%; } 55%,100% { left: 130%; } }

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; padding: .6rem clamp(.6rem, 3vw, 1.5rem); }
.header-bar {
  display: flex; align-items: center; gap: 1.2rem;
  max-width: var(--maxw); margin: 0 auto; padding: .55rem .9rem .55rem 1.1rem;
  background: rgba(14,9,22,.6); backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid rgba(255,255,255,.07); border-radius: 999px;
  box-shadow: 0 8px 30px rgba(0,0,0,.35);
}
.brand { display: flex; align-items: center; gap: .55rem; font-weight: 800; }
.brand-mark { width: 34px; height: 34px; object-fit: contain; filter: drop-shadow(0 4px 12px rgba(255,122,24,.55)); }
.brand-name { font-family: 'Luckiest Guy', cursive; letter-spacing: .5px; font-size: 1.15rem; }
.brand-ticker { font-size: .72rem; font-weight: 800; color: var(--gold); background: rgba(255,210,74,.13); padding: .15rem .5rem; border-radius: 7px; }
.main-nav { display: flex; gap: 1.5rem; margin-left: auto; font-weight: 600; font-size: .95rem; }
.main-nav a { color: var(--muted); position: relative; transition: color .15s; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px; background: linear-gradient(90deg, var(--orange), var(--gold)); border-radius: 2px; transition: width .2s var(--ease); }
.main-nav a:hover { color: var(--text); }
.main-nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: .7rem; }

.lang-switch { display: inline-flex; background: var(--panel); border: 1px solid var(--panel-brd); border-radius: 999px; overflow: hidden; }
.lang-switch button { background: none; border: none; color: var(--muted); cursor: pointer; padding: .42rem .72rem; font-weight: 700; font-size: .8rem; transition: all .15s; }
.lang-switch button.active { background: linear-gradient(135deg, var(--orange), var(--orange-2)); color: #1a0d00; }

/* ---------- hero ---------- */
.hero { position: relative; max-width: var(--maxw); margin: 0 auto; padding: clamp(2.5rem, 7vw, 5.5rem) clamp(1rem,4vw,2.5rem) 2.5rem; }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }

.chip { display: inline-flex; align-items: center; gap: .5rem; font-size: .82rem; font-weight: 700; background: var(--panel); border: 1px solid var(--panel-brd); padding: .4rem .85rem; border-radius: 999px; color: var(--muted); }
.chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(56,224,138,.6); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(56,224,138,0); } 100% { box-shadow: 0 0 0 0 rgba(56,224,138,0);} }

.hero-title { font-family: 'Luckiest Guy', cursive; font-weight: 400; line-height: .92; font-size: clamp(3.2rem, 9vw, 6.2rem); margin: 1rem 0 .7rem; letter-spacing: 1px; }
.hero-title .line { display: block; text-shadow: 0 6px 30px rgba(0,0,0,.5); }
.grad { background: linear-gradient(110deg, var(--gold), var(--orange) 45%, var(--pink) 90%); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; color: transparent; animation: slide 6s linear infinite; }
@keyframes slide { to { background-position: 200% center; } }
.hero-sub { color: var(--muted); font-size: clamp(1.02rem, 2vw, 1.22rem); max-width: 31rem; }

.ticker-pill { display: inline-flex; flex-wrap: wrap; align-items: center; gap: .55rem; margin: 1.5rem 0; padding: .65rem 1.1rem; background: var(--panel); border: 1px solid var(--panel-brd); border-radius: 14px; font-size: .95rem; backdrop-filter: blur(6px); }
.ticker-pill .muted { color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .6px; }
.ticker-pill .ton { color: var(--ton); }
.ticker-pill .sep { color: var(--muted); }

.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.3rem; }
.quicklinks { display: flex; flex-wrap: wrap; gap: 1.3rem; font-size: .9rem; font-weight: 600; color: var(--muted); }
.quicklinks a { transition: color .15s; }
.quicklinks a:hover { color: var(--gold); }

/* hero art */
.hero-art { position: relative; display: grid; place-items: center; min-height: 360px; }
.orb { position: absolute; width: min(440px, 95%); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 50% 45%, rgba(255,140,40,.5), rgba(255,122,24,.12) 45%, transparent 70%); filter: blur(8px); animation: breathe 5s var(--ease) infinite; }
@keyframes breathe { 0%,100% { transform: scale(1); opacity:.85; } 50% { transform: scale(1.08); opacity:1; } }
.art-ring { position: absolute; width: min(430px, 92%); aspect-ratio: 1; border-radius: 50%; background: conic-gradient(from 0deg, transparent, rgba(255,210,74,.7), transparent 30%, rgba(47,182,255,.6), transparent 60%, rgba(255,77,157,.6), transparent); filter: blur(3px); animation: spin 16s linear infinite; opacity: .6; -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 12px), #000 calc(100% - 11px)); mask: radial-gradient(farthest-side, transparent calc(100% - 12px), #000 calc(100% - 11px)); }
.art-ring-2 { width: min(360px, 80%); animation-direction: reverse; animation-duration: 22s; opacity: .4; }
@keyframes spin { to { transform: rotate(360deg); } }

.orbit { position: absolute; width: min(430px, 92%); aspect-ratio: 1; animation: spin 18s linear infinite; }
.orbit-coin { position: absolute; font-size: 1.8rem; filter: drop-shadow(0 4px 8px rgba(0,0,0,.5)); }
.orbit-coin:nth-child(1) { top: -6%; left: 46%; }
.orbit-coin:nth-child(2) { top: 46%; right: -6%; }
.orbit-coin:nth-child(3) { bottom: -6%; left: 40%; }

/* round "coin" frame: any square image is cropped to a perfect circle */
.coin {
  position: relative; z-index: 2; width: min(420px, 86%); aspect-ratio: 1;
  border-radius: 50%; overflow: hidden; display: grid; place-items: center;
  background: radial-gradient(circle at 35% 28%, #2a1c12, #0d0913 70%);
  box-shadow:
    0 0 0 4px #0d0913,
    0 0 0 11px rgba(255,210,74,.95),
    0 0 0 14px rgba(255,122,24,.45),
    0 30px 60px rgba(0,0,0,.6),
    0 0 70px rgba(255,140,40,.5);
  animation: float 6s ease-in-out infinite;
}
/* glossy highlight on top of the coin */
.coin::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%; pointer-events: none;
  background:
    radial-gradient(120% 75% at 32% 16%, rgba(255,255,255,.4), transparent 46%),
    radial-gradient(90% 90% at 70% 95%, rgba(0,0,0,.35), transparent 55%);
}
@keyframes float { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-16px);} }
.hero-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.art-fallback { display: none; font-size: 12rem; line-height: 1; }
.hero-art.no-img .hero-img { display: none; }
.hero-art.no-img .art-fallback { display: block; }

/* ---------- marquee ---------- */
.marquee { position: relative; overflow: hidden; padding: .9rem 0; margin: 1rem 0; border-top: 1px solid rgba(255,255,255,.07); border-bottom: 1px solid rgba(255,255,255,.07); background: linear-gradient(90deg, rgba(255,122,24,.08), rgba(47,182,255,.06)); -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: inline-flex; align-items: center; gap: 1.6rem; white-space: nowrap; font-family: 'Luckiest Guy', cursive; font-size: 1.25rem; letter-spacing: 1px; color: var(--text); animation: march 26s linear infinite; }
.marquee-track .star { color: var(--orange); }
@keyframes march { to { transform: translateX(-50%); } }

/* ---------- stats strip ---------- */
.stats-strip { max-width: var(--maxw); margin: 1.5rem auto; padding: 0 clamp(1rem,4vw,2.5rem); display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat { text-align: center; background: var(--panel); border: 1px solid var(--panel-brd); border-radius: var(--radius); padding: 1.5rem 1rem; backdrop-filter: blur(6px); transition: transform .2s var(--ease), border-color .2s; }
.stat:hover { transform: translateY(-4px); border-color: rgba(255,180,80,.4); }
.stat-num { font-family: 'Luckiest Guy', cursive; font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1; }
.stat-num.ton { color: var(--ton); }
.stat-label { color: var(--muted); font-size: .85rem; margin-top: .4rem; text-transform: uppercase; letter-spacing: .8px; }

/* ---------- sections ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(3rem, 7vw, 5rem) clamp(1rem,4vw,2.5rem); }
.section-head { text-align: center; max-width: 44rem; margin: 0 auto 2.8rem; }
.eyebrow { display: inline-block; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: 2.5px; color: var(--orange); margin-bottom: .7rem; padding: .25rem .8rem; border: 1px solid var(--panel-brd); border-radius: 999px; background: rgba(255,122,24,.08); }
.section-head h2 { font-family: 'Luckiest Guy', cursive; font-weight: 400; font-size: clamp(2rem, 4.5vw, 3rem); letter-spacing: .5px; }
.lead { color: var(--muted); font-size: 1.1rem; margin-top: .7rem; }
.center { text-align: center; }
.muted { color: var(--muted); }

/* cards */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.card { position: relative; background: var(--panel); border: 1px solid var(--panel-brd); border-radius: var(--radius); padding: 1.8rem; transition: transform .22s var(--ease), border-color .22s, background .22s; overflow: hidden; }
.card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: linear-gradient(135deg, rgba(255,210,74,.5), transparent 40%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .22s; }
.card:hover { transform: translateY(-6px); background: var(--panel-2); }
.card:hover::before { opacity: 1; }
.card-ico { font-size: 2.4rem; margin-bottom: .7rem; filter: drop-shadow(0 6px 14px rgba(255,122,24,.4)); }
.card h3 { font-size: 1.22rem; margin-bottom: .45rem; }
.card p { color: var(--muted); font-size: .98rem; }

/* tokenomics */
.tok-grid { display: grid; grid-template-columns: 340px 1fr; gap: 1.8rem; align-items: center; }
.tok-tax { background: var(--panel); border: 1px solid var(--panel-brd); border-radius: var(--radius); padding: 2.2rem; text-align: center; }
.tax-circle { width: 210px; height: 210px; margin: 0 auto 1.4rem; border-radius: 50%; display: grid; place-content: center; background: conic-gradient(var(--orange) 0 75%, var(--ton) 75% 100%); box-shadow: 0 16px 44px rgba(255,122,24,.3); position: relative; animation: ringpop 1s var(--ease) both; }
@keyframes ringpop { from { transform: rotate(-90deg) scale(.8); opacity: 0; } to { transform: rotate(0) scale(1); opacity: 1; } }
.tax-inner { width: 158px; height: 158px; border-radius: 50%; display: grid; place-content: center; background: radial-gradient(circle at 30% 25%, #1a1120, #0d0913); box-shadow: inset 0 2px 10px rgba(0,0,0,.6); }
.tax-num { font-family: 'Luckiest Guy', cursive; font-size: 3.6rem; line-height: 1; }
.tax-label { display: block; font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.tax-legend { display: flex; flex-direction: column; gap: .4rem; font-size: .9rem; color: var(--muted); align-items: flex-start; max-width: 240px; margin: 0 auto; }
.tax-legend i { display: inline-block; width: 11px; height: 11px; border-radius: 3px; margin-right: .4rem; vertical-align: middle; }
.dot-rewards { background: linear-gradient(135deg, var(--orange), var(--gold)); }
.dot-buyback { background: linear-gradient(135deg, var(--ton), #6fd2ff); }

.tok-split { display: flex; flex-direction: column; gap: 1.5rem; }
.split-row { display: grid; gap: .55rem; }
.split-bar { background: rgba(255,255,255,.05); border-radius: 14px; overflow: hidden; height: 58px; box-shadow: inset 0 1px 4px rgba(0,0,0,.4); }
.split-fill { height: 100%; width: 0; display: flex; align-items: center; padding: 0 1.1rem; font-family: 'Luckiest Guy', cursive; font-size: 1.6rem; color: #1a0d00; border-radius: 14px; transition: width 1.1s var(--ease); }
.reveal.in .split-fill { width: var(--w); }
.split-fill.rewards { background: linear-gradient(135deg, var(--orange), var(--gold)); }
.split-fill.buyback { background: linear-gradient(135deg, var(--ton), #6fd2ff); color: #04293b; }
.split-meta h4 { font-size: 1.12rem; }
.split-meta p { color: var(--muted); font-size: .95rem; }

/* contract */
.contract { margin-top: 2.2rem; background: var(--panel); border: 1px solid var(--panel-brd); border-radius: var(--radius); padding: 1.5rem 1.7rem; backdrop-filter: blur(6px); }
.contract-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: .8rem; }
.contract-head .muted { text-transform: uppercase; font-size: .76rem; letter-spacing: 1px; }
.badge-ton { font-size: .72rem; font-weight: 700; color: var(--ton); background: rgba(47,182,255,.13); padding: .2rem .6rem; border-radius: 7px; }
.contract-row { display: flex; align-items: center; gap: .8rem; background: rgba(0,0,0,.4); border: 1px solid rgba(255,255,255,.07); border-radius: 14px; padding: .8rem 1.1rem; }
.contract-row code { font-size: .92rem; word-break: break-all; flex: 1; color: var(--gold); }
.contract-links { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }
.chip-link { font-size: .85rem; font-weight: 600; color: var(--muted); background: rgba(255,255,255,.04); border: 1px solid var(--panel-brd); padding: .45rem .9rem; border-radius: 999px; transition: all .15s; }
.chip-link:hover { color: var(--gold); border-color: rgba(255,180,80,.45); transform: translateY(-2px); }

/* steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; margin-bottom: 2.8rem; }
.step { position: relative; background: var(--panel); border: 1px solid var(--panel-brd); border-radius: var(--radius); padding: 1.8rem 1.5rem; transition: transform .2s var(--ease), border-color .2s; }
.step:hover { transform: translateY(-5px); border-color: rgba(255,180,80,.4); }
.step-n { display: grid; place-content: center; width: 46px; height: 46px; border-radius: 14px; background: linear-gradient(135deg, var(--orange), var(--orange-2)); color: #1a0d00; font-family: 'Luckiest Guy', cursive; font-size: 1.4rem; margin-bottom: .9rem; box-shadow: 0 8px 20px rgba(255,122,24,.4); }
.step h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.step p { color: var(--muted); font-size: .94rem; }

/* legend */
.legend-body { color: var(--muted); margin-top: 1rem; font-size: 1.02rem; }

/* chart */
.chart-wrap { max-width: 920px; margin: 0 auto; }
.chart-frame { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--panel-brd); box-shadow: var(--shadow), 0 0 50px rgba(255,122,24,.12); background: #0d0913; height: 0; padding-bottom: 62%; }
.chart-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.chart-cta { display: flex; justify-content: center; flex-wrap: wrap; gap: .8rem; margin-top: 1.4rem; }

/* community */
.community-box { position: relative; overflow: hidden; text-align: center; background: linear-gradient(135deg, rgba(255,122,24,.16), rgba(47,182,255,.1)); border: 1px solid var(--panel-brd); border-radius: 30px; padding: clamp(2.8rem, 7vw, 4.5rem) 1.5rem; }
.community-box::before { content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(255,122,24,.35), transparent 70%); top: -120px; left: 50%; transform: translateX(-50%); filter: blur(30px); }
.community-pumpkin { position: relative; width: 96px; height: 96px; object-fit: contain; margin-bottom: 1rem; filter: drop-shadow(0 12px 30px rgba(255,122,24,.55)); animation: float 6s ease-in-out infinite; }
.community-pumpkin.emoji { font-size: 5rem; line-height: 1; display: inline-block; }
.community-box h2 { position: relative; font-family: 'Luckiest Guy', cursive; font-weight: 400; font-size: clamp(1.9rem, 4.5vw, 2.8rem); }
.community-box .lead { position: relative; }
.community-cta { position: relative; display: flex; justify-content: center; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }

/* footer */
.site-footer { border-top: 1px solid rgba(255,255,255,.07); margin-top: 2rem; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: 2.8rem clamp(1rem,4vw,2.5rem); text-align: center; }
.footer-brand { display: inline-flex; align-items: center; gap: .5rem; font-weight: 800; }
.footer-brand .brand-mark { width: 28px; height: 28px; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 1.3rem; margin: 1.3rem 0; font-weight: 600; color: var(--muted); }
.footer-links a { transition: color .15s; }
.footer-links a:hover { color: var(--gold); }
.disclaimer { color: var(--muted); font-size: .82rem; max-width: 42rem; margin: 0 auto .8rem; }
.copyright { color: var(--muted); font-size: .85rem; }

/* toast */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px); background: linear-gradient(135deg, var(--orange), var(--orange-2)); color: #1a0d00; font-weight: 700; padding: .85rem 1.5rem; border-radius: 999px; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: all .28s var(--ease); z-index: 100; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.cards-3 .reveal:nth-child(2), .steps .reveal:nth-child(2) { transition-delay: .08s; }
.cards-3 .reveal:nth-child(3), .steps .reveal:nth-child(3) { transition-delay: .16s; }
.steps .reveal:nth-child(4) { transition-delay: .24s; }
.stats-strip .reveal:nth-child(2) { transition-delay: .07s; }
.stats-strip .reveal:nth-child(3) { transition-delay: .14s; }
.stats-strip .reveal:nth-child(4) { transition-delay: .21s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .blob, .marquee-track, .orbit, .art-ring, .hero-img, .orb, .btn-shine::after, .btn-buy { animation: none !important; }
}

/* ---------- responsive ---------- */
@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-sub { margin: 0 auto; }
  .hero-art { order: -1; min-height: 300px; }
  .main-nav { display: none; }
  .cards-3, .steps { grid-template-columns: 1fr 1fr; }
  .tok-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .chart-frame { padding-bottom: 88%; }
}
@media (max-width: 560px) {
  .cards-3, .steps { grid-template-columns: 1fr; }
  .header-actions .btn-buy { display: none; }
  .quicklinks { justify-content: center; }
  .contract-row { flex-direction: column; align-items: stretch; }
  .contract-row #copy-btn { width: 100%; }
  .marquee-track { font-size: 1.05rem; }
}
