:root {
    color-scheme: dark;
    --bg: #0A0A0C;
    --deep-bg: #050817;
    --panel: rgba(28, 28, 30, 0.92);
    --panel-blue: rgba(17, 26, 49, 0.84);
    --panel-soft: rgba(255, 255, 255, 0.055);
    --line: rgba(255, 255, 255, 0.1);
    --accent: #7AA7FF;
    --accent-2: #C7D7FF;
    --link: #8CC4FF;
    --gold: #F5E9B8;
    --text: rgba(255, 255, 255, 0.94);
    --muted: rgba(255, 255, 255, 0.7);
    --subtle: rgba(255, 255, 255, 0.52);
    --shadow-blue: rgba(122, 167, 255, 0.22);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.75;
    color: var(--text);
    background:
        radial-gradient(circle at 18% 6%, rgba(122, 167, 255, 0.20), transparent 31%),
        radial-gradient(circle at 82% 0%, rgba(199, 215, 255, 0.14), transparent 26%),
        linear-gradient(180deg, var(--deep-bg) 0%, var(--bg) 58%, #000000 100%);
    padding: 32px 18px;
    letter-spacing: 0;
}

a {
    color: var(--link);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

body::before,
body::after {
    position: fixed;
    inset: auto;
    z-index: -1;
    width: 360px;
    height: 360px;
    content: "";
    pointer-events: none;
    border-radius: 999px;
    filter: blur(22px);
}

body::before {
    top: -110px;
    right: -120px;
    background: rgba(122, 167, 255, 0.18);
}

body::after {
    bottom: -160px;
    left: -130px;
    background: rgba(245, 233, 184, 0.10);
}

.page {
    width: min(980px, 100%);
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--panel);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.46), 0 0 56px rgba(122, 167, 255, 0.10);
    backdrop-filter: blur(22px);
}

.hero {
    position: relative;
    padding: 48px 34px 38px;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 22%),
        radial-gradient(circle at 22% 0%, rgba(157, 185, 255, 0.20), transparent 42%),
        linear-gradient(135deg, rgba(17, 26, 49, 0.96), rgba(10, 16, 29, 0.72));
    border-bottom: 1px solid var(--line);
}

.hero::after {
    position: absolute;
    right: 28px;
    bottom: -34px;
    width: 112px;
    height: 112px;
    content: "";
    border: 1px solid rgba(199, 215, 255, 0.18);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(199, 215, 255, 0.22) 0 8%, transparent 9% 32%, rgba(122, 167, 255, 0.12) 33% 48%, transparent 49%);
    box-shadow: 0 0 34px var(--shadow-blue);
}

.kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin: 0 0 14px;
    padding: 5px 11px;
    border: 1px solid rgba(185, 201, 255, 0.20);
    border-radius: 999px;
    color: var(--accent-2);
    background: rgba(17, 26, 49, 0.72);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0 0 8px;
    max-width: 720px;
    font-size: clamp(30px, 5vw, 48px);
    line-height: 1.2;
}

.meta {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.content {
    padding: 34px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 160px),
        rgba(0, 0, 0, 0.08);
}

.notice {
    position: relative;
    margin: 0 0 22px;
    padding: 20px 20px 20px 58px;
    border: 1px solid rgba(185, 201, 255, 0.18);
    border-radius: 18px;
    background: rgba(23, 30, 56, 0.88);
    color: var(--muted);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.20);
}

.notice::before {
    position: absolute;
    top: 19px;
    left: 18px;
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    content: "i";
    border-radius: 50%;
    color: #101521;
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
    font-weight: 800;
}

.section {
    position: relative;
    margin-top: 14px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.section + .section {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.section h2 {
    margin: 0 0 14px;
    color: var(--accent);
    font-size: 21px;
    line-height: 1.35;
}

.section h3 {
    margin: 18px 0 8px;
    font-size: 16px;
}

.section p {
    margin: 0 0 12px;
    color: var(--muted);
}

.section ul {
    margin: 0 0 12px 22px;
    padding: 0;
    color: var(--muted);
}

.section li {
    margin: 6px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 28px;
}

.contact-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: center;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(17, 26, 49, 0.88), rgba(255, 255, 255, 0.045));
}

.contact-label {
    color: var(--subtle);
    font-size: 13px;
}

.contact-value {
    color: var(--text);
    font-weight: 650;
}

.table-wrap {
    overflow-x: auto;
    margin: 14px 0;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.16);
}

table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
}

th,
td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid var(--line);
}

th {
    color: var(--text);
    background: rgba(17, 26, 49, 0.94);
    font-size: 13px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

td {
    color: var(--muted);
}

tr:last-child td {
    border-bottom: 0;
}

.footer {
    padding: 20px 30px 24px;
    color: var(--subtle);
    text-align: center;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
}

.footer p {
    margin: 0;
}

@media (max-width: 640px) {
    body {
        padding: 14px;
    }

    .page {
        border-radius: 18px;
    }

    .hero,
    .content,
    .footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero::after {
        width: 82px;
        height: 82px;
        right: 18px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-value,
    .contact-value a {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .notice {
        padding-left: 18px;
    }

    .notice::before {
        position: static;
        margin-bottom: 10px;
    }
}
