:root {
    color-scheme: dark;
    --background: #061c2a;
    --surface: #0a2836;
    --surface-soft: #0d3140;
    --text: #effff9;
    --muted: #a6c7c2;
    --accent: #25e59c;
    --accent-strong: #6fffc2;
    --border: #1c4a50;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 50% -12rem, rgba(37, 229, 156, 0.14), transparent 32rem),
        linear-gradient(180deg, #082331 0, var(--background) 34rem);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
}

.container {
    width: min(100% - 2rem, 850px);
    margin: 0 auto;
}

.site-header {
    border-bottom: 1px solid var(--border);
    background: rgba(6, 28, 42, 0.84);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 10;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 4.5rem;
}

.brand {
    align-items: center;
    color: var(--accent);
    display: inline-flex;
    font-size: 1.1rem;
    font-weight: 800;
    gap: 0.7rem;
    letter-spacing: -0.03em;
    text-decoration: none;
}

.brand img {
    border-radius: 0.65rem;
    display: block;
}

nav {
    display: flex;
    gap: 0.4rem;
}

nav a {
    border-radius: 0.5rem;
    color: var(--muted);
    padding: 0.4rem 0.7rem;
    text-decoration: none;
}

nav a:hover,
nav a[aria-current="page"] {
    background: rgba(37, 229, 156, 0.1);
    color: var(--accent-strong);
}

nav a:focus-visible,
.brand:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.legal-content {
    padding: 4.5rem 0;
}

.page-brand {
    display: flex;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.page-brand img {
    border: 1px solid rgba(37, 229, 156, 0.28);
    border-radius: 1.5rem;
    box-shadow: 0 1rem 3rem rgba(0, 10, 18, 0.3), 0 0 2.5rem rgba(37, 229, 156, 0.08);
    display: block;
}

article {
    border: 1px solid var(--border);
    border-radius: 1rem;
    background: linear-gradient(145deg, rgba(10, 40, 54, 0.96), rgba(7, 31, 44, 0.96));
    box-shadow: 0 1.5rem 4rem rgba(0, 10, 18, 0.3);
    padding: clamp(1.5rem, 5vw, 3.5rem);
    position: relative;
    overflow: hidden;
}

article::before {
    background: linear-gradient(90deg, var(--accent), transparent);
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.eyebrow {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1,
h2 {
    color: var(--text);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.1rem, 7vw, 3.8rem);
    letter-spacing: -0.05em;
    margin: 0.25rem 0 1rem;
}

h2 {
    color: var(--accent-strong);
    font-size: 1.2rem;
    margin: 2.4rem 0 0.55rem;
}

p {
    color: var(--muted);
    margin: 0.55rem 0;
}

.lead {
    color: var(--text);
    font-size: 1.15rem;
    max-width: 46rem;
}

.site-footer {
    color: var(--muted);
    font-size: 0.9rem;
    padding: 1.5rem 0 2.5rem;
    text-align: center;
}

.footer-content {
    align-items: center;
    display: flex;
    gap: 0.6rem;
    justify-content: center;
}

.footer-content img {
    border-radius: 0.45rem;
    opacity: 0.85;
}

@media (max-width: 480px) {
    .header-content {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 0.85rem 0;
    }

    .legal-content {
        padding: 1.5rem 0;
    }

    .page-brand img {
        height: 88px;
        width: 88px;
    }
}
