
:root {
    --bg: #0f1117;
    --surface: #181b24;
    --surface2: #1f2333;
    --accent: #4a7cfe;
    --accent-dim: rgba(74,124,254,0.12);
    --accent-border: rgba(74,124,254,0.25);
    --text: #f0f2f8;
    --text-2: #9399b2;
    --text-3: #5a6080;
    --border: rgba(255,255,255,0.07);
    --border-2: rgba(255,255,255,0.12);
    --green: #22c55e;
    --radius: 14px;
    --radius-sm: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

nav {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.25rem;
    height: 60px;
    background: rgba(15,17,23,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.nav-logo {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
}
.nav-top{
    display: flex;
    align-items: center;
}
.logo{
    width: 40px;
}
.nav-right { display: flex; align-items: center; gap: 0.75rem; }
.nav-links {
    display: flex; gap: 1.75rem; list-style: none;
}
.nav-links a {
    color: var(--text-2); text-decoration: none;
    font-size: 0.875rem; font-weight: 500;
    transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }
.btn {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.15s, transform 0.15s;
    white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { opacity: 0.88; }
.btn-outline {
    background: transparent; color: var(--text);
    border: 1px solid var(--border-2);
}
.btn-outline:hover { border-color: var(--accent-border); background: var(--accent-dim); }

.hero {
    padding: 4rem 1.25rem 3rem;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}
.hero-chip {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    color: var(--accent);
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    margin-bottom: 1.75rem;
}
.chip-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: blink 2.4s ease infinite;
}
@keyframes blink {
    0%,100% { opacity:1; } 50% { opacity:0.3; }
}
.hero h1 {
    font-size: clamp(2.2rem, 7vw, 3.6rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 1.1rem;
}
.hero h1 em {
    font-style: normal;
    color: var(--accent);
}
.hero p {
    font-size: 1rem;
    color: var(--text-2);
    max-width: 440px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}
.hero-ctas {
    display: flex; gap: 0.75rem;
    justify-content: center; flex-wrap: wrap;
    margin-bottom: 3rem;
}
.space{
    width: 0.75rem;
}

.section {
    max-width: 680px;
    margin: 0 auto;
    padding: 3.5rem 1.25rem;
}
.section-wide { max-width: 900px; }
.section-label {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.07em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 0.75rem;
}
.section h2 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin-bottom: 0.6rem;
}
.section-desc {
    color: var(--text-2); font-size: 0.95rem; line-height: 1.7;
    max-width: 480px;
}
hr.divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0 1.25rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 2rem;
}
@media (max-width: 500px) {
    .features-grid { grid-template-columns: 1fr; }
}
.feat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    transition: border-color 0.2s;
}
.feat-card:hover { border-color: var(--border-2); }
.feat-icon {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    display: block;
}
.feat-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}
.feat-card p {
    font-size: 0.82rem;
    color: var(--text-2);
    line-height: 1.6;
}

.coming-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-top: 0.75rem;
    display: flex; align-items: center;
    gap: 1.25rem; flex-wrap: wrap;
}
.coming-badge {
    display: inline-block;
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.25);
    color: var(--green);
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.04em; text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.coming-card h3 {
    font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem;
}
.coming-card p {
    font-size: 0.82rem; color: var(--text-2);
}
.coming-icons { display: flex; gap: 0.5rem; margin-left: auto; }
.coming-icon {
    width: 52px; height: 52px;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
}

.team-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    display: flex; align-items: center; gap: 1rem;
    margin-top: 1.5rem;
    max-width: 320px;
}
.team-av {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.team-name { font-size: 0.95rem; font-weight: 600; }
.team-role { font-size: 0.8rem; color: var(--text-2); margin-top: 0.1rem; }

.discord-card {
    background: var(--surface);
    border: 1px solid rgba(88,101,242,0.3);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex; align-items: center; gap: 1.25rem;
    flex-wrap: wrap; margin-top: 1.5rem;
}
.discord-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.2rem; }
.discord-card p { font-size: 0.82rem; color: var(--text-2); }
.btn-discord {
    background: #5865f2; color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    font-size: 0.85rem; font-weight: 600;
    text-decoration: none;
    transition: opacity 0.15s; white-space: nowrap;
    margin-left: auto;
    display: inline-block;
}
.btn-discord:hover { opacity: 0.85; }

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.75rem;
    margin-top: 2rem;
}
.dl-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.1rem 1rem;
    display: flex; align-items: center; gap: 0.75rem;
    text-decoration: none; color: var(--text);
    transition: border-color 0.2s, background 0.2s;
}
.dl-card:hover { border-color: var(--accent-border); background: var(--accent-dim); }
.dl-icon { font-size: 1.5rem; flex-shrink: 0; }
.dl-small { font-size: 0.65rem; color: var(--text-2); display: block; }
.dl-big { font-size: 0.9rem; font-weight: 600; display: block; margin-top: 0.1rem; }

footer {
    border-top: 1px solid var(--border);
    padding: 2rem 1.25rem;
    max-width: 900px;
    margin: 0 auto;
}
.footer-top {
    display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap; gap: 1rem;
    margin-bottom: 1.5rem;
}
.footer-logo { font-size: 1rem; font-weight: 700; color: var(--text); letter-spacing: -0.02em; }
.footer-logo span { color: var(--accent); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a {
    color: var(--text-2); text-decoration: none;
    font-size: 0.82rem; transition: color 0.15s;
}
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 0.75rem; color: var(--text-3); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.on { opacity: 1; transform: none; }

@media (min-width: 640px) {
    nav { padding: 0 2.5rem; }
    .hero { padding: 5rem 2rem 3rem; }
    .section { padding: 4.5rem 2rem; }
    hr.divider { margin: 0 2rem; }
    footer { padding: 2.5rem 2rem; }
}
@media (max-width: 480px) {
    .nav-links { display: none; }
    .discord-btn { margin-left: 0; }
    .btn-discord { margin-left: 0; width: 100%; text-align: center; }
}