:root {
    --bg: #0a0a0a;
    --bg-card: #161b22;
    --bg-hover: #1c2129;
    --border: #30363d;
    --text: #e6edf3;
    --text-dim: #8b949e;
    --accent: #238636;
    --accent-blue: #58a6ff;
    --accent-yellow: #d29922;
    --font: 'Inter', system-ui, -apple-system, sans-serif;
    --radius: 12px;
}

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

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

/* Nav */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text);
    text-decoration: none;
}

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

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.nav-btn {
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text) !important;
    transition: background 0.2s, border-color 0.2s;
}

.nav-btn:hover {
    background: var(--bg-hover);
    border-color: var(--text-dim);
}

/* Hero */
main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero {
    padding-top: 160px;
    padding-bottom: 80px;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-dim);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text) 0%, var(--text-dim) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 18px;
    color: var(--text-dim);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Products */
.products { padding-bottom: 100px; }

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

@media (max-width: 640px) {
    .product-grid { grid-template-columns: 1fr; }
}

.product-card {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.product-card:hover {
    border-color: var(--text-dim);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.card-status {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.card-status.live {
    background: rgba(35, 134, 54, 0.2);
    color: var(--accent);
    border: 1px solid rgba(35, 134, 54, 0.3);
}

.card-status.building {
    background: rgba(88, 166, 255, 0.15);
    color: var(--accent-blue);
    border: 1px solid rgba(88, 166, 255, 0.3);
}

.product-card h2 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.card-label {
    color: var(--accent-blue);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.card-desc {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.card-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.card-stats span {
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 12px;
    color: var(--text-dim);
    font-weight: 500;
}

.card-arrow {
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-blue);
    transition: color 0.2s;
}

.product-card:hover .card-arrow { color: var(--text); }

/* Footer */
.footer-section {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-section p {
    font-size: 13px;
    color: var(--text-dim);
}
