:root {
    --bg: #ffffff;
    --bg-2: #f3f2f8;
    --card: #ffffff;
    --card-2: #f6f5fb;
    --line: rgba(20, 19, 31, .12);
    --text: #16151f;
    --muted: #5d5a72;
    --violet: #7c3aed;
    --pink: #db2777;
    --blue: #2563eb;
    --cyan: #0891b2;
    --grad: #7c3aed;
    --grad-2: #2563eb;
    --radius: 3px;
    --shadow: 0 24px 60px -30px rgba(20, 16, 45, .25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; line-height: 1.18; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

[hidden] { display: none !important; }

.container { width: min(1180px, 92%); margin: 0 auto; }
.section { padding: 96px 0; position: relative; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); margin-bottom: 14px; }
.section-head p { color: var(--muted); }

.grad-text {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.grad-text-2 {
    background: var(--grad-2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.bg-mesh { position: fixed; inset: 0; z-index: -2; background: var(--bg); overflow: hidden; }
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    opacity: .14;
    animation: drift 22s ease-in-out infinite alternate;
}
.blob-1 { width: 560px; height: 560px; top: -180px; left: -140px; background: #7c3aed; }
.blob-2 { width: 480px; height: 480px; top: 30%; right: -160px; background: #db2777; animation-delay: -7s; }
.blob-3 { width: 520px; height: 520px; bottom: -200px; left: 28%; background: #2563eb; animation-delay: -14s; }

@keyframes drift {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(70px, -60px) scale(1.15); }
}

.glass {
    background: var(--card);
    border: 1px solid var(--line);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: var(--radius);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius:  3px;
    border: none;
    font-weight: 600;
    font-size: .95rem;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn-primary {
    background: var(--grad);
    color: #fff;
    box-shadow: 0 10px 30px -10px rgba(236, 72, 153, .55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 38px -12px rgba(139, 92, 246, .7); }
.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--card); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: .88rem; }
.btn-xl { padding: 17px 34px; font-size: 1.05rem; }
.btn-block { width: 100%; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255,255,255,.86);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 74px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: 'Space Grotesk'; font-weight: 700; font-size: 1.35rem; letter-spacing: -.02em; }
.brand em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.brand-mark {
    width: 38px; height: 38px;
    display: grid; place-items: center;
    border-radius:  3px;
    background: var(--grad);
    font-size: 1.15rem;
    color: #fff;
    box-shadow: 0 6px 18px -6px rgba(236, 72, 153, .6);
}
img.brand-mark { background: none; box-shadow: none; object-fit: contain; padding: 0; width: auto; height: 36px; }
.main-nav { display: flex; gap: 30px; }
.main-nav a { color: var(--muted); font-weight: 500; font-size: .95rem; transition: color .2s; position: relative; }
.main-nav a:hover, .main-nav a.active { color: var(--text); }
.main-nav a.active::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -8px;
    height: 3px;
    border-radius:  3px;
    background: var(--grad);
}
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-burger { display: none; background: none; border: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-burger span { width: 22px; height: 2px; background: var(--text); border-radius:  3px; transition: .25s; }

.hero { padding: 90px 0 70px; position: relative; }
.hero-wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius:  3px;
    border: 1px solid rgba(139, 92, 246, .4);
    background: rgba(139, 92, 246, .12);
    color: var(--violet);
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 22px;
}
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.7rem); letter-spacing: -.03em; margin-bottom: 20px; }
.hero p.lead { color: var(--muted); font-size: 1.08rem; max-width: 480px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 36px; margin-top: 46px; flex-wrap: wrap; }
.hero-stat strong { font-family: 'Space Grotesk'; font-size: 1.5rem; display: block; }
.hero-stat span { color: var(--muted); font-size: .85rem; }

.hero-coins { position: relative; height: 380px; }
.float-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius:  3px;
    animation: floaty 6s ease-in-out infinite;
}
.float-chip img { width: 38px; height: 38px; }
.float-chip .fc-name { font-weight: 600; font-size: .92rem; }
.float-chip .fc-price { color: var(--muted); font-size: .8rem; }
.chip-1 { top: 6%; left: 8%; animation-delay: 0s; }
.chip-2 { top: 32%; right: 2%; animation-delay: -1.5s; }
.chip-3 { bottom: 26%; left: 0; animation-delay: -3s; }
.chip-4 { bottom: 2%; right: 12%; animation-delay: -4.5s; }
.hero-ring {
    position: absolute;
    inset: 12% 18%;
    border-radius: 50%;
    border: 1px dashed rgba(139, 92, 246, .45);
    animation: spin 40s linear infinite;
}
.hero-ring::before {
    content: '';
    position: absolute;
    top: -5px; left: 50%;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--grad);
    box-shadow: 0 0 18px 4px rgba(236, 72, 153, .8);
}

@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}
@keyframes spin { to { transform: rotate(360deg); } }

