:root {
    --bg: #07111d;
    --bg-soft: #0d1a2a;
    --panel: rgba(14, 24, 40, 0.88);
    --line: rgba(122, 166, 255, 0.18);
    --text: #eef4ff;
    --muted: #9eacc5;
    --accent: #46d6a8;
    --accent-2: #7ba7ff;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
}

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

body {
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(70, 214, 168, 0.14), transparent 28%),
        radial-gradient(circle at top right, rgba(123, 167, 255, 0.16), transparent 30%),
        linear-gradient(180deg, #06101b 0%, #0a1422 100%);
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 85%);
}

.page {
    width: min(1040px, calc(100vw - 32px));
    margin: 0 auto;
    padding: 56px 0 72px;
}

.hero,
.card {
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--panel);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero {
    padding: 40px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: inherit;
    text-decoration: none;
}

.brand strong,
.brand small {
    display: block;
}

.brand small {
    color: var(--muted);
}

.brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent-2), #9a5bff);
    box-shadow: 0 16px 36px rgba(123, 167, 255, 0.35);
    font-weight: 800;
}

h1,
h2,
p {
    margin: 0;
}

h1 {
    margin-top: 18px;
    font-size: clamp(42px, 7vw, 72px);
    line-height: 0.96;
    max-width: 760px;
}

.hero p {
    max-width: 640px;
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--muted);
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button[aria-disabled='true'] {
    cursor: default;
}

.primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    color: #041019;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.card {
    padding: 26px;
}

.card h2 {
    font-size: 20px;
}

.card p {
    margin-top: 10px;
    color: var(--muted);
    line-height: 1.7;
}

@media (max-width: 760px) {
    .page {
        padding: 24px 0 40px;
    }

    .hero,
    .card {
        border-radius: 22px;
    }

    .hero {
        padding: 24px;
    }

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