@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Mono:wght@400;500&display=swap');

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

:root {
    --bg:      #0d0f0e;
    --surface: #141714;
    --surface2:#1a1d1a;
    --border:  rgba(255,255,255,0.06);
    --gold:    #c9aa71;
    --gold-dim:#8a7249;
    --green:   #00c853;
    --red:     #ff1744;
    --text:    #e8e8e2;
    --muted:   #6b7068;
    --font:    'Syne', sans-serif;
    --mono:    'DM Mono', monospace;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    min-height: 100vh;
}

/* ── NAV ── */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 48px;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: var(--bg);
    z-index: 100;
}

.nav-logo {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--gold);
}

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

/* ── BUTTONS ── */
.btn-gold {
    padding: 10px 24px;
    background: var(--gold);
    color: #0d0f0e;
    border-radius: 8px;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: opacity 0.15s;
    border: none;
    cursor: pointer;
}

.btn-gold:hover { opacity: 0.85; }

.btn-outline {
    padding: 10px 24px;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s;
    cursor: pointer;
}

.btn-outline:hover {
    border-color: var(--gold-dim);
    color: var(--gold);
}

.btn-large {
    padding: 14px 32px;
    font-size: 15px;
}

/* ── TICKER ── */
.ticker-wrap {
    display: flex;
    align-items: center;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    height: 40px;
    overflow: hidden;
}

.ticker-label {
    background: var(--gold);
    color: #0d0f0e;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.ticker-track {
    overflow: hidden;
    flex: 1;
}

.ticker-content {
    display: flex;
    animation: ticker-scroll 60s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 32px;
    font-size: 12px;
    font-family: var(--mono);
}

.ticker-item::after {
    content: '·';
    color: var(--gold-dim);
    margin-left: 32px;
}

.ticker-name { color: var(--text); font-weight: 500; }
.ticker-price { color: var(--gold); }
.ticker-change { font-size: 11px; }

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── HERO ── */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 80px 48px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.hero-featured-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.hero-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title span { color: var(--gold); }

.hero-sub {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

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

/* ── HERO CARDS ── */
.hero-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: border-color 0.15s;
}

.hero-card:hover { border-color: var(--gold-dim); }

.hero-card-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-card-left img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.hero-card-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.hero-card-clan {
    font-size: 11px;
    color: var(--muted);
    margin-top: 2px;
}

.hero-card-right { text-align: right; }

.hero-card-price {
    font-size: 15px;
    font-weight: 600;
    font-family: var(--mono);
    color: var(--gold);
}

.hero-card-change {
    font-size: 12px;
    font-family: var(--mono);
    margin-top: 2px;
}

/* ── FEATURES ── */
.features {
    padding: 80px 48px;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 32px 24px;
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.feature-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

/* ── FOOTER ── */
.landing-footer {
    padding: 48px;
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer-logo {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--gold);
    margin-bottom: 8px;
}

.footer-sub {
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.footer-links a {
    font-size: 12px;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.06em;
    transition: color 0.15s;
}

.footer-links a:hover { color: var(--gold); }



/* ── MOBILE ── */
@media (max-width: 900px) {
    .nav { padding: 16px 20px; }

    .hero {
        grid-template-columns: 1fr;
        padding: 48px 20px;
        gap: 40px;
    }

    .hero-title { font-size: 36px; }

    .features {
        padding: 48px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .landing-footer { padding: 32px 20px; }

    .footer-links { flex-wrap: wrap; gap: 16px; }
}

/* ── SHOWCASE ── */
.showcase {
    padding: 60px 0;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.showcase-label {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--muted);
    margin-bottom: 32px;
}

.showcase-track-wrap {
    overflow: hidden;
    width: 100%;
}

.showcase-track-wrap:hover .showcase-track {
    animation-play-state: paused;
}

.showcase-track {
    display: flex;
    gap: 24px;
    animation: showcase-scroll 30s linear infinite;
    width: max-content;
}

.showcase-track img {
    height: 280px;
    width: auto;
    border-radius: 12px;
    border: 1px solid var(--border);
    object-fit: cover;
    flex-shrink: 0;
    transition: border-color 0.15s;
}

.showcase-track img:hover {
    border-color: var(--gold-dim);
}

.sidebar-profile-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 12px;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.15s;
}

.sidebar-profile-link:hover {
    background: var(--surface2);
}

.sidebar-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--surface2);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
}

.sidebar-profile-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
}

.sidebar-profile-sub {
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 0.06em;
}

@keyframes showcase-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 900px) {
    .showcase-track img {
        height: 180px;
    }
}