﻿:root {
  --bg: #fbfaf8;
  --panel: #ffffff;
  --text: #222738;
  --muted: #7f8796;
  --soft: #f5f0e7;
  --line: #ece8df;
  --gold: #c99645;
  --gold-dark: #a97422;
  --green: #1ec66a;
  --red: #ef4444;
  --shadow: 0 26px 70px rgba(41, 38, 32, 0.12);
  --radius: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--text); background: radial-gradient(circle at 77% 18%, rgba(201, 150, 69, 0.14), transparent 360px), linear-gradient(180deg, #fff 0%, var(--bg) 100%); overflow-x: hidden; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img, svg { max-width: 100%; display: block; }
.container { width: min(100% - 48px, var(--container)); margin-inline: auto; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ===== Header / Navigation ===== */
.header { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(236, 232, 223, 0.9); }
.nav { min-height: 68px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(18px, 3vw, 46px); }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: max-content; font-size: 17px; font-weight: 800; line-height: 0.95; letter-spacing: -0.04em; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; color: var(--gold); border-radius: 12px; background: #fff; }
.brand-mark svg, .brand-mark img { width: 38px; height: 38px; }
.nav-links { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 3vw, 40px); color: #333949; font-size: 13px; font-weight: 800; }
.nav-links a { white-space: nowrap; transition: color .2s ease; position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--gold); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.nav-links a:hover { color: var(--gold-dark); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 12px; min-width: max-content; }
.lang, .btn { min-height: 38px; display: inline-flex; align-items: center; justify-content: center; border-radius: 9px; font-size: 13px; font-weight: 800; white-space: nowrap; }
.lang { padding: 0 16px; border: 1px solid var(--line); background: #fff; color: #343a49; box-shadow: 0 8px 18px rgba(35, 39, 56, 0.03); gap: 8px; cursor: pointer; }
.lang img { width: 20px; height: 14px; border-radius: 2px; object-fit: cover; }
.btn { padding: 0 22px; border: 0; color: #fff; cursor: pointer; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); box-shadow: 0 14px 26px rgba(201, 150, 69, 0.24); transition: transform .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 32px rgba(201, 150, 69, 0.32); }
.nav-burger { display: none; width: 42px; height: 42px; padding: 0; border: 1px solid var(--line); border-radius: 10px; background: #fff; color: #343a49; cursor: pointer; place-items: center; }
.nav-burger svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; }
.nav-burger[aria-expanded="true"] svg { stroke: var(--gold-dark); }

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; padding: 88px 0 70px; }
.hero::before, .hero::after { content: ""; position: absolute; pointer-events: none; border-radius: 50%; }
.hero::before { width: 560px; height: 560px; right: -170px; top: 80px; border: 1px solid rgba(201, 150, 69, 0.18); box-shadow: inset 0 0 60px rgba(201, 150, 69, 0.08); animation: spin 60s linear infinite; }
.hero::after { width: 290px; height: 290px; left: 52%; top: 110px; background: radial-gradient(circle, rgba(201, 150, 69, 0.2), transparent 65%); filter: blur(6px); animation: pulse 6s ease-in-out infinite; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr); align-items: center; gap: 64px; }
.kicker, .section-label { display: inline-block; color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
.hero-copy h1 { max-width: 560px; margin: 26px 0 18px; font-size: clamp(42px, 5vw, 70px); line-height: 1.02; letter-spacing: -0.055em; }
.hero-copy h1 span { color: var(--gold); background: linear-gradient(135deg, var(--gold), var(--gold-dark)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-copy p { max-width: 510px; margin: 0 0 30px; color: var(--muted); font-size: 16px; line-height: 1.72; }
.checker-form { width: min(100%, 500px); display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 12px; margin-bottom: 26px; }
.checker-form input { min-width: 0; min-height: 52px; padding: 0 18px; border: 1px solid var(--line); border-radius: 9px; outline: none; color: var(--text); background: #fff; box-shadow: 0 12px 28px rgba(35, 39, 56, 0.04); transition: border-color .2s, box-shadow .2s; }
.checker-form input:focus { border-color: rgba(201, 150, 69, 0.65); box-shadow: 0 0 0 4px rgba(201, 150, 69, 0.12); }
.trusted-users { display: flex; align-items: center; gap: 12px; color: #7b8290; font-size: 13px; font-weight: 700; }
.avatars { display: flex; flex-shrink: 0; }
.avatars img { width: 28px; height: 28px; border: 2px solid #fff; border-radius: 50%; object-fit: cover; box-shadow: 0 6px 12px rgba(34, 39, 56, 0.12); }
.avatars img + img { margin-left: -9px; }

/* ===== Hero Art - Coin Orbit ===== */
.hero-art { position: relative; min-height: 600px; display: grid; place-items: center; padding: 0 70px; }
.coin-orbit { position: absolute; inset: 0; pointer-events: none; }
.coin-orbit::before { content: ""; position: absolute; width: min(460px, 82vw); height: min(460px, 82vw); left: 50%; top: 50%; transform: translate(-50%, -50%); border-radius: 50%; background: radial-gradient(circle at 48% 45%, #fff 0 17%, rgba(238, 233, 222, 0.76) 18% 25%, transparent 26%), conic-gradient(from 30deg, transparent, rgba(201,150,69,.46), transparent, rgba(201,150,69,.22), transparent); animation: spin 24s linear infinite; }
.coin-orbit::after { content: ""; position: absolute; width: 540px; height: 200px; left: 50%; top: 62%; border: 1px solid rgba(201,150,69,.22); border-left-color: transparent; border-right-color: transparent; border-radius: 50%; transform: translate(-50%, -50%) rotate(-23deg); }
.coin { position: absolute; z-index: 3; width: 48px; height: 48px; object-fit: contain; padding: 6px; border-radius: 50%; background: rgba(255, 255, 255, 0.78); box-shadow: 0 18px 34px rgba(65, 54, 34, 0.14); backdrop-filter: blur(10px); transition: transform .3s ease; }
.coin:hover { transform: scale(1.18); z-index: 4; }
.coin-btc { left: 8px; top: 80px; width: 72px; height: 72px; padding: 0; background: transparent; box-shadow: 0 22px 38px rgba(247, 147, 26, 0.25); }
.coin-usdt { left: -8px; top: 270px; width: 58px; height: 58px; padding: 0; background: transparent; box-shadow: 0 22px 38px rgba(38, 161, 123, 0.22); }
.coin-trx { left: 40px; bottom: 60px; width: 44px; height: 44px; }
.coin-eth { right: 8px; top: 70px; width: 54px; height: 54px; }
.coin-bnb { right: -8px; top: 260px; width: 50px; height: 50px; }
.coin-sol { right: 40px; bottom: 60px; width: 48px; height: 48px; }
.float-a { animation: floatY 6s ease-in-out infinite; }
.float-b { animation: floatY 7.5s ease-in-out -1.5s infinite; }
.float-c { animation: floatY 5.5s ease-in-out -3s infinite; }

/* ===== Risk Card (modern) ===== */
.risk-card { position: relative; z-index: 2; width: min(100%, 360px); margin: 0 auto; padding: 26px 24px; border: 1px solid rgba(236, 232, 223, .9); border-radius: 26px; background: linear-gradient(180deg, #ffffff 0%, #fcfaf6 100%); box-shadow: 0 1px 0 rgba(255,255,255,.95) inset, 0 30px 70px rgba(41, 38, 32, .14); backdrop-filter: blur(18px); animation: cardIn .8s ease both; overflow: hidden; }
.risk-card::before { content: ""; position: absolute; inset: -1px -1px auto auto; width: 220px; height: 180px; background: radial-gradient(circle at top right, rgba(30, 198, 106, .14), transparent 60%); pointer-events: none; }
.risk-card.risk-medium::before { background: radial-gradient(circle at top right, rgba(217, 154, 34, .16), transparent 60%); }
.risk-card.risk-high::before { background: radial-gradient(circle at top right, rgba(239, 68, 68, .16), transparent 60%); }
.risk-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; margin-bottom: 20px; }
.risk-kicker { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; background: rgba(30, 198, 106, .12); color: #189c54; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.risk-card.risk-medium .risk-kicker { background: rgba(217, 154, 34, .14); color: #a67013; }
.risk-card.risk-high .risk-kicker { background: rgba(239, 68, 68, .14); color: #b9301c; }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; animation: pulseDot 1.6s ease-in-out infinite; }
.risk-head h2 { margin: 10px 0 4px; color: var(--green); font-size: 28px; line-height: 1; letter-spacing: -0.04em; }
.risk-sub { margin: 0; color: #8b93a3; font-size: 12px; font-weight: 700; }
.shield { width: 46px; height: 46px; display: grid; place-items: center; color: #fff; border-radius: 14px; background: linear-gradient(135deg, #21c86a, #15a352); box-shadow: 0 14px 24px rgba(30, 198, 106, 0.3); animation: pulseShield 2.4s ease-in-out infinite; }
.shield svg { width: 22px; height: 22px; }
.risk-medium .shield { background: linear-gradient(135deg, #f0b14a, #d99a22); box-shadow: 0 14px 24px rgba(217, 154, 34, 0.3); }
.risk-high .shield { background: linear-gradient(135deg, #ff6b6b, #ef4444); box-shadow: 0 14px 24px rgba(239, 68, 68, 0.3); }

.risk-score-block { padding: 16px; margin-bottom: 18px; border: 1px solid rgba(236, 232, 223, .8); border-radius: 16px; background: rgba(255, 255, 255, .65); }
.score-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.score-label { display: block; color: #8b93a3; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.score-value { display: flex; align-items: baseline; gap: 4px; margin-top: 4px; }
.score-value strong { font-size: 32px; line-height: 1; letter-spacing: -0.04em; color: #1d2030; }
.score-value span { color: #aab1be; font-size: 13px; font-weight: 800; }
.score-trend { display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; border-radius: 999px; background: rgba(30, 198, 106, .12); color: #189c54; font-size: 12px; font-weight: 800; }
.score-trend svg { width: 14px; height: 14px; }
.risk-medium .score-trend { background: rgba(217, 154, 34, .14); color: #a67013; }
.risk-high .score-trend { background: rgba(239, 68, 68, .14); color: #b9301c; }
.risk-bar { position: relative; height: 8px; overflow: visible; border-radius: 999px; background: linear-gradient(90deg, #21c86a 0 34%, #f0d44a 34% 68%, #ef7c4a 68% 100%); }
.risk-bar span { position: absolute; top: 50%; left: 23%; width: 16px; height: 16px; border: 3px solid #fff; border-radius: 50%; background: #1d2030; transform: translate(-50%, -50%); box-shadow: 0 4px 10px rgba(0,0,0,.15); transition: left .6s cubic-bezier(.4, 0, .2, 1); }
.risk-bar-legend { display: flex; justify-content: space-between; margin-top: 8px; color: #aab1be; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.risk-data { display: grid; gap: 0; margin: 0 0 18px; padding: 0; }
.risk-data > div { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 12px 0; border-bottom: 1px dashed rgba(236, 232, 223, .9); }
.risk-data > div:last-child { border-bottom: 0; }
.risk-data dt { display: inline-flex; align-items: center; gap: 8px; color: #8b93a3; font-size: 12px; font-weight: 700; }
.risk-data dd { margin: 0; text-align: right; color: #1d2030; font-size: 13px; font-weight: 800; line-height: 1.4; }
.risk-data .chip { display: inline-block; margin-left: 6px; padding: 2px 8px; border-radius: 6px; background: rgba(201,150,69,.12); color: var(--gold-dark); font-size: 11px; }
.risk-sources-row { flex-wrap: wrap; }
.risk-sources-row dd { display: flex; flex-wrap: wrap; gap: 6px; justify-content: flex-end; }
.src-tag { display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px; border-radius: 8px; background: #f5f0e7; color: #6a5a3f; font-size: 11px; font-weight: 700; }
.src-tag b { color: #1d2030; font-weight: 800; }
.pill { display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 800; }
.pill-ok { background: rgba(30,198,106,.14); color: #189c54; }
.safe { color: var(--green) !important; }
.data-ico { display: inline-block; width: 14px; height: 14px; flex-shrink: 0; background: currentColor; opacity: .42; -webkit-mask-position: center; mask-position: center; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-size: 14px 14px; mask-size: 14px 14px; }
.data-ico[data-i="wallet"] { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='7' width='18' height='13' rx='2'/><path d='M16 12h3'/><path d='M21 7V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='7' width='18' height='13' rx='2'/><path d='M16 12h3'/><path d='M21 7V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2'/></svg>"); }
.data-ico[data-i="calendar"] { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='5' width='18' height='16' rx='2'/><path d='M3 10h18M8 3v4M16 3v4'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='5' width='18' height='16' rx='2'/><path d='M3 10h18M8 3v4M16 3v4'/></svg>"); }
.data-ico[data-i="tx"] { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M4 8h14M14 4l4 4-4 4'/><path d='M20 16H6M10 12l-4 4 4 4'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M4 8h14M14 4l4 4-4 4'/><path d='M20 16H6M10 12l-4 4 4 4'/></svg>"); }
.data-ico[data-i="flag"] { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M5 21V4'/><path d='M5 4h12l-2 4 2 4H5'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M5 21V4'/><path d='M5 4h12l-2 4 2 4H5'/></svg>"); }
.data-ico[data-i="chart"] { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M4 20V8M10 20V4M16 20v-8M22 20H2'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M4 20V8M10 20V4M16 20v-8M22 20H2'/></svg>"); }
.risk-description { margin: 0 0 16px; padding: 12px 14px; color: #6e7686; font-size: 12px; line-height: 1.55; background: rgba(245, 240, 231, .55); border-radius: 12px; border-left: 3px solid var(--green); }
.risk-medium .risk-description { border-left-color: #d99a22; }
.risk-high .risk-description { border-left-color: var(--red); }
.risk-actions { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.report-btn { min-height: 46px; padding: 0 16px; display: inline-flex; align-items: center; justify-content: center; gap: 6px; border: 1px solid var(--line); border-radius: 12px; background: #fff; color: #1d2030; font-size: 13px; font-weight: 800; cursor: pointer; transition: background .2s, border-color .2s, color .2s, transform .15s; }
.report-btn:hover { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); border-color: transparent; color: #fff; transform: translateY(-1px); }
.icon-btn { width: 46px; padding: 0; }
.icon-btn svg { width: 18px; height: 18px; }

/* ===== Platforms (exchanges grid) ===== */
.platforms { position: relative; padding: 40px 0 60px; }
.platforms::before { content: ""; position: absolute; inset: auto 0 0 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(201,150,69,.25), transparent); }
.centered { display: block; text-align: center; color: #a59076; font-size: 11px; letter-spacing: .22em; margin-bottom: 30px; }
.exchanges-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.exchange-card { display: flex; align-items: center; justify-content: center; min-height: 104px; padding: 20px 28px; border: 1px solid rgba(236, 232, 223, .9); border-radius: 18px; background: linear-gradient(180deg, #ffffff 0%, #fbfaf6 100%); box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, 0 14px 30px rgba(41, 38, 32, .04); text-decoration: none; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.exchange-card:hover { transform: translateY(-3px); border-color: rgba(201,150,69,.35); box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, 0 22px 44px rgba(41,38,32,.09); }
.exchange-card img { display: block; width: 112px; max-width: 100%; height: 44px; object-fit: contain; object-position: center; transition: transform .25s ease; }
.exchange-card:hover img { transform: scale(1.05); }

/* ===== Stats ===== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: 0 18px 50px rgba(41,38,32,.06); overflow: hidden; }
.stats article { min-height: 168px; padding: 30px 34px; border-right: 1px solid var(--line); transition: background .2s; }
.stats article:hover { background: #fffaf1; }
.stats article:last-child { border-right: 0; }
.stat-icon, .step-icon, .feature-card span, .plan-icon { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 24px; color: var(--gold); border: 1px solid #f0dfc3; border-radius: 10px; background: #fff8ec; font-weight: 900; font-size: 13px; }
.stat-icon svg, .step-icon svg, .feature-card span svg, .plan-icon svg, .resource-grid span svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.stats strong { display: block; margin-bottom: 10px; font-size: 28px; letter-spacing: -0.045em; }
.stats p { margin: 0; color: #626b7a; font-size: 13px; font-weight: 800; line-height: 1.55; }
.stats small { color: #a1a8b3; font-weight: 600; }

/* ===== Live AML Radar ===== */
.radar-section { margin-top: 72px; padding: 78px 0; background: linear-gradient(135deg, #1c1f2b 0%, #25293a 100%); color: #fff; overflow: hidden; position: relative; }
.radar-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 50%, rgba(201,150,69,.18), transparent 50%); pointer-events: none; }
.radar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; }
.radar-copy .section-label { color: #f1c887; }
.radar-copy h2 { margin: 12px 0 18px; font-size: clamp(28px, 3.4vw, 42px); line-height: 1.1; letter-spacing: -0.05em; }
.radar-copy p { margin: 0 0 28px; color: #c6cbd4; max-width: 460px; line-height: 1.7; }
.radar-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 0; margin: 0; list-style: none; }
.radar-stats li { padding: 18px 16px; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; background: rgba(255,255,255,.04); }
.radar-stats strong { display: block; margin-bottom: 6px; font-size: 24px; color: #fff; letter-spacing: -0.04em; }
.radar-stats span { color: #9aa3b3; font-size: 12px; font-weight: 700; line-height: 1.4; }
.radar-visual { position: relative; display: grid; place-items: center; min-height: 360px; }
.radar-disk { position: relative; width: min(320px, 90%); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(30,198,106,.18) 0%, transparent 60%); }
.radar-ring { position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(30,198,106,.2); }
.radar-ring.r1 { inset: 18%; }
.radar-ring.r2 { inset: 35%; border-color: rgba(30,198,106,.3); }
.radar-ring.r3 { inset: 50%; border-color: rgba(30,198,106,.4); }
.radar-sweep { position: absolute; inset: 0; border-radius: 50%; background: conic-gradient(from 0deg, transparent 0deg, rgba(30,198,106,.35) 30deg, transparent 60deg); animation: spin 4s linear infinite; }
.radar-dot { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(201,150,69,.22), 0 0 16px rgba(201,150,69,.5); animation: blink 2.4s ease-in-out infinite; }
.radar-dot.d1 { left: 22%; top: 30%; }
.radar-dot.d2 { right: 18%; top: 40%; background: var(--red); box-shadow: 0 0 0 4px rgba(239,68,68,.22), 0 0 16px rgba(239,68,68,.5); animation-delay: .5s; }
.radar-dot.d3 { left: 38%; bottom: 22%; background: var(--green); box-shadow: 0 0 0 4px rgba(30,198,106,.22), 0 0 16px rgba(30,198,106,.5); animation-delay: 1s; }
.radar-dot.d4 { right: 30%; bottom: 30%; animation-delay: 1.4s; }
.radar-dot.d5 { left: 50%; top: 12%; background: #5eb0ff; box-shadow: 0 0 0 4px rgba(94,176,255,.22), 0 0 16px rgba(94,176,255,.5); animation-delay: 1.8s; }
.radar-feed { position: absolute; right: -8px; bottom: -8px; width: min(290px, 84%); padding: 16px 16px 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: rgba(20,22,32,.92); backdrop-filter: blur(10px); }
.radar-feed-head { display: flex; align-items: center; gap: 8px; padding: 0 4px 12px; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: #c6cbd4; border-bottom: 1px solid rgba(255,255,255,.08); }
.radar-feed-head .live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(30,198,106,.25), 0 0 12px rgba(30,198,106,.6); animation: blink 1.6s ease-in-out infinite; }
.radar-feed-viewport { position: relative; height: 164px; margin-top: 8px; overflow: hidden; }
.radar-feed-track { display: flex; flex-direction: column; will-change: transform; transform: translateZ(0); }
.feed-row { display: grid; grid-template-columns: 14px 1fr auto; align-items: center; gap: 10px; min-height: 41px; padding: 10px 6px; font-size: 12px; color: #c6cbd4; border-bottom: 1px solid rgba(255,255,255,.06); flex: 0 0 auto; transition: transform .55s cubic-bezier(.22,.61,.36,1), opacity .55s cubic-bezier(.22,.61,.36,1); }
.feed-row.feed-enter { opacity: 0; transform: translateY(-100%); }
.feed-row.feed-enter-active { opacity: 1; transform: translateY(0); }
.feed-row.feed-exit { opacity: 0; transform: translateY(100%); }
.feed-row .dot { width: 10px; height: 10px; border-radius: 50%; }
.feed-row .dot.ok { background: var(--green); box-shadow: 0 0 8px rgba(30,198,106,.6); }
.feed-row .dot.mid { background: #f0b14a; box-shadow: 0 0 8px rgba(240,177,74,.6); }
.feed-row .dot.hi { background: var(--red); box-shadow: 0 0 8px rgba(239,68,68,.6); }
.feed-row .addr { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 11px; }
.feed-row .tag { padding: 3px 8px; border-radius: 6px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.tag.low { background: rgba(30,198,106,.18); color: #4ddf8c; }
.tag.mid { background: rgba(240,177,74,.18); color: #f4c878; }
.tag.hi { background: rgba(239,68,68,.18); color: #ff7d7d; }

/* ===== Steps ===== */
.steps-section { padding: 62px 0 78px; }
.steps-section h2, .section-head h2, .api-grid h2, .about-card h2, .radar-copy h2 { margin: 12px 0 16px; font-size: clamp(25px, 3.4vw, 42px); line-height: 1.1; letter-spacing: -0.05em; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 38px; }
.steps article { position: relative; min-height: 142px; padding: 8px 20px 8px 0; }
.steps article:not(:last-child)::after { content: ""; position: absolute; top: 42px; right: -18px; width: 80px; border-top: 1px dashed #e2ded6; }
.steps span { position: absolute; right: 16px; top: 0; color: #ebe7df; font-size: 40px; font-weight: 800; }
.steps h3, .feature-card h3, .resource-grid h3 { margin: 0 0 8px; font-size: 16px; }
.steps p, .feature-card p, .section-head p, .api-grid p, .resource-grid p, .about-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

/* ===== Features ===== */
.features-wrap { padding: 70px 0; background: #f6f3ee; }
.features-grid { display: grid; grid-template-columns: 1.15fr repeat(3, 1fr); gap: 20px; }
.feature-intro { grid-row: span 2; padding: 32px 24px 32px 0; }
.feature-intro h2 { max-width: 330px; margin: 14px 0 18px; font-size: 30px; line-height: 1.13; letter-spacing: -0.05em; }
.feature-intro p { max-width: 360px; margin: 0 0 28px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.feature-card, .resource-grid article { position: relative; min-height: 200px; padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(180deg, #fff 0%, #fbfaf6 100%); box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, 0 16px 42px rgba(41,38,32,.05); transition: transform .25s, box-shadow .25s, border-color .25s; overflow: hidden; }
.feature-card::after, .resource-grid article::after { content: ""; position: absolute; inset: -1px -1px auto auto; width: 140px; height: 140px; background: radial-gradient(circle at top right, rgba(201,150,69,.18), transparent 60%); opacity: 0; transition: opacity .3s; pointer-events: none; }
.feature-card:hover, .resource-grid article:hover { transform: translateY(-6px); border-color: rgba(201,150,69,.35); box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, 0 28px 60px rgba(41,38,32,.1); }
.feature-card:hover::after, .resource-grid article:hover::after { opacity: 1; }

/* ===== Testimonials (single-card slider) ===== */
.testimonials-section { padding: 78px 0; background: linear-gradient(180deg, #fff 0%, #faf6ed 100%); }
.testimonials-slider { position: relative; margin: 42px auto 0; max-width: 720px; }
.testimonials-viewport { position: relative; overflow: hidden; padding: 22px 4px 4px; border-radius: 22px; }
.testimonials-track { display: grid; }
.testimonials-track .testimonial { grid-area: 1 / 1; opacity: 0; pointer-events: none; transform: translateX(48px); transition: opacity .55s cubic-bezier(.22,.61,.36,1), transform .55s cubic-bezier(.22,.61,.36,1); }
.testimonials-track .testimonial.is-active { opacity: 1; pointer-events: auto; transform: translateX(0); }
.testimonials-track .testimonial.is-leaving { opacity: 0; transform: translateX(-48px); }
.testimonials-dots { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
.testimonials-dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: rgba(34,39,56,.18); cursor: pointer; transition: background .25s, transform .25s, width .25s; }
.testimonials-dots button.is-active { width: 24px; border-radius: 999px; background: linear-gradient(90deg, var(--gold), var(--gold-dark)); }
.testimonial { position: relative; min-height: 210px; padding: 40px 28px 28px; border: 1px solid var(--line); border-radius: 22px; background: linear-gradient(180deg, #fff 0%, #fcfaf5 100%); box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, 0 18px 50px rgba(41,38,32,.06); }
.testimonial::before { content: ""; position: absolute; left: 28px; top: 0; width: 64px; height: 3px; border-radius: 0 0 3px 3px; background: linear-gradient(90deg, var(--gold), transparent); }
.testimonial:hover { border-color: rgba(201,150,69,.32); box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, 0 28px 64px rgba(41,38,32,.12); }
.testimonial-quote { position: absolute; top: -18px; left: 24px; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #fff; box-shadow: 0 12px 24px rgba(201,150,69,.3); }
.testimonial-quote svg { width: 20px; height: 20px; fill: currentColor; }
.testimonial p { margin: 8px 0 24px; color: #3d4453; font-size: 15px; line-height: 1.65; }
.testimonial footer { display: flex; align-items: center; gap: 12px; }
.testimonial footer img { width: 44px; height: 44px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 6px 14px rgba(34,39,56,.12); object-fit: cover; }
.testimonial footer strong { display: block; font-size: 14px; }
.testimonial footer span { color: var(--muted); font-size: 12px; font-weight: 700; }

/* ===== Pricing (premium) ===== */
.pricing-section, .resources-section { padding: 90px 0; }
.pricing-section { position: relative; background: radial-gradient(circle at 50% 0%, rgba(201,150,69,.08), transparent 480px); }
.section-head { text-align: center; max-width: 660px; margin-inline: auto; margin-bottom: 44px; }
.section-head.compact { margin-bottom: 28px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; max-width: 900px; margin-inline: auto; align-items: stretch; }
.price-card { position: relative; min-height: 460px; display: flex; flex-direction: column; padding: 32px 28px; border: 1px solid var(--line); border-radius: 22px; background: linear-gradient(180deg, #ffffff 0%, #fcfaf5 100%); box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, 0 22px 48px rgba(41,38,32,.06); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; overflow: hidden; }
.price-card::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 70% -10%, rgba(201,150,69,.16), transparent 50%); opacity: 0; transition: opacity .3s ease; }
.price-card:hover::before { opacity: 1; }
.price-card h3 { margin: 0 0 6px; font-size: 18px; letter-spacing: -0.02em; }
.price-card .price { display: flex; align-items: baseline; gap: 6px; margin: 4px 0 14px; }
.price-card strong { font-size: 42px; letter-spacing: -0.05em; line-height: 1; background: linear-gradient(135deg, #1d2030, #4a4435); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.price-card .per { color: #9aa1ad; font-size: 13px; font-weight: 700; }
.price-card > p { margin: 0 0 4px; color: var(--muted); font-size: 13px; }
.price-card ul { display: grid; gap: 12px; margin: 22px 0 28px; padding: 22px 0 0; list-style: none; color: #444b58; font-size: 14px; border-top: 1px solid rgba(236, 232, 223, .8); }
.price-card li { display: flex; align-items: flex-start; gap: 10px; }
.price-card li::before { content: ""; flex-shrink: 0; width: 18px; height: 18px; margin-top: 1px; border-radius: 50%; background: rgba(201,150,69,.14) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a97422' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='5 12 10 17 19 7'/></svg>") center/12px no-repeat; }
.price-card .btn, .price-btn { margin-top: auto; width: 100%; min-height: 50px; font-size: 14px; }
.price-btn { display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 12px; color: #2c3142; font-weight: 800; background: #fff; transition: background .2s, border-color .2s, color .2s; }
.price-btn:hover { background: #fff8ec; border-color: rgba(201,150,69,.55); color: var(--gold-dark); }
.price-card.micro { border-color: rgba(201,150,69,.28); background: linear-gradient(180deg, #fff, #fff5e2); }
.price-card.featured { transform: none; border-color: rgba(201,150,69,.55); background: linear-gradient(180deg, #1d2030 0%, #2a2435 100%); color: #fff; box-shadow: 0 30px 70px rgba(201,150,69,.22), 0 0 0 1px rgba(201,150,69,.4) inset; }
.price-card.featured::before { background: radial-gradient(circle at 50% 0%, rgba(201,150,69,.38), transparent 60%); opacity: .8; }
.price-card.featured .plan-icon { color: #f4c878; background: rgba(201,150,69,.16); border-color: rgba(201,150,69,.4); }
.price-card.featured h3 { color: #fff; }
.price-card.featured strong { -webkit-text-fill-color: initial; background: none; color: #fff; }
.price-card.featured .per { color: #c6cbd4; }
.price-card.featured > p { color: #c6cbd4; }
.price-card.featured ul { color: #e3e6ed; border-top-color: rgba(255,255,255,.12); }
.price-card.featured li::before { background-color: rgba(201,150,69,.28); background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f4c878' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='5 12 10 17 19 7'/></svg>"); }
.price-card.featured .btn { background: linear-gradient(135deg, #f1c887, var(--gold)); color: #1d2030; box-shadow: 0 16px 32px rgba(201,150,69,.4); }
.price-card .badge { position: absolute; top: 18px; right: 18px; display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; background: linear-gradient(135deg, #f1c887, var(--gold)); color: #1d2030; font-size: 11px; font-weight: 800; letter-spacing: .04em; box-shadow: 0 8px 18px rgba(201,150,69,.4); z-index: 2; }
.price-card .badge svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.price-card:hover { transform: translateY(-18px); box-shadow: 0 32px 70px rgba(41,38,32,.12); }
.price-card.featured:hover { transform: translateY(-10px); box-shadow: 0 38px 80px rgba(201,150,69,.3), 0 0 0 1px rgba(201,150,69,.5) inset; }

/* ===== API ===== */
.api-section { position: relative; padding: 88px 0; background: radial-gradient(circle at 78% 22%, rgba(201,150,69,.16), transparent 360px), #252936; color: #fff; overflow: hidden; }
.api-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 48px; align-items: center; }
.api-grid p { color: #c6cbd4; max-width: 520px; }
.api-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 28px 0 22px; }
.api-highlights article { padding: 16px 14px; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; background: rgba(255,255,255,.045); }
.api-highlights strong { display: block; margin-bottom: 4px; color: #f4c878; font-size: 22px; letter-spacing: -0.04em; }
.api-highlights span { color: #aab1be; font-size: 12px; font-weight: 700; }
.api-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; color: #d9dde5; font-size: 14px; }
.api-list li { display: flex; gap: 10px; align-items: flex-start; }
.api-list li::before { content: "?"; color: #f4c878; font-weight: 900; }
.api-console { border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(17, 20, 30, .72); box-shadow: 0 24px 70px rgba(0,0,0,.22); overflow: hidden; }
.console-tabs { display: flex; gap: 8px; padding: 14px; border-bottom: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.035); }
.console-tabs span { padding: 7px 10px; border-radius: 9px; color: #929aaa; font-size: 12px; font-weight: 800; }
.console-tabs .active { color: #1d2030; background: #f4c878; }
.api-console pre { border: 0; border-radius: 0; box-shadow: none; background: #151821; }
pre { margin: 0; overflow: auto; padding: 26px; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; background: #171a24; color: #f4d39c; font-size: 14px; line-height: 1.7; box-shadow: 0 22px 55px rgba(0,0,0,.22); }
.endpoint-grid { display: grid; gap: 8px; padding: 16px; border-top: 1px solid rgba(255,255,255,.08); }
.endpoint-grid span { display: flex; justify-content: space-between; gap: 12px; padding: 10px 12px; border-radius: 10px; background: rgba(255,255,255,.045); color: #c6cbd4; font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 12px; }
.endpoint-grid b { color: #f4c878; }

/* ===== Resources ===== */
.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.resource-grid article span { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; color: var(--gold); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }

/* ===== About ===== */
.about-section { padding: 88px 0; background: radial-gradient(circle at 15% 0%, rgba(201,150,69,.1), transparent 360px), linear-gradient(180deg, #fff 0%, #fbf7ef 100%); }
.about-card { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) 420px; align-items: stretch; gap: 34px; padding: 46px; border: 1px solid rgba(236,232,223,.95); border-radius: 30px; background: radial-gradient(circle at 100% 0%, rgba(201,150,69,.18), transparent 300px), linear-gradient(135deg, #fff 0%, #fffaf2 100%); box-shadow: 0 28px 70px rgba(41,38,32,.1); overflow: hidden; }
.about-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: linear-gradient(180deg, var(--gold), var(--gold-dark)); }
.about-copy { display: flex; flex-direction: column; justify-content: center; max-width: 680px; padding-left: 8px; }
.about-copy h2 { max-width: 620px; margin-bottom: 18px; font-size: clamp(32px, 4vw, 48px); }
.about-copy p { max-width: 650px; color: #747d90; font-size: 15px; line-height: 1.75; }
.about-panel { display: grid; grid-template-columns: 1fr; gap: 12px; align-content: center; }
.about-panel article { padding: 18px 20px; border: 1px solid rgba(236,232,223,.95); border-radius: 18px; background: rgba(255,255,255,.78); box-shadow: 0 12px 26px rgba(41,38,32,.04); }
.about-panel strong { display: block; margin-bottom: 5px; color: #1d2030; font-size: 26px; line-height: 1; letter-spacing: -.05em; }
.about-panel span { color: var(--muted); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.about-panel .btn { width: 100%; min-height: 52px; margin-top: 4px; }

/* ===== Footer ===== */
.footer { padding: 56px 0 26px; border-top: 1px solid var(--line); background: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 34px; align-items: start; }
.footer h4 { margin: 0 0 14px; font-size: 14px; }
.footer a:not(.brand) { display: block; margin-bottom: 10px; color: var(--muted); font-size: 14px; font-weight: 700; transition: color .2s; }
.footer a:not(.brand):hover { color: var(--gold-dark); }
.copyright { margin-top: 32px; padding-top: 22px; border-top: 1px solid var(--line); color: #9aa1ad; font-size: 13px; text-align: center; }
.back-to-top { position: fixed; right: 22px; bottom: 22px; z-index: 60; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(201,150,69,.35); border-radius: 50%; color: #fff; font-size: 22px; font-weight: 900; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); box-shadow: 0 18px 36px rgba(201,150,69,.28); transition: transform .2s ease; }
.back-to-top:hover { transform: translateY(-3px); }

/* ===== Risk states ===== */
.risk-medium .risk-head h2 { color: #d99a22; }
.risk-medium .shield { background: #d99a22; box-shadow: 0 13px 24px rgba(217, 154, 34, 0.25); }
.risk-high .risk-head h2 { color: var(--red); }
.risk-high .shield { background: var(--red); box-shadow: 0 13px 24px rgba(239, 68, 68, 0.25); }

/* ===== Reveal on scroll ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===== Animations ===== */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.coin-orbit::before { transform-origin: center; }
@keyframes pulse {
  0%, 100% { opacity: .8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
@keyframes pulseShield {
  0%, 100% { box-shadow: 0 13px 24px rgba(30, 198, 106, 0.25), 0 0 0 0 rgba(30,198,106,.45); }
  50% { box-shadow: 0 13px 24px rgba(30, 198, 106, 0.25), 0 0 0 12px rgba(30,198,106,0); }
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.7); }
}
@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .35; transform: scale(.78); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 11px)); }
}
@keyframes feedScroll {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}
@keyframes testimonialFadeIn {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(20px) scale(.97); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ===== Responsive ===== */
@media (max-width: 1120px) {
  .nav-links { display: none; }
  .nav-burger { display: grid; }
  .hero-grid { gap: 36px; }
  .hero-art { padding: 0 60px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); max-width: 640px; }
  .exchanges-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-intro { grid-row: auto; grid-column: 1 / -1; padding: 0 0 12px; }
  .feature-intro p { max-width: none; }
  .feature-intro h2 { max-width: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .resource-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

/* Mobile nav drawer */
@media (max-width: 1120px) {
  .nav-links.open { display: flex; position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 86vw); flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 4px; padding: 84px 26px 30px; background: #fff; box-shadow: -16px 0 50px rgba(34,39,56,.12); z-index: 55; animation: drawerIn .25s ease both; }
  .nav-links.open a { font-size: 17px; padding: 14px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav-links.open a::after { display: none; }
}
@keyframes drawerIn {
  from { transform: translateX(100%); }
  to { transform: none; }
}
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(20,22,32,.34); z-index: 45; }
.nav-overlay.show { display: block; animation: fadeIn .18s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

@media (max-width: 900px) {
  .hero-grid, .api-grid, .resource-grid, .footer-grid, .radar-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .hero { padding: 58px 0 44px; text-align: center; }
  .hero-copy { margin-inline: auto; }
  .hero-copy h1, .hero-copy p { margin-left: auto; margin-right: auto; }
  .checker-form { margin-left: auto; margin-right: auto; }
  .trusted-users { justify-content: center; }
  .hero-art { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats article:nth-child(2) { border-right: 0; }
  .stats article:nth-child(1), .stats article:nth-child(2) { border-bottom: 1px solid var(--line); }
  .steps { grid-template-columns: 1fr; gap: 22px; }
  .steps article { padding: 8px 70px 8px 0; }
  .steps article:not(:last-child)::after { display: none; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-10px); }
  .about-card { grid-template-columns: 1fr; text-align: center; }
  .about-highlights { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .radar-stats { grid-template-columns: 1fr; }
  .radar-visual { min-height: 380px; }
  .radar-feed { position: relative; right: auto; bottom: auto; margin-top: 18px; width: 100%; max-width: 320px; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 28px, var(--container)); }

  .header { border-bottom-color: rgba(236, 232, 223, .95); }
  .nav { min-height: 66px; grid-template-columns: auto auto; justify-content: space-between; gap: 12px; }
  .brand { font-size: 15px; gap: 9px; }
  .brand-mark { width: 36px; height: 36px; border-radius: 11px; }
  .brand-mark svg, .brand-mark img { width: 36px; height: 36px; }
  .nav-actions { gap: 8px; }
  .lang { min-height: 42px; width: 42px; padding: 0; border-radius: 10px; }
  .lang span { display: none; }
  .lang img { width: 22px; height: 16px; }
  .nav-burger { width: 44px; height: 44px; border-radius: 10px; }
  .nav-links.open { left: 14px; right: 14px; top: 78px; bottom: auto; width: auto; max-height: calc(100vh - 96px); padding: 16px; align-items: stretch; gap: 8px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 22px 60px rgba(34,39,56,.22); animation: mobileMenuIn .22s ease both; overflow: auto; z-index: 80; filter: none; backdrop-filter: none; }
  .nav-links.open a { display: flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 16px; border: 1px solid rgba(236,232,223,.75); border-radius: 12px; background: #fbfaf8; font-size: 14px; font-weight: 800; filter: none; }
  .nav-overlay.show { top: 66px; background: rgba(20,22,32,.34); }

  .hero { padding: 46px 0 34px; text-align: center; }
  .hero::before, .hero::after { display: none; }
  .hero-grid { display: block; }
  .hero-copy { max-width: 440px; margin: 0 auto; }
  .hero-copy h1 { max-width: none; margin: 18px 0 14px; font-size: clamp(36px, 10vw, 46px); line-height: 1.06; }
  .hero-copy p { max-width: none; margin: 0 auto 24px; font-size: 15px; line-height: 1.65; }
  .checker-form, .pricing-grid { grid-template-columns: 1fr; }
  .checker-form { width: 100%; max-width: 420px; margin-inline: auto; }
  .checker-form input, .checker-form .btn { width: 100%; min-height: 50px; }
  .trusted-users { justify-content: center; align-items: center; flex-direction: column; gap: 10px; }
  .hero-art { display: none; }

  .platforms { padding: 34px 0 42px; }
  .centered { margin-bottom: 20px; line-height: 1.5; }
  .exchanges-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .exchange-card { min-height: 78px; padding: 14px 12px; border-radius: 15px; }
  .exchange-card img { width: 92px; height: 36px; }

  .stats { grid-template-columns: 1fr; text-align: center; }
  .stats article { min-height: auto; padding: 24px 20px; border-right: 0; border-bottom: 1px solid var(--line); }
  .stats article:last-child { border-bottom: 0; }
  .stat-icon, .step-icon, .feature-card span, .plan-icon { margin-inline: auto; }

  .radar-section { margin-top: 44px; text-align: center; }
  .radar-copy p { margin-inline: auto; }
  .radar-stats { max-width: 360px; margin-inline: auto; }
  .radar-visual { min-height: auto; margin-top: 32px; }
  .radar-feed { position: relative; right: auto; bottom: auto; margin: 20px auto 0; width: 100%; max-width: 320px; text-align: left; }

  .steps-section, .resources-section { text-align: center; }
  .steps { grid-template-columns: 1fr; gap: 16px; }
  .steps article { padding: 24px 18px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
  .steps article:not(:last-child)::after { display: none; }
  .steps span { right: 18px; top: 14px; font-size: 32px; }

  .features-grid, .resource-grid { grid-template-columns: 1fr; }
  .feature-intro { padding: 0; text-align: center; }
  .feature-intro h2, .feature-intro p { max-width: none; }
  .feature-card, .resource-grid article, .price-card { text-align: center; }
  .api-copy, .section-head, .about-card { text-align: center; }
  .api-highlights { grid-template-columns: 1fr; }
  .api-list { max-width: 360px; margin-inline: auto; text-align: left; }
  .about-card { align-items: center; padding: 28px; }
  .api-section, .radar-section, .testimonials-section, .pricing-section, .resources-section, .features-wrap { padding: 54px 0; }
  pre { font-size: 12px; padding: 20px; text-align: left; }
  .testimonial { padding: 30px 22px 24px; text-align: left; }
  .footer-grid, .footer-grid > div { text-align: center; }
  .footer .brand { justify-content: center; }
}

@keyframes mobileMenuIn {
  from { opacity: 0; transform: translateY(-10px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 420px) {
  .container { width: min(100% - 24px, var(--container)); }
  .hero-copy h1 { font-size: 36px; }
  .checker-form input { padding: 0 14px; font-size: 14px; }
  .exchanges-grid { gap: 10px; }
  .exchange-card { min-height: 72px; }
  .exchange-card img { width: 82px; height: 34px; }
  .back-to-top { right: 14px; bottom: 14px; width: 44px; height: 44px; }
}

/* ===== Wallet check modal ===== */
.check-modal { position: fixed; inset: 0; z-index: 120; display: none; align-items: center; justify-content: center; padding: 22px; }
.check-modal.is-open { display: flex; }
.check-modal__backdrop { position: absolute; inset: 0; background: rgba(20, 22, 32, .62); backdrop-filter: blur(12px); }
.check-modal__dialog { position: relative; width: min(100%, 820px); max-height: none; overflow: visible; padding: 32px; border: 1px solid rgba(236, 232, 223, .92); border-radius: 30px; background: radial-gradient(circle at 95% 0%, rgba(201,150,69,.16), transparent 250px), linear-gradient(180deg, #fff 0%, #fbf7ef 100%); box-shadow: 0 34px 90px rgba(20, 22, 32, .28); animation: cardIn .25s ease both; }
.check-modal__close { position: absolute; top: 16px; right: 16px; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.82); color: #1f2636; font-size: 25px; line-height: 1; cursor: pointer; box-shadow: 0 10px 22px rgba(41,38,32,.06); }
.check-progress { display: flex; align-items: center; gap: 10px; margin: 0 56px 30px 0; }
.check-progress__step { width: 36px; height: 36px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; border: 1px solid var(--line); background: #fff; color: #9aa1ad; font-size: 12px; font-weight: 900; box-shadow: 0 8px 18px rgba(41,38,32,.04); }
.check-progress__step.is-active, .check-progress__step.is-done { border-color: transparent; color: #fff; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); box-shadow: 0 10px 22px rgba(201,150,69,.24); }
.check-progress__line { height: 2px; flex: 1; border-radius: 999px; background: linear-gradient(90deg, rgba(201,150,69,.22), var(--line)); }
.check-step { display: none; text-align: center; }
.check-step.is-active { display: block; }
.check-step .section-label { display: block; text-align: center; }
.check-step h2 { margin: 10px auto 12px; text-align: center; font-size: clamp(28px, 4vw, 40px); line-height: 1.06; letter-spacing: -.055em; }
.check-lead { max-width: 650px; margin: 0 auto 24px; text-align: center; color: #7d8798; font-size: 16px; line-height: 1.65; }
.check-field { display: grid; gap: 8px; margin-bottom: 18px; color: #6e7686; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.check-field input { min-height: 54px; padding: 0 18px; border: 1px solid var(--line); border-radius: 14px; outline: none; background: #fff; color: var(--text); font-size: 15px; font-weight: 800; text-transform: none; letter-spacing: 0; box-shadow: 0 12px 26px rgba(41,38,32,.04); }
.check-field input:focus { border-color: rgba(201,150,69,.65); box-shadow: 0 0 0 4px rgba(201,150,69,.12); }
.check-field input.is-invalid { border-color: var(--red); box-shadow: 0 0 0 4px rgba(239,68,68,.12); }
.check-error { min-height: 18px; color: var(--red); font-size: 12px; font-weight: 800; text-transform: none; letter-spacing: 0; }
.check-field input.is-invalid { border-color: var(--red); box-shadow: 0 0 0 4px rgba(239,68,68,.12); }
.check-error { min-height: 18px; color: var(--red); font-size: 12px; font-weight: 800; text-transform: none; letter-spacing: 0; }
.check-network-grid, .check-plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 22px; }
.check-network-grid { grid-template-columns: minmax(0, 320px); justify-content: center; }
.check-choice { position: relative; min-height: 92px; padding: 16px; border: 1px solid rgba(226,221,211,.95); border-radius: 18px; background: rgba(255,255,255,.84); color: #2c3142; text-align: left; cursor: pointer; transition: transform .18s, border-color .18s, box-shadow .18s, background .18s; overflow: hidden; }
.check-choice::after { content: ""; position: absolute; inset: auto -40px -55px auto; width: 120px; height: 120px; border-radius: 50%; background: rgba(201,150,69,.1); opacity: 0; transition: opacity .18s; }
.check-choice:hover, .check-choice.is-selected { transform: translateY(-2px); border-color: rgba(201,150,69,.66); box-shadow: 0 18px 38px rgba(41,38,32,.1); }
.check-choice:hover::after, .check-choice.is-selected::after { opacity: 1; }
.check-choice.is-selected { background: linear-gradient(180deg, #fffaf1, #fff); }
.check-choice--network { display: flex; align-items: center; gap: 14px; }
.check-choice--network img { width: 44px; height: 44px; flex: 0 0 auto; object-fit: contain; border-radius: 50%; filter: drop-shadow(0 10px 16px rgba(41,38,32,.14)); }
.check-choice__content { display: grid; gap: 5px; color: inherit !important; }
.check-choice strong { display: block; margin-bottom: 0; font-size: 15px; }
.check-choice span { color: var(--muted); font-size: 12px; font-weight: 800; }
.check-choice--plan { min-height: 208px; display: flex; flex-direction: column; gap: 10px; padding: 20px; }
.check-plan-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; color: inherit !important; }
.check-plan-top strong { font-size: 18px; }
.check-plan-top b { color: var(--gold-dark); font-size: 26px; line-height: 1; }
.check-plan-period { color: #9aa1ad !important; font-size: 12px !important; text-transform: uppercase; letter-spacing: .08em; }
.check-plan-details { color: #424958 !important; font-size: 14px !important; }
.check-plan-features { display: grid; gap: 7px; margin-top: auto; color: inherit !important; }
.check-plan-features em { position: relative; padding-left: 22px; color: #626b7a; font-size: 12px; font-style: normal; font-weight: 800; }
.check-plan-features em::before { content: "✓"; position: absolute; left: 0; top: -1px; color: var(--gold-dark); font-weight: 900; }
.check-cost-card { display: grid; gap: 12px; justify-items: center; padding: 32px 24px; margin-bottom: 24px; border: 1px solid rgba(201,150,69,.4); border-radius: 22px; background: linear-gradient(180deg, #fffaf1, #fff); box-shadow: 0 18px 40px rgba(41,38,32,.08); text-align: center; }
.check-cost-label { color: #9aa1ad; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.check-cost-value { display: flex; align-items: baseline; gap: 8px; }
.check-cost-value strong { color: var(--gold-dark); font-size: 64px; line-height: 1; letter-spacing: -.04em; }
.check-cost-value span { color: var(--gold-dark); font-size: 22px; font-weight: 900; letter-spacing: .04em; }
.check-cost-note { max-width: 460px; margin: 0; color: #626b7a; font-size: 14px; line-height: 1.55; }
.check-wait-hint { margin: 14px auto 0; max-width: 460px; text-align: center; color: var(--gold-dark); font-size: 13px; font-weight: 800; }
.check-next { min-width: 160px; min-height: 50px; margin-inline: auto; }
.check-connect-card, .check-report { padding: 22px; margin-bottom: 22px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.76); box-shadow: 0 14px 34px rgba(41,38,32,.06); }
.check-connect-card { display: grid; gap: 8px; }
.check-connect-card .live-dot { width: 10px; height: 10px; color: var(--gold); }
.check-connect-card strong { font-size: 18px; }
.check-connect-card small { color: var(--muted); font-weight: 700; }
.check-scan__bar { height: 10px; margin-bottom: 18px; overflow: hidden; border-radius: 999px; background: #ece8df; }
.check-scan__bar span { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--gold), var(--green)); transition: width .35s ease; }
.check-scan ul { display: grid; gap: 10px; min-height: 180px; margin: 0; padding: 0; list-style: none; }
.check-scan li { padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; background: #fff; color: #4a5262; font-size: 13px; font-weight: 800; }
.check-report { display: grid; gap: 12px; }
.check-report__head { display: flex; justify-content: space-between; gap: 16px; align-items: center; text-align: left; }
.check-report__head h3 { margin: 0 0 8px; font-size: 24px; letter-spacing: -.04em; }
.check-report__head p { margin: 0; color: var(--muted); line-height: 1.55; }
.check-report__score { min-width: 98px; padding: 13px; border-radius: 18px; text-align: center; color: #fff; background: linear-gradient(135deg, #21c86a, #15a352); box-shadow: 0 14px 28px rgba(30,198,106,.24); }
.check-report__score.is-medium { background: linear-gradient(135deg, #f0b14a, #d99a22); box-shadow: 0 14px 28px rgba(217,154,34,.24); }
.check-report__score.is-high { background: linear-gradient(135deg, #ff6b6b, #ef4444); box-shadow: 0 14px 28px rgba(239,68,68,.24); }
.check-report__score strong { display: block; font-size: 30px; line-height: 1; }
.check-report__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.check-report__grid div { min-width: 0; padding: 12px; border-radius: 12px; background: linear-gradient(180deg, #f7f1e7, #f1eadf); text-align: center; }
.check-report__grid div:nth-child(1), .check-report__grid div:nth-child(2) { grid-column: span 2; }
.check-report__grid span { display: block; margin-bottom: 4px; color: #8b93a3; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.check-report__grid b { display: block; overflow-wrap: anywhere; font-size: 13px; }
.check-actions { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
body.check-modal-open { overflow: hidden; }

@media (max-width: 760px) {
  .check-modal { align-items: flex-end; padding: 0; }
  .check-modal__dialog { width: 100%; max-height: 94vh; overflow: auto; padding: 22px 18px 20px; border-radius: 24px 24px 0 0; }
  .check-modal__close { top: 12px; right: 12px; width: 40px; height: 40px; }
  .check-progress { margin: 0 48px 22px 0; gap: 6px; }
  .check-progress__step { width: 28px; height: 28px; font-size: 11px; }
  .check-step h2 { font-size: 30px; }
  .check-lead { font-size: 14px; margin-bottom: 18px; }
  .check-field input { min-height: 50px; font-size: 14px; }
  .check-network-grid, .check-plan-grid, .check-report__grid { grid-template-columns: 1fr; gap: 10px; }
  .check-report__grid div:nth-child(1), .check-report__grid div:nth-child(2) { grid-column: auto; }
  .check-choice { min-height: 78px; padding: 14px; }
  .check-choice--network img { width: 38px; height: 38px; }
  .check-choice--plan { min-height: auto; padding: 17px; }
  .check-report__head { flex-direction: column; }
  .check-report__score { width: 100%; }
  .check-actions, .check-actions .btn, .check-actions .report-btn, .check-next { width: 100%; }
}

@media (max-width: 420px) {
  .check-modal__dialog { padding: 18px 14px 18px; }
  .check-step h2 { font-size: 26px; }
  .check-progress__line { min-width: 18px; }
  .check-plan-top b { font-size: 23px; }
}



.exchange-logo-text { color: #222738; font-size: 18px; font-weight: 900; letter-spacing: -.03em; }
