* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    height: 100%;
}

body {
    font-family: "Avenir Next", "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 20% 20%, #174362, transparent 40%),
        radial-gradient(circle at 80% 10%, #0d5f8b, transparent 35%),
        linear-gradient(150deg, #08131d, #091a26);
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #f2f5f8;
}

.brand-lockup {
    width: min(920px, 94vw);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.8rem, 2.6vw, 2rem);
    filter: invert(1) brightness(1.15);
    animation: rise 700ms ease forwards;
}

.brand-icon {
    height: clamp(82px, 18vw, 240px);
    width: auto;
    flex: 0 0 auto;
}

.brand-wordmark {
    height: clamp(82px, 11vw, 132px);
    width: auto;
}

.hero {
    min-height: 100%;
    width: min(1080px, 94vw);
    margin: 0 auto;
    display: grid;
    place-content: center;
    justify-items: center;
    gap: 1.1rem;
    text-align: center;
    padding: 2rem 0;
}

.tagline {
    margin-top: 0;
    font-size: clamp(1rem, 2vw, 1.4rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #c6d3de;
    animation: rise 700ms ease 120ms forwards;
    opacity: 0;
    transform: translateY(12px);
}

.contact-line {
    margin: 0;
    font-size: 0.98rem;
    color: #d5e0e8;
}

.contact-line a {
    color: #f2f5f8;
    text-underline-offset: 0.2rem;
}

.legal-link {
    color: #c6d3de;
    text-decoration: underline;
    text-underline-offset: 0.2rem;
    font-size: 0.95rem;
}

.legal-link:hover {
    color: #f2f5f8;
}

.legal-wrap {
    width: min(900px, 94vw);
    margin: 0 auto;
    padding: 2rem 0 3rem;
}

.back-link {
    display: inline-block;
    margin-bottom: 1rem;
    color: #c6d3de;
    text-decoration: none;
}

.back-link:hover {
    color: #f2f5f8;
    text-decoration: underline;
}

.legal-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    padding: clamp(1rem, 2vw, 2rem);
    line-height: 1.6;
}

.legal-card h1 {
    margin-top: 0;
}

.legal-card h2 {
    margin-top: 1.6rem;
    margin-bottom: 0.5rem;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
}

.legal-card a {
    color: #f2f5f8;
}

.legal-card ul {
    padding-left: 1.2rem;
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 760px) {
    .brand-lockup {
        flex-direction: column;
        gap: 0.4rem;
    }

    .brand-icon {
        height: clamp(64px, 32vw, 220px);
    }

    .brand-wordmark {
        height: clamp(64px, 18vw, 96px);
    }

    .tagline {
        max-width: 26ch;
        line-height: 1.4;
    }
}

@media (prefers-reduced-motion: reduce) {
    .brand-lockup,
    .tagline {
        animation: none;
        opacity: 1;
        transform: none;
    }
}