.calc-card { padding: 28px; max-width: 480px; margin: 0 auto; box-shadow: var(--shadow); width: 100%; }
.calc-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #f1f0f8;
    border: 1px solid var(--line);
    border-radius:  3px;
    padding: 5px;
    gap: 4px;
    margin-bottom: 22px;
}
.calc-tab {
    text-align: center;
    padding: 10px 0;
    border-radius:  3px;
    font-weight: 600;
    font-size: .92rem;
    color: var(--muted);
    transition: .25s;
}
.calc-tab.on { background: var(--grad); color: #fff; box-shadow: 0 6px 16px -6px rgba(236, 72, 153, .6); }
.calc-body { display: grid; }
.calc-side { background: #f4f3fa; border: 1px solid var(--line); border-radius:  3px; padding: 16px 18px; transition: border-color .25s; min-width: 0; }
.calc-side:focus-within { border-color: rgba(139, 92, 246, .6); }
.calc-label { display: flex; justify-content: space-between; font-size: .8rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.est-tag { background: rgba(34, 211, 238, .15); color: #0369a1; padding: 1px 8px; border-radius:  3px; text-transform: none; letter-spacing: 0; font-size: .72rem; }
.calc-field { display: flex; align-items: center; gap: 12px; }
.calc-field input {
    flex: 1;
    min-width: 0;
    background: none;
    border: none;
    outline: none;
    color: var(--text);
    font-size: 1.45rem;
    font-weight: 600;
    font-family: 'Space Grotesk';
}
.calc-field input[readonly] { color: var(--violet); }
.cur-pick {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ecebf4;
    border: 1px solid var(--line);
    border-radius:  3px;
    padding: 7px 12px;
    cursor: pointer;
    position: relative;
    max-width: 62%;
    flex-shrink: 0;
}
.cur-pick:hover { background: #e9e8f2; }
.cur-img { width: 24px; height: 24px; border-radius: 50%; }
.cur-pick select {
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text);
    font-weight: 700;
    font-size: .95rem;
    cursor: pointer;
    max-width: 130px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.cur-pick select option { background: var(--bg-2); color: var(--text); }
.cur-caret { color: var(--muted); font-size: .7rem; pointer-events: none; }
.calc-hint { font-size: .78rem; color: var(--muted); margin-top: 8px; min-height: 1em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.calc-divider {
    display: flex;
    justify-content: center;
    padding: 8px 0;
}
.calc-flip {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 3px solid rgba(20,19,31,.18);
    background: var(--grad);
    color: #fff;
    display: grid;
    place-items: center;
    transition: transform .3s ease, box-shadow .3s ease;
    box-shadow: 0 8px 20px -8px rgba(236, 72, 153, .6);
}
.calc-flip:hover { transform: rotate(180deg); box-shadow: 0 10px 26px -8px rgba(139, 92, 246, .7); }
.calc-meta { margin: 20px 0; display: grid; gap: 8px; }
.meta-row { display: flex; justify-content: space-between; align-items: center; font-size: .9rem; }
.meta-row span { color: var(--muted); }
.meta-row strong { font-weight: 600; }
#calcSubmit { border-radius:  3px; }
.calc-note { text-align: center; color: var(--muted); font-size: .78rem; margin-top: 12px; }

.ticker-bar {
    overflow: hidden;
    border-block: 1px solid var(--line);
    background: #faf9fd;
    padding: 14px 0;
    white-space: nowrap;
}
.ticker-track { display: inline-flex; gap: 44px; animation: ticker 40s linear infinite; padding-right: 44px; }
.ticker-item { display: inline-flex; align-items: center; gap: 9px; font-size: .88rem; font-weight: 600; }
.ticker-item img { width: 21px; height: 21px; border-radius: 50%; }
.ticker-item span { color: var(--muted); font-weight: 500; }
.ticker-item em { font-style: normal; font-weight: 700; font-size: .8rem; }
.ticker-item em.up, .pc-fiat .up { color: #34d399; }
.ticker-item em.down, .pc-fiat .down { color: #f87171; }
@keyframes ticker { to { transform: translateX(-50%); } }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.price-card { padding: 22px; display: flex; align-items: center; gap: 15px; transition: .3s; min-width: 0; }
.price-card:hover { transform: translateY(-5px); background: var(--card-2); border-color: rgba(139, 92, 246, .45); }
.price-card img { width: 44px; height: 44px; }
.price-card .pc-name { font-weight: 600; }
.price-card .pc-net { color: var(--muted); font-size: .78rem; }
.price-card .pc-price { margin-left: auto; text-align: right; }
.price-card .pc-usd { font-weight: 700; font-family: 'Space Grotesk'; }
.price-card .pc-fiat { color: var(--muted); font-size: .78rem; }

.stat-band { background: #f6f5fb; border-block: 1px solid var(--line); }
.stat-box { text-align: center; padding: 26px 10px; }
.stat-box img { width: 46px; height: 46px; margin: 0 auto 14px; filter: drop-shadow(0 4px 14px rgba(236,72,153,.5)); }
.stat-num { font-family: 'Space Grotesk'; font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 700; }
.stat-lbl { color: var(--muted); font-size: .88rem; }
.stat-sub { color: var(--violet); font-size: .78rem; }

.steps-scroll { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.step-card { padding: 26px 22px; position: relative; transition: .3s; }
.step-card:hover { transform: translateY(-6px); border-color: rgba(236, 72, 153, .45); }
.step-num {
    font-family: 'Space Grotesk';
    font-size: 2.6rem;
    font-weight: 700;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: .85;
    margin-bottom: 12px;
    display: block;
}
.step-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step-card p { color: var(--muted); font-size: .87rem; }

.feature-card { padding: 28px; transition: .3s; position: relative; overflow: hidden; }
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    opacity: 0;
    transition: .35s;
}
.feature-card:hover { transform: translateY(-6px); border-color: rgba(139, 92, 246, .5); }
.feature-card:hover::before { opacity: 1; }
.feat-icon {
    width: 52px; height: 52px;
    display: grid;
    place-items: center;
    border-radius:  3px;
    background: var(--grad);
    margin-bottom: 18px;
    box-shadow: 0 10px 24px -8px rgba(236, 72, 153, .55);
}
.feature-card h3 { font-size: 1.08rem; margin-bottom: 9px; }
.feature-card p { color: var(--muted); font-size: .9rem; }

.secure-band {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: center;
}
.secure-list { display: grid; gap: 16px; margin-top: 26px; }
.secure-item { display: flex; gap: 14px; align-items: flex-start; }
.secure-check {
    flex-shrink: 0;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--grad-2);
    display: grid;
    place-items: center;
    margin-top: 2px;
}
.secure-item h4 { font-size: .98rem; margin-bottom: 3px; }
.secure-item p { color: var(--muted); font-size: .87rem; }

.trust-band { text-align: center; }
.trust-metrics { display: flex; justify-content: center; gap: 54px; flex-wrap: wrap; margin-top: 36px; }
.trust-metrics div strong { font-family: 'Space Grotesk'; font-size: 1.6rem; display: block; }
.trust-metrics div span { color: var(--muted); font-size: .84rem; }

.page-hero { padding: 80px 0 40px; text-align: center; }
.page-hero h1 { font-size: clamp(2rem, 4.6vw, 3.2rem); letter-spacing: -.03em; margin-bottom: 16px; }
.page-hero p { color: var(--muted); max-width: 560px; margin: 0 auto; }

.cta-band {
    text-align: center;
    padding: 64px 40px;
    background:
        radial-gradient(600px 300px at 20% 0%, rgba(139,92,246,.35), transparent),
        radial-gradient(600px 300px at 80% 100%, rgba(236,72,153,.3), transparent),
        var(--card);
    border: 1px solid rgba(139, 92, 246, .35);
    border-radius:  3px;
}
.cta-band h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); margin-bottom: 14px; }
.cta-band p { color: var(--muted); max-width: 480px; margin: 0 auto 28px; }

.faq-cat { max-width: 760px; margin: 0 auto 44px; }
.faq-cat > h2 { font-size: 1.3rem; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.faq-cat > h2::before { content: ''; width: 26px; height: 4px; border-radius:  3px; background: var(--grad); }
.faq-item { border: 1px solid var(--line); border-radius:  3px; background: var(--card); margin-bottom: 12px; overflow: hidden; transition: border-color .25s; }
.faq-item.open { border-color: rgba(139, 92, 246, .55); }
.faq-q {
    width: 100%;
    background: none;
    border: none;
    color: var(--text);
    text-align: left;
    padding: 19px 22px;
    font-size: .98rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.faq-q .chev { transition: .3s; color: var(--violet); flex-shrink: 0; }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 22px 20px; color: var(--muted); font-size: .92rem; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card { padding: 0; overflow: hidden; transition: .3s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-6px); border-color: rgba(236, 72, 153, .5); }
.blog-cover { height: 150px; position: relative; display: grid; place-items: center; }
.blog-cover.cov-1 { background: #7c3aed; }
.blog-cover.cov-2 { background: #2563eb; }
.blog-cover.cov-3 { background: #db2777; }
.blog-cover.cov-4 { background: #047857; }
.blog-cover svg { opacity: .85; }
.blog-tag {
    position: absolute;
    top: 14px; left: 14px;
    background: rgba(0,0,0,.35);
    backdrop-filter: blur(6px);
    padding: 4px 12px;
    border-radius:  3px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
}
.blog-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.blog-meta { color: var(--muted); font-size: .78rem; display: flex; gap: 14px; margin-bottom: 10px; }
.blog-body h3 { font-size: 1.08rem; line-height: 1.35; margin-bottom: 10px; }
.blog-body p { color: var(--muted); font-size: .87rem; flex: 1; }
.blog-link { margin-top: 16px; font-weight: 600; font-size: .88rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; display: inline-flex; align-items: center; gap: 6px; }

.article { max-width: 720px; margin: 0 auto; }
.article h1 { font-size: clamp(1.7rem, 4vw, 2.5rem); letter-spacing: -.02em; margin: 18px 0; }
.article .blog-meta { margin-bottom: 26px; }
.article-body p { color: #cdc5ea; margin-bottom: 18px; }
.article-body h3 { margin: 30px 0 12px; font-size: 1.25rem; }
.article-back { display: inline-flex; gap: 8px; align-items: center; color: var(--muted); font-size: .9rem; margin-bottom: 8px; }
.article-back:hover { color: var(--text); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 70px; }
.about-copy h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin-bottom: 18px; }
.about-copy p { color: var(--muted); margin-bottom: 14px; }
.about-visual { position: relative; height: 340px; }
.about-orb {
    position: absolute;
    inset: 8%;
    border-radius:  3px;
    background: conic-gradient(from 210deg, #7c3aed, #ec4899, #3b82f6, #22d3ee, #7c3aed);
    filter: blur(2px);
    animation: spin 18s linear infinite;
    opacity: .8;
}
.about-orb-core {
    position: absolute;
    inset: 16%;
    border-radius:  3px;
    background: var(--bg-2);
    display: grid;
    place-items: center;
    z-index: 2;
    font-family: 'Space Grotesk';
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    padding: 20px;
}
.value-card { padding: 26px; }
.value-card .feat-icon { margin-bottom: 14px; }
.timeline { max-width: 700px; margin: 0 auto; position: relative; padding-left: 34px; }
.timeline::before { content: ''; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 2px; background: var(--line); }
.tl-item { position: relative; padding-bottom: 30px; }
.tl-item::before {
    content: '';
    position: absolute;
    left: -33px; top: 5px;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--grad);
    box-shadow: 0 0 0 5px rgba(139, 92, 246, .18);
}
.tl-item h4 { font-size: 1.02rem; margin-bottom: 4px; }
.tl-item span { font-size: .78rem; color: var(--violet); font-weight: 600; letter-spacing: .04em; }
.tl-item p { color: var(--muted); font-size: .89rem; margin-top: 4px; }

.support-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: start; }
.contact-cards { display: grid; gap: 16px; }
.contact-card { padding: 24px; display: flex; gap: 16px; align-items: flex-start; }
.contact-card h4 { margin-bottom: 4px; font-size: 1rem; }
.contact-card p { color: var(--muted); font-size: .86rem; }
.form-card { padding: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-group { margin-bottom: 18px; }
.field-group label { display: block; font-size: .84rem; font-weight: 600; margin-bottom: 7px; color: var(--text); }
.field-group input, .field-group textarea, .field-group select {
    width: 100%;
    background: #f1f0f8;
    border: 1px solid var(--line);
    border-radius:  3px;
    padding: 13px 16px;
    color: var(--text);
    font-size: .95rem;
    outline: none;
    transition: border-color .25s;
    resize: vertical;
}
.field-group input:focus, .field-group textarea:focus, .field-group select:focus { border-color: rgba(139,92,246,.65); }
.field-group input[type="file"] { padding: 9px 12px; font-size: .84rem; color: var(--muted); }
.field-group input[type="file"]::file-selector-button { background: var(--grad); border: none; border-radius: 3px; color: #fff; font-family: inherit; font-weight: 600; font-size: .8rem; padding: 7px 14px; margin-right: 12px; cursor: pointer; }
.field-group select option { background: var(--bg-2); }

.tier-card { padding: 30px 26px; text-align: center; position: relative; transition: .3s; }
.tier-card.hot { border-color: rgba(236,72,153,.6); background: #fdf2f8; }
.tier-pop { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad); padding: 4px 16px; border-radius:  3px; font-size: .72rem; font-weight: 700; letter-spacing: .05em; }
.tier-card h3 { font-size: 1.1rem; color: var(--muted); font-weight: 500; }
.tier-rate { font-family: 'Space Grotesk'; font-size: 2.6rem; font-weight: 700; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; margin: 10px 0 4px; }
.tier-card ul { list-style: none; margin: 20px 0 26px; display: grid; gap: 10px; }
.tier-card li { color: var(--muted); font-size: .88rem; display: flex; gap: 9px; align-items: center; justify-content: center; }
.tier-card li::before { content: '\2713'; color: #34d399; font-weight: 700; }

.legal-page { max-width: 740px; margin: 0 auto; }
.legal-page h1 { font-size: 2.1rem; margin-bottom: 8px; }
.legal-updated { color: var(--muted); font-size: .85rem; margin-bottom: 36px; }
.legal-page h3 { margin: 30px 0 12px; font-size: 1.2rem; }
.legal-page p, .legal-page li { color: var(--muted); font-size: .94rem; margin-bottom: 12px; }
.legal-page ul { padding-left: 22px; margin-bottom: 16px; }

.order-wrap { max-width: 640px; margin: 0 auto; }
.steps-chips { display: flex; justify-content: space-between; margin-bottom: 34px; position: relative; }
.steps-chips::before {
    content: '';
    position: absolute;
    top: 15px; left: 8%; right: 8%;
    height: 2px;
    background: var(--line);
    z-index: 0;
}
.step-chip { position: relative; z-index: 1; text-align: center; flex: 1; }
.step-chip span {
    width: 32px; height: 32px;
    display: grid;
    place-items: center;
    margin: 0 auto 8px;
    border-radius: 50%;
    background: var(--bg-2);
    border: 2px solid var(--line);
    font-weight: 700;
    font-size: .85rem;
    font-family: 'Space Grotesk';
    color: var(--muted);
    transition: .3s;
}
.step-chip.done span { background: var(--grad); border-color: transparent; color: #fff; }
.step-chip em { font-style: normal; font-size: .74rem; color: var(--muted); }
.step-chip.on span { border-color: var(--violet); color: var(--text); box-shadow: 0 0 0 4px rgba(139,92,246,.18); }

.order-panel { padding: 30px; }
.order-summary-card {
    display: grid;
    gap: 10px;
    background: #f4f3fa;
    border: 1px solid var(--line);
    border-radius:  3px;
    padding: 18px 20px;
    margin-bottom: 24px;
    font-size: .92rem;
}
.os-row { display: flex; justify-content: space-between; gap: 14px; align-items: baseline; }
.os-row span { color: var(--muted); flex-shrink: 0; }
.os-row strong { text-align: right; word-break: break-word; }
.os-big { font-family: 'Space Grotesk'; font-size: 1.25rem; }

.pay-options { display: grid; gap: 10px; margin-bottom: 22px; }
.pay-opt {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px 17px;
    border-radius:  3px;
    border: 1px solid var(--line);
    background: #f7f6fb;
    cursor: pointer;
    transition: .2s;
    font-weight: 500;
}
.pay-opt:hover { border-color: rgba(139,92,246,.5); }
.pay-opt input { accent-color: #ec4899; width: 17px; height: 17px; }
.pay-opt.selected { border-color: var(--pink); background: rgba(236,72,153,.08); }
.pay-opt .po-note { color: var(--muted); font-size: .78rem; display: block; font-weight: 400; }

.deposit-box {
    background: #f6f5fb;
    border: 1px dashed rgba(139,92,246,.55);
    border-radius:  3px;
    padding: 20px;
    margin-bottom: 22px;
}
.dep-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: 7px; }
.dep-addr {
    display: flex;
    gap: 10px;
    align-items: center;
    background: rgba(0,0,0,.28);
    border-radius:  3px;
    padding: 12px 14px;
    font-family: monospace;
    font-size: .88rem;
    word-break: break-all;
    margin-bottom: 12px;
}
.copy-btn {
    flex-shrink: 0;
    background: var(--card-2);
    border: 1px solid var(--line);
    color: var(--text);
    border-radius:  3px;
    padding: 7px 13px;
    font-size: .78rem;
    font-weight: 600;
    transition: .2s;
}
.copy-btn:hover { background: var(--grad); border-color: transparent; }

.status-hero { text-align: center; padding: 46px 30px; }
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 22px;
    border-radius:  3px;
    font-weight: 700;
    font-size: .88rem;
    letter-spacing: .03em;
    margin-bottom: 20px;
}
.st-awaiting_deposit { background: rgba(251,191,36,.14); color: #b45309; border: 1px solid rgba(251,191,36,.35); }
.st-pending_review { background: rgba(56,189,248,.14); color: #0369a1; border: 1px solid rgba(56,189,248,.35); }
.st-completed { background: rgba(52,211,153,.14); color: #047857; border: 1px solid rgba(52,211,153,.35); }
.st-rejected { background: rgba(248,113,113,.14); color: #dc2626; border: 1px solid rgba(248,113,113,.35); }
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: currentColor; animation: pulse 1.4s ease infinite; }
@keyframes pulse { 50% { opacity: .3; } }

.quote-timer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(251,191,36,.1);
    border: 1px solid rgba(251,191,36,.3);
    color: #b45309;
    font-size: .82rem;
    font-weight: 600;
    border-radius:  3px;
    padding: 7px 16px;
}

.track-form { max-width: 420px; margin: 0 auto; text-align: center; padding: 40px 34px; }
.track-form input {
    width: 100%;
    background: #f1f0f8;
    border: 1px solid var(--line);
    border-radius:  3px;
    padding: 13px 16px;
    color: var(--text);
    outline: none;
    text-transform: uppercase;
    letter-spacing: .08em;
    text-align: center;
    font-weight: 600;
    margin: 18px 0;
}

.admin-shell { display: grid; grid-template-columns: 230px 1fr; min-height: 100vh; }
.admin-side {
    background: var(--bg-2);
    border-right: 1px solid var(--line);
    padding: 26px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.admin-side .brand { margin-bottom: 26px; }
.admin-nav { display: flex; flex-direction: column; gap: 6px; }
.admin-nav a {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 14px;
    border-radius:  3px;
    color: var(--muted);
    font-size: .92rem;
    font-weight: 500;
    transition: .2s;
}
.admin-nav a:hover, .admin-nav a.on { background: rgba(139,92,246,.14); color: var(--text); }
.admin-main { padding: 34px 38px; overflow-x: auto; min-width: 0; }
.admin-top { display: flex; justify-content: space-between; align-items: center; gap: 18px; margin-bottom: 28px; flex-wrap: wrap; }
.admin-top h1 { font-size: 1.6rem; }
.admin-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 30px; }
.a-stat { padding: 20px 22px; }
.a-stat strong { font-family: 'Space Grotesk'; font-size: 1.65rem; display: block; }
.a-stat span { color: var(--muted); font-size: .84rem; }
.filter-tabs { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.ftab {
    padding: 8px 18px;
    border-radius:  3px;
    border: 1px solid var(--line);
    background: none;
    color: var(--muted);
    font-size: .85rem;
    font-weight: 600;
    transition: .2s;
}
.ftab.on, .ftab:hover { background: var(--grad); color: #fff; border-color: transparent; }

.orders-table { width: 100%; border-collapse: collapse; font-size: .87rem; }
.orders-table th {
    text-align: left;
    color: var(--muted);
    font-weight: 600;
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
}
.orders-table td { padding: 13px 14px; border-bottom: 1px solid #f1f0f8; vertical-align: middle; }
.orders-table tr:hover td { background: #faf9fd; }
.oid { font-family: 'Space Grotesk'; font-weight: 600; color: var(--violet); }
.mono { font-family: monospace; font-size: .8rem; color: var(--muted); }
.row-actions { display: flex; gap: 7px; }
.orders-table input[type="checkbox"] { width: 16px; height: 16px; accent-color: #ec4899; cursor: pointer; }
.u-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.u-avatar-fallback { display: grid; place-items: center; font-size: .78rem !important; }
.act-btn { padding: 7px 14px; border-radius:  3px; border: none; font-size: .78rem; font-weight: 700; transition: .2s; }
.act-ok { background: rgba(52,211,153,.15); color: #047857; }
.act-ok:hover { background: #10b981; color: #fff; }
.act-no { background: rgba(248,113,113,.13); color: #dc2626; }
.act-no:hover { background: #ef4444; color: #fff; }
.act-view { background: var(--card-2); color: var(--muted); border: 1px solid var(--line); }
.act-view:hover { color: var(--text); }
.detail-row td { background: rgba(139,92,246,.05) !important; }
.detail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px 28px; padding: 6px 2px; }
.detail-grid div span { display: block; color: var(--muted); font-size: .74rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.detail-grid div strong { font-size: .86rem; word-break: break-all; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--muted); }
.login-box { max-width: 380px; margin: 12vh auto 0; padding: 40px 34px; text-align: center; }
.alert-err { background: rgba(248,113,113,.12); border: 1px solid rgba(248,113,113,.4); color: #dc2626; padding: 11px 16px; border-radius:  3px; font-size: .86rem; margin-bottom: 16px; }

.site-footer { border-top: 1px solid var(--line); background: rgba(247,246,251,.85); margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding: 64px 0 40px; }
.footer-brand p { color: var(--muted); font-size: .89rem; margin: 18px 0 22px; max-width: 280px; }
.pay-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-badges span { border: 1px solid var(--line); background: #f4f3fa; padding: 6px 12px; border-radius:  3px; font-size: .72rem; font-weight: 700; letter-spacing: .03em; color: var(--muted); }
.footer-col h4 { font-size: .95rem; margin-bottom: 18px; }
.footer-col a { display: block; color: var(--muted); font-size: .89rem; padding: 5px 0; transition: color .2s, transform .2s; }
.footer-col a:hover { color: var(--text); transform: translateX(4px); }
.footer-bottom { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; border-top: 1px solid var(--line); padding: 22px 0; color: var(--muted); font-size: .82rem; }

.toast {
    position: fixed;
    top: 50%; left: 50%;
    transform: translateX(-50%) translateY(-50%) scale(.85);
    background: var(--bg-2);
    border: 1px solid rgba(52, 211, 153, .5);
    color: var(--text);
    padding: 18px 34px;
    border-radius:  3px;
    font-size: .95rem;
    font-weight: 600;
    text-align: center;
    z-index: 120;
    transition: transform .3s ease, opacity .3s ease;
    opacity: 0;
    box-shadow: 0 16px 40px -10px rgba(0,0,0,.6);
}
.toast.show { transform: translateX(-50%) translateY(-50%) scale(1); opacity: 1; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1020px) {
    .hero-wrap { grid-template-columns: 1fr; }
    .calc-card { margin: 0 auto; }
    .hero-coins { display: none; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .steps-scroll { grid-template-columns: repeat(2, 1fr); }
    .secure-band, .about-grid, .support-grid { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
    .section { padding: 68px 0; }
    .main-nav {
        position: fixed;
        top: 74px; left: 0; right: 0;
        background: rgba(255,255,255,.98);
        flex-direction: column;
        padding: 24px 6%;
        gap: 18px;
        border-bottom: 1px solid var(--line);
        transform: translateY(-130%);
        transition: transform .35s ease;
        z-index: 55;
    }
    .main-nav.open { transform: none; }
    .nav-actions .btn-ghost { display: none; }
    .nav-burger { display: flex; }
    .grid-3, .blog-grid, .form-row { grid-template-columns: 1fr; }
    .steps-scroll { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .calc-field input { font-size: 1.15rem; }
    .cur-pick select { max-width: 92px; }
    .trust-metrics { gap: 30px; }
}

@media (max-width: 900px) {
    .admin-shell { grid-template-columns: 1fr; }
    .admin-side { flex-direction: row; align-items: center; overflow-x: auto; }
    .admin-side .brand { margin-bottom: 0; }
    .admin-stats { grid-template-columns: repeat(2, 1fr); }
    .steps-chips::before { display: none; }
}

.process-grid {
    display: grid;
    grid-template-columns: 1.25fr .85fr;
    gap: 26px;
    align-items: start;
    max-width: 1040px;
    margin: 0 auto;
}
body.proc-center .process-grid {
    min-height: calc(100vh - 230px);
    align-content: center;
    align-items: center;
    grid-template-columns: minmax(0, 640px);
    justify-content: center;
}
body.proc-center .tx-info { display: none; }
.proc-field-row {
    background: #f4f3fa;
    border: 1px solid var(--line);
    border-radius:  3px;
    padding: 14px 18px;
    margin-bottom: 12px;
}
.proc-field-row > label {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: .78rem;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 6px;
}
.cur-static {
    display: flex;
    align-items: center;
    gap: 9px;
    background: #ecebf4;
    border: 1px solid var(--line);
    border-radius:  3px;
    padding: 8px 14px;
    flex-shrink: 0;
}
.cur-static img { width: 24px; height: 24px; border-radius: 50%; }
.cur-static strong { font-size: .95rem; }
.pay-pills { display: flex; flex-wrap: wrap; gap: 9px; }
label.pay-pill {
    display: inline-flex;
    align-items: center;
    gap: 17px;
    padding: 11px 20px 11px 15px;
    border-radius: 3px;
    border: 1px solid var(--line);
    background: #f7f6fb;
    cursor: pointer;
    font-size: .86rem;
    font-weight: 600;
    color: var(--text);
    transition: .2s;
    position: relative;
    margin-bottom: 0;
}
label.pay-pill input {
    position: absolute;
    opacity: 0;
    width: 1px; height: 1px;
    margin: 0;
    pointer-events: none;
}
label.pay-pill::before {
    content: '\2713';
    width: 18px; height: 18px;
    border-radius: 50%;
    border: 2px solid #b9b4cc;
    background: transparent;
    color: transparent;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: .2s;
}
label.pay-pill:hover { border-color: rgba(139,92,246,.5); }
label.pay-pill.selected, label.pay-pill:has(input:checked) {
    border-color: var(--pink);
    background: rgba(236,72,153,.06);
    color: var(--text);
    box-shadow: 0 4px 14px -6px rgba(236,72,153,.5);
}
label.pay-pill.selected::before, label.pay-pill:has(input:checked)::before {
    border-color: var(--pink);
    background: var(--pink);
    color: #fff;
}
.agree-check {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 14px 16px;
    border-radius:  3px;
    border: 1px solid var(--line);
    background: #f7f6fb;
    cursor: pointer;
    font-size: .86rem;
    color: var(--muted);
    margin: 4px 0 6px;
}
.agree-check input { accent-color: #ec4899; width: 17px; height: 17px; margin: 2px 0 0; padding: 0; border: none; border-radius: 50%; background: transparent; flex-shrink: 0; }
.field-err { color: #dc2626 !important; font-size: .78rem !important; margin-top: 6px; min-height: 0; display: none; }
.field-err.show { display: block; }
.tx-info { padding: 26px 26px 30px; position: sticky; top: 96px; }
.tx-info h3 { font-size: 1.15rem; margin-bottom: 18px; }
.tx-rows { display: grid; gap: 12px; }
.os-total { padding-top: 12px; margin-top: 2px; border-top: 1px dashed var(--line); }
.os-total strong { font-size: 1.3rem; font-family: 'Space Grotesk'; }
.tx-note { color: var(--muted); font-size: .76rem; line-height: 1.55; margin-top: 16px; }

@media (max-width: 900px) {
    .process-grid { grid-template-columns: 1fr; }
    .tx-info { position: static; order: -1; }
    body.proc-center .process-grid { min-height: auto; }
}

.pay-section { border: 1px solid var(--line); background: #faf9fd; border-radius:  3px; padding: 16px 16px 2px; margin-bottom: 16px; }
.pay-section-head { font-size: .92rem; font-weight: 700; color: var(--text); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.pay-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
.card-input-wrap { position: relative; }
.card-input-wrap input { padding-right: 118px; }
.card-brands { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); display: flex; gap: 5px; pointer-events: none; }
.card-brands span { font-size: .6rem; font-weight: 800; letter-spacing: .04em; padding: 3px 7px; border-radius:  3px; border: 1px solid var(--line); color: var(--muted); background: var(--bg-2); opacity: 0; transform: scale(.8); transition: all .2s; }
.card-brands span.on { opacity: 1; transform: scale(1); color: #fff; border-color: #7c3aed; background: #7c3aed; }
.wallet-short { max-width: 200px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
@media (max-width: 560px) { .pay-grid { grid-template-columns: 1fr; gap: 0; } }

.pay-spinner { position: relative; width: 110px; height: 110px; margin: 8px auto 22px; }
.pay-spinner::before { content: ''; position: absolute; inset: 0; border-radius: 50%; border: 3px solid rgba(139,92,246,.15); border-top-color: #8b5cf6; animation: pspin 1s linear infinite; }
.pay-spinner::after { content: ''; position: absolute; inset: 14px; border-radius: 50%; border: 3px solid rgba(217,70,239,.12); border-bottom-color: #d946ef; animation: pspin .7s linear infinite reverse; }
.pay-spinner-core { position: absolute; inset: 30px; border-radius: 50%; background: #7c3aed; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 22px; animation: pulseCore 1.6s ease-in-out infinite; }
@keyframes pspin { to { transform: rotate(360deg); } }
@keyframes pulseCore { 0%,100% { box-shadow: 0 0 0 0 rgba(139,92,246,.45); } 55% { box-shadow: 0 0 0 14px rgba(139,92,246,0); } }

.proc-steps { list-style: none; margin: 20px auto 8px; padding: 0; max-width: 300px; text-align: left; }
.proc-steps li { display: flex; align-items: center; gap: 10px; padding: 7px 0; color: var(--muted); font-size: .86rem; transition: color .3s; }
.proc-steps li::before { content: ''; width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--line); flex: none; transition: all .3s; }
.proc-steps li.active { color: var(--text); }
.proc-steps li.active::before { border-color: #8b5cf6; background: rgba(139,92,246,.3); animation: blinkDot 1s ease-in-out infinite; }
.proc-steps li.done { color: #047857; }
.proc-steps li.done::before { content: '\2713'; border-color: transparent; background: #10b981; color: #fff; font-size: 11px; font-weight: 700; line-height: 15px; text-align: center; }
@keyframes blinkDot { 50% { opacity: .5; } }

.res-box { border: 1px solid var(--line); border-radius:  3px; padding: 12px 16px; margin-top: 14px; background: #faf9fd; }
.res-row { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: .85rem; }
.res-row:last-child { border-bottom: none; }
.res-row span { color: var(--muted); flex: none; }
.res-row strong { text-align: right; overflow-wrap: anywhere; font-weight: 600; }

.result-hero { text-align: center; padding: 28px 10px 22px; border-radius:  3px; margin-bottom: 4px; }
.result-hero.ok { background: #ecfdf5; border: 1px solid rgba(5,150,105,.35); }
.result-hero.bad { background: #fef2f2; border: 1px solid rgba(220,38,38,.35); }
.result-hero.wait { background: #fffbeb; border: 1px solid rgba(180,83,9,.35); }
.res-icon { width: 64px; height: 64px; margin: 0 auto 14px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; color: #fff; animation: popIn .45s cubic-bezier(.2,1.6,.4,1) both; }
.result-hero.ok .res-icon { background: #10b981; box-shadow: 0 0 28px rgba(16,185,129,.5); }
.result-hero.bad .res-icon { background: #ef4444; box-shadow: 0 0 28px rgba(239,68,68,.5); }
.result-hero.wait .res-icon { background: #f59e0b; box-shadow: 0 0 28px rgba(245,158,11,.5); }
@keyframes popIn { from { transform: scale(.3); opacity: 0; } }
.res-sum { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 18px; }
.res-sum > div { flex: 1; min-width: 130px; background: #f6f5fb; border: 1px solid var(--line); border-radius:  3px; padding: 12px 14px; text-align: left; }
.res-sum span { font-size: .66rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); }
.res-sum strong { display: block; margin-top: 5px; font-size: 1.02rem; font-family: 'Space Grotesk'; }

.user-chip { font-size:.84rem; font-weight:600; color:var(--violet); white-space:nowrap; }
.avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--grad);
    display: grid; place-items: center;
    color: #fff; font-family: 'Space Grotesk'; font-weight: 700; font-size: .95rem;
    text-decoration: none;
    box-shadow: 0 6px 18px -6px rgba(236, 72, 153, .6);
    transition: transform .2s, box-shadow .2s;
}
.avatar:hover { transform: translateY(-2px); box-shadow: 0 10px 22px -6px rgba(236, 72, 153, .75); }
.avatar-link { display: inline-flex; text-decoration: none; }
img.avatar { object-fit: cover; }
