/* 4WAY — NFT Mint Styles */

/* ===== Variables ===== */
:root {
    --bg: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a26;
    --surface: #16161f;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --text: #e8e8ef;
    --text-dim: #8888a0;
    --text-muted: #55556a;
    --accent: #a78bfa;
    --accent-bright: #c4b5fd;
    --accent-glow: rgba(167, 139, 250, 0.25);
    --green: #34d399;
    --font: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --mono: 'JetBrains Mono', 'SF Mono', Consolas, monospace;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
}

/* ===== Reset ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--accent-bright); text-decoration: none; transition: color .2s; }
a:hover { color: #fff; }

img, svg { display: block; max-width: 100%; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ===== Header ===== */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0;
}

.navbar { width: 100%; }

.nav-container {
    max-width: 1120px; margin: 0 auto; padding: 0 24px;
    display: flex; justify-content: space-between; align-items: center;
    height: 64px;
}

.logo {
    display: flex; align-items: center; gap: 8px;
    font-size: 22px; font-weight: 700; color: #fff;
    text-decoration: none;
}
.logo-icon { color: var(--accent); font-size: 24px; }
.logo-text { letter-spacing: -0.5px; }

.nav-links { display: flex; align-items: center; gap: 28px; }

.nav-link {
    color: var(--text-dim); text-decoration: none;
    font-size: 14px; font-weight: 500; letter-spacing: 0.02em;
    transition: color .2s;
}
.nav-link:hover { color: #fff; }

.nav-socials { display: flex; gap: 12px; }

.social-link {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--surface); color: var(--text-dim);
    border: 1px solid var(--border); transition: all .2s;
}
.social-link:hover { color: #fff; background: var(--bg-card-hover); border-color: var(--border-hover); }
.social-link svg { display: block; }

.connect-btn {
    background: var(--accent); color: #0a0a0f;
    border: none; padding: 10px 22px; border-radius: 999px;
    font-family: var(--font); font-size: 14px; font-weight: 600;
    cursor: pointer; transition: all .25s;
}
.connect-btn:hover { background: var(--accent-bright); transform: translateY(-1px); box-shadow: 0 4px 20px var(--accent-glow); }

.mobile-menu-btn {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.mobile-menu-btn span { display: block; width: 22px; height: 2px; background: var(--text-dim); border-radius: 2px; transition: all .3s; }

/* Mobile nav */
.mobile-nav {
    display: none; flex-direction: column; gap: 16px;
    padding: 20px 24px 24px;
    background: var(--bg-card); border-bottom: 1px solid var(--border);
    position: fixed; top: 64px; left: 0; right: 0; z-index: 99;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link { color: var(--text-dim); font-size: 16px; font-weight: 500; text-decoration: none; padding: 8px 0; }
.mobile-nav-link:hover { color: #fff; }
.mobile-nav-socials { display: flex; gap: 12px; }

/* ===== Hero / Mint ===== */
.hero {
    position: relative; min-height: 100vh; display: flex; flex-direction: column;
    justify-content: center; padding: 100px 0 60px; overflow: hidden;
}

.hero-bg {
    position: absolute; inset: 0; z-index: 0; overflow: hidden;
}

.grid-overlay {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.glow {
    position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.35;
}
.glow-1 { width: 500px; height: 500px; background: var(--accent); top: -10%; left: -10%; }
.glow-2 { width: 400px; height: 400px; background: #6366f1; bottom: -10%; right: -5%; }

.hero-inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center;
}

.hero-content { max-width: 520px; }

.badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(52, 211, 153, 0.12); color: var(--green);
    padding: 6px 14px; border-radius: 999px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
    margin-bottom: 24px; border: 1px solid rgba(52, 211, 153, 0.2);
}
.badge::before { content: ''; width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }

.hero-title {
    font-size: clamp(52px, 7vw, 80px); font-weight: 700;
    line-height: 1; letter-spacing: -2px; color: #fff;
    margin-bottom: 20px;
}
.dot { color: var(--accent); }

.hero-subtitle {
    font-size: 16px; color: var(--text-dim);
    line-height: 1.7; margin-bottom: 36px; max-width: 460px;
}
.hero-subtitle strong { color: var(--text); }

/* Mint Stats Row */
.mint-stats {
    display: flex; align-items: center; gap: 24px;
    margin-bottom: 32px; flex-wrap: wrap;
}
.mint-stat-label { display: block; font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.mint-stat-value { font-size: 18px; font-weight: 600; color: #fff; font-family: var(--mono); }
.free-tag { color: var(--green); }
.gas-note { font-size: 12px; color: var(--text-dim); font-weight: 400; }
.mint-stat-divider { width: 1px; height: 36px; background: var(--border); }

/* Mint Progress */
.mint-progress-wrap {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 16px 20px;
    margin-bottom: 28px;
}
.mint-progress-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; font-size: 13px; color: var(--text-dim); }
.mint-count { color: var(--text); }
.mint-count strong { color: #fff; font-family: var(--mono); }
.mint-progress-bar { width: 100%; height: 8px; background: rgba(255,255,255,0.06); border-radius: 999px; overflow: hidden; }
.mint-progress-fill { height: 100%; background: linear-gradient(90deg, var(--accent), #6366f1); border-radius: 999px; transition: width .6s ease; }
.mint-progress-pct { display: block; text-align: right; font-size: 12px; color: var(--text-muted); margin-top: 6px; font-family: var(--mono); }

/* Mint CTA Button */
.mint-btn {
    position: relative; overflow: hidden;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--accent), #6366f1);
    color: #fff; border: none;
    padding: 18px 44px; border-radius: 999px;
    font-family: var(--font); font-size: 17px; font-weight: 600;
    cursor: pointer; transition: all .3s;
}
.mint-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--accent-glow); }
.mint-btn-glow {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
    transform: translateX(-100%);
    animation: shimmer 3s ease-in-out infinite;
}
.mint-hint { font-size: 13px; color: var(--text-muted); margin-top: 14px; }

/* NFT Visual */
.hero-visual { display: flex; justify-content: center; align-items: center; }

.nft-showcase { position: relative; width: 340px; height: 400px; perspective: 800px; }

.nft-card {
    position: absolute; width: 280px; height: 340px;
    border-radius: var(--radius); background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.nft-card-back { top: 20px; left: 50%; transform: translateX(-50%) rotateY(4deg) scale(0.88); opacity: 0.3; }
.nft-card-mid { top: 10px; left: 50%; transform: translateX(-50%) rotateY(2deg) scale(0.94); opacity: 0.5; }
.nft-card-front {
    top: 0; left: 50%; transform: translateX(-50%); z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.nft-art { width: 100%; height: 100%; border-radius: var(--radius); overflow: hidden; position: relative; }
.nft-art-inner { width: 100%; height: 100%; position: relative; background: #0d0d14; }

.art-layer {
    position: absolute; inset: 0; mix-blend-mode: screen;
}
.art-layer-1 {
    background: linear-gradient(135deg, transparent 30%, var(--accent) 50%, transparent 70%);
    opacity: 0.6; animation: artShift1 8s ease-in-out infinite;
}
.art-layer-2 {
    background: linear-gradient(225deg, transparent 20%, #6366f1 45%, transparent 65%);
    opacity: 0.5; animation: artShift2 10s ease-in-out infinite;
}
.art-layer-3 {
    background: radial-gradient(circle at 30% 70%, #34d399 0%, transparent 50%);
    opacity: 0.3; animation: artShift3 7s ease-in-out infinite;
}
.art-layer-4 {
    background: radial-gradient(circle at 70% 20%, #f472b6 0%, transparent 45%);
    opacity: 0.25; animation: artShift4 9s ease-in-out infinite;
}

.nft-id {
    position: absolute; bottom: 12px; right: 14px;
    font-family: var(--mono); font-size: 12px; color: rgba(255,255,255,0.4);
    background: rgba(0,0,0,0.4); padding: 3px 8px; border-radius: var(--radius-xs);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    color: var(--text-muted); font-size: 12px; cursor: pointer;
    animation: bobDown 2s ease-in-out infinite; z-index: 2;
}

/* ===== Sections ===== */
.section { padding: 100px 0; }

.section-title {
    font-size: clamp(32px, 4vw, 44px); font-weight: 700;
    text-align: center; margin-bottom: 56px; color: #fff;
    letter-spacing: -1px;
}

/* About */
.about-section { background: var(--bg); }

.about-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.about-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 32px;
    transition: all .3s;
}
.about-card:hover { border-color: var(--border-hover); background: var(--bg-card-hover); transform: translateY(-4px); }
.about-icon { width: 48px; height: 48px; background: rgba(167,139,250,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 18px; }
.about-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; color: #fff; }
.about-card p { font-size: 14px; color: var(--text-dim); line-height: 1.65; }

/* Roadmap */
.roadmap-section { background: var(--surface); }

.roadmap-timeline { max-width: 600px; margin: 0 auto; position: relative; padding-left: 36px; }
.roadmap-timeline::before { content: ''; position: absolute; left: 10px; top: 0; bottom: 0; width: 2px; background: var(--border); }

.roadmap-item { position: relative; margin-bottom: 40px; }
.roadmap-item:last-child { margin-bottom: 0; }

.roadmap-marker {
    position: absolute; left: -36px; top: 4px; width: 22px; height: 22px;
    border-radius: 50%; background: var(--bg-card); border: 2px solid var(--border);
    z-index: 1; transition: all .3s;
}
.roadmap-item.active .roadmap-marker { background: var(--accent); border-color: var(--accent); box-shadow: 0 0 12px var(--accent-glow); }

.roadmap-phase { font-size: 11px; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.roadmap-content h3 { font-size: 20px; font-weight: 600; color: #fff; margin: 4px 0 8px; }
.roadmap-content p { font-size: 14px; color: var(--text-dim); line-height: 1.6; }

/* FAQ */
.faq-section { background: var(--bg); }

.faq-list { max-width: 640px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    width: 100%; padding: 20px 0;
    background: none; border: none; cursor: pointer;
    font-family: var(--font); font-size: 16px; font-weight: 500;
    color: var(--text); text-align: left; transition: color .2s;
}
.faq-question:hover { color: #fff; }
.faq-chevron { transition: transform .3s; color: var(--text-muted); flex-shrink: 0; margin-left: 16px; }
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); color: var(--accent); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.faq-answer.open { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { font-size: 14px; color: var(--text-dim); line-height: 1.7; }
.faq-answer a { color: var(--accent-bright); text-decoration: underline; }
.faq-answer a:hover { color: #fff; }

/* CTA */
.cta-section { background: var(--surface); padding: 80px 0; }

.cta-box {
    text-align: center; max-width: 520px; margin: 0 auto;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 52px 40px;
}
.cta-box h2 { font-size: 36px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.cta-box p { font-size: 15px; color: var(--text-dim); margin-bottom: 28px; }
.cta-box strong { color: #fff; font-family: var(--mono); }

/* ===== Wallet Modal ===== */
.wallet-section {
    position: fixed; inset: 0; z-index: 200;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all .3s;
}
.wallet-section.show { opacity: 1; visibility: visible; }

.wallet-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(4px); }

.wallet-modal {
    position: relative; background: var(--bg-card); border: 1px solid var(--border);
    padding: 36px; border-radius: var(--radius);
    max-width: 420px; width: 90%; text-align: center;
    transform: scale(0.95); transition: transform .3s;
    z-index: 1;
}
.wallet-section.show .wallet-modal { transform: scale(1); }

.wallet-modal-close {
    position: absolute; top: 16px; right: 16px;
    background: none; border: none; color: var(--text-muted);
    font-size: 24px; cursor: pointer; transition: color .2s;
    line-height: 1; width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
}
.wallet-modal-close:hover { color: #fff; background: rgba(255,255,255,0.05); }

.wallet-modal h3 { font-size: 22px; font-weight: 600; margin-bottom: 6px; color: #fff; }
.wallet-modal p { color: var(--text-dim); margin-bottom: 24px; font-size: 14px; }

.wallet-options { display: flex; flex-direction: column; gap: 10px; }

.wallet-btn {
    display: flex; align-items: center; gap: 14px;
    background: var(--surface); border: 1px solid var(--border);
    padding: 14px 18px; border-radius: var(--radius-sm);
    font-family: var(--font); font-size: 15px; font-weight: 500;
    color: var(--text); cursor: pointer; transition: all .2s;
}
.wallet-btn:hover { background: var(--bg-card-hover); border-color: var(--accent); color: #fff; transform: translateY(-1px); }
.wallet-btn svg { flex-shrink: 0; border-radius: 6px; }

/* ===== Processing ===== */
.processing {
    position: fixed; inset: 0; z-index: 300;
    background: rgba(0,0,0,0.85); backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all .3s;
}
.processing.show { opacity: 1; visibility: visible; }

.processing-modal {
    background: var(--bg-card); border: 1px solid var(--border);
    padding: 40px; border-radius: var(--radius);
    max-width: 400px; width: 90%; text-align: center;
}
.processing-modal h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; color: #fff; }
.processing-modal p { color: var(--text-dim); margin-bottom: 24px; font-size: 14px; }

.progress-bar { width: 100%; height: 6px; background: rgba(255,255,255,0.06); border-radius: 999px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--accent), #6366f1); width: 0%; transition: width .3s; border-radius: 999px; }

.spinner {
    width: 36px; height: 36px;
    border: 3px solid rgba(255,255,255,0.1);
    border-top-color: var(--accent);
    border-radius: 50%; animation: spin 0.8s linear infinite;
    margin: 0 auto 20px;
}

/* ===== Footer ===== */
.footer {
    background: var(--surface); border-top: 1px solid var(--border);
    padding: 60px 0 0; margin-top: 0;
}

.footer-top {
    display: grid; grid-template-columns: 1.2fr 2fr;
    gap: 40px; padding-bottom: 40px;
}

.footer-brand p { color: var(--text-dim); font-size: 14px; margin-top: 12px; max-width: 260px; }
.footer-brand .logo { margin-bottom: 0; }

.footer-links { display: flex; gap: 60px; justify-content: flex-end; }

.footer-col h4 { font-size: 13px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.footer-col a { display: block; color: var(--text-dim); font-size: 14px; margin-bottom: 10px; text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid var(--border); padding: 20px 0;
    display: flex; justify-content: space-between; align-items: center;
    color: var(--text-muted); font-size: 13px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; }
.footer-bottom-links a:hover { color: var(--text-dim); }

/* ===== Legal Modals ===== */
.legal-modal {
    position: fixed; inset: 0; z-index: 500;
    display: flex; align-items: center; justify-content: center;
}
.legal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.75); backdrop-filter: blur(4px); }

.legal-content {
    position: relative; z-index: 1;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); max-width: 620px; width: 92%;
    max-height: 80vh; overflow-y: auto; padding: 40px;
}
.legal-content h2 { font-size: 28px; font-weight: 700; color: #fff; margin-bottom: 24px; }
.legal-content h3 { font-size: 16px; font-weight: 600; color: var(--text); margin: 20px 0 8px; }
.legal-content p { font-size: 14px; color: var(--text-dim); line-height: 1.7; margin-bottom: 12px; }
.legal-content ul { padding-left: 20px; margin-bottom: 12px; }
.legal-content li { font-size: 14px; color: var(--text-dim); line-height: 1.7; margin-bottom: 6px; }
.legal-content a { color: var(--accent-bright); text-decoration: underline; }

.legal-close {
    position: absolute; top: 16px; right: 16px;
    background: none; border: none; color: var(--text-muted); font-size: 28px;
    cursor: pointer; width: 36px; height: 36px; display: flex; align-items: center;
    justify-content: center; border-radius: 50%; transition: all .2s;
}
.legal-close:hover { color: #fff; background: rgba(255,255,255,0.05); }

/* Custom scrollbar for legal modal */
.legal-content::-webkit-scrollbar { width: 6px; }
.legal-content::-webkit-scrollbar-track { background: transparent; }
.legal-content::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ===== Urgency / FOMO Elements ===== */

/* Nav live badge */
.nav-live-badge {
    display: flex; align-items: center; gap: 6px;
    background: rgba(52, 211, 153, 0.1); color: var(--green);
    padding: 5px 12px; border-radius: 999px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
    border: 1px solid rgba(52, 211, 153, 0.2);
    white-space: nowrap;
}
.nav-live-dot {
    width: 6px; height: 6px; background: var(--green);
    border-radius: 50%; flex-shrink: 0;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Mobile urgency strip */
.mobile-urgency {
    display: flex; align-items: center; gap: 8px;
    background: rgba(52, 211, 153, 0.08);
    border: 1px solid rgba(52, 211, 153, 0.15);
    border-radius: var(--radius-sm); padding: 10px 14px;
    font-size: 13px; color: var(--text-dim);
}
.mobile-urgency strong { color: var(--green); }
.mobile-urgency-dot {
    width: 7px; height: 7px; background: var(--green);
    border-radius: 50%; flex-shrink: 0;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Activity feed */
.activity-feed {
    margin-bottom: 20px;
}
.activity-item {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 999px; padding: 6px 14px;
    font-size: 12px; color: var(--text-dim);
    font-family: var(--mono);
    animation: fadeSlideIn .4s ease;
}
.activity-dot {
    width: 6px; height: 6px; background: var(--green);
    border-radius: 50%; flex-shrink: 0;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Social proof row */
.mint-social-proof {
    display: flex; align-items: center; gap: 10px;
    margin-top: 14px;
}
.proof-avatars {
    display: flex;
}
.proof-avatar {
    width: 24px; height: 24px; border-radius: 50%;
    border: 2px solid var(--bg); margin-left: -6px;
    flex-shrink: 0;
}
.proof-avatars .proof-avatar:first-child { margin-left: 0; }
.proof-text { font-size: 13px; color: var(--text-dim); }
.proof-text strong { color: var(--text); }

/* Badge emoji override */
.badge { font-size: 11px; }

@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===== Animations ===== */
@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-14px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    50%, 100% { transform: translateX(100%); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes bobDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

@keyframes artShift1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(15px, -10px) rotate(3deg); }
}
@keyframes artShift2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-10px, 12px) rotate(-2deg); }
}
@keyframes artShift3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(8px, 8px); }
}
@keyframes artShift4 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-12px, -6px); }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }

    .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-subtitle { max-width: 100%; }
    .hero-title { font-size: 48px; }

    .mint-stats { justify-content: center; }

    .nft-showcase { width: 260px; height: 320px; }
    .nft-card { width: 220px; height: 270px; }

    .scroll-indicator { display: none; }

    .about-grid { grid-template-columns: 1fr; }

    .footer-top { grid-template-columns: 1fr; text-align: center; }
    .footer-brand p { max-width: 100%; margin: 12px auto 0; }
    .footer-links { justify-content: center; flex-wrap: wrap; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 38px; }
    .mint-stats { gap: 16px; }
    .mint-stat-divider { display: none; }
    .mint-btn { padding: 16px 32px; font-size: 15px; }
    .cta-box { padding: 36px 24px; }
    .cta-box h2 { font-size: 28px; }
    .wallet-modal { padding: 28px 20px; }
    .legal-content { padding: 28px 20px; }
    .footer-links { gap: 24px; }
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.18); }

/* ===== Selection ===== */
::selection { background: rgba(167, 139, 250, 0.3); color: #fff; }

/* ===== Focus ===== */
button:focus-visible, a:focus-visible, input:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* ===== Utilities ===== */
.text-center { text-align: center; }
.hidden { display: none; }

/* Connected state */
.connected {
    background: var(--green) !important;
    color: #0a0a0f !important;
    cursor: not-allowed !important;
}

/* ===== Print ===== */
@media print {
    .header, .footer, .wallet-section, .processing, .legal-modal { display: none; }
    body { background: #fff; color: #000; }
}
