/* ══════════════════════════════════════════════════════════════
   TF2KEYS — Design System (pixel-match to mockup)
   Palette: deep navy #080a18, card #111328, accent #7c3aed
   ══════════════════════════════════════════════════════════════ */
:root {
    --bg: #080a18;
    --bg-card: #111328;
    --bg-card-alt: #0d0f22;
    --bg-hero: linear-gradient(135deg, #0e1029 0%, #151840 40%, #1a1048 100%);
    --border: rgba(255,255,255,0.07);
    --border-card: rgba(255,255,255,0.08);

    --accent: #7c3aed;
    --accent-light: #a78bfa;
    --accent-glow: rgba(124,58,237,0.25);
    --accent-gradient: linear-gradient(135deg, #7c3aed, #6d28d9);

    --green: #22c55e;
    --green-check: #4ade80;
    --amber: #f59e0b;

    --text: #f1f2f6;
    --text-sec: #a0a4b8;
    --text-muted: #5a5e73;

    --radius: 16px;
    --radius-sm: 12px;
    --radius-xs: 8px;
}

* { margin:0; padding:0; box-sizing:border-box; }
body {
    font-family:'Inter',-apple-system,sans-serif;
    background:var(--bg); color:var(--text); line-height:1.6;
    -webkit-font-smoothing:antialiased;
    background-image:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(124,58,237,0.10) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 30%, rgba(59,130,246,0.06) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 20% 70%, rgba(124,58,237,0.05) 0%, transparent 50%);
    background-attachment:fixed;
}


a { color:inherit; text-decoration:none; }
img { max-width:100%; display:block; }

.container { max-width:1200px; margin:0 auto; padding:0 32px; }

/* ═══ NAVBAR ═══ */
.navbar {
    position:sticky; top:0; z-index:100;
    background:rgba(8,10,24,0.85);
    backdrop-filter:blur(20px);
    border-bottom:1px solid var(--border);
}
.navbar .container {
    display:flex; align-items:center; justify-content:space-between;
    height:68px;
}
.nav-logo {
    display:flex; align-items:center; gap:10px;
    font-size:20px; font-weight:800; letter-spacing:0.5px;
}
.nav-logo svg { width:28px; height:28px; color:var(--accent); }
.nav-logo span { color:var(--accent-light); }

.nav-links {
    display:flex; align-items:center; gap:32px;
    list-style:none;
}
.nav-links a {
    font-size:14px; font-weight:500; color:var(--text-sec);
    transition:color 0.2s;
}
.nav-links a:hover { color:var(--text); }

.nav-steam {
    display:inline-flex; align-items:center; gap:8px;
    padding:10px 22px;
    background:linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    border:none; border-radius:var(--radius-xs);
    color:#fff; font-size:14px; font-weight:600;
    cursor:pointer; font-family:inherit;
    transition:all 0.2s; text-decoration:none;
    box-shadow:0 4px 16px rgba(124,58,237,0.3);
}
.nav-steam:hover { box-shadow:0 6px 24px rgba(124,58,237,0.4); transform:translateY(-1px); }
.nav-steam svg { width:18px; height:18px; }

/* User pill (logged in) */
.nav-user {
    display:none; align-items:center; gap:10px;
    padding:4px 16px 4px 4px;
    background:var(--bg-card);
    border:1px solid var(--border-card);
    border-radius:100px;
    cursor:pointer; position:relative;
}
.nav-user img { width:34px; height:34px; border-radius:50%; }
.nav-user .u-name {
    font-size:13px; font-weight:600;
    max-width:120px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap;
}
.nav-user-menu {
    position:absolute; top:calc(100% + 8px); right:0;
    background:var(--bg-card); border:1px solid var(--border-card);
    border-radius:var(--radius-sm); padding:6px;
    min-width:180px; box-shadow:0 8px 32px rgba(0,0,0,0.5);
    display:none; z-index:200;
}
.nav-user-menu.show { display:block; }
.nav-user-menu button {
    display:block; width:100%; padding:10px 14px;
    background:none; border:none; border-radius:var(--radius-xs);
    color:var(--text-sec); font-size:13px; font-family:inherit;
    text-align:left; cursor:pointer; transition:0.1s;
}
.nav-user-menu button:hover { background:rgba(255,255,255,0.05); color:var(--text); }
.nav-user-menu .dng { color:#f87171; }


/* ═══ HERO ═══ */
.hero {
    background:#080a18;
    border-radius:0;
    padding:0;
    height:400px;
    margin-bottom:0;
    position:relative;
    overflow:hidden;
}
.hero .container { height:100%; }
.hero::before { display:none; }
.hero::after { display:none; }

.hero-inner {
    display:flex; align-items:center; justify-content:space-between;
    gap:48px; position:relative; z-index:1;
    height:100%; padding:30px 0;
}
.hero-left { max-width:520px; position:relative; z-index:2; }

.hero-badge {
    display:inline-flex; align-items:center; gap:6px;
    padding:6px 16px;
    background:rgba(124,58,237,0.15);
    border:1px solid rgba(124,58,237,0.25);
    border-radius:100px;
    font-size:13px; font-weight:500; color:var(--accent-light);
    margin-bottom:28px;
}
.hero-badge::before {
    content:''; width:6px; height:6px;
    background:var(--accent-light); border-radius:50%;
}

.hero h1 {
    font-size:48px; font-weight:800;
    line-height:1.15; letter-spacing:-1px;
    margin-bottom:20px;
}
.hero h1 .hl {
    background:linear-gradient(135deg, var(--accent-light), #c084fc);
    -webkit-background-clip:text; -webkit-text-fill-color:transparent;
    background-clip:text;
}

.hero-desc {
    font-size:16px; color:var(--text-sec);
    margin-bottom:32px; max-width:420px; line-height:1.7;
}

.hero-buttons { display:flex; gap:12px; }

.btn-hero {
    display:inline-flex; align-items:center; gap:8px;
    padding:14px 28px;
    border-radius:var(--radius-xs);
    font-size:15px; font-weight:600;
    cursor:pointer; font-family:inherit;
    border:none; transition:all 0.2s;
}
.btn-hero.primary {
    background:linear-gradient(135deg, #7c3aed 0%, #6d28d9 50%, #5b21b6 100%);
    color:#fff;
    box-shadow:0 4px 20px rgba(124,58,237,0.35);
}
.btn-hero.secondary {
    background:linear-gradient(135deg, rgba(124,58,237,0.12), rgba(124,58,237,0.2));
    border:1px solid rgba(124,58,237,0.35);
    color:var(--accent-light);
}
.btn-hero:hover { opacity:0.9; transform:translateY(-2px); }
.btn-hero.primary:hover { box-shadow:0 8px 32px rgba(124,58,237,0.45); }

.hero-right {
    position:absolute;
    top:0; right:0; bottom:0; left:0;
    width:100%; height:100%;
    border:none; background:none;
    z-index:0; overflow:hidden;
    border-radius:0;
}
.hero-right img {
    width:100%; height:100%;
    object-fit:cover;
    object-position:center right;
}
.hero-right::after {
    content:'';
    position:absolute;
    inset:0;
    z-index:1;
    pointer-events:none;
    background:
        linear-gradient(to right, #080a18 0%, #080a18 12%, transparent 50%),
        linear-gradient(to left, #080a18 0%, #080a18 5%, transparent 30%),
        linear-gradient(to top, #080a18 0%, transparent 30%),
        linear-gradient(to bottom, #080a18 0%, transparent 25%);
}


/* ═══ TRUST BADGES (3 icons row) ═══ */
.trust-row {
    display:flex; justify-content:center; gap:48px;
    padding:48px 0;
    border-bottom:1px solid var(--border);
}
.trust-item {
    display:flex; align-items:flex-start; gap:14px;
    max-width:220px;
}
.trust-icon {
    width:44px; height:44px; flex-shrink:0;
    background:linear-gradient(135deg, rgba(124,58,237,0.15), rgba(99,102,241,0.08));
    border:1px solid rgba(124,58,237,0.2);
    border-radius:12px;
    display:flex; align-items:center; justify-content:center;
}
.trust-icon svg { width:22px; height:22px; color:var(--accent-light); }
.trust-item h4 { font-size:14px; font-weight:600; margin-bottom:2px; }
.trust-item p { font-size:13px; color:var(--text-sec); line-height:1.5; }


/* ═══ PRICE CARDS ═══ */
.price-section {
    padding:64px 0;
    position:relative;
}
.price-section::before {
    content:'';
    position:absolute; inset:0;
    background:radial-gradient(ellipse 70% 60% at 50% 50%, rgba(124,58,237,0.04) 0%, transparent 70%);
    pointer-events:none;
}

.price-grid {
    display:grid; grid-template-columns:1fr 1fr; gap:24px;
}

.price-card {
    background:#0d1025;
    border:1px solid transparent;
    border-radius:var(--radius);
    padding:36px 32px 32px;
    position:relative;
    overflow:hidden;
    transition:transform 0.3s, box-shadow 0.3s;
    z-index:1;
}

/* Gradient border */
.price-card::before {
    content:''; position:absolute; inset:-1px;
    border-radius:var(--radius); z-index:-2;
    padding:1px;
}
.buy-c::before {
    background:linear-gradient(160deg, rgba(124,58,237,0.5) 0%, rgba(124,58,237,0.1) 35%, rgba(99,102,241,0.15) 100%);
    -webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor; mask-composite:exclude;
}
.sell-c::before {
    background:linear-gradient(160deg, rgba(34,197,94,0.5) 0%, rgba(34,197,94,0.1) 35%, rgba(16,185,129,0.18) 100%);
    -webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor; mask-composite:exclude;
}

/* Inner gradient glow blob */
.price-card::after {
    content:''; position:absolute; z-index:-1;
    border-radius:50%;
    filter:blur(60px);
    pointer-events:none;
}
.buy-c::after {
    width:280px; height:280px;
    top:-80px; left:-80px;
    background:radial-gradient(circle, rgba(124,58,237,0.18) 0%, rgba(99,102,241,0.08) 40%, transparent 70%);
}
.sell-c::after {
    width:280px; height:280px;
    top:-80px; left:-80px;
    background:radial-gradient(circle, rgba(34,197,94,0.15) 0%, rgba(16,185,129,0.06) 40%, transparent 70%);
}

.buy-c { box-shadow:0 0 60px rgba(124,58,237,0.08), inset 0 1px 0 rgba(124,58,237,0.12); }
.sell-c { box-shadow:0 0 60px rgba(34,197,94,0.06), inset 0 1px 0 rgba(34,197,94,0.12); }

.price-card:hover { transform:translateY(-3px); }
.buy-c:hover { box-shadow:0 8px 60px rgba(124,58,237,0.18), inset 0 1px 0 rgba(124,58,237,0.18); }
.sell-c:hover { box-shadow:0 8px 60px rgba(34,197,94,0.14), inset 0 1px 0 rgba(34,197,94,0.18); }

.price-card-inner { display:flex; gap:24px; align-items:flex-start; }
.price-card-content { flex:1; }
.price-card-top {
    display:flex; align-items:flex-start; gap:20px;
    margin-bottom:28px;
}

.price-card-img {
    width:100px; height:100px; flex-shrink:0;
    /* IMAGE PLACEHOLDER */
    border:2px dashed rgba(124,58,237,0.15);
    border-radius:var(--radius-sm);
    display:flex; align-items:center; justify-content:center;
    color:var(--text-muted); font-size:11px;
    background:rgba(124,58,237,0.03);
}

.price-card-info h3 { font-size:20px; font-weight:700; margin-bottom:4px; }
.price-card-info .pc-sub { font-size:13px; color:var(--text-sec); }

.price-label {
    font-size:13px; color:var(--text-muted);
    margin-bottom:6px;
}

.price-value {
    font-family:'JetBrains Mono',monospace;
    margin-bottom:24px;
    display:flex; align-items:baseline; gap:8px;
}
.price-value .num {
    font-size:44px; font-weight:700;
}
.price-card.buy-c .price-value .num { color:var(--accent-light); }
.price-card.sell-c .price-value .num { color:var(--green); }
.price-value .curr {
    font-size:18px; font-weight:600; color:var(--text-sec);
}

.price-checks {
    list-style:none; margin-bottom:28px;
}
.price-checks li {
    display:flex; align-items:center; gap:10px;
    padding:6px 0; font-size:14px; color:var(--text-sec);
}
.price-checks li svg { width:20px; height:20px; flex-shrink:0; }

.price-btn {
    display:block; width:100%; padding:14px;
    border-radius:var(--radius-xs);
    font-size:15px; font-weight:700;
    text-align:center; cursor:pointer;
    font-family:inherit; border:none;
    transition:all 0.2s;
}
.price-btn:hover { opacity:0.9; transform:translateY(-1px); }

.buy-c .price-btn {
    background:linear-gradient(135deg, #7c3aed 0%, #6d28d9 50%, #5b21b6 100%);
    color:#fff;
    box-shadow:0 4px 16px rgba(124,58,237,0.3);
}
.buy-c .price-btn:hover { box-shadow:0 6px 24px rgba(124,58,237,0.4); }
.sell-c .price-btn {
    background:linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #15803d 100%);
    color:#fff;
    box-shadow:0 4px 16px rgba(34,197,94,0.25);
}
.sell-c .price-btn:hover { box-shadow:0 6px 24px rgba(34,197,94,0.35); }


/* ═══ HOW IT WORKS ═══ */
.how-section {
    padding:64px 0;
    border-top:1px solid var(--border);
}
.how-section h2 {
    text-align:center; font-size:28px; font-weight:700;
    margin-bottom:56px;
}

.how-steps {
    display:flex; justify-content:space-between; align-items:flex-start;
    position:relative; max-width:900px; margin:0 auto;
}

/* Dashed connector line */
.how-steps::before {
    content:'';
    position:absolute; top:32px; left:80px; right:80px;
    height:2px;
    background:repeating-linear-gradient(90deg, rgba(124,58,237,0.3) 0, rgba(124,58,237,0.3) 8px, transparent 8px, transparent 16px);
}

.how-step {
    display:flex; flex-direction:column; align-items:center;
    text-align:center; width:200px; position:relative; z-index:1;
}

.step-circle {
    width:64px; height:64px;
    display:flex; align-items:center; justify-content:center;
    margin-bottom:16px; position:relative;
}

.step-num {
    position:absolute; top:-4px; left:-4px;
    width:24px; height:24px;
    background:linear-gradient(135deg, #7c3aed, #a78bfa);
    color:#fff;
    border-radius:50%;
    font-size:12px; font-weight:700;
    display:flex; align-items:center; justify-content:center;
    z-index:2;
    box-shadow:0 2px 8px rgba(124,58,237,0.4);
}

.step-icon {
    width:56px; height:56px;
    background:linear-gradient(145deg, #151840, #111328);
    border:1px solid rgba(124,58,237,0.15);
    border-radius:14px;
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 4px 16px rgba(0,0,0,0.3);
}
.step-icon svg { width:26px; height:26px; color:var(--text-sec); }

.how-step h4 { font-size:14px; font-weight:600; margin-bottom:6px; }
.how-step p { font-size:12px; color:var(--text-sec); line-height:1.5; max-width:160px; }


/* ═══ FAQ ═══ */
.faq-section {
    padding:64px 0;
    border-top:1px solid var(--border);
}
.faq-section h2 {
    text-align:center; font-size:28px; font-weight:700;
    margin-bottom:40px;
}

.faq-grid {
    display:grid; grid-template-columns:1fr 1fr; gap:16px;
    max-width:900px; margin:0 auto 32px;
}

.faq-item {
    background:linear-gradient(160deg, rgba(17,19,40,0.9), rgba(13,15,34,0.9));
    border:1px solid var(--border-card);
    border-radius:var(--radius-sm);
    overflow:hidden;
    transition:border-color 0.2s, box-shadow 0.2s;
}
.faq-item:hover {
    border-color:rgba(124,58,237,0.2);
    box-shadow:0 2px 12px rgba(124,58,237,0.06);
}

.faq-q {
    display:flex; justify-content:space-between; align-items:center;
    padding:18px 20px;
    cursor:pointer;
    font-size:14px; font-weight:500;
    color:var(--text);
    user-select:none;
}

.faq-plus {
    width:28px; height:28px; flex-shrink:0;
    border:1px solid var(--border-card);
    border-radius:6px;
    display:flex; align-items:center; justify-content:center;
    font-size:18px; color:var(--text-muted);
    transition:all 0.2s;
    background:transparent;
}
.faq-item.open .faq-plus { transform:rotate(45deg); color:var(--accent-light); }

.faq-a {
    max-height:0; overflow:hidden;
    transition:max-height 0.3s ease;
}
.faq-item.open .faq-a { max-height:200px; }

.faq-a-inner {
    padding:0 20px 18px;
    font-size:13px; color:var(--text-sec); line-height:1.7;
}
.faq-a-inner a { color:var(--accent-light); }
.faq-a-inner a:hover { text-decoration:underline; }

.faq-more {
    text-align:center;
}
.faq-more a {
    color:var(--accent-light); font-size:14px; font-weight:500;
    transition:color 0.2s;
}
.faq-more a:hover { color:var(--accent); }


/* ═══ FOOTER ═══ */
.footer {
    border-top:1px solid var(--border);
    padding:56px 0 0;
    margin-top:32px;
}

.footer-grid {
    display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr;
    gap:40px; margin-bottom:48px;
}

.footer-brand {
    display:flex; flex-direction:column; gap:12px;
}
.footer-brand .f-logo {
    display:flex; align-items:center; gap:10px;
    font-size:20px; font-weight:800;
}
.footer-brand .f-logo svg { width:28px; height:28px; color:var(--accent); }
.footer-brand p {
    font-size:13px; color:var(--text-muted);
    max-width:240px; line-height:1.6;
}
.footer-socials {
    display:flex; gap:10px; margin-top:4px;
}
.footer-socials a {
    width:36px; height:36px;
    background:linear-gradient(145deg, #151840, #111328);
    border:1px solid var(--border-card);
    border-radius:8px;
    display:flex; align-items:center; justify-content:center;
    color:var(--text-muted); transition:all 0.2s;
}
.footer-socials a:hover { border-color:rgba(124,58,237,0.4); color:var(--accent-light); box-shadow:0 4px 12px rgba(124,58,237,0.15); }
.footer-socials a svg { width:16px; height:16px; }

.footer-col h4 {
    font-size:13px; font-weight:600; color:var(--text);
    margin-bottom:16px;
}
.footer-col a {
    display:block; font-size:13px; color:var(--text-sec);
    padding:5px 0; transition:color 0.15s;
}
.footer-col a:hover { color:var(--text); }
.footer-col a.accent-link { color:var(--accent-light); }

.footer-bottom {
    border-top:1px solid var(--border);
    padding:24px 0;
    display:flex; justify-content:space-between;
    font-size:12px; color:var(--text-muted);
}
.footer-bottom .heart { color:#f87171; }


/* ═══ MODALS ═══ */
.modal-overlay {
    display:none; position:fixed; inset:0;
    background:rgba(0,0,0,0.65); backdrop-filter:blur(8px);
    z-index:500; align-items:center; justify-content:center; padding:24px;
}
.modal-overlay.show { display:flex; }

.modal {
    background:linear-gradient(160deg, #131530 0%, #0f1128 50%, #111328 100%);
    border:1px solid rgba(124,58,237,0.12);
    border-radius:20px; padding:32px; width:100%; max-width:480px;
    max-height:90vh; overflow-y:auto;
    box-shadow:0 12px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(124,58,237,0.06);
    position:relative;
}
.modal-x {
    position:absolute; top:16px; right:16px;
    width:32px; height:32px; background:rgba(255,255,255,0.05);
    border:1px solid var(--border-card); border-radius:8px;
    color:var(--text-muted); font-size:16px; cursor:pointer;
    display:flex; align-items:center; justify-content:center;
}
.modal-x:hover { color:var(--text); border-color:rgba(255,255,255,0.15); }
.modal h2 { font-size:22px; font-weight:700; margin-bottom:6px; }
.modal .msub { font-size:14px; color:var(--text-sec); margin-bottom:24px; }

.fld { margin-bottom:18px; }
.fld label { display:block; font-size:13px; font-weight:500; color:var(--text-sec); margin-bottom:6px; }
.fld input {
    width:100%; padding:12px 14px;
    background:rgba(255,255,255,0.04); border:1px solid var(--border-card);
    border-radius:var(--radius-xs); color:var(--text);
    font-size:14px; font-family:inherit; outline:none;
    transition:border-color 0.2s;
}
.fld input:focus { border-color:rgba(124,58,237,0.5); }
.fld input::placeholder { color:var(--text-muted); }
.fld .hint { font-size:12px; color:var(--text-muted); margin-top:6px; }
.fld .hint a { color:var(--accent-light); }

.qc { display:flex; gap:8px; align-items:center; }
.qc input { flex:1; }
.qb {
    padding:8px 16px; background:rgba(255,255,255,0.04);
    border:1px solid var(--border-card); border-radius:var(--radius-xs);
    color:var(--text-sec); font-size:13px; cursor:pointer; font-family:inherit;
}
.qb:hover { border-color:rgba(255,255,255,0.15); color:var(--text); }

.calc-row {
    display:flex; justify-content:space-between; align-items:center;
    padding:16px 0; border-top:1px solid var(--border); margin-top:8px;
}
.calc-label { color:var(--text-sec); font-size:14px; }
.calc-val { font-family:'JetBrains Mono',monospace; font-size:24px; font-weight:600; }

.sbtn {
    width:100%; padding:14px; border:none;
    border-radius:var(--radius-xs); font-size:15px;
    font-weight:700; cursor:pointer; font-family:inherit;
    transition:all 0.2s; margin-top:8px;
}
.sbtn:disabled { opacity:0.4; cursor:not-allowed; }
.sbtn:hover:not(:disabled) { opacity:0.9; transform:translateY(-1px); }
.sbtn-purple { background:linear-gradient(135deg, #7c3aed 0%, #6d28d9 50%, #5b21b6 100%); color:#fff; box-shadow:0 4px 16px rgba(124,58,237,0.3); }
.sbtn-purple:hover:not(:disabled) { box-shadow:0 6px 24px rgba(124,58,237,0.4); }
.sbtn-green { background:linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #15803d 100%); color:#fff; box-shadow:0 4px 16px rgba(34,197,94,0.25); }
.sbtn-green:hover:not(:disabled) { box-shadow:0 6px 24px rgba(34,197,94,0.35); }

.ebox { background:rgba(248,113,113,0.1); border:1px solid #f87171; color:#f87171; padding:12px; border-radius:var(--radius-xs); font-size:13px; margin-top:12px; display:none; }
.ebox.show { display:block; }

.rd { display:flex; justify-content:space-between; padding:12px 0; border-bottom:1px solid var(--border); font-size:14px; }
.rd:last-of-type { border:none; }
.rd .rk { color:var(--text-sec); }
.rd .rv { font-family:'JetBrains Mono',monospace; font-weight:500; text-align:right; word-break:break-all; max-width:55%; }

.pbox { margin-top:16px; padding:18px; background:rgba(255,255,255,0.03); border:1px dashed rgba(124,58,237,0.3); border-radius:var(--radius-sm); text-align:center; cursor:pointer; }
.pbox:hover { border-color:var(--accent); }
.pbox .pl { font-size:13px; color:var(--text-sec); margin-bottom:8px; }
.pbox .pa { font-family:'JetBrains Mono',monospace; font-size:13px; word-break:break-all; color:var(--accent-light); }
.pbox .ph { font-size:11px; color:var(--text-muted); margin-top:6px; }

.timer { font-family:'JetBrains Mono',monospace; font-size:28px; font-weight:600; text-align:center; color:var(--amber); margin:16px 0; }
.vbtn { width:100%; padding:12px; background:linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%); color:#fff; border:none; border-radius:var(--radius-xs); font-size:14px; font-weight:600; cursor:pointer; font-family:inherit; margin-top:12px; box-shadow:0 4px 16px rgba(124,58,237,0.3); }
.vbtn:disabled { opacity:0.4; }

.smsg { margin-top:12px; padding:12px; border-radius:var(--radius-xs); font-size:13px; display:none; }
.smsg.ok { display:block; background:rgba(34,197,94,0.1); border:1px solid var(--green); color:var(--green); }
.smsg.wt { display:block; background:rgba(245,158,11,0.1); border:1px solid var(--amber); color:var(--amber); }
.smsg.er { display:block; background:rgba(248,113,113,0.1); border:1px solid #f87171; color:#f87171; }

.sinfo { margin-top:16px; padding:16px; background:rgba(255,255,255,0.03); border-radius:var(--radius-sm); font-size:14px; color:var(--text-sec); line-height:1.7; }

/* Orders modal */
.olist { margin-top:16px; }
.orow { display:flex; align-items:center; gap:12px; padding:14px 0; border-bottom:1px solid var(--border); font-size:13px; }
.obdg { padding:3px 10px; border-radius:6px; font-size:11px; font-weight:600; }
.obdg-buy { background:rgba(124,58,237,0.15); color:var(--accent-light); }
.obdg-sell { background:rgba(34,197,94,0.15); color:var(--green); }
.obdg-completed { background:rgba(34,197,94,0.2); color:var(--green); }
.obdg-pending,.obdg-awaiting_payment,.obdg-paid { background:rgba(124,58,237,0.15); color:var(--accent-light); }
.obdg-expired,.obdg-cancelled { background:rgba(248,113,113,0.15); color:#f87171; }
.orow .oinf { flex:1; }
.orow .mono { font-family:'JetBrains Mono',monospace; font-size:12px; color:var(--text-muted); }
.oamt { font-family:'JetBrains Mono',monospace; font-weight:600; }
.no-o { text-align:center; padding:40px; color:var(--text-muted); font-size:14px; }


/* ═══ RESPONSIVE ═══ */
@media(max-width:900px) {
    .hero-inner { flex-direction:column; text-align:center; }
    .hero-left { max-width:100%; }
    .hero-desc { margin-left:auto; margin-right:auto; }
    .hero-buttons { justify-content:center; }
    .hero-right { width:100%; max-width:400px; height:240px; }
    .trust-row { flex-direction:column; align-items:center; gap:24px; }
    .price-grid { grid-template-columns:1fr; }
    .how-steps { flex-wrap:wrap; gap:32px; justify-content:center; }
    .how-steps::before { display:none; }
    .faq-grid { grid-template-columns:1fr; }
    .footer-grid { grid-template-columns:1fr 1fr; gap:32px; }
}
@media(max-width:600px) {
    .container { padding:0 16px; }
    .hero h1 { font-size:32px; }
    .nav-links { display:none; }
    .footer-grid { grid-template-columns:1fr; }
    .footer-bottom { flex-direction:column; gap:8px; text-align:center; }
}

/* ═══ AURORA BLOBS (animated background) ═══ */
.aurora {
    position:fixed; inset:0; z-index:-10;
    pointer-events:none; overflow:hidden;
}
.aurora-blob {
    position:absolute;
    border-radius:50%;
    filter:blur(100px);
    opacity:0.5;
    animation:aurora-drift 20s ease-in-out infinite alternate;
    will-change:transform;
}
.aurora-blob:nth-child(1) {
    width:500px; height:500px;
    top:-10%; left:10%;
    background:radial-gradient(circle, rgba(124,58,237,0.12), transparent 70%);
    animation-duration:22s;
}
.aurora-blob:nth-child(2) {
    width:400px; height:400px;
    top:40%; right:-5%;
    background:radial-gradient(circle, rgba(59,130,246,0.08), transparent 70%);
    animation-duration:18s;
    animation-delay:-5s;
}
.aurora-blob:nth-child(3) {
    width:350px; height:350px;
    bottom:5%; left:20%;
    background:radial-gradient(circle, rgba(124,58,237,0.06), transparent 70%);
    animation-duration:25s;
    animation-delay:-10s;
}

@keyframes aurora-drift {
    0%   { transform:translate(0, 0) scale(1); }
    33%  { transform:translate(60px, -40px) scale(1.1); }
    66%  { transform:translate(-30px, 50px) scale(0.95); }
    100% { transform:translate(40px, 20px) scale(1.05); }
}

/* ═══════════════════════════════════════════════════════════
   OVERRIDES — single clean block, no duplicates
   ═══════════════════════════════════════════════════════════ */

/* Aurora disabled */
.aurora { display:none !important; }

/* Trust badges — no gap after hero */
.trust-row { margin-top:0; padding-top:32px; }

/* ═══ PRICE CARDS ═══ */
.price-card {
    display:flex;
    gap:24px;
    align-items:flex-start;
    padding:32px 28px;
    overflow:hidden;
    z-index:1;
}

.buy-c {
    background:linear-gradient(160deg, rgba(45,27,94,0.5) 0%, rgba(26,16,64,0.5) 30%, rgba(22,16,53,0.5) 60%, rgba(19,16,40,0.5) 100%);
    box-shadow:0 0 60px rgba(124,58,237,0.08), inset 0 1px 0 rgba(124,58,237,0.12);
}
.sell-c {
    background:linear-gradient(160deg, rgba(15,61,42,0.5) 0%, rgba(11,42,30,0.5) 30%, rgba(10,32,24,0.5) 60%, rgba(9,26,20,0.5) 100%);
    box-shadow:0 0 60px rgba(34,197,94,0.10), inset 0 1px 0 rgba(34,197,94,0.15);
}

.price-card:hover { transform:translateY(-3px); }
.buy-c:hover { box-shadow:0 8px 60px rgba(124,58,237,0.18), inset 0 1px 0 rgba(124,58,237,0.18); }
.sell-c:hover { box-shadow:0 8px 60px rgba(34,197,94,0.14), inset 0 1px 0 rgba(34,197,94,0.18); }

/* Card glow blobs — 50% fill */
.buy-c::after {
    width:400px; height:400px;
    top:-80px; left:-80px;
    background:radial-gradient(circle, rgba(124,58,237,0.15) 0%, rgba(99,102,241,0.06) 30%, transparent 50%);
}
.sell-c::after {
    width:400px; height:400px;
    top:-80px; left:-80px;
    background:radial-gradient(circle, rgba(34,197,94,0.15) 0%, rgba(16,185,129,0.06) 30%, transparent 50%);
}

/* Card image */
.price-card-img {
    flex-shrink:0;
    width:140px; height:140px;
    border:none; background:none;
    display:flex; align-items:center; justify-content:center;
    margin-top:0;
}
.price-card-img img {
    width:140px; height:140px;
    object-fit:contain;
    opacity:1; filter:none;
}
.price-card:hover .price-card-img img { opacity:1; filter:none; }

.price-card-body { flex:1; min-width:0; }
.price-card-body h3 { font-size:22px; font-weight:700; margin-bottom:2px; }
.price-card-body .pc-sub { font-size:14px; color:var(--text-sec); margin-bottom:16px; }
.price-card-body .price-label { margin-bottom:4px; }
.price-card-body .price-value { margin-bottom:20px; }
.price-card-body .price-btn { margin-top:4px; }

