:root {
    color-scheme: dark;
    --background: radial-gradient(circle at 18% -12%, rgba(94, 72, 210, 0.38), transparent 58%),
                  radial-gradient(circle at 78% 18%, rgba(34, 110, 198, 0.22), transparent 64%),
                  #05020f;
    --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-sans);
    color: #f5f4ff;
    background: var(--background);
    background-attachment: fixed;
    padding: clamp(24px, 6vw, 72px) clamp(16px, 6vw, 48px);
    display: flex;
    justify-content: center;
}

a {
    color: inherit;
}

.page-shell {
    width: min(940px, 100%);
    display: flex;
    flex-direction: column;
    gap: clamp(32px, 6vw, 64px);
}

.hero {
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(
        160deg,
        rgba(22, 14, 56, 0.85) 0%,
        rgba(12, 8, 30, 0.82) 100%
    );
    padding: clamp(28px, 6vw, 52px);
    display: flex;
    flex-direction: column;
    gap: clamp(18px, 4vw, 28px);
    box-shadow:
        0 40px 120px rgba(5, 2, 20, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin: 0;
}

.intro {
    margin: 0;
    color: rgba(224, 222, 255, 0.7);
    line-height: 1.65;
    max-width: 680px;
}

.logo-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(140, 132, 255, 0.14);
    border: 1px solid rgba(140, 132, 255, 0.28);
    border-radius: 999px;
    padding: 10px 20px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.74rem;
    color: rgba(184, 184, 255, 0.9);
    backdrop-filter: blur(8px);
    width: fit-content;
}

.logo-dot {
    width: 12px;
    height: 12px;
    border-radius: 12px;
    background: rgba(140, 132, 255, 0.8);
    box-shadow: 0 0 18px rgba(140, 132, 255, 0.6);
}

.pulse-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.92;
    mix-blend-mode: screen;
    filter: saturate(1.25) brightness(1.05);
    border-radius: inherit;
}

.legal {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.legal dt {
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: rgba(246, 247, 255, 0.66);
}

.legal dd {
    margin: 6px 0 0 0;
    font-size: 0.98rem;
}

.legal div {
    background: rgba(12, 8, 28, 0.6);
    border-radius: 18px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(246, 247, 255, 0.66);
}

footer a {
    color: rgba(246, 247, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
}

footer a:hover {
    color: #ffffff;
}

.dot-separator {
    margin: 0 8px;
}

.back-link {
    color: rgba(246, 247, 255, 0.66);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.back-link:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    body {
        padding: clamp(18px, 8vw, 42px) clamp(12px, 7vw, 28px);
    }

    .page-shell {
        gap: clamp(28px, 10vw, 48px);
    }

    .legal dl {
        grid-template-columns: 1fr;
    }
}
