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

body {
    font-family: 'Inter', sans-serif;
    background: #080c10;
    color: #c8d6e5;
    min-height: 100vh;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2.5rem;
    border-bottom: 0.5px solid rgba(255,255,255,0.08);
}

.logo {
    font-family: 'Space Mono', monospace;
    font-size: 18px;
    color: #00e5ff;
    letter-spacing: -0.5px;
}

.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-size: 13px; color: #6b8299; text-decoration: none; }
.nav-links a:hover { color: #c8d6e5; }

.btn-outline {
    font-size: 13px;
    border: 0.5px solid rgba(0,229,255,0.4);
    color: #00e5ff;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Space Mono', monospace;
}

.hero {
    padding: 5rem 2.5rem 4rem;
    max-width: 680px;
}

.tag {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: #00e5ff;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

h1 {
    font-size: 42px;
    font-weight: 300;
    line-height: 1.15;
    color: #e8f0f8;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}

.accent { color: #00e5ff; font-weight: 500; }

.sub {
    font-size: 15px;
    color: #6b8299;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 2.5rem;
}

.actions { display: flex; gap: 1rem; align-items: center; }

.btn-primary {
    background: #00e5ff;
    color: #080c10;
    padding: 0.65rem 1.5rem;
    border-radius: 4px;
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    text-decoration: none;
    font-weight: 700;
}

.btn-ghost { font-size: 13px; color: #6b8299; text-decoration: none; }
.btn-ghost:hover { color: #c8d6e5; }

.divider {
    border: none;
    border-top: 0.5px solid rgba(255,255,255,0.06);
    margin: 0 2.5rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.feat {
    padding: 2rem 2.5rem;
    border-right: 0.5px solid rgba(255,255,255,0.06);
}

.feat:last-child { border-right: none; }

.feat-icon { font-size: 16px; color: #00e5ff; margin-bottom: 0.75rem; opacity: 0.8; }

.feat-title {
    font-size: 13px;
    font-weight: 500;
    color: #c8d6e5;
    margin-bottom: 0.4rem;
}

.feat-desc { font-size: 12px; color: #4a6070; line-height: 1.6; }

.soon {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: #00e5ff;
    border: 0.5px solid rgba(0,229,255,0.3);
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 6px;
    vertical-align: middle;
    opacity: 0.7;
}
