:root {
    --bg: #101827;
    --text: #f9fafb;
    --accent: #38bdf8;
    --muted: #cbd5f5;
    --shadow: rgba(15, 23, 42, 0.4);
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
    box-sizing: border-box;
}

body.home {
    margin: 0;
    min-height: 100vh;
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.1), transparent),
        radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.08), transparent),
        var(--bg);
    color: var(--text);
    display: flex;
}

.home__header {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 2.5rem clamp(2rem, 4vw, 5rem);
}

.home__nav {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.home__login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 15px 35px -20px var(--shadow);
    transition: transform 120ms ease, background-color 120ms ease;
}

.home__login:hover {
    transform: translateY(-1px);
    background: rgba(56, 189, 248, 0.35);
}

.home__brand {
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.home__brand-name {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: .875rem;
    font-weight: 700;
    color: var(--muted);
}

.home__brand-tagline {
    font-size: 1rem;
    color: rgba(203, 213, 225, 0.85);
}

.home__hero {
    margin-top: clamp(3rem, 10vw, 8rem);
    max-width: 32rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.home__title {
    font-size: clamp(2.75rem, 5vw, 3.75rem);
    margin: 0;
    line-height: 1.05;
}

.home__subtitle {
    margin: 0;
    font-size: 1.1rem;
    color: rgba(203, 213, 225, 0.75);
    line-height: 1.6;
}

.home__cta {
    display: flex;
    gap: 1rem;
    margin-top: .5rem;
}

.home__cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.8rem;
    border-radius: 0.8rem;
    background: var(--accent);
    color: var(--bg);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 20px 45px -30px rgba(56, 189, 248, 0.8);
    transition: transform 120ms ease, box-shadow 120ms ease;
}

.home__cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 24px 55px -28px rgba(56, 189, 248, 0.95);
}

@media (max-width: 768px) {
    .home__header {
        padding: 1.75rem 1.5rem 3rem;
    }

    .home__nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .home__brand {
        padding-top: .5rem;
    }

    .home__hero {
        margin-top: 2.5rem;
    }
}

