:root {
    color-scheme: dark;
    --bg: #0b0f14;
    --bg-elevated: #11161d;
    --text: #f2f5f8;
    --text-muted: #9aa7b4;
    --accent: #42b883;
    --accent-strong: #35a873;
    --border: rgba(255, 255, 255, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

.page {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    padding: 6rem 1.5rem 4rem;
    overflow: hidden;
}

.glow {
    position: absolute;
    top: -220px;
    left: 50%;
    transform: translateX(-50%);
    width: 640px;
    height: 420px;
    background: radial-gradient(closest-side, var(--accent), transparent 70%);
    opacity: 0.18;
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

.hero {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 3.5rem;
}

.logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    margin: 0 0 0.75rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 2.75rem);
    line-height: 1.15;
    margin: 0 0 1rem;
    font-weight: 700;
}

.subhead {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0 auto;
    max-width: 480px;
    line-height: 1.5;
}

.body {
    position: relative;
    z-index: 1;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2.5rem;
}

.body p {
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--text);
    margin: 0 0 1.1rem;
}

.body p:last-child {
    margin-bottom: 0;
}

.body strong {
    color: var(--accent);
}

.body h2 {
    font-size: 1.3rem;
    margin: 0 0 1rem;
    font-weight: 700;
}

.body ol {
    margin: 0;
    padding-left: 1.25rem;
}

.body li {
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.body li:last-child {
    margin-bottom: 0;
}

.body .muted {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.body code {
    background: rgba(255, 255, 255, 0.08);
    padding: 0.15rem 0.4rem;
    border-radius: 6px;
    font-size: 0.9em;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.code {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin: 0 0 0.75rem;
    overflow-x: auto;
}

.code code {
    background: none;
    padding: 0;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.95rem;
    color: var(--accent);
}

.signoff {
    color: var(--text-muted);
    font-style: italic;
}

.cta {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid var(--border);
    color: var(--text);
    background: var(--bg-elevated);
    transition: transform 0.15s ease, border-color 0.15s ease;
}

.button:hover {
    transform: translateY(-1px);
    border-color: var(--accent);
}

.button-primary {
    background: var(--accent);
    border-color: var(--accent);
    color: #05130c;
}

.button-primary:hover {
    background: var(--accent-strong);
    border-color: var(--accent-strong);
}

.footer {
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer p {
    margin: 0;
}

@media (max-width: 480px) {
    .page {
        padding: 4rem 1.25rem 3rem;
    }

    .body {
        padding: 1.5rem;
    }
}
