*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #0d0d0d;
    --fg: #c8c4bb;
    --muted: #555047;
    --accent: #d4a96a;
    --border: #222018;
    --hover-bg: #161410;
}

html, body {
    height: 100%;
}

body {
    background: var(--bg);
    color: var(--fg);
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 300;
    font-size: 13px;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    letter-spacing: 0.01em;
}

/* Subtle noise texture overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    z-index: 100;
}

.container {
    width: 100%;
    max-width: 480px;
    animation: fadeIn 0.8s ease both;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Header ── */
.header {
    margin-bottom: 40px;
    animation: fadeIn 0.8s ease 0.1s both;
}

.name {
    font-family: 'IM Fell English', serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--fg);
    line-height: 1.1;
    margin-bottom: 6px;
}

.title {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
}

/* ── Divider ── */
.divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 28px 0;
}

/* ── Certs section ── */
.section-label {
    font-size: 9px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--muted);
    margin-bottom: 14px;
}

.cert-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    animation: fadeIn 0.8s ease 0.2s both;
}

.cert-item {
    display: grid;
    grid-template-columns: 32px 1fr auto;
    align-items: baseline;
    gap: 0 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.cert-item:first-child {
    border-top: 1px solid var(--border);
}

.cert-num {
    font-size: 9px;
    color: var(--muted);
    letter-spacing: 0.12em;
}

.cert-name {
    font-size: 12px;
    color: var(--fg);
    letter-spacing: 0.03em;
}

.cert-status {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
    font-style: italic;
}

.cert-status.active {
    color: var(--accent);
    font-style: normal;
}

/* ── Links section ── */
.link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    animation: fadeIn 0.8s ease 0.35s both;
}

.link-item {
    border-bottom: 1px solid var(--border);
}

.link-item:first-child {
    border-top: 1px solid var(--border);
}

.link-item a {
    display: grid;
    grid-template-columns: 32px 1fr auto;
    align-items: center;
    gap: 0 12px;
    padding: 13px 0;
    text-decoration: none;
    color: var(--fg);
    transition: color 0.2s ease, background 0.2s ease;
    cursor: pointer;
}

.link-item a:hover {
    color: var(--accent);
}

.link-item a:hover .link-arrow {
    transform: translateX(3px);
    color: var(--accent);
}

.link-num {
    font-size: 9px;
    color: var(--muted);
    letter-spacing: 0.12em;
}

.link-name {
    font-size: 12px;
    letter-spacing: 0.03em;
}

.link-arrow {
    font-size: 11px;
    color: var(--muted);
    transition: transform 0.2s ease, color 0.2s ease;
}

/* ── Footer ── */
.footer {
    margin-top: 36px;
    font-size: 9px;
    color: var(--muted);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    animation: fadeIn 0.8s ease 0.5s both;
}