/* =====================================================================
   GlobalX — single page site
   Brand: near-black background, orange gradient #FF9700 → #FFB74C
   ===================================================================== */

:root {
  --bg: #070707;
  --bg-2: #0d0c0b;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.08);
  --line-orange: rgba(255, 167, 38, 0.35);
  --orange: #ff9700;
  --orange-2: #ffb74c;
  --orange-soft: rgba(255, 151, 0, 0.14);
  --orange-glow: rgba(255, 151, 0, 0.45);
  --text: #f6f3ee;
  --muted: #b9b2a8;
  --dim: #7d766d;
  --success: #6ee7a2;
  --radius: 22px;
  --font-head: "Outfit", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --nav-h: 76px;
  --container: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
input { font: inherit; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.1; margin: 0; letter-spacing: -0.01em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--orange-2); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--orange); color: #111; }

.container { width: min(var(--container), 100% - 32px); margin-inline: auto; }
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 2000;
  background: var(--orange); color: #111; padding: 10px 16px; border-radius: 10px; font-weight: 700;
  transition: top .2s;
}
.skip-link:focus { top: 16px; }

/* ---------- background layers ---------- */
.bg-layer { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.bg-layer canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 151, 0, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 151, 0, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 20%, #000 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 20%, #000 20%, transparent 80%);
}
.bg-glow {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55;
  background: radial-gradient(circle, rgba(255, 151, 0, 0.55), transparent 65%);
}
.bg-glow.one { width: 60vw; height: 60vw; top: -25vw; right: -15vw; animation: drift 18s ease-in-out infinite alternate; }
.bg-glow.two { width: 40vw; height: 40vw; bottom: -20vw; left: -15vw; opacity: .3; animation: drift 24s ease-in-out infinite alternate-reverse; }
@keyframes drift { from { transform: translate3d(0, 0, 0) scale(1); } to { transform: translate3d(-6vw, 8vw, 0) scale(1.15); } }

main, header, footer { position: relative; z-index: 1; }

/* ---------- progress + preloader ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 1500;
  background: linear-gradient(90deg, var(--orange), var(--orange-2)); box-shadow: 0 0 12px var(--orange-glow); }

.preloader {
  position: fixed; inset: 0; z-index: 3000; display: grid; place-items: center;
  background: var(--bg); transition: opacity .6s ease, visibility .6s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader img { width: 96px; animation: pulse 1.4s ease-in-out infinite; }
.preloader .bar { width: 160px; height: 3px; margin-top: 22px; background: var(--line); border-radius: 4px; overflow: hidden; }
.preloader .bar span { display: block; height: 100%; width: 40%; background: linear-gradient(90deg, var(--orange), var(--orange-2)); animation: load 1.1s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 var(--orange-glow)); } 50% { transform: scale(1.08); filter: drop-shadow(0 0 22px var(--orange-glow)); } }
@keyframes load { from { transform: translateX(-120%); } to { transform: translateX(300%); } }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .35s, border-color .35s, backdrop-filter .35s, height .35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(7, 7, 7, 0.72); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-color: var(--line); height: 66px; }
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; min-height: 44px; }
.brand img { height: 40px; width: auto; }
.nav-links { display: flex; gap: 2px; }
.nav-links a {
  padding: 10px 11px; border-radius: 10px; font-size: 14px; font-weight: 600; color: var(--muted); white-space: nowrap;
  position: relative; transition: color .2s, background .2s;
}
.nav-links a::after { content: ""; position: absolute; left: 11px; right: 11px; bottom: 6px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-2)); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease-out); }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.burger { display: none; position: relative; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line); background: var(--surface); }
.burger span { position: absolute; left: 12px; top: 50%; width: 20px; height: 2px; margin-top: -1px; background: var(--text); border-radius: 2px; transition: transform .3s var(--ease-out), opacity .2s; }
.burger span:nth-child(1) { transform: translateY(-6px); }
.burger span:nth-child(3) { transform: translateY(6px); }
.burger.open span:nth-child(1) { transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 900; background: rgba(7, 7, 7, 0.985);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 20px 16px 48px; display: flex; flex-direction: column; gap: 6px;
  overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain;
  transform: translateY(-8px); opacity: 0; visibility: hidden; transition: .3s var(--ease-out);
}
.mobile-menu.open { transform: none; opacity: 1; visibility: visible; }
.mobile-menu a:not(.btn) { flex: none; padding: 14px 18px; border-radius: 14px; font-family: var(--font-head); font-size: 18px; font-weight: 600; border: 1px solid var(--line); background: var(--surface); }
.mobile-menu a.active { border-color: var(--line-orange); color: var(--orange-2); }
.mobile-menu .menu-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; flex: none; }
.mobile-menu .btn { flex: none; justify-content: center; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 24px; border-radius: 999px; font-weight: 700; font-size: 15px;
  font-family: var(--font-head); letter-spacing: .01em; white-space: nowrap;
  transition: transform .2s var(--ease-spring), box-shadow .25s, background .25s, color .25s, border-color .25s;
  touch-action: manipulation; position: relative; overflow: hidden;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: linear-gradient(135deg, var(--orange), var(--orange-2)); color: #161310; box-shadow: 0 10px 30px -10px var(--orange-glow), inset 0 1px 0 rgba(255,255,255,.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px var(--orange-glow), inset 0 1px 0 rgba(255,255,255,.35); }
.btn-primary::after { content: ""; position: absolute; top: 0; left: -80%; width: 50%; height: 100%; transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent); transition: left .6s; }
.btn-primary:hover::after { left: 130%; }
.btn-ghost { background: var(--surface); border: 1px solid var(--line-orange); color: var(--text); }
.btn-ghost:hover { background: var(--orange-soft); border-color: var(--orange); transform: translateY(-2px); }
.btn-sm { min-height: 42px; padding: 8px 18px; font-size: 14px; }
.btn svg { width: 18px; height: 18px; }

/* ---------- typography helpers ---------- */
.gradient-text { background: linear-gradient(120deg, var(--orange-2) 0%, var(--orange) 55%, #ffd58a 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; font-size: 12.5px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--orange-2); background: var(--orange-soft); border: 1px solid var(--line-orange);
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 10px var(--orange); }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4.6vw, 50px); font-weight: 700; margin: 16px 0 14px; }
.section-head p { color: var(--muted); font-size: clamp(16px, 1.6vw, 18px); }
.pill { display: inline-block; padding: 8px 18px; border-radius: 999px; background: linear-gradient(135deg, var(--orange), var(--orange-2)); color: #161310; font-family: var(--font-head); font-weight: 700; font-size: 15px; }

section { padding: clamp(72px, 9vw, 120px) 0; position: relative; }
.section-alt { background: linear-gradient(180deg, transparent, rgba(255, 151, 0, 0.035) 50%, transparent); }

/* ---------- cards ---------- */
.card {
  position: relative; border-radius: var(--radius); background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  border: 1px solid var(--line); padding: 28px; overflow: hidden;
  transition: transform .35s var(--ease-out), border-color .35s, box-shadow .35s;
}
.card::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; pointer-events: none;
  background: linear-gradient(160deg, rgba(255,183,76,.6), transparent 40%, transparent 60%, rgba(255,151,0,.35));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: .55; transition: opacity .35s; }
