/* =====================================
   AP SERVERS — FULL STYLESHEET
   Green theme, grid bg, payment modal
===================================== */

/* ── Variables ── */
:root {
    --bg:              #06090a;
    --bg-card:         #0b1210;
    --bg-card-hover:   #111e18;
    --border:          rgba(34, 197, 94, 0.10);
    --border-hover:    rgba(34, 197, 94, 0.30);
    --accent:          #16a34a;
    --accent-light:    #22c55e;
    --accent-bright:   #4ade80;
    --accent-dim:      rgba(34, 197, 94, 0.08);
    --accent-glow:     rgba(34, 197, 94, 0.22);
    --text:            #e2e8f0;
    --text-muted:      #94a3b8;
    --text-dim:        #64748b;
    --white:           #ffffff;
    --success:         #22c55e;
    --warning:         #f59e0b;
    --danger:          #ef4444;
    --radius:          16px;
    --radius-sm:       10px;
    --shadow:          0 8px 48px rgba(0,0,0,0.6);
    --shadow-card:     0 2px 24px rgba(0,0,0,0.35);
    --transition:      0.3s cubic-bezier(0.4,0,0.2,1);
    --font:            'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
.hidden { display: none !important; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; transition: var(--transition); }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
ul   { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Grid overlay ── */
.grid-overlay {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(34,197,94,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34,197,94,.045) 1px, transparent 1px);
    background-size: 52px 52px;
    pointer-events: none;
    z-index: 0;
}

/* ── Typography utils ── */
.gradient-text {
    background: linear-gradient(120deg, var(--accent), var(--accent-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 16px;
    background: var(--accent-dim);
    border: 1px solid var(--border-hover);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent-bright);
    margin-bottom: 18px;
}
.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
    color: var(--white);
    letter-spacing: -.02em;
}
.section-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    white-space: nowrap;
    cursor: pointer;
}
.btn-primary {
    background: linear-gradient(130deg, var(--accent), var(--accent-light));
    color: var(--white);
    box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px var(--accent-glow); filter: brightness(1.08); }
.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255,255,255,.15);
}
.btn-ghost:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.28); color: var(--white); }
.btn-lg { padding: 14px 36px; font-size: 16px; }
.btn-sm { padding: 8px 18px; font-size: 13px; }

/* ── AP Logo SVG ── */
.ap-svg-logo { width: 38px; height: 24px; }
.modal-ap-logo { width: 32px; height: 20px; }
.ap-img-logo { width: 36px; height: 36px; object-fit: contain; }
.modal-ap-img-logo { width: 28px; height: 28px; object-fit: contain; }

/* ========================================
   NAVBAR
======================================== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(6,9,10,.9);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}
.nav-inner { display: flex; align-items: center; gap: 36px; }
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
}
.nav-links { display: flex; align-items: center; gap: 4px; flex: 1; }
.nav-support-mobile { display: none; }
.nav-links a {
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.06); }
.nav-actions { flex-shrink: 0; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; flex-shrink: 0; border-radius: 8px; transition: var(--transition); }
.nav-toggle:hover { background: rgba(255,255,255,.06); }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* ========================================
   HERO
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 130px 0 90px;
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-glow {
    position: absolute;
    top: -280px; left: 50%;
    transform: translateX(-50%);
    width: 900px; height: 900px;
    background: radial-gradient(circle, rgba(34,197,94,.13) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-glow-2 {
    position: absolute;
    bottom: -200px; left: 20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(22,163,74,.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
/* Starfield */
.hero-bg::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(1px 1px at 8%  18%, rgba(255,255,255,.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 22% 72%, rgba(255,255,255,.38) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 38%  8%, rgba(255,255,255,.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 55% 88%, rgba(255,255,255,.32) 0%, transparent 100%),
        radial-gradient(1px 1px at 68% 28%, rgba(255,255,255,.45) 0%, transparent 100%),
        radial-gradient(1px 1px at 13% 90%, rgba(255,255,255,.38) 0%, transparent 100%),
        radial-gradient(1px 1px at 82% 55%, rgba(255,255,255,.45) 0%, transparent 100%),
        radial-gradient(1px 1px at 47% 42%, rgba(255,255,255,.28) 0%, transparent 100%),
        radial-gradient(1px 1px at 92% 15%, rgba(255,255,255,.42) 0%, transparent 100%),
        radial-gradient(1px 1px at 3%  60%, rgba(255,255,255,.32) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 73% 78%, rgba(255,255,255,.55) 0%, transparent 100%),
        radial-gradient(1px 1px at 29% 38%, rgba(255,255,255,.42) 0%, transparent 100%),
        radial-gradient(1px 1px at 60% 65%, rgba(255,255,255,.32) 0%, transparent 100%),
        radial-gradient(1px 1px at 87% 92%, rgba(255,255,255,.38) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 43% 95%, rgba(255,255,255,.5) 0%, transparent 100%);
    pointer-events: none;
}
.hero-inner { position: relative; text-align: center; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--accent-dim);
    border: 1px solid var(--border-hover);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-bright);
    margin-bottom: 28px;
}
.badge-dot {
    width: 8px; height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:.45; transform:scale(.72); }
}
.hero-title {
    font-size: clamp(38px, 6.5vw, 76px);
    font-weight: 900;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 22px;
    letter-spacing: -.025em;
}
.hero-subtitle { font-size: clamp(16px,2vw,20px); color: var(--text-muted); margin-bottom: 44px; line-height: 1.75; }
.hero-buttons { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 56px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 14px; color: var(--text-muted); font-weight: 500; }
.trust-item svg { width: 16px; height: 16px; color: var(--success); flex-shrink: 0; }

