/* ============================================================
   Crypgo — Crypto Exchange Landing Page
   Modern dark theme · green accent · glassmorphism
   ============================================================ */

:root {
  --bg:        #05070d;
  --bg-soft:   #0a0e18;
  --surface:   #0e1320;
  --surface-2: #131a2a;
  --border:    rgba(255,255,255,.08);
  --border-2:  rgba(255,255,255,.14);
  --text:      #eef2f8;
  --muted:     #8b93a7;
  --muted-2:   #5d6479;
  --green:     #aef361;
  --green-2:   #7ee787;
  --green-deep:#5bd66a;
  --up:        #4ade80;
  --down:      #f87171;
  --btc:       #f7931a;
  --eth:       #627eea;
  --sol:       #14f195;
  --ltc:       #345d9d;
  --dot:       #e6007a;
  --radius:    18px;
  --radius-sm: 12px;
  --shadow:    0 24px 60px -20px rgba(0,0,0,.7);
  --maxw:      1180px;
  --font:      'Ubuntu', system-ui, sans-serif;
  --display:   Arial, 'Helvetica Neue', Helvetica, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Background decor ---------- */
.bg-decor { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.glow { position: absolute; border-radius: 50%; filter: blur(110px); opacity: .5; }
.glow--1 { width: 520px; height: 520px; background: rgba(126,231,135,.18); top: -120px; right: -80px; }
.glow--2 { width: 480px; height: 480px; background: rgba(98,126,234,.14); top: 40%; left: -160px; }
.glow--3 { width: 600px; height: 600px; background: rgba(174,243,97,.07); bottom: -200px; right: 10%; }
.grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px),
                    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 20%, transparent 75%);
  opacity: .5;
}
/* hero globe — sits only behind the BAS ecosystem phone */
.hero-globe {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 130%; max-width: min(620px, 100vw); aspect-ratio: 1; z-index: 0; pointer-events: none;
  mask-image: radial-gradient(circle at 50% 50%, #000 45%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 45%, transparent 78%);
}
.hero-globe svg { width: 100%; height: 100%; display: block; }
.hg-lines circle, .hg-lines ellipse { fill: none; stroke: url(#globeGrad); stroke-width: 1.1; }
.hg-dots circle { fill: rgba(167,139,250,.5); filter: drop-shadow(0 0 3px rgba(167,139,250,.5)); }

/* Buy / Sell up-down arrows (up = green, down = red) */
.bs-arrows { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px;
  background: rgba(255,255,255,.05); border: 1px solid var(--border-2); }
.bs-arrows .up { color: var(--up); font-size: .58rem; line-height: 1; }
.bs-arrows .down { color: var(--down); font-size: .58rem; line-height: 1; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-weight: 600; font-size: .92rem;
  padding: 12px 22px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .2s, box-shadow .25s, background .25s, border-color .25s;
  white-space: nowrap;
}
.btn--primary { background: var(--green); color: #08130a; box-shadow: 0 8px 24px -8px rgba(174,243,97,.6); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -8px rgba(174,243,97,.7); }
.btn--ghost { background: rgba(255,255,255,.04); color: var(--text); border-color: var(--border-2); }
.btn--ghost:hover { background: rgba(255,255,255,.09); transform: translateY(-2px); }
.btn--lg { padding: 15px 28px; font-size: 1rem; }
.arrow { transition: transform .2s; }
.btn--primary:hover .arrow { transform: translateX(4px); }

/* ---------- Navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(5,7,13,.72);
  border-bottom: 1px solid var(--border);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 700; font-size: 1.25rem; }
.brand__mark { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, var(--green), var(--green-deep)); color: #08130a; }
.brand__mark--img { background: none !important; border-radius: 0; overflow: visible; }
.brand__mark--img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.nav__links { display: flex; gap: 32px; }
.nav__links a { color: var(--muted); font-size: .94rem; font-weight: 500; transition: color .2s; position: relative; }
.nav__links a:hover { color: var(--text); }
.nav__links a::after { content:""; position:absolute; left:0; bottom:-6px; width:0; height:2px; background:var(--green); transition:width .25s; border-radius:2px; }
.nav__links a:hover::after { width:100%; }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__login { padding: 10px 18px; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__burger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }
.nav__burger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2){ opacity: 0; }
.nav__burger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
.nav__mobile { display: none; flex-direction: column; gap: 6px; padding: 0 24px; max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s; background: rgba(5,7,13,.96); border-bottom: 1px solid var(--border); }
.nav__mobile a { padding: 12px 0; color: var(--muted); border-bottom: 1px solid var(--border); }
.nav__mobile a.btn { color: #08130a; justify-content: center; margin: 12px 0; border-bottom: 0; }
.nav__mobile.open { max-height: 420px; padding: 8px 24px 20px; }

/* ---------- Hero ---------- */
.hero { padding: 70px 0 40px; position: relative; }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.pill { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 500;
  padding: 7px 14px; border-radius: 999px; background: rgba(109,139,255,.10); border: 1px solid rgba(109,139,255,.28); color: #6d8bff; }
.pill__dot { width: 7px; height: 7px; border-radius: 50%; background: #6d8bff; box-shadow: 0 0 0 4px rgba(109,139,255,.20); animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 7px rgba(174,243,97,0); } }
.hero__title { font-family: var(--display); font-size: clamp(2.4rem, 5.2vw, 4rem); line-height: 1.06; font-weight: 700; margin: 22px 0 18px; letter-spacing: -1.5px; }
.grad-text { background: linear-gradient(100deg, var(--green), var(--green-2) 60%, #d8ffa8); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { color: var(--muted); font-size: 1.08rem; max-width: 460px; }
.hero__cta { display: flex; gap: 14px; margin: 30px 0 36px; flex-wrap: wrap; }
.hero__mini-stats { display: flex; align-items: center; gap: 22px; }
.hero__mini-stats > div { display: flex; flex-direction: column; }
.hero__mini-stats strong { font-family: var(--display); font-size: 1.5rem; }
.hero__mini-stats span { color: var(--muted); font-size: .85rem; }
.hero__mini-stats .divider { width: 1px; height: 34px; background: var(--border-2); }

/* ---------- Phone mockup ---------- */
.hero__visual { position: relative; display: grid; place-items: center; min-height: 480px; }
.phone {
  position: relative; z-index: 1; width: 270px; aspect-ratio: 9/19; border-radius: 38px;
  background: linear-gradient(160deg, #171f31, #0a0e18); padding: 14px;
  border: 1px solid var(--border-2); box-shadow: var(--shadow), inset 0 0 0 2px rgba(255,255,255,.03);
}
.phone__notch { position: absolute; top: 16px; left: 50%; transform: translateX(-50%); width: 90px; height: 20px; border-radius: 0 0 14px 14px; background: #05070d; z-index: 2; }
.phone__screen { height: 100%; border-radius: 26px; background: radial-gradient(120% 60% at 50% 0%, #11192a, #070a12); padding: 30px 14px 16px; display: flex; flex-direction: column; gap: 12px; overflow: hidden; }

/* BASCoin ecosystem phone */
.eco-phone__head { display: flex; justify-content: space-between; align-items: center; padding: 0 2px; }
.eco-phone__brand { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: .92rem; }
.eco-phone__logo { width: 22px; height: 22px; border-radius: 50%; object-fit: contain; }
.eco-phone__price { text-align: left; }
.eco-phone__price > span:first-child { font-size: .7rem; color: var(--muted); }
.eco-phone__price strong { display: block; font-family: var(--display); font-size: 1.55rem; margin: 3px 0 2px; }
.eco-phone__chg { font-size: .76rem; font-weight: 600; }
.eco-phone__apps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.eco-app { display: flex; flex-direction: column; align-items: center; gap: 5px; padding: 10px 3px; border-radius: 12px;
  background: rgba(255,255,255,.04); border: 1px solid var(--border); font-size: .64rem; color: var(--muted); text-decoration: none; transition: background .2s, border-color .2s, color .2s; }
.eco-app span { font-size: 1.1rem; }
.eco-app:hover { background: rgba(174,243,97,.1); border-color: rgba(174,243,97,.3); color: var(--text); }
.mini-card { background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 14px; padding: 12px; }
.mini-card__head { display: flex; justify-content: space-between; font-size: .78rem; color: var(--muted); margin-bottom: 8px; }
.dot-menu { letter-spacing: 1px; color: var(--muted-2); }
.donut { position: relative; display: grid; place-items: center; }
.donut svg { width: 96px; height: 96px; transform: rotate(-90deg); }
.donut__bg { fill: none; stroke: rgba(255,255,255,.07); stroke-width: 10; }
.donut__fg { fill: none; stroke: var(--green); stroke-width: 10; stroke-linecap: round; stroke-dasharray: 301; stroke-dashoffset: 84; filter: drop-shadow(0 0 6px rgba(174,243,97,.5)); }
.donut__label { position: absolute; text-align: center; }
.donut__label strong { font-family: var(--display); font-size: 1.3rem; display: block; }
.donut__label span { font-size: .7rem; color: var(--muted); }
.coin-row { display: flex; align-items: center; gap: 8px; padding: 6px 0; font-size: .78rem; }
.coin-row > div:not(.coin-val) { display: flex; flex-direction: column; line-height: 1.2; }
.coin-row strong { font-size: .8rem; }
.coin-row span { color: var(--muted); font-size: .68rem; }
.coin-row .coin-val { margin-left: auto; font-weight: 600; }
.coin-ic { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; font-size: .9rem; font-weight: 700; flex-shrink: 0; color: #fff; }
.coin-ic.small { width: 26px; height: 26px; font-size: .8rem; }
.coin-ic.btc { background: linear-gradient(135deg,#f7931a,#ffb84d); color:#1a1200; }
.coin-ic.eth { background: linear-gradient(135deg,#627eea,#8aa0ff); }
.coin-ic.sol { background: linear-gradient(135deg,#14f195,#9945ff); }
.coin-ic.ltc { background: linear-gradient(135deg,#345d9d,#5a82c4); }
.coin-ic.dot { background: linear-gradient(135deg,#e6007a,#ff5cb0); }
.up { color: var(--up); } .down { color: var(--down); }
.spark { margin-top: auto; background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: 14px; padding: 8px; }
.spark svg { width: 100%; height: 56px; }

.float-badge {
  position: absolute; display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  background: rgba(14,19,32,.85); backdrop-filter: blur(10px); border: 1px solid var(--border-2);
  border-radius: 14px; box-shadow: var(--shadow); animation: floaty 4s ease-in-out infinite;
}
.float-badge div { display: flex; flex-direction: column; line-height: 1.2; }
.float-badge strong { font-size: .9rem; }
.float-badge span { font-size: .72rem; color: var(--muted); }
.float-badge--a { top: 12%; left: -8%; }
.float-badge--b { bottom: 14%; right: -6%; animation-delay: 1.5s; }
@keyframes floaty { 50% { transform: translateY(-12px); } }

/* ---------- Trusted ---------- */
.trusted { text-align: center; margin-top: 70px; }
.trusted__label { color: var(--muted); font-size: .9rem; margin-bottom: 22px; }
.trusted__logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; opacity: .8; }
.trusted-logo { width: 34px; height: 34px; object-fit: contain; border-radius: 7px; }
.trusted__logos span, .trusted__logos a { display: inline-flex; align-items: center; gap: 10px; color: inherit; font-family: var(--display); font-weight: 600; font-size: 1.25rem; letter-spacing: .5px; opacity: .85; transition: opacity .2s, transform .2s; }
.trusted__logos a:hover { opacity: 1; transform: translateY(-2px); }

/* ---------- Section scaffolding ---------- */
.section { padding: 80px 0; }
.section--tight { padding: 40px 0; }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 50px; }
.eyebrow { display: inline-block; color: #6d8bff; font-size: .85rem; font-weight: 600; letter-spacing: .5px; margin-bottom: 12px; text-transform: uppercase; }
.section__title { font-family: var(--display); font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 700; line-height: 1.15; letter-spacing: -1px; }
.muted { color: var(--muted); }
.muted.center { max-width: 520px; margin: 14px auto 0; }

/* ---------- Easy analytics ---------- */
.eyebrow--alt { color: #6d8bff; text-transform: uppercase; }
.grad-text--alt { background: linear-gradient(100deg, #6a5cff, #9b6bff 60%, #b98bff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.analytics { display: grid; grid-template-columns: 1.08fr 1fr; gap: 22px; align-items: stretch; }
.an-chart { background: linear-gradient(165deg, #0d1322, #0a0e18); border: 1px solid var(--border); border-radius: 22px; padding: 24px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.an-chart__head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.an-chart__sym { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-size: .85rem; }
.dot-live { width: 8px; height: 8px; border-radius: 50%; background: var(--up); box-shadow: 0 0 0 4px rgba(74,222,128,.18); }
.an-chart__price { display: block; font-family: var(--display); font-size: 1.9rem; margin-top: 6px; }
.an-badge { display: inline-flex; align-items: center; gap: 4px; font-size: .82rem; font-weight: 600; color: var(--up); background: rgba(74,222,128,.12); border: 1px solid rgba(74,222,128,.25); padding: 6px 12px; border-radius: 999px; }
.an-badge--down { color: var(--down); background: rgba(248,113,113,.12); border-color: rgba(248,113,113,.25); }
.an-tools { display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.an-seg { display: inline-flex; gap: 2px; padding: 3px; background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 10px; }
.an-seg button { border: 0; background: none; color: var(--muted); font-family: var(--font); font-size: .8rem; font-weight: 600;
  padding: 5px 12px; border-radius: 7px; cursor: pointer; transition: background .2s, color .2s; }
.an-seg button:hover { color: var(--text); }
.an-seg button.on { background: rgba(124,108,255,.18); color: #b39bff; }

.an-left { display: flex; flex-direction: column; gap: 22px; }

/* swap widget */
.swap { background: linear-gradient(165deg, #0d1322, #0a0e18); border: 1px solid var(--border); border-radius: 22px; padding: 20px; box-shadow: var(--shadow); }
.swap__panel { background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: 16px; padding: 16px 18px; }
.swap__top { display: flex; justify-content: space-between; align-items: center; font-size: .82rem; color: var(--muted); margin-bottom: 10px; }
.swap__bal b { color: var(--text); }
.swap__best { color: var(--up); font-weight: 600; }
.swap__mid { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.swap__amt { background: none; border: 0; color: var(--text); font-family: var(--display); font-size: 1.7rem; font-weight: 700; width: 58%; outline: none; padding: 0; }
.swap__amt::placeholder { color: var(--muted-2); }
.swap__token { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.05); border: 1px solid var(--border-2); border-radius: 999px; padding: 6px 14px 6px 6px; font-weight: 600; white-space: nowrap; }
.swap__ic { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; font-size: .85rem; font-weight: 700; background: linear-gradient(135deg, #f7931a, #ffb84d); color: #1a1200; }
.swap__ic--q { background: linear-gradient(135deg, #26a17b, #3fd39e); color: #04231a; }
.swap__rev { display: grid; place-items: center; width: 40px; height: 40px; margin: -14px auto; position: relative; z-index: 2; border-radius: 50%; background: var(--surface-2); border: 4px solid var(--bg); color: var(--text); font-size: 1.1rem; cursor: pointer; transition: transform .3s, color .2s; }
.swap__rev:hover { color: #8a9bff; transform: rotate(180deg); }
.swap__rate { text-align: center; color: var(--muted); font-size: .82rem; margin: 14px 0; }
.swap__btn { width: 100%; padding: 15px; border: 0; border-radius: 14px; font-family: var(--font); font-weight: 700; font-size: 1rem; color: #fff; cursor: pointer;
  background: linear-gradient(100deg, #6a5cff, #4a9eff); box-shadow: 0 10px 26px -10px rgba(106,92,255,.6); transition: transform .2s, box-shadow .25s; }
.swap__btn:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -10px rgba(106,92,255,.78); }
.swap__note { text-align: center; color: var(--muted); font-size: .8rem; margin-top: 12px; }

.an-graph-wrap { position: relative; margin-top: 10px; flex: 1 1 auto; min-height: 230px; }
.an-axis__last { color: #08130a !important; font-weight: 700; background: var(--up); right: 2px !important; }
.an-xaxis { position: relative; height: 16px; margin-top: 2px; }
.an-xaxis span { position: absolute; transform: translateX(-50%); font-size: .66rem; color: var(--muted-2); white-space: nowrap; }
.an-xaxis span:first-child { transform: none; }
.an-xaxis span:last-child { transform: translateX(-100%); }
.an-graph { width: 100%; height: 100%; display: block; cursor: crosshair; }
.an-axis { position: absolute; inset: 0; pointer-events: none; }
.an-axis span { position: absolute; right: 2px; transform: translateY(-50%); font-size: .68rem; color: var(--muted-2);
  background: rgba(10,14,24,.55); padding: 0 4px; border-radius: 4px; font-variant-numeric: tabular-nums; }
.an-cross { position: absolute; top: 0; bottom: 0; width: 1px; background: rgba(255,255,255,.28); pointer-events: none; opacity: 0; transition: opacity .12s; }
.an-tooltip { position: absolute; pointer-events: none; opacity: 0; transform: translateY(-4px); transition: opacity .12s, transform .12s;
  background: rgba(14,19,32,.96); border: 1px solid var(--border-2); border-radius: 10px; padding: 8px 11px; font-size: .72rem;
  line-height: 1.5; z-index: 6; white-space: nowrap; box-shadow: var(--shadow); }
.an-tooltip.show { opacity: 1; transform: none; }
.an-tooltip .tt-time { color: var(--muted); margin-bottom: 3px; }
.an-tooltip b { font-family: var(--display); font-variant-numeric: tabular-nums; }
.an-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.an-stat { position: relative; background: linear-gradient(165deg, #0d1322, #0a0e18); border: 1px solid var(--border); border-radius: 18px; padding: 20px; display: flex; flex-direction: column; justify-content: center; gap: 12px; transition: transform .25s, border-color .25s; text-decoration: none; color: inherit; }
.an-stat::after { content: "↗"; position: absolute; top: 14px; right: 14px; font-size: .8rem; color: var(--muted-2); opacity: 0; transition: opacity .2s, transform .2s; }
.an-stat:hover::after { opacity: 1; transform: translate(2px, -2px); }
.an-stat:hover { transform: translateY(-4px); border-color: rgba(124,108,255,.4); }
.an-stat__label { color: #6B7386; font-size: 1.02rem; font-weight: 600; }
.an-stat__num { font-family: var(--display); font-size: 1.4rem; font-weight: 400; color: #ffffff; }

/* ---------- Coins grid ---------- */
.coins-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.coin-card {
  background: linear-gradient(180deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 16px;
  transition: transform .25s, border-color .25s, box-shadow .25s; cursor: pointer;
}
.coin-card:hover { transform: translateY(-6px); border-color: rgba(174,243,97,.35); box-shadow: 0 18px 40px -18px rgba(0,0,0,.8); }
.coin-card__tag { font-size: .72rem; color: var(--muted); margin-bottom: 14px; }
.coin-card__top { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.coin-card__top strong { font-size: .98rem; }
.coin-card__price { font-family: var(--display); font-size: 1.15rem; font-weight: 600; }
.coin-card__chg { font-size: .82rem; font-weight: 600; margin-top: 4px; }

/* ---------- Features + portfolio ---------- */
.features__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.features__copy .section__title { text-align: left; }
.features__copy .eyebrow { display: inline-block; }
.feat-list { display: flex; flex-direction: column; gap: 20px; margin: 28px 0 30px; }
.feat-list li { display: flex; gap: 14px; }
.feat-ic { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: rgba(174,243,97,.1); border: 1px solid rgba(174,243,97,.2); font-size: 1.2rem; flex-shrink: 0; }
.feat-list strong { display: block; margin-bottom: 2px; }
.feat-list p { color: var(--muted); font-size: .9rem; }

.portfolio-card { background: linear-gradient(165deg, var(--surface-2), var(--bg-soft)); border: 1px solid var(--border-2); border-radius: 24px; padding: 24px; box-shadow: var(--shadow); }
.portfolio-card__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; font-size: .92rem; color: var(--muted); }
.portfolio-list { display: flex; flex-direction: column; gap: 6px; }
.portfolio-list li { display: flex; align-items: center; gap: 12px; padding: 14px; border-radius: 14px; background: rgba(255,255,255,.03); border: 1px solid var(--border); transition: background .2s, transform .2s; }
.portfolio-list li:hover { background: rgba(255,255,255,.06); transform: translateX(4px); }
.portfolio-list li > div:not(.p-val) { display: flex; flex-direction: column; line-height: 1.2; }
.portfolio-list span { font-size: .76rem; color: var(--muted); }
.portfolio-list .p-val { margin-left: auto; display: flex; flex-direction: column; align-items: flex-end; gap: 2px; line-height: 1.2; }
.portfolio-list .p-val strong { font-family: var(--display); }
.portfolio-list .p-val span { font-size: .8rem; }
.coin-ic--img { background: none !important; overflow: hidden; }
.coin-ic--img img { width: 100%; height: 100%; object-fit: contain; display: block; }

/* ---------- Stats ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { text-align: center; padding: 30px 16px; border-radius: var(--radius); background: linear-gradient(180deg, var(--surface), var(--bg-soft)); border: 1px solid var(--border); }
.stat strong { font-family: var(--display); font-size: clamp(1.8rem, 4vw, 2.6rem); display: block; background: linear-gradient(120deg,#fff,var(--green)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { color: var(--muted); font-size: .9rem; }

/* ---------- Orbit ---------- */
.orbit { position: relative; display: grid; grid-template-columns: 1fr auto 1fr; grid-template-rows: 1fr 1fr; gap: 24px; max-width: 920px; margin: 0 auto; align-items: center; }
.orbit__service { max-width: 230px; padding: 6px; }
.orbit__service h4 { font-family: var(--display); margin-bottom: 6px; font-size: 1.05rem; }
.orbit__service p { color: var(--muted); font-size: .86rem; }
.orbit__service--tl { grid-column: 1; grid-row: 1; text-align: right; justify-self: end; }
.orbit__service--bl { grid-column: 1; grid-row: 2; text-align: right; justify-self: end; }
.orbit__service--tr { grid-column: 3; grid-row: 1; justify-self: start; }
.orbit__service--br { grid-column: 3; grid-row: 2; justify-self: start; }
.orbit__stage { grid-column: 2; grid-row: 1 / span 2; position: relative; display: grid; place-items: center; width: 320px; height: 480px; }
.ring { position: absolute; border: 1px solid var(--border); border-radius: 50%; }
.ring--1 { width: 200px; height: 200px; } .ring--2 { width: 290px; height: 290px; } .ring--3 { width: 380px; height: 380px; opacity: .5; }
.orbit__stage .ring { animation: spin 18s linear infinite; }
.ring--2 { animation-duration: 26s !important; animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.orbit-coin { position: absolute; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; font-size: 1.2rem; font-weight: 700; box-shadow: var(--shadow); animation: floaty 5s ease-in-out infinite; }
.orbit-coin--btc { background: linear-gradient(135deg,#f7931a,#ffb84d); color:#1a1200; top: 8%; right: 4%; }
.orbit-coin--eth { background: linear-gradient(135deg,#627eea,#8aa0ff); color:#fff; bottom: 10%; left: 2%; animation-delay: 1.2s; }
/* 3D ecosystem illustration */
.eco { position: relative; width: 100%; display: grid; place-items: center; animation: floaty 6s ease-in-out infinite; }
.eco__svg { width: 100%; max-width: 400px; height: auto; overflow: visible; filter: drop-shadow(0 30px 50px rgba(0,0,0,.55)); }
.eco__sym { fill: #fff; font-size: 20px; font-weight: 700; text-anchor: middle; font-family: Arial, sans-serif; }
.eco__node { transform-box: fill-box; transform-origin: center; animation: ecoFloat 5s ease-in-out infinite; }
.eco__node--a { animation-delay: .8s; } .eco__node--b { animation-delay: 1.6s; } .eco__node--c { animation-delay: 2.4s; }
@keyframes ecoFloat { 50% { transform: translateY(-7px); } }

.phone--center { width: 220px; z-index: 2; }
.phone__screen--exchange { padding: 30px 12px 14px; gap: 10px; }
.ex-head { text-align: center; font-weight: 600; font-size: .9rem; padding-bottom: 4px; }
.ex-field { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 12px; padding: 10px; font-size: .78rem; }
.ex-field > div { display: flex; flex-direction: column; line-height: 1.2; }
.ex-field span:not(.coin-ic):not(.ex-amt) { color: var(--muted); font-size: .68rem; }
.ex-field .ex-amt { margin-left: auto; font-family: var(--display); font-weight: 600; font-size: .95rem; }
.ex-swap { width: 34px; height: 34px; margin: -4px auto; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: #08130a; font-weight: 700; border: 3px solid var(--bg); position: relative; z-index: 2; }
.ex-btn { margin-top: 6px; width: 100%; padding: 11px; border-radius: 12px; border: 0; background: var(--green); color: #08130a; font-weight: 700; font-family: var(--font); cursor: pointer; transition: filter .2s; }
.ex-btn:hover { filter: brightness(1.08); }

/* ---------- Banner ---------- */
.banner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  background: linear-gradient(110deg, #0c1322, #0a1a12); border: 1px solid var(--border-2); border-radius: 26px; padding: 44px 48px;
  position: relative; overflow: hidden; }
.banner::before { content:""; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px; background: radial-gradient(circle, rgba(174,243,97,.18), transparent 70%); pointer-events: none; }
.banner .btn { position: relative; z-index: 1; }
.banner h3 { font-family: var(--display); font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 8px; }
.banner p { color: var(--muted); max-width: 520px; }

/* ---------- Stack cards ---------- */
.features__inner--rev .stack-cards { order: 0; }
.stack-cards { position: relative; height: 320px; }
.stack-card { position: absolute; display: flex; align-items: center; gap: 12px; width: 260px; padding: 18px; border-radius: 18px;
  background: linear-gradient(160deg, var(--surface-2), var(--bg-soft)); border: 1px solid var(--border-2); box-shadow: var(--shadow); transition: transform .3s; }
.stack-card > div { display: flex; flex-direction: column; line-height: 1.2; }
.stack-card span { font-size: .76rem; color: var(--muted); }
.stack-card .dots { margin-left: auto; letter-spacing: 1px; }
.stack-card--1 { top: 10px; left: 30px; z-index: 3; }
.stack-card--2 { top: 110px; left: 90px; z-index: 2; }
.stack-card--3 { top: 210px; left: 20px; z-index: 1; }
.stack-cards:hover .stack-card--1 { transform: translate(-6px,-6px); }
.stack-cards:hover .stack-card--3 { transform: translate(6px,6px); }

.check-list { display: flex; flex-direction: column; gap: 14px; margin: 24px 0 28px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-weight: 500; }
.cl-text { display: flex; flex-direction: column; gap: 3px; }
.cl-text strong { font-weight: 600; line-height: 1.3; }
.cl-text span { font-size: .85rem; font-weight: 400; color: var(--muted); line-height: 1.5; }
.chk { display: inline-flex; align-items: center; gap: 6px; }
.check-list .chk { width: 38px; height: 38px; justify-content: center; border-radius: 10px; background: rgba(174,243,97,.1); border: 1px solid rgba(174,243,97,.2); }

/* ---------- Upgrade + chart ---------- */
.upgrade-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.upgrade-grid .chk { color: var(--text); font-size: .92rem; font-weight: 500; }
.chart-card { background: linear-gradient(165deg, var(--surface-2), var(--bg-soft)); border: 1px solid var(--border-2); border-radius: 24px; padding: 24px; box-shadow: var(--shadow); }
.chart-card__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.chart-card__head > div { display: flex; align-items: center; gap: 8px; }
.chart-bars { height: 180px; display: flex; align-items: flex-end; }
.bars { display: flex; align-items: flex-end; gap: 10px; width: 100%; height: 100%; }
.bars span { flex: 1; height: var(--h); border-radius: 6px 6px 0 0; background: rgba(255,255,255,.08); transition: height .4s; }
.bars span.g { background: linear-gradient(180deg, var(--green), var(--green-deep)); box-shadow: 0 0 16px -4px rgba(174,243,97,.5); }
.chart-card__foot { display: flex; justify-content: space-between; align-items: center; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border); color: var(--muted); font-size: .9rem; }
.chart-card__foot strong { color: var(--text); font-family: var(--display); }

/* ---------- Roadmap (horizontal) ---------- */
.roadmap { position: relative; }
.rm-track { display: flex; gap: 22px; overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x proximity;
  padding: 6px 4px 10px; -ms-overflow-style: none; scrollbar-width: none; position: relative; }
.rm-track::-webkit-scrollbar { display: none; }
.rm-rail { display: none; } /* replaced by per-column connectors that scroll with content */
.rm-col { position: relative; z-index: 1; flex: 0 0 280px; scroll-snap-align: start; }
.rm-top { height: 40px; position: relative; }
/* connecting line per column — extends into the gap so segments meet and touch every node */
.rm-top::before { content: ""; position: absolute; top: 18px; left: -11px; right: -11px; height: 2px; z-index: 0;
  background: rgba(174,243,97,.4); }
.rm-col:first-child .rm-top::before { left: 50%; }
.rm-col:last-child .rm-top::before { right: 50%; }
.rm-node { position: absolute; left: 50%; top: 8px; transform: translateX(-50%); width: 22px; height: 22px; border-radius: 50%; z-index: 1;
  background: var(--surface-2); border: 2px solid var(--border-2); box-shadow: 0 0 0 6px var(--bg); }
.rm-card { background: linear-gradient(165deg, var(--surface), var(--bg-soft)); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px; height: 100%; transition: transform .25s, border-color .25s, box-shadow .25s; }
.rm-card:hover { transform: translateY(-5px); border-color: rgba(174,243,97,.3); box-shadow: 0 18px 40px -20px rgba(0,0,0,.8); }
.rm-phase { display: inline-block; font-size: .78rem; font-weight: 700; color: var(--muted); letter-spacing: .3px; margin-bottom: 10px; }
.rm-card h4 { font-family: var(--display); font-size: 1.35rem; margin-bottom: 14px; }
.rm-points { display: flex; flex-direction: column; gap: 9px; }
.rm-points li { position: relative; padding-left: 20px; color: var(--muted); font-size: .9rem; }
.rm-points li::before { content: "›"; position: absolute; left: 4px; color: var(--green); font-weight: 700; }
/* states */
.rm-col--done .rm-node { background: var(--green); border-color: var(--green); box-shadow: 0 0 0 6px var(--bg), 0 0 12px rgba(174,243,97,.6); }
.rm-col--done .rm-phase { color: var(--up); }
.rm-col--active .rm-node { background: var(--bg); border-color: var(--green); box-shadow: 0 0 0 6px var(--bg), 0 0 0 9px rgba(174,243,97,.18); animation: pulse 2s infinite; }
.rm-col--active .rm-card { border-color: rgba(174,243,97,.35); }
.rm-col--active .rm-phase { color: var(--green); }
/* nav buttons */
.rm-nav { position: absolute; top: -52px; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.04); border: 1px solid var(--border-2); color: var(--text); font-size: 1.4rem; line-height: 1;
  cursor: pointer; transition: background .2s, transform .2s, opacity .2s; z-index: 3; }
.rm-nav:hover:not(:disabled) { background: var(--green); color: #08130a; border-color: var(--green); }
.rm-nav:active:not(:disabled) { transform: scale(.92); }
.rm-nav:disabled { opacity: .3; cursor: not-allowed; }
.rm-nav--prev { right: 58px; } .rm-nav--next { right: 4px; }

/* ---------- Support ---------- */
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.support-card { text-align: center; padding: 36px 26px; border-radius: var(--radius); background: linear-gradient(180deg, var(--surface), var(--bg-soft)); border: 1px solid var(--border); transition: transform .25s, border-color .25s; }
.support-card:hover { transform: translateY(-6px); border-color: rgba(174,243,97,.3); }
.support-card .feat-ic { margin: 0 auto 16px; width: 56px; height: 56px; font-size: 1.5rem; }
.support-card h4 { font-family: var(--display); margin-bottom: 10px; font-size: 1.15rem; }
.support-card p { color: var(--muted); font-size: .9rem; }

/* ---------- FAQ ---------- */
.faq__list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: 14px; background: var(--surface); overflow: hidden; transition: border-color .25s; }
.faq-item.open { border-color: rgba(174,243,97,.35); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 16px; width: 100%; padding: 20px 22px; background: none; border: 0; color: var(--text); font-size: 1rem; font-weight: 500; text-align: left; cursor: pointer; font-family: var(--font); }
.faq-q .ic { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 8px; background: rgba(174,243,97,.1); color: var(--green); flex-shrink: 0; transition: transform .3s; font-size: 1.2rem; }
.faq-item.open .ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 22px 20px; color: var(--muted); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); margin-top: 40px; padding: 60px 0 30px; background: linear-gradient(180deg, transparent, rgba(10,14,24,.6)); }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; }
.footer__brand p { color: var(--muted); font-size: .9rem; max-width: 300px; margin: 16px 0 18px; }
.socials { display: flex; gap: 10px; }
.socials a { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.04); border: 1px solid var(--border); transition: .2s; }
.socials a:hover { background: var(--green); color: #08130a; transform: translateY(-3px); }
.footer__col h5 { font-family: var(--display); font-size: .95rem; margin-bottom: 16px; }
.footer__col a { display: block; color: var(--muted); font-size: .9rem; padding: 6px 0; transition: color .2s; }
.footer__col a:hover { color: var(--green); }
.store { background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 10px; padding: 10px 14px !important; margin-bottom: 10px; }
.store:hover { border-color: var(--green); }
.footer__bottom { display: flex; justify-content: space-between; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--muted-2); font-size: .85rem; flex-wrap: wrap; gap: 10px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__login { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile { display: flex; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { min-height: 440px; margin-top: 10px; }
  .float-badge--a { left: 0; } .float-badge--b { right: 0; }
  .features__inner { grid-template-columns: 1fr; gap: 36px; }
  .analytics { grid-template-columns: 1fr; }
  .coins-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .orbit { grid-template-columns: 1fr; grid-template-rows: auto; gap: 16px; text-align: center; }
  .orbit__service { max-width: 100%; text-align: center !important; justify-self: center !important; }
  .orbit__service--tl, .orbit__service--bl { grid-column: 1; }
  .orbit__service--tr, .orbit__service--br { grid-column: 1; }
  .orbit__stage { grid-column: 1; grid-row: auto; margin: 10px auto; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .rm-col { flex-basis: 78%; }
  .section { padding: 56px 0; }
  .hero__mini-stats { flex-wrap: wrap; gap: 14px; }
  .coins-grid { grid-template-columns: repeat(2, 1fr); }
  .support-grid { grid-template-columns: 1fr; }
  .upgrade-grid { grid-template-columns: 1fr; }
  .an-stats { grid-template-columns: 1fr; grid-template-rows: none; }
  .banner { padding: 32px 26px; }
  .float-badge--a { left: 0; } .float-badge--b { right: 0; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { justify-content: center; text-align: center; }
}

/* ============================================================
   Legal pages (Terms & Conditions, Privacy Policy)
   ============================================================ */
.legal { padding: 56px 0 40px; }
.legal__head { max-width: 820px; margin: 0 auto 40px; text-align: center; }
.legal__head .eyebrow { display: inline-block; }
.legal__head h1 { font-family: var(--display); font-size: clamp(2rem, 4.5vw, 3rem); letter-spacing: -1px; line-height: 1.1; margin-bottom: 14px; }
.legal__updated { color: var(--muted); font-size: .9rem; }
.legal__body { max-width: 820px; margin: 0 auto; background: linear-gradient(165deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--border); border-radius: 22px; padding: 40px clamp(22px, 4vw, 48px); box-shadow: var(--shadow); }
.legal__intro { color: var(--muted); font-size: 1.02rem; border-left: 3px solid var(--green); padding-left: 18px; margin-bottom: 34px; }
.legal__toc { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.legal__toc a { font-size: .82rem; color: var(--muted); background: rgba(255,255,255,.04); border: 1px solid var(--border);
  padding: 6px 12px; border-radius: 999px; transition: .2s; }
.legal__toc a:hover { color: var(--green); border-color: rgba(174,243,97,.4); }
.legal section { scroll-margin-top: 90px; margin-bottom: 30px; }
.legal section h2 { font-family: var(--display); font-size: 1.25rem; margin-bottom: 12px; display: flex; gap: 10px; align-items: baseline; }
.legal section h2 .num { color: var(--green); font-size: .95rem; }
.legal section p, .legal section li { color: var(--muted); line-height: 1.75; font-size: .96rem; }
.legal section p + p { margin-top: 12px; }
.legal section ul { margin: 12px 0 0 4px; display: flex; flex-direction: column; gap: 8px; }
.legal section li { position: relative; padding-left: 20px; }
.legal section li::before { content: "›"; position: absolute; left: 2px; color: var(--green); font-weight: 700; }
.legal a.inline { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.legal__notice { margin-top: 30px; padding: 18px 20px; border-radius: 14px; background: rgba(248,113,113,.07);
  border: 1px solid rgba(248,113,113,.25); color: #f3b9b9; font-size: .9rem; line-height: 1.7; }
.legal__back { display: inline-flex; align-items: center; gap: 8px; margin-top: 30px; color: var(--green); font-weight: 600; }
.legal__back:hover { gap: 12px; }
.legal__home { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px; color: var(--muted); font-weight: 600; font-size: .9rem; transition: gap .2s, color .2s; }
.legal__home:hover { gap: 12px; color: var(--green); }

/* ---------- Supported wallets banner ---------- */
.wallet-banner { background: none; border: 0; padding: 10px 0; text-align: center; box-shadow: none; }
.wallet-banner__label { color: var(--muted); font-size: .95rem; margin-bottom: 30px; }
.wallet-banner__logos { overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.wm-track { display: flex; width: max-content; animation: wmSlide 34s linear infinite; }
.wm-track:hover { animation-play-state: paused; }
.wm-group { display: flex; align-items: center; gap: 44px; padding-right: 44px; }
.wm-group a { flex-shrink: 0; display: inline-flex; }
.wm-group img { height: 46px; width: auto; max-width: 190px; object-fit: contain; opacity: .78; transition: opacity .2s, transform .2s; }
.wm-group a:hover img { opacity: 1; transform: translateY(-3px); }
/* right → left movement */
@keyframes wmSlide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .wm-track { animation: none; } }
@media (max-width: 620px) { .wm-group { gap: 30px; padding-right: 30px; } .wm-group img { height: 34px; } }

/* ---------- Back to top ---------- */
.back-top { position: fixed; right: 24px; bottom: 24px; z-index: 90; width: 46px; height: 46px; display: grid; place-items: center;
  border: 1px solid var(--border-2); border-radius: 50%; background: var(--green); color: #08130a; cursor: pointer;
  box-shadow: 0 10px 26px -8px rgba(174,243,97,.5); opacity: 0; transform: translateY(16px) scale(.9); pointer-events: none;
  transition: opacity .25s, transform .25s, box-shadow .25s; }
.back-top.show { opacity: 1; transform: none; pointer-events: auto; }
.back-top:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -8px rgba(174,243,97,.65); }
@media (max-width: 620px) { .back-top { right: 16px; bottom: 16px; width: 42px; height: 42px; } }

/* ---------- Tokenomics ---------- */
.tok { display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: center; max-width: 920px; margin: 0 auto; }
.tok__chart { display: grid; place-items: center; }
.tok__chart svg { width: 260px; height: 260px; filter: drop-shadow(0 14px 40px rgba(0,0,0,.5)); }
.tok-seg { transition: stroke-width .25s; }
.tok-seg:hover { stroke-width: 23; }
.tok-chart__total { fill: #fff; font-family: var(--display); font-size: 13px; font-weight: 700; text-anchor: middle; }
.tok-chart__sym { fill: var(--muted); font-size: 7px; text-anchor: middle; letter-spacing: .5px; }
.tok__legend ul { display: flex; flex-direction: column; gap: 6px; }
.tok__legend li { display: flex; align-items: center; gap: 14px; padding: 12px 14px; border-radius: 14px;
  background: rgba(255,255,255,.03); border: 1px solid var(--border); transition: background .2s, transform .2s; }
.tok__legend li:hover { background: rgba(255,255,255,.06); transform: translateX(4px); }
.tok-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.tok__legend li > div { display: flex; flex-direction: column; line-height: 1.35; }
.tok__legend li strong { font-size: .96rem; }
.tok__legend li span { color: var(--muted); font-size: .8rem; }
.tok__legend li b { margin-left: auto; font-family: var(--display); font-size: 1.1rem; }
.tok__facts { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; max-width: 920px; margin: 44px auto 0; }
.tok-fact { text-align: center; padding: 18px 12px; border-radius: 14px; background: linear-gradient(180deg, var(--surface), var(--bg-soft)); border: 1px solid var(--border); }
.tok-fact span { display: block; color: var(--muted); font-size: .78rem; margin-bottom: 6px; }
.tok-fact strong { font-family: var(--display); font-size: 1.02rem; }
@media (max-width: 860px) {
  .tok { grid-template-columns: 1fr; gap: 30px; justify-items: center; }
  .tok__legend { width: 100%; max-width: 460px; }
  .tok__facts { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) { .tok__facts { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Security / Audit ---------- */
.audit { display: grid; grid-template-columns: 300px 1fr; gap: 30px; align-items: stretch; max-width: 960px; margin: 0 auto; }
.audit__badge { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 8px;
  padding: 34px 24px; border-radius: 22px; background: linear-gradient(165deg, rgba(174,243,97,.08), var(--bg-soft));
  border: 1px solid rgba(174,243,97,.3); box-shadow: var(--shadow); }
.audit__shield { display: grid; place-items: center; width: 76px; height: 76px; border-radius: 50%; margin-bottom: 8px;
  color: var(--green); background: rgba(174,243,97,.1); border: 1px solid rgba(174,243,97,.3); }
.audit__badge strong { font-family: var(--display); font-size: 1.3rem; }
.audit__badge > span { color: var(--up); font-size: .88rem; font-weight: 600; }
.audit__addr { margin-top: 8px; font-size: .8rem; color: var(--muted); background: rgba(255,255,255,.04); border: 1px solid var(--border); padding: 5px 12px; border-radius: 999px; }
.audit__body { background: linear-gradient(165deg, var(--surface), var(--bg-soft)); border: 1px solid var(--border); border-radius: 22px; padding: 26px 28px; box-shadow: var(--shadow); }
.audit__list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 26px; margin-bottom: 24px; }
.audit__list li { display: flex; gap: 12px; }
.audit__list .ok { display: grid; place-items: center; width: 24px; height: 24px; flex-shrink: 0; border-radius: 50%;
  background: rgba(174,243,97,.14); color: var(--green); font-size: .8rem; font-weight: 700; }
.audit__list strong { display: block; font-size: .95rem; margin-bottom: 2px; }
.audit__list p { color: var(--muted); font-size: .82rem; line-height: 1.5; }
@media (max-width: 860px) {
  .audit { grid-template-columns: 1fr; }
  .audit__list { grid-template-columns: 1fr; }
}