.card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(0,0,0,.9), 0 0 0 1px var(--line-orange), 0 20px 50px -30px var(--orange-glow); }
.card:hover::before { opacity: 1; }
.card-glow { position: absolute; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, var(--orange-glow), transparent 65%); filter: blur(30px); top: -80px; right: -80px; opacity: .35; pointer-events: none; }

/* ---------- hero ---------- */
.hero { min-height: 100svh; display: flex; align-items: center; padding-top: calc(var(--nav-h) + 32px); padding-bottom: 60px; overflow: hidden; }
.hero .container { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(40px, 6.4vw, 78px); font-weight: 800; letter-spacing: -0.03em; margin: 22px 0 20px; }
.hero h1 .line { display: block; overflow: hidden; padding-bottom: .12em; margin-bottom: -.12em; }
.hero h1 .line span { display: block; transform: translateY(110%); animation: rise .9s var(--ease-out) forwards; }
.hero h1 .line:nth-child(2) span { animation-delay: .12s; }
.hero h1 .line:nth-child(3) span { animation-delay: .24s; }
@keyframes rise { to { transform: none; } }
.hero-sub { font-size: clamp(16px, 1.7vw, 19px); color: var(--muted); max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 44px; }
.stat { padding: 16px 14px; border-radius: 16px; border: 1px solid var(--line); background: var(--surface); }
.stat b { display: block; font-family: var(--font-head); font-size: clamp(22px, 2.4vw, 30px); font-weight: 700; line-height: 1; }
.stat > span { display: block; margin-top: 8px; font-size: 12.5px; color: var(--dim); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }

