:root {
    --bg: #060d18;
    --text: #e8eef7;
    --text-muted: #9fb0c7;
    --accent: #4da3ff;
    --accent-hover: #7bb8ff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    background: var(--bg);
    display: flex;
    flex-direction: column;
}

.landing {
    position: relative;
    flex: 1;
    display: grid;
    place-items: center;
    padding: 3rem 1.5rem;
    background:
        radial-gradient(circle at 20% 20%, rgba(77, 163, 255, 0.12), transparent 35%),
        radial-gradient(circle at 80% 70%, rgba(30, 80, 140, 0.25), transparent 40%),
        linear-gradient(180deg, #040912 0%, #0b1524 50%, #08101c 100%);
    overflow: hidden;
}

.landing::before {
    content: "";
    position: absolute;
    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: 48px 48px;
    mask-image: radial-gradient(circle at center, black, transparent 75%);
    pointer-events: none;
}

.landing-legal {
    place-items: start center;
    align-content: start;
    padding-top: 2.5rem;
    padding-bottom: 3rem;
}

.content {
    position: relative;
    z-index: 1;
    width: min(720px, 100%);
    text-align: center;
}

.eyebrow {
    margin: 0 0 1rem;
    color: var(--accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
}

h1 {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.15;
}

.intro {
    margin: 0 auto 2rem;
    max-width: 38rem;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.cta {
    display: inline-block;
    background: var(--accent);
    color: #04101f;
    font-weight: 700;
    padding: 0.9rem 1.4rem;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.15s ease;
}

.cta:hover {
    background: var(--accent-hover);
}

.cta-note {
    margin: 0.85rem 0 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.site-footer {
    padding: 1.25rem 1.5rem 1.75rem;
    text-align: center;
    color: var(--text-muted);
    border-top: 1px solid rgba(159, 176, 199, 0.15);
    background: #050a12;
    font-size: 0.95rem;
}

.site-footer a {
    color: var(--accent);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--accent-hover);
}

.legal-content {
    position: relative;
    z-index: 1;
    width: min(680px, 100%);
    margin: 0 auto;
    line-height: 1.7;
    text-align: left;
}

.legal-content h1 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    line-height: 1.2;
}

.legal-content h2 {
    margin: 1.75rem 0 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
}

.legal-content a {
    color: var(--accent);
    text-decoration: none;
}

.legal-content a:hover {
    color: var(--accent-hover);
}

.legal-content section p {
    margin: 0;
    color: var(--text-muted);
}

.legal-note {
    color: var(--text-muted);
    margin: 0 0 1.5rem;
    font-size: 0.95rem;
}

.back-link {
    margin: 0 0 1.5rem;
}

.back-link a {
    color: var(--accent);
    text-decoration: none;
}

.back-link a:hover {
    color: var(--accent-hover);
}

@media (max-width: 640px) {
    .landing {
        padding: 2.5rem 1rem;
    }

    .landing-legal {
        padding-top: 2rem;
    }
}
