:root {
    --bg: #0b1021;
    --bg-alt: #0f172a;
    --card: #10172b;
    --accent: #e3ff6f;
    --accent-2: #7cf2d4;
    --text: #f7fbff;
    --muted: #c6d1e3;
    --border: rgba(255, 255, 255, 0.08);
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
    background: radial-gradient(120% 120% at 20% 20%, rgba(124, 242, 212, 0.08), transparent 40%), var(--bg);
    color: var(--text);
    min-height: 100vh;
    position: relative;
}

.bg-grid {
    position: fixed;
    inset: 0;
    background-image: linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 120px 120px;
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
}

.bg-accent {
    position: fixed;
    width: 55vw;
    height: 55vw;
    background: radial-gradient(circle at 30% 30%, rgba(227, 255, 111, 0.18), transparent 55%), radial-gradient(circle at 80% 10%, rgba(124, 242, 212, 0.12), transparent 45%);
    top: -12vh;
    right: -8vw;
    filter: blur(20px);
    z-index: 0;
    pointer-events: none;
}

.nav {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 6vw;
    backdrop-filter: blur(14px);
    background: rgba(11, 16, 33, 0.7);
    border-bottom: 1px solid var(--border);
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.nav__dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(124, 242, 212, 0.12);
}

.nav__links a {
    color: var(--muted);
    text-decoration: none;
    margin-left: 18px;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    padding: 90px 6vw 48px;
    position: relative;
    z-index: 1;
}

.hero__text h1 {
    font-size: clamp(2.6rem, 4vw, 3.6rem);
    margin: 12px 0;
    line-height: 1.1;
}

.hero__text .lede {
    font-size: 1.05rem;
    color: var(--muted);
    margin-bottom: 28px;
}

.hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #071422;
    border: none;
    box-shadow: 0 12px 30px rgba(124, 242, 212, 0.25);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.04);
}

.btn:hover {
    transform: translateY(-1px);
}

.hero__status {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #f87171;
    box-shadow: 0 0 0 6px rgba(248, 113, 113, 0.15);
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.hero__card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
}

.card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.card__label {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0;
}

.card__title {
    font-size: 1.5rem;
    margin: 2px 0 0;
}

.badge {
    padding: 6px 10px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.3px;
}

.badge-live {
    background: rgba(124, 242, 212, 0.16);
    border: 1px solid rgba(124, 242, 212, 0.45);
    color: var(--text);
}

.card__body {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
}

.metric {
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
}

.metric__label {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.metric__value {
    margin: 6px 0 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.metric__ok {
    color: var(--accent);
}

.card__footer {
    margin-top: 14px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pill {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--muted);
    font-weight: 600;
    font-size: 0.9rem;
}

.section {
    padding: 40px 6vw 20px;
    position: relative;
    z-index: 1;
}

.section__header h2 {
    margin: 6px 0 8px;
    font-size: clamp(1.8rem, 3vw, 2.3rem);
}

.section__lede {
    color: var(--muted);
    max-width: 720px;
}

.eyebrow {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin: 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.card.feature {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow);
    transition: transform 0.18s ease, border-color 0.18s ease;
}

.card.feature:hover {
    transform: translateY(-3px);
    border-color: rgba(227, 255, 111, 0.3);
}

.card.feature .icon {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.stack__item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
}

.checklist .list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display: grid;
    gap: 10px;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 14px;
    color: var(--muted);
    font-weight: 600;
}

.checklist code {
    background: rgba(255, 255, 255, 0.06);
    padding: 2px 6px;
    border-radius: 6px;
    color: var(--text);
}

.cta {
    padding: 60px 6vw 70px;
    margin: 40px 6vw;
    background: linear-gradient(140deg, rgba(227, 255, 111, 0.2), rgba(124, 242, 212, 0.12));
    border-radius: calc(var(--radius) + 6px);
    border: 1px solid rgba(227, 255, 111, 0.3);
    box-shadow: var(--shadow);
}

.cta__content h2 {
    margin: 10px 0;
    font-size: clamp(1.9rem, 3vw, 2.4rem);
}

.footer {
    padding: 26px 6vw 40px;
    color: var(--muted);
    text-align: center;
    border-top: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
    position: relative;
}

.lede {
    margin: 0 0 18px;
    color: var(--muted);
}

code {
    font-family: "SFMono-Regular", Consolas, Menlo, monospace;
}

@media (max-width: 700px) {
    .nav__links {
        display: none;
    }
    .hero {
        padding-top: 70px;
    }
    .cta {
        margin: 20px 4vw;
        padding: 40px 6vw;
    }
}
