:root {
    --bg:       #080a0d;
    --bg2:      #0f1117;
    --bg3:      #161b24;
    --accent:   #c8f04a;
    --white:    #f0f2f5;
    --muted:    rgba(240,242,245,0.45);
    --border:   rgba(240,242,245,0.07);
    --font:     'Outfit', sans-serif;
    --mono:     'JetBrains Mono', monospace;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background: var(--bg);
    color: var(--white);
    font-family: var(--font);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* Subtle green glow mesh */
.mesh {
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background:
        radial-gradient(ellipse at 20% 40%, rgba(200,240,74,0.07) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 70%, rgba(200,240,74,0.04) 0%, transparent 55%);
}

.wrap {
    position: relative; z-index: 1;
    width: 100%; max-width: 440px;
    display: flex; flex-direction: column; gap: 40px;
}

/* ── Profile ── */
.profile { display: flex; flex-direction: column; gap: 12px; }

.mono { font-family: var(--mono); }

.tag {
    font-size: 13px; font-weight: 700;
    letter-spacing: 4px; color: var(--accent);
}

h1 {
    font-size: 40px; font-weight: 800;
    line-height: 1.05; letter-spacing: -1.5px;
}
h1 .accent { color: var(--accent); }

.bio {
    font-size: 14px; color: var(--muted);
    font-weight: 400; line-height: 1.6;
}

.status {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--mono);
    font-size: 11px; color: var(--muted); letter-spacing: 1.5px;
}
.dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.2} }

/* ── Link cards ── */
.links { display: flex; flex-direction: column; gap: 10px; }

.card {
    display: flex; align-items: center; gap: 16px;
    padding: 16px 20px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 2px;
    text-decoration: none; color: var(--white);
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    position: relative; overflow: hidden;
}
/* accent line on hover */
.card::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    height: 2px; width: 0;
    background: var(--accent);
    transition: width 0.3s ease;
}
.card:hover {
    border-color: rgba(200,240,74,0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.card:hover::after { width: 100%; }

.card-icon {
    font-size: 18px; color: var(--accent);
    width: 38px; height: 38px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.2s;
}
.card:hover .card-icon { border-color: rgba(200,240,74,0.4); }

.card-body {
    flex: 1; display: flex; flex-direction: column; gap: 2px;
}
.card-name {
    font-size: 15px; font-weight: 700;
}
.card-sub {
    font-family: var(--mono);
    font-size: 10px; color: var(--muted);
    letter-spacing: 0.5px;
}

.card-arrow {
    font-size: 16px; color: var(--muted);
    transition: color 0.2s, transform 0.2s;
    flex-shrink: 0;
}
.card:hover .card-arrow {
    color: var(--accent);
    transform: translate(2px, -2px);
}

/* ── Footer ── */
footer {
    font-size: 11px; color: var(--muted);
    letter-spacing: 1px; text-align: center;
}

/* ── Entrance animation ── */
.wrap > * {
    opacity: 0; transform: translateY(16px);
    animation: up 0.6s cubic-bezier(0.16,1,0.3,1) forwards;
}
.wrap > *:nth-child(1) { animation-delay: 0.05s; }
.wrap > *:nth-child(2) { animation-delay: 0.15s; }
.wrap > *:nth-child(3) { animation-delay: 0.25s; }

.card {
    opacity: 0; transform: translateY(12px);
    animation: up 0.5s cubic-bezier(0.16,1,0.3,1) forwards;
}
.card:nth-child(1) { animation-delay: 0.20s; }
.card:nth-child(2) { animation-delay: 0.28s; }
.card:nth-child(3) { animation-delay: 0.36s; }
.card:nth-child(4) { animation-delay: 0.44s; }
.card:nth-child(5) { animation-delay: 0.52s; }

@keyframes up {
    to { opacity: 1; transform: translateY(0); }
}

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px; border-radius: 2px;
}