:root {
    --grey-dark: #1f1f1f;
    --grey-mid: #9e9e9e;
    --grey-light: #d0d0d0;
    --neon: #caff00;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", system-ui, sans-serif;
}

body {
    background: #111;
    color: var(--grey-light);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Subtle grid animation */
.background-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: drift 20s linear infinite;
    z-index: -1;
}

@keyframes drift {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 40px 40px;
    }
}

.header {
    display: flex;
    justify-content: space-between;
    padding: 2rem;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--grey-light);
}

.status-tag {
    border: 1px solid var(--grey-mid);
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    color: var(--grey-mid);
}

.hero {
    text-align: center;
    padding: 4rem 1.5rem;
}

.hero h2 {
    font-size: 2.4rem;
    font-weight: 600;
}

.highlight {
    color: var(--neon);
}

.subtitle {
    margin-top: 1rem;
    color: var(--grey-mid);
    max-width: 600px;
    margin-inline: auto;
}

.risk-panel {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2.5rem 0;
}

.risk-item {
    padding: 0.8rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.8rem;
}

.low {
    border: 1px solid var(--neon);
    color: var(--neon);
    opacity: 0.6;
}

.medium {
    border: 1px solid var(--neon);
    color: var(--neon);
}

.high {
    background: var(--neon);
    color: #000;
}

.pulse {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(202, 255, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(202, 255, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(202, 255, 0, 0);
    }
}

.cta {
    margin-top: 2rem;
    padding: 1rem 2.2rem;
    font-size: 1rem;
    font-weight: 700;
    background: var(--neon);
    border: none;
    color: #000;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(202, 255, 0, 0.3);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
}

.feature {
    border: 1px solid #2a2a2a;
    padding: 1.5rem;
    border-radius: 8px;
}

.feature h3 {
    margin-bottom: 0.6rem;
    color: var(--grey-light);
}

.feature p {
    color: var(--grey-mid);
    font-size: 0.9rem;
}

.footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.8rem;
    color: var(--grey-mid);
}