.hero-visual { position: relative; display: grid; place-items: center; }
.coin-wrap { position: relative; width: min(100%, 520px); aspect-ratio: 780 / 900; }
.coin-wrap img { width: 100%; height: 100%; object-fit: cover; border-radius: 40px; animation: float 6s ease-in-out infinite;
  -webkit-mask-image: radial-gradient(ellipse 70% 62% at 50% 50%, #000 40%, transparent 78%); mask-image: radial-gradient(ellipse 70% 62% at 50% 50%, #000 40%, transparent 78%); }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-18px) rotate(1deg); } }
.coin-ring { position: absolute; inset: 8%; border-radius: 50%; border: 1px dashed rgba(255,183,76,.35); animation: spin 40s linear infinite; }
.coin-ring.two { inset: -2%; border-style: solid; border-color: rgba(255,151,0,.12); animation-duration: 60s; animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.float-chip {
  position: absolute; display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 14px;
  background: rgba(14, 12, 10, 0.85); border: 1px solid var(--line-orange); backdrop-filter: blur(10px); font-size: 13px; font-weight: 700;
  box-shadow: 0 20px 40px -20px #000; animation: float 7s ease-in-out infinite;
}
.float-chip .ic { width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center; background: linear-gradient(135deg, var(--orange), var(--orange-2)); color: #161310; }
.float-chip .ic svg { width: 18px; height: 18px; }
.float-chip small { display: block; font-weight: 500; color: var(--dim); font-size: 11px; }
.float-chip.a { top: 8%; left: -4%; animation-delay: -2s; }
.float-chip.b { bottom: 14%; right: -4%; animation-delay: -4s; }
.float-chip.c { top: 46%; right: -8%; animation-delay: -1s; }
.scroll-hint { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); color: var(--dim); font-size: 12px; letter-spacing: .15em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-hint i { width: 1px; height: 40px; background: linear-gradient(var(--orange), transparent); animation: hint 1.6s ease-in-out infinite; }
@keyframes hint { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- marquee ---------- */
.marquee { border-block: 1px solid var(--line); background: rgba(255, 151, 0, 0.05); padding: 14px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 48px; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--muted); white-space: nowrap; }
.marquee-track span b { color: var(--orange-2); }
.marquee-track span::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 10px var(--orange); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- ecosystem (arch cards) ---------- */
.eco-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.arch {
  position: relative; text-align: center; padding: 34px 20px 30px; border-radius: 140px 140px 28px 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.01)); border: 1px solid var(--line);
  transition: transform .35s var(--ease-out), border-color .35s, box-shadow .35s;
}
.arch::after { content: ""; position: absolute; left: 12%; right: 12%; bottom: -1px; height: 2px; background: linear-gradient(90deg, transparent, var(--orange), transparent); opacity: .7; }
.arch:hover { transform: translateY(-8px); border-color: var(--line-orange); box-shadow: 0 30px 60px -30px var(--orange-glow); }
.arch .icon { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 20px; display: grid; place-items: center; color: #161310;
  background: linear-gradient(135deg, var(--orange), var(--orange-2)); box-shadow: 0 12px 30px -10px var(--orange-glow); transition: transform .4s var(--ease-spring); }
.arch:hover .icon { transform: scale(1.1) rotate(-6deg); }
.arch .icon svg { width: 32px; height: 32px; }
.arch h3 { font-size: 20px; color: var(--orange-2); margin-bottom: 10px; }
.arch h3::after { content: "----"; display: block; color: var(--orange); letter-spacing: .1em; font-size: 12px; margin-top: 4px; }
.arch p { font-size: 14.5px; color: var(--muted); }

/* ---------- split layout ---------- */
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.split.reverse > .visual { order: -1; }
.visual { position: relative; }
.visual img { border-radius: 28px; width: 100%; height: auto; box-shadow: 0 40px 80px -40px #000; transition: transform .6s var(--ease-out); }
.visual::before { content: ""; position: absolute; inset: 10%; border-radius: 50%; background: radial-gradient(circle, var(--orange-glow), transparent 65%); filter: blur(50px); z-index: -1; opacity: .6; }
.visual:hover img { transform: scale(1.02); }

/* info blocks */
.info-block { border: 1px solid var(--line-orange); border-radius: 0 20px 20px 20px; padding: 22px 24px 24px; margin-top: 30px; background: rgba(0,0,0,.35); position: relative; }
.info-block .pill { position: absolute; top: -20px; left: -1px; border-radius: 999px 999px 999px 0; }
.info-block h4 { color: var(--orange-2); font-size: 17px; margin-top: 10px; }
.info-block h4 + p { color: var(--muted); font-size: 15px; margin-bottom: 14px; }
.info-block > p:last-child { margin-bottom: 0; }

.check-list li { display: flex; gap: 12px; align-items: flex-start; padding: 8px 0; font-size: 15.5px; }
.check-list li svg { flex: none; width: 22px; height: 22px; margin-top: 2px; color: var(--orange); }
.check-list li b { color: var(--orange-2); font-weight: 700; }

/* registration tiles */
.reg-tiles { display: grid; gap: 14px; margin-top: 30px; }
.reg-tile { display: flex; align-items: center; gap: 18px; padding: 16px 18px; border-radius: 16px; background: rgba(255,255,255,.04); border: 1px solid var(--line); transition: transform .3s var(--ease-out), border-color .3s; }
.reg-tile:hover { transform: translateX(6px); border-color: var(--line-orange); }
.reg-tile .arrow { flex: none; width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, var(--orange), var(--orange-2)); color: #161310; }
.reg-tile .arrow svg { width: 24px; height: 24px; }
.reg-tile p { font-size: 17px; }
.reg-tile p b { color: var(--orange-2); font-family: var(--font-head); font-size: 20px; }

/* ---------- calculator ---------- */
.calc { border-radius: var(--radius); border: 1px solid var(--line-orange); background: linear-gradient(160deg, rgba(255,151,0,.08), rgba(255,255,255,.02)); padding: 26px; margin-top: 30px; }
.calc h4 { font-size: 18px; display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.calc h4 svg { width: 22px; height: 22px; color: var(--orange); }
.calc label { display: block; font-size: 13px; font-weight: 700; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px; }
.calc .field { display: flex; align-items: center; gap: 10px; }
.calc input[type="number"] {
  width: 100%; min-height: 48px; padding: 10px 14px; border-radius: 12px; background: rgba(0,0,0,.45); border: 1px solid var(--line); color: var(--text);
  font-family: var(--font-head); font-size: 20px; font-weight: 600; transition: border-color .2s, box-shadow .2s;
}
.calc input[type="number"]:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 4px var(--orange-soft); }
.calc input[type="range"] { width: 100%; accent-color: var(--orange); margin: 8px 0 0; height: 44px; cursor: pointer; }
.calc .hint { font-size: 12.5px; color: var(--dim); margin-top: 6px; }
.calc .error { font-size: 13px; color: #ffb4a8; margin-top: 8px; min-height: 18px; }
.calc-out { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 18px; }
.calc-out div { padding: 14px; border-radius: 14px; background: rgba(0,0,0,.4); border: 1px solid var(--line); }
.calc-out small { display: block; color: var(--dim); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }
.calc-out b { display: block; font-family: var(--font-head); font-size: 22px; margin-top: 6px; color: var(--orange-2); font-variant-numeric: tabular-nums; }
.calc-out b.white { color: var(--text); }
.toggle { display: inline-flex; padding: 4px; border-radius: 999px; border: 1px solid var(--line); background: rgba(0,0,0,.4); gap: 4px; }
.toggle button { padding: 8px 16px; border-radius: 999px; font-weight: 700; font-size: 13.5px; color: var(--muted); transition: .25s; min-height: 40px; }
.toggle button[aria-pressed="true"] { background: linear-gradient(135deg, var(--orange), var(--orange-2)); color: #161310; }

/* ---------- team level table ---------- */
.level-groups { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; align-items: start; }
.level-groups > * { min-width: 0; }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 -6px; padding: 0 6px; }
.level-table { width: 100%; min-width: 280px; border-collapse: separate; border-spacing: 0; font-size: 14px; }
.level-table th { padding: 10px 6px; font-family: var(--font-head); font-size: 12.5px; font-weight: 700; color: #161310; background: linear-gradient(135deg, var(--orange), var(--orange-2)); border-radius: 12px; text-align: center; line-height: 1.2; }
.level-table th + th { border-left: 4px solid var(--bg); }
.level-table td { padding: 11px 6px; text-align: center; border-bottom: 1px solid var(--line); font-variant-numeric: tabular-nums; transition: background .2s; }
.level-table tr:hover td { background: var(--orange-soft); }
.level-table td:first-child { color: var(--orange-2); font-weight: 700; }
.level-table td:last-child { font-weight: 700; }
.level-table tr:last-child td { border-bottom: 0; }
.level-total { display: flex; justify-content: flex-end; gap: 12px; margin-top: 14px; }
.level-total span { padding: 10px 22px; border-radius: 12px; background: linear-gradient(135deg, var(--orange), var(--orange-2)); color: #161310; font-family: var(--font-head); font-weight: 700; }
.rules-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 32px; margin-top: 10px; }
.rules-title { color: var(--orange-2); letter-spacing: .1em; text-transform: uppercase; font-size: 14px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; align-items: center; margin-bottom: 26px; }
.tag { padding: 8px 16px; border-radius: 999px; background: #fff; color: #161310; font-family: var(--font-head); font-weight: 700; font-size: 14px; }

/* ---------- monthly pool ---------- */
.bars { display: grid; gap: 14px; }
.bar { display: grid; grid-template-columns: 130px 1fr 52px; align-items: center; gap: 14px; font-size: 15px; }
.bar b { color: var(--orange-2); font-family: var(--font-head); font-size: 18px; text-align: right; }
.bar .track { height: 10px; border-radius: 10px; background: rgba(255,255,255,.07); overflow: hidden; }
.bar .track i { display: block; height: 100%; width: 0; border-radius: inherit; background: linear-gradient(90deg, var(--orange), var(--orange-2)); box-shadow: 0 0 14px var(--orange-glow); transition: width 1.2s var(--ease-out); }
.in-view .bar .track i { width: var(--w); }

/* ---------- royalty ---------- */
.royalty-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.rank-card { text-align: center; padding: 0 0 24px; border-radius: 22px; border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01)); overflow: hidden; transition: transform .35s var(--ease-out), border-color .35s, box-shadow .35s; }
.rank-card:hover { transform: translateY(-8px); border-color: var(--line-orange); box-shadow: 0 30px 60px -30px var(--orange-glow); }
.badge { width: 96px; height: 96px; margin: 26px auto 14px; position: relative; display: grid; place-items: center; }
.badge svg.laurel { position: absolute; inset: 0; width: 100%; height: 100%; color: var(--orange); }
.badge .core { width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center; background: radial-gradient(circle at 30% 30%, #2a2622, #0d0c0b); border: 3px solid var(--orange); color: var(--orange-2); font-family: var(--font-head); font-weight: 800; font-size: 20px; box-shadow: 0 0 24px -4px var(--orange-glow); }
.rank-card .rank-title { display: block; padding: 10px; background: linear-gradient(135deg, var(--orange), var(--orange-2)); color: #161310; font-family: var(--font-head); font-weight: 700; }
.rank-card .pct { font-family: var(--font-head); font-size: 28px; font-weight: 800; color: var(--orange-2); margin-top: 16px; }
.rank-card .sep { color: var(--orange); font-size: 11px; letter-spacing: .15em; margin: 6px 0; }
.rank-card p { font-size: 13.5px; padding: 0 14px; color: var(--muted); }
.rank-card p b { color: var(--text); }
.rank-card p.income b { color: var(--orange-2); }
.rank-card .req { color: var(--text); }

/* ---------- rewards ---------- */
.rewards-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.reward { position: relative; border-radius: 24px; overflow: hidden; border: 1px solid var(--line); background: #0b0a09; aspect-ratio: 240 / 400; transition: transform .4s var(--ease-out), border-color .4s; }
.reward img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.reward:hover { transform: translateY(-8px); border-color: var(--line-orange); }
.reward:hover img { transform: scale(1.08); }
.reward .meta { position: absolute; inset: auto 0 0 0; padding: 60px 16px 18px; background: linear-gradient(transparent, rgba(7,7,7,.95) 55%); }
.reward .meta small { display: block; color: var(--orange-2); font-weight: 800; font-family: var(--font-head); letter-spacing: .08em; }
.reward .meta h3 { font-size: 18px; margin: 4px 0 2px; }
.reward .meta span { font-size: 13.5px; color: var(--muted); }
.reward .badge-mini { position: absolute; top: 12px; left: 12px; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: rgba(7,7,7,.75); border: 2px solid var(--orange); font-family: var(--font-head); font-weight: 800; color: var(--orange-2); backdrop-filter: blur(6px); }

/* ---------- capping + withdrawal ---------- */
.two-col { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 24px; }
.two-col > *, .split > *, .token-grid > * { min-width: 0; }
.cap-levels { display: grid; gap: 14px; margin-top: 22px; }
.cap-row { display: flex; align-items: center; gap: 18px; padding: 16px 18px; border-radius: 16px; background: rgba(0,0,0,.35); border: 1px solid var(--line); }
.cap-row .x { flex: none; width: 64px; height: 64px; border-radius: 16px; display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 24px; background: linear-gradient(135deg, var(--orange), var(--orange-2)); color: #161310; box-shadow: 0 12px 30px -12px var(--orange-glow); }
.cap-row h4 { font-size: 17px; color: var(--orange-2); }
.cap-row p { font-size: 14.5px; color: var(--muted); }
.note { margin-top: 18px; padding: 14px 16px; border-radius: 14px; background: var(--orange-soft); border: 1px dashed var(--line-orange); font-size: 14.5px; }
.formula { margin: 18px 0; padding: 16px 18px; border-radius: 14px; background: rgba(0,0,0,.45); border: 1px solid var(--line-orange); font-family: var(--font-head); font-size: 15px; line-height: 1.7; }
.formula b { color: var(--orange-2); }

/* ---------- tokenomics ---------- */
.token-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 28px; align-items: start; }
.param-list li { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.param-list li:last-child { border-bottom: 0; }
.param-list li span { display: flex; align-items: center; gap: 10px; color: var(--muted); }
.param-list li span svg { width: 20px; height: 20px; color: var(--orange); flex: none; }
.param-list li b { color: var(--orange-2); text-align: right; font-family: var(--font-head); font-weight: 700; }
.param-head { display: flex; justify-content: space-between; margin-bottom: 8px; }
.donut-wrap { display: grid; grid-template-columns: 200px 1fr; gap: 22px; align-items: center; }
.donut { position: relative; width: 200px; height: 200px; border-radius: 50%; background: conic-gradient(var(--orange) 0 var(--deg, 0deg), rgba(255,255,255,.1) var(--deg, 0deg) 360deg); display: grid; place-items: center; transition: --deg 1.4s; box-shadow: 0 0 40px -10px var(--orange-glow); }
.donut::before { content: ""; position: absolute; inset: 22px; border-radius: 50%; background: var(--bg-2); }
.donut div { position: relative; text-align: center; font-family: var(--font-head); }
.donut div b { display: block; font-size: 30px; font-weight: 800; color: var(--orange-2); }
.donut div small { color: var(--dim); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }
.legend li { display: grid; grid-template-columns: 14px 1fr auto; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.legend li:last-child { border: 0; }
.legend li i { width: 14px; height: 14px; border-radius: 4px; background: var(--orange); }
.legend li.alt i { background: rgba(255,255,255,.2); }
.legend li b { font-family: var(--font-head); color: var(--orange-2); }
.legend li small { display: block; color: var(--dim); }
.token-visual { position: relative; border-radius: 28px; overflow: hidden; aspect-ratio: 4 / 3; }
.token-visual img { width: 100%; height: 100%; object-fit: cover; }
.token-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(7,7,7,.75) 60%, rgba(7,7,7,.98)); }
.token-visual .caption { position: absolute; left: 22px; right: 22px; bottom: 20px; }
.token-visual .caption h3 { font-size: 22px; text-shadow: 0 2px 12px #000; }
.token-visual .caption p { color: var(--text); font-size: 14px; text-shadow: 0 1px 8px #000; }
.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 28px; }
.trust div { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: 16px; border: 1px solid var(--line); background: var(--surface); font-size: 14.5px; }
.trust div svg { width: 30px; height: 30px; color: var(--orange); flex: none; }
.trust div b { display: block; font-family: var(--font-head); font-size: 17px; }

/* ---------- deck ---------- */
.deck { position: relative; }
.deck-track { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 6px 22px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.deck-track::-webkit-scrollbar { display: none; }
.slide { flex: 0 0 min(78%, 620px); scroll-snap-align: center; border-radius: 20px; overflow: hidden; border: 1px solid var(--line); background: #000; aspect-ratio: 16 / 9; position: relative; transition: border-color .3s, transform .4s var(--ease-out); }
.slide:hover { border-color: var(--orange); transform: translateY(-4px); }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide .zoom { position: absolute; top: 12px; right: 12px; width: 44px; height: 44px; border-radius: 12px; background: rgba(7,7,7,.7); border: 1px solid var(--line-orange); display: grid; place-items: center; color: var(--orange-2); opacity: 0; transition: opacity .25s; }
.slide:hover .zoom, .slide:focus-within .zoom { opacity: 1; }
.slide .zoom svg { width: 20px; height: 20px; }
.deck-nav { display: flex; gap: 10px; justify-content: center; margin-top: 8px; }
.deck-nav button { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line-orange); background: var(--surface); display: grid; place-items: center; transition: .25s; }
.deck-nav button:hover { background: var(--orange); color: #161310; }
.deck-nav button svg { width: 22px; height: 22px; }

.lightbox { position: fixed; inset: 0; z-index: 2500; display: grid; place-items: center; padding: 24px; background: rgba(0,0,0,.9); backdrop-filter: blur(10px); opacity: 0; visibility: hidden; transition: .3s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(1400px, 100%); max-height: 88vh; border-radius: 16px; border: 1px solid var(--line-orange); box-shadow: 0 40px 100px -30px var(--orange-glow); transform: scale(.94); transition: transform .35s var(--ease-out); }
.lightbox.open img { transform: none; }
.lightbox .close { position: absolute; top: 18px; right: 18px; width: 48px; height: 48px; border-radius: 50%; background: var(--surface-2); border: 1px solid var(--line); display: grid; place-items: center; }
.lightbox .close svg { width: 22px; height: 22px; }
.lightbox .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; background: rgba(7,7,7,.7); border: 1px solid var(--line-orange); display: grid; place-items: center; }
.lightbox .lb-nav.prev { left: 18px; } .lightbox .lb-nav.next { right: 18px; }
.lightbox .lb-nav svg { width: 24px; height: 24px; }

/* ---------- faq ---------- */
.faq { max-width: 860px; margin-inline: auto; display: grid; gap: 12px; }
.faq details { border-radius: 16px; border: 1px solid var(--line); background: var(--surface); overflow: hidden; transition: border-color .3s; }
.faq details[open] { border-color: var(--line-orange); }
.faq summary { list-style: none; cursor: pointer; padding: 18px 22px; font-family: var(--font-head); font-weight: 600; font-size: 17px; display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 48px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg { width: 22px; height: 22px; color: var(--orange); flex: none; transition: transform .3s var(--ease-out); }
.faq details[open] summary svg { transform: rotate(45deg); }
.faq .answer { padding: 0 22px 20px; color: var(--muted); font-size: 15px; }

/* ---------- cta + footer ---------- */
.cta-box { position: relative; border-radius: 32px; padding: clamp(40px, 6vw, 72px); overflow: hidden; text-align: center; border: 1px solid var(--line-orange);
  background: radial-gradient(ellipse at 50% 120%, rgba(255,151,0,.35), transparent 60%), linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.01)); }
.cta-box h2 { font-size: clamp(30px, 4.6vw, 52px); margin-bottom: 14px; }
.cta-box p { color: var(--muted); max-width: 560px; margin: 0 auto 30px; font-size: 17px; }
.cta-box .actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.cta-box .coin-bg { position: absolute; width: 380px; right: -100px; bottom: -120px; opacity: .25; pointer-events: none; animation: spin 50s linear infinite; }

footer { padding: 60px 0 32px; border-top: 1px solid var(--line); background: linear-gradient(180deg, transparent, rgba(0,0,0,.5)); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer-grid p { color: var(--muted); font-size: 14.5px; margin-top: 16px; max-width: 360px; }
.footer-grid h4 { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--orange-2); margin-bottom: 14px; }
.footer-grid li a { display: block; padding: 6px 0; color: var(--muted); font-size: 14.5px; transition: color .2s, transform .2s; }
.footer-grid li a:hover { color: var(--text); transform: translateX(4px); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--dim); font-size: 13px; }
.site-pill { display: inline-flex; align-items: center; gap: 10px; padding: 6px 16px 6px 6px; border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid var(--line); font-size: 13px; font-weight: 600; }
.site-pill i { width: 34px; height: 24px; border-radius: 999px; display: grid; place-items: center; background: linear-gradient(135deg, var(--orange), var(--orange-2)); color: #161310; }
.site-pill i svg { width: 16px; height: 16px; }
.disclaimer { margin-top: 22px; color: var(--dim); font-size: 12.5px; max-width: 900px; }

.to-top { position: fixed; right: 18px; bottom: 18px; z-index: 800; width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--orange), var(--orange-2)); color: #161310; box-shadow: 0 14px 30px -10px var(--orange-glow);
  opacity: 0; visibility: hidden; transform: translateY(14px); transition: .3s var(--ease-out); }
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top svg { width: 22px; height: 22px; }

/* ---------- reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); transition-delay: var(--d, 0s); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-scale { opacity: 0; transform: scale(.94); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); transition-delay: var(--d, 0s); }
.reveal-scale.in-view { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.stagger.in-view > * { opacity: 1; transform: none; }
.stagger.in-view > :nth-child(1) { transition-delay: .05s; }
.stagger.in-view > :nth-child(2) { transition-delay: .12s; }
.stagger.in-view > :nth-child(3) { transition-delay: .19s; }
.stagger.in-view > :nth-child(4) { transition-delay: .26s; }
.stagger.in-view > :nth-child(5) { transition-delay: .33s; }
.stagger.in-view > :nth-child(6) { transition-delay: .40s; }
.stagger.in-view > :nth-child(7) { transition-delay: .47s; }
.stagger.in-view > :nth-child(8) { transition-delay: .54s; }


/* ---------- polymarket revenue engine ---------- */
.pm-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 32px; align-items: stretch; }
.pm-flow { display: flex; flex-direction: column; }
.pm-node { display: flex; gap: 16px; align-items: flex-start; padding: 18px 20px; border-radius: 18px; border: 1px solid var(--line); background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.015)); position: relative; transition: border-color .3s, transform .3s var(--ease-out); }
.pm-node:hover { border-color: var(--line-orange); transform: translateX(6px); }
.pm-node-ic { flex: none; width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; color: #161310; background: linear-gradient(135deg, var(--orange), var(--orange-2)); box-shadow: 0 12px 26px -12px var(--orange-glow); }
.pm-node-ic svg { width: 26px; height: 26px; }
.pm-step { display: block; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--orange-2); margin-bottom: 2px; }
.pm-node h3 { font-size: 18px; margin-bottom: 4px; }
.pm-node p { font-size: 14.5px; color: var(--muted); }
.pm-node-final { border-color: var(--line-orange); background: linear-gradient(160deg, rgba(255,151,0,.14), rgba(255,255,255,.02)); }
.pm-node-final::after { content: ""; position: absolute; inset: -1px; border-radius: inherit; pointer-events: none; animation: ringpulse 2.6s ease-out infinite; }
@keyframes ringpulse { 0% { box-shadow: 0 0 0 0 rgba(255,151,0,.45); } 100% { box-shadow: 0 0 0 14px rgba(255,151,0,0); } }
.pm-link { position: relative; height: 34px; margin-left: 45px; width: 2px; }
.pm-link i:first-child { position: absolute; inset: 0; background: repeating-linear-gradient(180deg, var(--orange) 0 6px, transparent 6px 12px); opacity: .5; background-size: 2px 12px; animation: dashflow 1s linear infinite; }
.pm-link i:last-child { position: absolute; left: -3px; top: -4px; width: 8px; height: 8px; border-radius: 50%; background: var(--orange-2); box-shadow: 0 0 12px 2px var(--orange-glow); animation: dropflow 1.8s ease-in-out infinite; }
.pm-flow .pm-link:nth-of-type(4) i:last-child { animation-delay: .6s; }
.pm-flow .pm-link:nth-of-type(6) i:last-child { animation-delay: 1.2s; }
@keyframes dashflow { to { background-position: 0 12px; } }
@keyframes dropflow { 0% { transform: translateY(0); opacity: 0; } 20% { opacity: 1; } 80% { opacity: 1; } 100% { transform: translateY(34px); opacity: 0; } }

.pm-terminal { border-radius: 24px; border: 1px solid var(--line-orange); background: linear-gradient(170deg, #121110, #0a0908); box-shadow: 0 40px 80px -40px #000, 0 0 60px -30px var(--orange-glow); overflow: hidden; display: flex; flex-direction: column; }
.pm-bar { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.03); }
.pm-dots { display: flex; gap: 6px; }
.pm-dots i { width: 10px; height: 10px; border-radius: 50%; background: #3a3632; }
.pm-dots i:first-child { background: #ff6b5b; } .pm-dots i:nth-child(2) { background: #ffbd2e; } .pm-dots i:last-child { background: #28c840; }
.pm-title { display: flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; font-size: 13.5px; color: var(--muted); flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pm-live { width: 8px; height: 8px; border-radius: 50%; background: #28c840; box-shadow: 0 0 0 0 rgba(40,200,64,.6); animation: livepulse 1.6s ease-out infinite; flex: none; }
@keyframes livepulse { to { box-shadow: 0 0 0 8px rgba(40,200,64,0); } }
.pm-tag { font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--orange-2); border: 1px solid var(--line-orange); padding: 4px 8px; border-radius: 999px; white-space: nowrap; }

.pm-chart { padding: 16px 16px 8px; }
.pm-chart-head { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.pm-chart-head small { display: block; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--dim); font-weight: 700; }
.pm-chart-head b { display: block; font-family: var(--font-head); font-size: 26px; color: var(--success); font-variant-numeric: tabular-nums; }
.pm-cycle { text-align: right; }
.pm-cycle b { color: var(--orange-2); font-size: 18px; margin-top: 4px; }
.pm-chart svg { width: 100%; height: 130px; display: block; }
.pm-gridlines line { stroke: rgba(255,255,255,.06); stroke-width: 1; }
.pm-area { fill: url(#pmFill); opacity: 0; transition: opacity 1s ease 1.4s; }
.pm-line { fill: none; stroke: url(#pmStroke); stroke-width: 2.5; stroke-linejoin: round; stroke-linecap: round; stroke-dasharray: 600; stroke-dashoffset: 600; }
.pm-tip { fill: var(--orange-2); opacity: 0; filter: drop-shadow(0 0 6px var(--orange)); }
.pm-terminal.in-view .pm-line { animation: drawline 2s var(--ease-out) .3s forwards; }
.pm-terminal.in-view .pm-area { opacity: 1; }
.pm-terminal.in-view .pm-tip { animation: tipin .4s ease 2.2s forwards, tippulse 1.8s ease-in-out 2.6s infinite; }
@keyframes drawline { to { stroke-dashoffset: 0; } }
@keyframes tipin { to { opacity: 1; } }
@keyframes tippulse { 50% { r: 6; } }
.pm-axis { display: flex; justify-content: space-between; font-size: 11px; color: var(--dim); padding: 4px 2px 0; }

.pm-markets { padding: 6px 16px; display: grid; gap: 6px; }
.pm-markets li { padding: 10px 12px; border-radius: 12px; background: rgba(255,255,255,.03); border: 1px solid transparent; transition: border-color .3s, background .3s; }
.pm-markets li:hover { border-color: var(--line-orange); background: rgba(255,151,0,.06); }
.pm-q { font-size: 13.5px; font-weight: 600; display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.pm-cat { flex: none; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: var(--orange-2); background: var(--orange-soft); padding: 3px 7px; border-radius: 6px; }
.pm-odds { display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 10px; }
.pm-yes { font-family: var(--font-head); font-weight: 800; font-size: 16px; color: var(--orange-2); font-variant-numeric: tabular-nums; }
.pm-no { font-size: 11.5px; color: var(--dim); font-weight: 600; font-variant-numeric: tabular-nums; }
.pm-track { height: 8px; border-radius: 8px; background: rgba(255,255,255,.08); overflow: hidden; }
.pm-track i { display: block; height: 100%; width: 0; border-radius: inherit; background: linear-gradient(90deg, var(--orange), var(--orange-2)); box-shadow: 0 0 10px var(--orange-glow); transition: width .9s var(--ease-out); }
.pm-markets li.flash .pm-yes { animation: flashup .6s ease; }
@keyframes flashup { 0% { color: #fff; } 100% { color: var(--orange-2); } }

.pm-foot { margin-top: auto; padding: 10px 16px 14px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; }
.pm-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.pm-chips span { font-size: 11.5px; font-weight: 600; color: var(--muted); border: 1px solid var(--line); padding: 4px 10px; border-radius: 999px; }
.pm-foot p { font-size: 11.5px; color: var(--dim); }

.pm-why { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 32px; }
.pm-why .card h3 { font-size: 19px; margin: 14px 0 8px; }
.pm-why .card p { font-size: 14.5px; color: var(--muted); }
.pm-why-ic { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--orange-soft); border: 1px solid var(--line-orange); color: var(--orange-2); }
.pm-why-ic svg { width: 24px; height: 24px; }

@media (max-width: 900px) {
  .pm-grid { grid-template-columns: 1fr; }
  .pm-why { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .pm-node { padding: 14px 14px; gap: 12px; }
  .pm-node-ic { width: 44px; height: 44px; }
  .pm-link { margin-left: 35px; }
  .pm-chart-head small { font-size: 10px; letter-spacing: .06em; }
  .pm-chart-head b { font-size: 22px; }
  .pm-cycle b { font-size: 15px; white-space: nowrap; }
  .pm-odds { grid-template-columns: 40px 1fr auto; gap: 8px; }
  .pm-title { font-size: 12.5px; }
  .pm-foot { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  .pm-line { stroke-dashoffset: 0; animation: none; }
  .pm-area, .pm-tip { opacity: 1; }
  .pm-link i, .pm-node-final::after, .pm-live { animation: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1200px) {
  .nav-login { display: none; }
  .nav-links a { padding: 10px 9px; font-size: 13.5px; }
}
@media (max-width: 1100px) {
  .eco-grid { grid-template-columns: repeat(3, 1fr); }
  .royalty-grid { grid-template-columns: repeat(3, 1fr); }
  .rewards-grid { grid-template-columns: repeat(3, 1fr); }
  .level-groups { grid-template-columns: 1fr 1fr; }
  .trust { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .burger { display: block; }
  .hero .container { grid-template-columns: 1fr; gap: 28px; }
  .hero-visual { order: -1; }
  .coin-wrap { width: min(80%, 380px); }
  .float-chip.a { left: 0; } .float-chip.b { right: 0; } .float-chip.c { right: 0; top: 40%; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse > .visual { order: 0; }
  .two-col, .token-grid { grid-template-columns: 1fr; }
  .rules-grid { grid-template-columns: 1fr; }
  .scroll-hint { display: none; }
}
@media (max-width: 640px) {
  .container { width: min(var(--container), 100% - 32px); }
  .eco-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .arch { padding: 26px 14px 22px; border-radius: 100px 100px 22px 22px; }
  .arch .icon { width: 60px; height: 60px; }
  .arch h3 { font-size: 17px; }
  .royalty-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .rewards-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .rewards-grid .reward:last-child { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
  .level-groups { grid-template-columns: 1fr; }
  .level-table { font-size: 13.5px; }
  .level-table th { font-size: 11.5px; padding: 8px 4px; }
  .level-table td { padding: 10px 4px; }
  .two-col .card .visual { margin: -22px -18px 16px; }
  .cap-row { gap: 12px; padding: 14px; }
  .cap-row .x { width: 54px; height: 54px; font-size: 20px; }
  .formula { font-size: 14px; }
  .reg-tile p { font-size: 16px; }
  .reg-tile p b { font-size: 18px; }
  section { padding: 64px 0; }
  .calc-out { grid-template-columns: 1fr 1fr; }
  .bar { grid-template-columns: 96px 1fr 48px; font-size: 14px; }
  .donut-wrap { grid-template-columns: 1fr; justify-items: center; }
  .token-visual { aspect-ratio: auto; border: 1px solid var(--line); background: var(--surface); }
  .token-visual img { aspect-ratio: 4 / 3; }
  .token-visual::after { display: none; }
  .token-visual .caption { position: static; padding: 16px 18px 20px; }
  .token-visual .caption p { color: var(--muted); text-shadow: none; }
  .trust { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .slide { flex-basis: 88%; }
  .float-chip { font-size: 12px; padding: 8px 10px; }
  .card { padding: 22px 18px; }
  .hero-actions .btn { flex: 1 1 100%; }
}
@media (max-width: 400px) {
  .eco-grid, .royalty-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 10px; }
  .stat { padding: 14px 12px; }
  .calc-out { grid-template-columns: 1fr; }
  .calc { padding: 20px 16px; }
  .bar { grid-template-columns: 84px 1fr 40px; gap: 10px; font-size: 13.5px; }
  .level-groups .card { padding: 16px 10px; }
  .level-table { font-size: 12.5px; min-width: 0; }
  .level-table th { font-size: 10px; padding: 6px 3px; }
  .level-table td { padding: 9px 3px; }
  .level-total span { padding: 8px 16px; font-size: 14px; }
  .brand img { height: 34px; }
  .float-chip { padding: 6px 8px; font-size: 11px; }
  .float-chip .ic { width: 26px; height: 26px; }
  .float-chip.c { display: none; }
  .rewards-grid { grid-template-columns: 1fr; }
  .rewards-grid .reward, .rewards-grid .reward:last-child { aspect-ratio: 16 / 11; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .15s !important; }
  .reveal, .reveal-scale, .stagger > * { opacity: 1; transform: none; }
  .hero h1 .line span { transform: none; }
  .marquee-track { animation: none; }
  .bg-layer canvas { display: none; }
}
