*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #0F0F0F;
    --text: #E8E8E8;
    --text-muted: rgba(232, 232, 232, 0.45);
    --accent: #F5A623;
    --font: 'IBM Plex Sans', sans-serif;
}

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Subtle grain overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    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='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

.card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    animation: fadeIn 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Logo ── */
.logo {
    margin-bottom: 40px;
    animation: fadeIn 1.4s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.logo svg {
    width: 52px;
    height: 52px;
    display: block;
}

/* ── Name ── */
.name {
    font-size: clamp(1.75rem, 4vw, 2.6rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    color: var(--text);
    line-height: 1;
    margin-bottom: 18px;
    animation: fadeIn 1.4s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ── Positioning line ── */
.tagline {
    font-size: clamp(0.78rem, 1.5vw, 0.9rem);
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    margin-bottom: 48px;
    animation: fadeIn 1.4s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ── Social icons ── */
.links {
    display: flex;
    gap: 28px;
    align-items: center;
    margin-bottom: 52px;
    animation: fadeIn 1.4s 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.links a {
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
    line-height: 0;
}

.links a:hover {
    opacity: 0.6;
}

.links svg {
    width: 20px;
    height: 20px;
    fill: var(--accent);
}

/* ── Email ── */
.email {
    font-size: 0.72rem;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: color 0.2s ease;
    animation: fadeIn 1.4s 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.email:hover {
    color: rgba(232, 232, 232, 0.75);
}