:root {
    --bg: #0b0d12;
    --panel: #0f1117;
    --panel-alt: #111827;
    --text-primary: #e5e7eb;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --accent: #60a5fa;
    --border: #1f2937;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background:
        radial-gradient(900px 500px at top, #0f172a 0%, var(--bg) 55%);
    color: var(--text-primary);
    font-family: "Inter", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
    line-height: 1.65;
}

/* Page */
.page {
    max-width: 980px;
    margin: 0 auto;
    padding: 64px 32px 56px;
}

/* Panels */
.panel {
    background: linear-gradient(180deg, var(--panel), var(--panel-alt));
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px;
}

/* Identity */
.identity {
    text-align: center;
    margin-bottom: 36px;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid var(--border);
    margin-bottom: 20px;
}

h1 {
    font-size: 2.4rem;
    margin: 0;
}

h2 {
    margin-top: 10px;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.tagline {
    margin-top: 14px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Statement */
.statement {
    margin-bottom: 48px;
    text-align: center;
    font-size: 1.05rem;
}

/* Content */
.content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

/* Blocks */
.block h3,
.contact h3 {
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* Lists */
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul li {
    margin-bottom: 10px;
    padding-left: 18px;
    position: relative;
}

ul li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* Contact */
.contact {
    text-align: center;
    margin-bottom: 72px;
    border-color: var(--accent);
}

.contact-text {
    max-width: 640px;
    margin: 0 auto 24px;
    color: #d1d5db;
}

/* Buttons */
.actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 22px;
    border-radius: 10px;
    border: 1px solid var(--accent);
    background: var(--accent);
    color: var(--bg);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn:hover {
    filter: brightness(1.1);
}

.btn.ghost {
    background: transparent;
    color: var(--accent);
}

/* Footer */
.footer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 48px;
}

/* Responsive */
@media (max-width: 820px) {
    .content {
        grid-template-columns: 1fr;
    }
}