/* ========================================
   STATS
======================================== */
.stats {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(34,197,94,.018);
    position: relative; z-index: 1;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.stat-item { text-align: center; padding: 24px 16px; }
.stat-number {
    font-size: clamp(28px,3.5vw,38px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(130deg, var(--white), var(--accent-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-suffix { font-size: .65em; }
.stat-small  { font-size: .5em; font-weight: 600; margin-left: 2px; }
.stat-label  { font-size: 12px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .07em; }

/* ========================================
   ABOUT US
======================================== */
.about { padding: 90px 0; position: relative; z-index: 1; }
.about-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 60px 56px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}
/* Starfield inside about card */
.about-stars-bg {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(1px 1px at 5% 15%, rgba(255,255,255,.35) 0%, transparent 100%),
        radial-gradient(1px 1px at 18% 68%, rgba(255,255,255,.28) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 33% 6%,  rgba(255,255,255,.45) 0%, transparent 100%),
        radial-gradient(1px 1px at 52% 85%, rgba(255,255,255,.25) 0%, transparent 100%),
        radial-gradient(1px 1px at 65% 25%, rgba(255,255,255,.38) 0%, transparent 100%),
        radial-gradient(1px 1px at 78% 50%, rgba(255,255,255,.32) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 80%, rgba(255,255,255,.28) 0%, transparent 100%),
        radial-gradient(1px 1px at 42% 40%, rgba(255,255,255,.22) 0%, transparent 100%);
    pointer-events: none;
}
.about-card::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(34,197,94,.07) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}
.about-content { position: relative; z-index: 1; }
.about-title {
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 800;
    line-height: 1.25;
    color: var(--white);
    margin-bottom: 18px;
    letter-spacing: -.02em;
}
.about-desc { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 32px; }
.about-stats { display: flex; gap: 40px; }
.about-stat-num {
    font-size: 30px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 5px;
}
.about-stat-lbl { font-size: 11px; color: var(--text-dim); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }

/* Discord window in About */
.about-discord { position: relative; z-index: 1; }
.discord-window {
    background: #1e1f22;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.06);
    box-shadow: 0 16px 48px rgba(0,0,0,.5);
}
.discord-titlebar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 13px 18px;
    background: #2b2d31;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.wdot { width: 10px; height: 10px; border-radius: 50%; }
.wdot.red    { background: #ef4444; }
.wdot.yellow { background: #f59e0b; }
.wdot.green  { background: #22c55e; }
.discord-ch { margin-left: 8px; font-size: 13px; color: #b5bac1; font-weight: 500; }

.discord-msgs { display: flex; flex-direction: column; gap: 20px; padding: 22px 18px 26px; }

.d-msg { display: flex; align-items: flex-start; gap: 12px; opacity: 0; transform: translateY(10px); transition: opacity .5s ease, transform .5s ease; }
.d-msg.visible { opacity: 1; transform: translateY(0); }

.d-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px; color: white;
    flex-shrink: 0;
}
.d-body { flex: 1; }
.d-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 3px; }
.d-name { font-size: 14px; font-weight: 700; }
.d-time { font-size: 11px; color: #72767d; }
.d-text { font-size: 14px; color: #dcddde; line-height: 1.5; }

.d-boost {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #b5bac1;
    padding: 6px 10px;
    background: rgba(34,197,94,.08);
    border-radius: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .5s ease, transform .5s ease;
}
.d-boost.visible { opacity: 1; transform: translateY(0); }
.boost-pulse {
    width: 10px; height: 10px;
    background: var(--success);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-dot 1.6s ease-in-out infinite;
}
.d-boost strong { color: var(--accent-bright); }

/* ========================================
   FEATURES
======================================== */
.features { padding: 100px 0; position: relative; z-index: 1; }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.feature-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}
.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.feature-icon {
    width: 52px; height: 52px;
    background: var(--accent-dim);
    border: 1px solid var(--border-hover);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}
.feature-card:hover .feature-icon { background: rgba(34,197,94,.15); }
.feature-icon svg { width: 24px; height: 24px; color: var(--accent-bright); }
.feature-card h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.feature-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ========================================
   SHOP / PRODUCTS
======================================== */
.shop {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(34,197,94,.018) 50%, transparent);
    position: relative; z-index: 1;
}

/* Category buttons */
.product-categories { display: flex; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    border: 1px solid var(--border);
    background: transparent;
    transition: var(--transition);
}
.cat-btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.cat-btn:hover { color: var(--white); background: var(--accent-dim); border-color: var(--border-hover); }
.cat-btn.active { color: var(--accent-bright); background: var(--accent-dim); border-color: var(--border-hover); font-weight: 600; }

/* Product grid */
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.product-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 20px 56px rgba(0,0,0,.5), 0 0 0 1px var(--border-hover);
}

/* "BEST SELLING" badge */
.sell-badge {
    position: absolute;
    top: 12px; left: 12px;
    z-index: 10;
    padding: 4px 12px;
    background: linear-gradient(130deg, var(--accent), var(--accent-light));
    color: white;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: 100px;
    box-shadow: 0 2px 12px rgba(34,197,94,.4);
}

/* Product banner area */
.product-banner {
    height: 175px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 28px;
    background: #0a1510;
}

/* Decorative background circles */
.bdc {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(34,197,94,.18);
    pointer-events: none;
}
.bdc1 { width: 220px; height: 220px; top: -60px; right: -60px; }
.bdc2 { width: 140px; height: 140px; top: -20px; right: 110px; border-color: rgba(34,197,94,.10); }

/* Banner emoji/icon */
.banner-emoji {
    position: absolute;
    left: 24px; bottom: 10px;
    font-size: 58px;
    filter: drop-shadow(0 0 16px rgba(34,197,94,.35));
    z-index: 1;
    line-height: 1;
}

/* Banner product name text */
.banner-title {
    position: relative;
    z-index: 2;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -.01em;
    line-height: 1.15;
    text-align: right;
    text-transform: uppercase;
}
.bt-a { color: var(--accent-bright); display: block; }
.bt-w { color: var(--white); display: block; }

/* Per-banner glow tints */
.banner-boosts   { background: radial-gradient(ellipse at 80% 50%, rgba(34,197,94,.14) 0%, #0a1510 55%); }
.banner-nitro    { background: radial-gradient(ellipse at 80% 50%, rgba(99,102,241,.14) 0%, #0a0c15 55%); }
.banner-members  { background: radial-gradient(ellipse at 80% 50%, rgba(168,85,247,.14) 0%, #100a15 55%); }
.banner-accounts { background: radial-gradient(ellipse at 80% 50%, rgba(245,158,11,.12) 0%, #14100a 55%); }
.banner-tokens   { background: radial-gradient(ellipse at 80% 50%, rgba(56,189,248,.12) 0%, #0a1015 55%); }
.banner-bot      { background: radial-gradient(ellipse at 80% 50%, rgba(239,68,68,.12) 0%, #150a0a 55%); }
.banner-sa       { background: radial-gradient(ellipse at 80% 50%, rgba(34,197,94,.18) 0%, #071209 55%); }

/* Product info below banner */
.product-info { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.product-name { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.product-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 18px; flex: 1; }

/* SellAuth dynamic product price row */
.sa-price-row    { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.sa-price-tag    { font-size: 15px; font-weight: 700; color: var(--accent-bright); }
.sa-out-badge    { font-size: 11px; font-weight: 700; color: #ef4444; background: rgba(239,68,68,.12); padding: 2px 8px; border-radius: 100px; }

/* Loading / error states for the product grid */
.sa-loading {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 80px 20px;
    color: var(--text-muted);
    font-size: 14px;
}
.sa-spinner {
    width: 40px; height: 40px;
    border: 3px solid rgba(74,222,128,.15);
    border-top-color: var(--accent-bright);
    border-radius: 50%;
    animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.sa-error {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

/* Browse button */
.btn-browse {
    width: 100%;
    padding: 12px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}
.btn-browse:hover {
    background: var(--accent-dim);
    border-color: var(--border-hover);
    color: var(--accent-bright);
}

/* ========================================
   REVIEWS
======================================== */
.reviews { padding: 100px 0; position: relative; z-index: 1; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.review-card {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    display: flex; flex-direction: column; gap: 16px;
}
.review-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.review-stars { font-size: 15px; color: var(--warning); letter-spacing: 3px; }
.review-text  { font-size: 14px; color: var(--text-muted); line-height: 1.75; flex: 1; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(130deg, var(--accent), var(--accent-light));
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 15px; color: white; flex-shrink: 0;
}
.author-name { font-size: 14px; font-weight: 600; color: var(--white); }
.author-meta { font-size: 12px; color: var(--text-dim); margin-top: 1px; }

/* ========================================
   FAQ
======================================== */
.faq {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(34,197,94,.018) 50%, transparent);
    position: relative; z-index: 1;
}
.faq-container { max-width: 780px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--border-hover); }
.faq-question {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; padding: 20px 24px;
    text-align: left;
    font-size: 15px; font-weight: 600; color: var(--white);
    transition: color var(--transition);
}
.faq-question:hover { color: var(--accent-bright); }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; transition: transform var(--transition), color var(--transition); color: var(--text-muted); }
.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--accent-bright); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1); }
.faq-answer p { padding: 0 24px 20px; font-size: 14px; color: var(--text-muted); line-height: 1.75; }

/* ========================================
   SUPPORT
======================================== */
.support { padding: 100px 0; position: relative; z-index: 1; }
.support-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.support-content .section-tag { display: inline-flex; margin-bottom: 16px; }
.support-content .section-title    { text-align: left; margin-bottom: 12px; }
.support-content .section-subtitle { text-align: left; margin: 0 0 32px; max-width: 100%; }
.support-stats { display: flex; gap: 32px; margin-bottom: 28px; }
.support-stat-num { font-size: 26px; font-weight: 900; color: var(--white); margin-bottom: 4px; }
.support-stat-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .07em; font-weight: 600; }
.support-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.support-feature { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-muted); font-weight: 500; }
.support-feature svg { width: 15px; height: 15px; color: var(--success); flex-shrink: 0; }

.support-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.chat-header { display: flex; align-items: center; gap: 6px; padding: 14px 20px; background: rgba(255,255,255,.025); border-bottom: 1px solid var(--border); }
.chat-dot { width: 10px; height: 10px; border-radius: 50%; }
.chat-dot.red    { background: #ef4444; }
.chat-dot.yellow { background: #f59e0b; }
.chat-dot.green  { background: #22c55e; }
.chat-channel { margin-left: 8px; font-size: 13px; color: var(--text-muted); font-weight: 500; }
.chat-messages { display: flex; flex-direction: column; gap: 18px; padding: 24px 20px; }
.chat-msg { display: flex; align-items: flex-start; gap: 10px; }
.chat-msg.user { flex-direction: row-reverse; }
.chat-avatar { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; flex-shrink: 0; }
.bot-avatar  { background: linear-gradient(130deg, var(--accent), var(--accent-light)); color: white; }
.user-avatar { background: rgba(255,255,255,.08); color: var(--text-muted); }
.chat-bubble { padding: 10px 14px; border-radius: 14px; font-size: 13px; line-height: 1.55; max-width: calc(100% - 54px); }
.chat-msg.bot  .chat-bubble { background: var(--accent-dim); border: 1px solid var(--border); color: var(--text); border-radius: 2px 14px 14px 14px; }
.chat-msg.user .chat-bubble { background: rgba(255,255,255,.055); color: var(--text-muted); border-radius: 14px 2px 14px 14px; }

/* ========================================
   CONTACT TAB SECTION
======================================== */
.contact-tab-section {
    position: relative; z-index: 1;
    padding: 80px 0 72px;
    border-top: 1px solid var(--border);
}
.contact-tab-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}
.contact-tab-left { flex: 1; min-width: 260px; }
.contact-tab-right { flex-shrink: 0; }
.contact-tab-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 240px;
    transition: var(--transition);
}
.contact-tab-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    box-shadow: 0 8px 40px var(--accent-glow);
}
.contact-tab-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-hover);
    background: #111;
}
.contact-tab-info { text-align: center; }
.contact-tab-name { font-size: 18px; font-weight: 800; color: var(--accent-bright); }
.contact-tab-role { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin-top: 2px; }
.contact-tab-discord {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 8px 18px; border-radius: 100px; font-size: 13px; font-weight: 600;
    background: var(--bg-card-hover); border: 1px solid var(--border-hover);
    color: var(--text); text-decoration: none; transition: var(--transition);
}
.contact-tab-discord:hover { background: rgba(88,101,242,.18); border-color: rgba(88,101,242,.5); color: var(--white); }
.contact-tab-store {
    display: flex; align-items: center; gap: 7px;
    font-size: 12px; color: var(--text-muted);
}
.contact-tab-store span { color: var(--accent-bright); font-weight: 600; }
.contact-tab-live {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 11px; font-weight: 600; color: var(--accent-bright) !important;
}
.status-dot-sm {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent-bright); box-shadow: 0 0 5px var(--accent-bright);
    animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.35} }
@media (max-width: 720px) {
    .contact-tab-inner { flex-direction: column; align-items: flex-start; }
    .contact-tab-right { width: 100%; }
    .contact-tab-card { width: 100%; }
}

/* ========================================
   FOOTER
======================================== */
.footer { border-top: 1px solid var(--border); background: rgba(0,0,0,.18); position: relative; z-index: 1; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: 80px; padding: 64px 24px 48px; max-width: 1200px; margin: 0 auto; }
.footer-logo { margin-bottom: 16px; }
.footer-desc { font-size: 14px; color: var(--text-muted); line-height: 1.75; max-width: 280px; }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.footer-col h4 { font-size: 12px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: .09em; margin-bottom: 16px; }
.footer-col a  { display: block; font-size: 14px; color: var(--text-muted); margin-bottom: 10px; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 24px; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; max-width: 1200px; margin: 0 auto; }
.footer-bottom p  { font-size: 13px; color: var(--text-dim); }

/* ========================================
   SCROLL REVEAL
======================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.features-grid .feature-card:nth-child(1) { transition-delay:   0ms; }
.features-grid .feature-card:nth-child(2) { transition-delay:  80ms; }
.features-grid .feature-card:nth-child(3) { transition-delay: 160ms; }
.features-grid .feature-card:nth-child(4) { transition-delay: 240ms; }
.features-grid .feature-card:nth-child(5) { transition-delay: 320ms; }
.features-grid .feature-card:nth-child(6) { transition-delay: 400ms; }
.product-grid  .product-card:nth-child(1) { transition-delay:   0ms; }
.product-grid  .product-card:nth-child(2) { transition-delay:  80ms; }
.product-grid  .product-card:nth-child(3) { transition-delay: 160ms; }
.product-grid  .product-card:nth-child(4) { transition-delay: 240ms; }
.product-grid  .product-card:nth-child(5) { transition-delay: 320ms; }
.product-grid  .product-card:nth-child(6) { transition-delay: 400ms; }
.reviews-grid  .review-card:nth-child(1)  { transition-delay:   0ms; }
.reviews-grid  .review-card:nth-child(2)  { transition-delay:  80ms; }
.reviews-grid  .review-card:nth-child(3)  { transition-delay: 160ms; }
.reviews-grid  .review-card:nth-child(4)  { transition-delay: 240ms; }
.reviews-grid  .review-card:nth-child(5)  { transition-delay: 320ms; }
.reviews-grid  .review-card:nth-child(6)  { transition-delay: 400ms; }

/* ========================================
   PAYMENT MODAL
======================================== */
.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }

.modal {
    background: #f5f5f5;
    border-radius: 18px;
    width: 100%;
    max-width: 440px;
    overflow: hidden;
    box-shadow: 0 32px 96px rgba(0,0,0,.7);
    transform: scale(.95) translateY(12px);
    transition: transform .28s cubic-bezier(.34,1.56,.64,1), opacity .28s ease;
    color: #1a1a1a;
}
.modal-overlay.active .modal { transform: scale(1) translateY(0); }

/* Modal header — white bg */
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px 14px;
    background: #ffffff;
    border-bottom: 1px solid #ededed;
}
.modal-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 800;
    color: #1a1a1a;
}
.modal-back, .modal-close {
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(0,0,0,.06);
    color: #555;
    transition: var(--transition);
    flex-shrink: 0;
}
.modal-back:hover, .modal-close:hover { background: rgba(0,0,0,.1); color: #000; }
.modal-back svg, .modal-close svg { width: 16px; height: 16px; }
.modal-back.hidden { visibility: hidden; pointer-events: none; }

.modal-step { display: flex; flex-direction: column; }
.modal-step.hidden { display: none; }
.modal-body { padding: 22px 20px 12px; flex: 1; overflow-y: auto; max-height: 68vh; }

/* Payment method labels */
.pay-section-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    color: #888;
    text-transform: uppercase;
    margin: 16px 0 10px;
}
.pay-section-label:first-child { margin-top: 0; }

/* Crypto 2×2 grid */
.pay-crypto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* All payment method buttons (shared) */
.pay-method {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #ffffff;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s;
    text-align: left;
    width: 100%;
}
.pay-method:hover   { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(34,197,94,.12); }
.pay-method.selected{ border-color: var(--accent); box-shadow: 0 0 0 3px rgba(34,197,94,.14); background: rgba(34,197,94,.04); }

.pay-wide { justify-content: space-between; }
.pw-left  { display: flex; align-items: center; gap: 10px; }

/* Coin icons */
.coin-icon {
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 800;
    flex-shrink: 0;
    border: 1.5px solid rgba(0,0,0,.06);
}
.coin-icon.ltc  { background: #cccccc; color: #3a3a3a; }
.coin-icon.sol  { background: linear-gradient(135deg,#9945ff,#14f195); color: white; font-size: 16px; }
.coin-icon.usdc { background: #2775ca; color: white; font-weight: 900; }
.coin-icon.bnb  { background: #f3ba2f; color: #1a1a1a; font-size: 16px; }
.coin-icon.card { background: #f0f0f0; color: #333; font-size: 18px; }
.coin-icon.pp   { background: #003087; color: white; font-weight: 900; font-size: 15px; font-style: italic; }
.coin-icon.sa   { background: linear-gradient(135deg,#16a34a,#4ade80); color: white; font-weight: 900; font-size: 15px; }

/* Fee badges */
.fee-badge {
    padding: 3px 9px;
    background: #f0f0f0;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: #555;
}
.fee-sm    { background: rgba(245,158,11,.12); color: #b45309; }
.fee-green { background: rgba(34,197,94,.15);  color: #15803d; }

/* Modal footer area */
.modal-foot {
    padding: 12px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #f5f5f5;
    border-top: 1px solid #ededed;
}
.btn-modal-cta {
    width: 100%;
    padding: 13px;
    background: #1a1a1a;
    color: white;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .15s;
    font-family: inherit;
}
.btn-modal-cta:hover:not(:disabled) { background: #333; transform: translateY(-1px); }
.btn-modal-cta:disabled { opacity: .45; cursor: not-allowed; }
.modal-powered { font-size: 11px; color: #aaa; text-align: center; }
.modal-powered strong { color: var(--accent); }

/* Email step */
.modal-label { display: block; font-size: 13px; font-weight: 600; color: #333; margin-bottom: 10px; }
.req { color: var(--danger); }
.modal-input {
    width: 100%;
    padding: 12px 14px;
    background: white;
    border: 1.5px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    color: #1a1a1a;
    font-family: inherit;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}
.modal-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(34,197,94,.12); }
.modal-terms { font-size: 11px; color: #999; text-align: center; line-height: 1.5; }
.modal-terms a { color: var(--accent); text-decoration: underline; }

/* Crypto step */
.crypto-top  { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.crypto-name-row { display: flex; align-items: center; gap: 8px; }
.crypto-lbl { font-size: 15px; font-weight: 700; color: #1a1a1a; }
.crypto-timer {
    font-size: 15px; font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: #555;
    background: #ececec;
    border-radius: 8px;
    padding: 5px 12px;
}
.modal-order-id { font-size: 10px; color: #bbb; margin-bottom: 16px; font-family: monospace; letter-spacing: .03em; }
.order-id-val { color: #999; }

.qr-wrapper { display: flex; justify-content: center; margin: 16px 0 20px; }
.qr-frm {
    background: white;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #ddd;
    line-height: 0;
}

/* Copy fields */
.copy-field { background: white; border: 1px solid #e8e8e8; border-radius: 10px; padding: 10px 14px; margin-bottom: 10px; }
.copy-lbl { font-size: 10px; font-weight: 800; letter-spacing: .1em; color: #888; text-transform: uppercase; margin-bottom: 5px; }
.copy-row { display: flex; align-items: center; gap: 8px; }
.copy-val { font-size: 13px; color: #333; flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-family: monospace; }
.green-val { color: #16a34a; }
.bold-val  { font-size: 15px; font-weight: 700; color: #1a1a1a; font-family: inherit; }
.copy-btn {
    width: 30px; height: 30px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: #f0f0f0; border-radius: 8px;
    transition: background .18s;
    cursor: pointer;
    border: none;
}
.copy-btn:hover { background: #e0e0e0; }
.copy-btn svg { width: 15px; height: 15px; color: #555; }
.copy-btn.copied { background: rgba(34,197,94,.15); }
.copy-btn.copied svg { color: var(--accent); }

/* PayPal step */
.pp-top   { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.pp-title { display: flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 700; color: #1a1a1a; }
.status-badge { padding: 3px 10px; background: rgba(245,158,11,.12); border: 1px solid rgba(245,158,11,.3); color: #b45309; border-radius: 100px; font-size: 11px; font-weight: 700; }
.pp-instructions { font-size: 13px; color: #666; line-height: 1.6; margin-bottom: 14px; }
.pp-warning {
    background: rgba(239,68,68,.08);
    border: 1px solid rgba(239,68,68,.2);
    color: #dc2626;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 700;
    margin: 10px 0;
    text-align: center;
}
.pp-note { font-size: 12px; color: #888; line-height: 1.6; margin-bottom: 16px; }

.waiting-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #ececec;
    border-radius: 10px;
    font-size: 13px;
    color: #666;
}
.spinner {
    width: 16px; height: 16px;
    border: 2px solid #ccc;
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin .8s linear infinite;
    flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Email hint in payment modal ── */
.modal-email-hint {
    font-size: 12px;
    color: #888;
    margin: -4px 0 12px;
    line-height: 1.5;
}

/* ── Auto payment detect row ── */
.pay-detect-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    margin-top: 12px;
    background: rgba(99,102,241,.08);
    border: 1px solid rgba(99,102,241,.25);
    border-radius: 10px;
    font-size: 12px;
    color: #a5b4fc;
    transition: border-color .4s, background .4s;
}

/* ── Invoice tracking modal ── */
.track-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 3000;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
}
.track-overlay.active { opacity: 1; pointer-events: all; }
.track-modal {
    background: #0d1410;
    border: 1px solid var(--border-hover);
    border-radius: 18px;
    width: 100%;
    max-width: 480px;
    overflow: hidden;
    box-shadow: 0 32px 96px rgba(0,0,0,.7);
    transform: scale(.95) translateY(12px);
    transition: transform .28s cubic-bezier(.34,1.56,.64,1);
}
.track-overlay.active .track-modal { transform: scale(1) translateY(0); }
.track-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 20px 14px;
    border-bottom: 1px solid var(--border);
}
.track-title { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 700; color: var(--white); }
.track-close {
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; background: rgba(255,255,255,.06);
    color: var(--text-muted); border: none; cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}
.track-close:hover { background: rgba(255,255,255,.12); color: var(--white); }
.track-close svg { width: 15px; height: 15px; }
.track-body { padding: 22px 20px 24px; max-height: 70vh; overflow-y: auto; }
.track-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }
.track-search-row { display: flex; gap: 10px; margin-bottom: 20px; }
.track-input {
    flex: 1; padding: 11px 14px;
    background: rgba(255,255,255,.04);
    border: 1.5px solid var(--border-hover);
    border-radius: 10px; font-size: 14px;
    color: var(--white); font-family: inherit; outline: none;
    transition: border-color .2s, box-shadow .2s;
}
.track-input::placeholder { color: var(--text-dim); }
.track-input:focus { border-color: var(--accent-light); box-shadow: 0 0 0 3px var(--accent-glow); }
.track-btn {
    padding: 11px 20px;
    background: linear-gradient(130deg, var(--accent), var(--accent-light));
    color: white; border: none; border-radius: 10px;
    font-size: 14px; font-weight: 700; font-family: inherit;
    cursor: pointer; white-space: nowrap; flex-shrink: 0;
    transition: filter .2s, transform .15s;
}
.track-btn:hover:not(:disabled) { filter: brightness(1.1); transform: translateY(-1px); }
.track-btn:disabled { opacity: .4; cursor: not-allowed; }
.track-empty {
    display: flex; flex-direction: column; align-items: center;
    padding: 36px 0; color: var(--text-muted); font-size: 14px; text-align: center;
}
.track-order-card {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
    border-radius: 12px; padding: 14px 16px; margin-bottom: 10px;
    transition: border-color .2s;
}
.track-order-card:hover { border-color: var(--border-hover); }
.track-order-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.track-order-name { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.track-order-meta { font-size: 12px; color: var(--text-dim); }
.track-order-price { font-size: 16px; font-weight: 800; color: var(--accent-bright); flex-shrink: 0; }
.track-order-detail { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.track-badge { padding: 3px 10px; border-radius: 100px; font-size: 11px; font-weight: 700; }
.track-badge-pending { background: rgba(245,158,11,.12); border: 1px solid rgba(245,158,11,.3); color: #d97706; }
.track-order-method { font-size: 12px; color: var(--text-muted); }
.track-order-id { font-size: 11px; color: var(--text-dim); font-family: monospace; }

/* ── Variant picker ── */
.modal-product-title {
    font-size: 16px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #ebebeb;
}
.variant-grid { display: flex; flex-direction: column; gap: 9px; }
.variant-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px;
    background: #ffffff;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    cursor: pointer;
    transition: border-color .18s, box-shadow .18s, background .18s;
    text-align: left;
    width: 100%;
    font-family: inherit;
}
.variant-btn:hover   { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(34,197,94,.12); }
.variant-btn.selected { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(34,197,94,.14); background: rgba(34,197,94,.04); }
.variant-name  { font-size: 14px; font-weight: 600; color: #1a1a1a; }
.variant-price { font-size: 15px; font-weight: 800; color: var(--accent); }

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2,1fr); }
    .product-grid  { grid-template-columns: repeat(2,1fr); }
    .reviews-grid  { grid-template-columns: repeat(2,1fr); }
    .support-inner { grid-template-columns: 1fr; gap: 48px; }
    .footer-inner  { grid-template-columns: 1fr; gap: 48px; }
    .about-card    { grid-template-columns: 1fr; gap: 40px; padding: 44px 36px; }
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 68px; left: 0; right: 0;
        background: rgba(6,9,10,.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 16px;
        border-bottom: 1px solid var(--border);
        gap: 4px;
    }
    .nav-links.open { display: flex; }
    .nav-links a    { padding: 12px 16px; border-radius: 10px; }
    .nav-toggle     { display: flex; }
    .nav-actions    { display: none; }
    .nav-support-mobile { display: block !important; margin-top: 8px; background: #22c55e !important; color: #000 !important; font-weight: 700 !important; text-align: center; border-radius: 10px; }
    .stats-grid     { grid-template-columns: repeat(2,1fr); }
    .features-grid  { grid-template-columns: 1fr; }
    .product-grid   { grid-template-columns: 1fr; }
    .reviews-grid   { grid-template-columns: 1fr; }
    .about-card     { padding: 32px 24px; }
    .footer-links   { grid-template-columns: repeat(2,1fr); }
    .hero-trust     { gap: 20px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .support-content .section-title    { text-align: center; }
    .support-content .section-subtitle { text-align: center; }
    .support-content .section-tag      { display: flex; justify-content: center; width: 100%; }
    .support-stats  { justify-content: center; }
    .support-features { align-items: center; }
}
@media (max-width: 480px) {
    .footer-links  { grid-template-columns: 1fr; }
    .hero-buttons  { flex-direction: column; width: 100%; max-width: 300px; margin-left: auto; margin-right: auto; }
    .btn-lg        { width: 100%; justify-content: center; }
    .about-stats   { gap: 24px; flex-wrap: wrap; }
    .hero-trust    { flex-direction: column; gap: 12px; }
    .pay-crypto-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   QUANTITY SELECTOR
   ============================================================ */
.qty-row { text-align: center; padding-top: 4px; }
.qty-controls {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 12px;
    padding: 6px 14px;
}
.qty-btn {
    width: 30px; height: 30px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    color: var(--white);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: rgba(34,197,94,.14); border-color: var(--accent-bright); }
.qty-val {
    min-width: 28px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}
.qty-total-row {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 10px;
}
.qty-total-price { color: var(--accent-bright); font-weight: 700; }

/* ============================================================
   SELLAUTH PAYMENT BUTTON — recommended badge
   ============================================================ */
.fee-green {
    background: rgba(34,197,94,.14);
    color: var(--accent-bright);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 100px;
    letter-spacing: .04em;
}

/* ============================================================
   STEP 3c — SELLAUTH CONFIRM
   ============================================================ */
.sa-confirm-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}
.sa-confirm-icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(34,197,94,.12);
    border: 1px solid rgba(34,197,94,.25);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent-bright);
    flex-shrink: 0;
}
.sa-confirm-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 2px;
}
.sa-confirm-sub {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}
.sa-order-summary {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 18px;
}
.sa-sum-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sa-sum-label { font-size: 13px; color: var(--text-muted); }
.sa-sum-price { font-size: 16px; font-weight: 800; color: var(--accent-bright); }
.sa-checkout-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    margin-bottom: 12px;
    background: var(--accent-bright) !important;
    color: #000 !important;
    font-weight: 700;
    border-radius: 12px;
    padding: 14px;
    font-size: 15px;
    transition: var(--transition);
}
.sa-checkout-btn:hover { opacity: .88; transform: translateY(-1px); }
.sa-status-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    padding: 10px 0 4px;
}
.sa-status-badge.sa-status-paid   { color: var(--accent-bright); }
.sa-status-badge.sa-status-cancelled { color: #ef4444; }
.spinner-sm {
    width: 16px !important; height: 16px !important;
    border-width: 2px !important;
}
.sa-error-msg {
    font-size: 13px;
    color: #ef4444;
    text-align: center;
    margin-bottom: 10px;
}
.sa-retry-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: rgba(239,68,68,.10);
    border: 1px solid rgba(239,68,68,.25);
    border-radius: 10px;
    color: #ef4444;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.sa-retry-btn:hover { background: rgba(239,68,68,.18); }

/* ============================================================
   TRACKING — SellAuth divider & order SA id row
   ============================================================ */
.track-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 22px 0 14px;
    color: var(--text-dim);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
}
.track-divider::before,
.track-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,.08);
}
.track-order-sa {
    font-size: 11px;
    color: var(--text-dim);
    margin-top: 4px;
}
.track-sa-id {
    font-family: monospace;
    color: var(--text-muted);
}
.track-badge-paid       { background: rgba(34,197,94,.15); color: var(--accent-bright); }
.track-badge-cancelled  { background: rgba(239,68,68,.12); color: #ef4444; }

/* ======================================
   STOCK BADGE
====================================== */
.stock-badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 20px;
    background: rgba(34,197,94,.12);
    color: var(--accent-bright);
    white-space: nowrap;
}
.stock-badge.stock-out {
    background: rgba(239,68,68,.12);
    color: #ef4444;
}
.btn.btn-browse:disabled {
    opacity: .45;
    cursor: not-allowed;
    pointer-events: none;
}

/* ======================================
   DELIVERY SUCCESS STEP (step4)
====================================== */
.delivery-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 28px;
}
.delivery-check {
    width: 56px;
    height: 56px;
    margin-bottom: 14px;
}
.delivery-check svg {
    width: 56px;
    height: 56px;
}
.delivery-title {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    margin: 0 0 6px;
}
.delivery-subtitle {
    font-size: 14px;
    color: #666;
    margin: 0 0 18px;
}
.delivery-body .copy-field {
    width: 100%;
    text-align: left;
}
.delivery-redirect-msg {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-bright);
    margin-top: 14px;
    min-height: 20px;
}

/* =====================================
   REVIEWS SECTION
===================================== */
.reviews-section {
    padding: 100px 0;
    position: relative;
}
.reviews-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 10px;
    font-size: 13px;
    color: var(--accent-bright);
    font-weight: 500;
}
.reviews-live-badge .badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-bright);
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

/* Stats */
.reviews-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}
.reviews-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}
.reviews-stat-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}
.reviews-stat-num {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--accent-bright);
    line-height: 1;
    margin-bottom: 8px;
}
.reviews-stat-lbl {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Carousel wrapper */
.reviews-carousel-wrap {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.reviews-carousel {
    display: grid;
    grid-template-columns: repeat(3, 340px);
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Review card */
.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 20px;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: var(--transition);
    flex-shrink: 0;
    width: 340px;
}
.review-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}
.review-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-dim);
    border: 1px solid var(--border-hover);
    object-fit: cover;
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-bright);
    display: flex;
    align-items: center;
    justify-content: center;
}
.review-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.review-user-info {
    flex: 1;
    min-width: 0;
}
.review-username {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-bright);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.review-userid {
    font-size: 11px;
    color: var(--text-dim);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.review-stars {
    display: flex;
    gap: 2px;
    margin-left: auto;
    flex-shrink: 0;
}
.review-stars svg {
    width: 14px;
    height: 14px;
    color: var(--accent-bright);
    fill: var(--accent-bright);
}
.review-stars svg.empty {
    color: var(--text-dim);
    fill: none;
    stroke: var(--text-dim);
}
.review-text {
    font-size: 13.5px;
    color: var(--text);
    line-height: 1.55;
    flex: 1;
}
.review-date {
    font-size: 11px;
    color: var(--text-dim);
    margin-top: auto;
}

/* Dots */
.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}
.reviews-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-hover);
    transition: var(--transition);
    padding: 0;
}
.reviews-dots button.active {
    background: var(--accent-bright);
    transform: scale(1.3);
}

/* Loading state */
.reviews-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 60px 0;
    color: var(--text-muted);
    font-size: 14px;
}

/* =====================================
   MARQUEE REVIEWS
===================================== */
.reviews-marquee-outer {
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
    padding: 12px 0 8px;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.reviews-track {
    display: flex;
    gap: 16px;
    width: max-content;
}
.reviews-track--left  { animation: marquee-left  38s linear infinite; }
.reviews-track--right { animation: marquee-right 44s linear infinite; }
.reviews-track:hover  { animation-play-state: paused; }

@keyframes marquee-left {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@keyframes marquee-right {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

/* Marquee card */
.mq-card {
    flex-shrink: 0;
    width: 280px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: border-color var(--transition);
}
.mq-card:hover { border-color: var(--border-hover); }
.mq-top {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.mq-username {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-bright);
}
.mq-date {
    font-size: 12px;
    color: var(--text-dim);
}
.mq-stars {
    display: flex;
    gap: 2px;
}
.mq-stars svg {
    width: 14px; height: 14px;
    color: var(--accent-bright);
    fill: var(--accent-bright);
}
.mq-stars svg.empty {
    color: var(--text-dim);
    fill: none;
    stroke: var(--text-dim);
}
.mq-text {
    font-size: 13px;
    color: var(--text);
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 900px) {
    .reviews-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .reviews-carousel { grid-template-columns: repeat(3, 300px); }
    .review-card { width: 300px; }
}
@media (max-width: 600px) {
    .reviews-stats { grid-template-columns: 1fr; }
    .reviews-carousel { grid-template-columns: repeat(3, 88vw); gap: 12px; }
    .review-card { width: 88vw; }
}
