/* ===== Design Tokens (shared with /minecraft-plugins/, blue/navy accent) ===== */
:root {
    --bg-primary: #0a0e17;
    --bg-secondary: #111827;
    --bg-card: #151d2e;

    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-medium: rgba(255, 255, 255, 0.1);
    --border-strong: rgba(255, 255, 255, 0.15);

    --text-primary: #f0f4f8;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    --accent: #4a90ff;
    --accent-gradient: linear-gradient(135deg, #4a90ff, #2f6fed);

    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Outfit', 'Inter', -apple-system, sans-serif;

    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-default: 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ===== Header ===== */
#site-header {
    padding: 20px 24px;
}
.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
    color: var(--text-secondary);
}
.logo:hover { color: var(--text-primary); }
.logo svg { flex-shrink: 0; }

/* ===== Hero ===== */
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px 80px;
}
.hero-content {
    max-width: 620px;
    text-align: center;
}
.hero-logo {
    width: 88px;
    height: 88px;
    margin: 0 auto 28px;
    border-radius: var(--radius-md);
    border: 2px solid var(--border-medium);
    box-shadow: 0 0 40px rgba(74, 144, 255, 0.18);
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 16px;
    background: rgba(74, 144, 255, 0.08);
    border: 1px solid rgba(74, 144, 255, 0.25);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #7fb0ff;
    margin-bottom: 24px;
}
.live-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 6px #4ade80;
}
h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5.5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
    text-wrap: balance;
}
.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
    text-wrap: balance;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 52px; }
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition-default);
    font-family: var(--font-sans);
}
.btn-primary {
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: 0 4px 18px rgba(74, 144, 255, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(74, 144, 255, 0.5); }
.btn-ghost {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-medium);
    color: var(--text-primary);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.06); border-color: var(--border-strong); transform: translateY(-2px); }

/* ===== Highlights ===== */
.highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.highlight-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 999px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all var(--transition-fast);
}
.highlight-pill:hover { border-color: var(--border-medium); color: var(--text-primary); }

/* ===== Footer ===== */
#site-footer { padding: 32px 24px; text-align: center; }
.footer-copy { font-size: 0.8rem; color: var(--text-muted); }
.footer-copy a { color: var(--text-secondary); text-decoration: underline; text-decoration-color: var(--border-medium); }
.footer-copy a:hover { color: var(--text-primary); }

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; justify-content: center; }
}
