:root {
    color-scheme: dark;
    --bg: #090d16;
    --panel: #111827;
    --panel2: #172033;
    --text: #edf2ff;
    --muted: #9da9bd;
    --accent: #7c9cff;
    --line: rgba(255,255,255,.09);
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    min-height: 100%;
    background:
        radial-gradient(circle at 20% 0%, rgba(76, 103, 210, .20), transparent 34rem),
        radial-gradient(circle at 90% 10%, rgba(115, 71, 180, .14), transparent 30rem),
        var(--bg);
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
    display: flex;
    flex-direction: column;
}

.wrap {
    width: min(1040px, calc(100% - 32px));
    margin: 0 auto;
}

header {
    border-bottom: 1px solid var(--line);
    background: rgba(9, 13, 22, .75);
    backdrop-filter: blur(12px);
}

nav {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    font-weight: 800;
    letter-spacing: .04em;
    color: white;
    text-decoration: none;
}

.links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.links a {
    color: var(--muted);
    text-decoration: none;
}

.links a:hover { color: white; }

main {
    flex: 1;
    padding: 72px 0;
}

.hero {
    padding: 56px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(23,32,51,.92), rgba(13,18,31,.92));
    box-shadow: 0 24px 80px rgba(0,0,0,.25);
}

.eyebrow {
    color: var(--accent);
    font-size: .8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .16em;
}

h1 {
    margin: 10px 0 16px;
    font-size: clamp(2.4rem, 7vw, 5.4rem);
    line-height: .98;
    letter-spacing: -.045em;
}

h2 { margin-top: 0; }

p, li {
    color: var(--muted);
    line-height: 1.7;
}

code {
    color: #dbe5ff;
    background: rgba(255,255,255,.06);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 2px 7px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.card {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(17,24,39,.72);
}

.status {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 8px 11px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.04);
    color: #dfe7f8;
    font-size: .9rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6ee7a8;
    box-shadow: 0 0 16px rgba(110,231,168,.7);
}

footer {
    padding: 24px 0 36px;
    color: var(--muted);
    border-top: 1px solid var(--line);
}

@media (max-width: 760px) {
    .hero { padding: 30px; }
    .grid { grid-template-columns: 1fr; }
    nav { align-items: flex-start; padding: 18px 0; flex-direction: column; }
}
