@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

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

:root {
    --bg:          #0f0f0f;
    --text:        #eeebe6;
    --muted:       #909090;
    --border:      #252525;
    --accent:      #0f32e4;
    --accent-dark: #0a25b0;
}

html, body {
    height: 100%;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    min-height: 100dvh;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* ── Ambient color glows ─────────────────────── */

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 65% 55% at 10% 90%, rgba(15, 50, 228, 0.16) 0%, transparent 100%),
        radial-gradient(ellipse 45% 40% at 90% 10%, rgba(10, 37, 176, 0.10) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

/* ── Layout ─────────────────────────────────── */

main {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    gap: 0;
}

/* ── Label above ─────────────────────────────── */

.label-above {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
    margin-bottom: 0.6rem;
    animation: fadeIn 0.6s ease both;
}

/* ── Title ───────────────────────────────────── */

h1 {
    font-size: clamp(3rem, 11.5vw, 18rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    line-height: 0.9;
    white-space: nowrap;
    color: var(--text);
    animation: fadeIn 0.8s 0.1s ease both;
}

/* ── Below block ─────────────────────────────── */

.below {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    animation: fadeIn 0.6s 0.25s ease both;
}

.bio {
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
}

.bio .logo-link {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

.vueloiv-logo {
    height: 14px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    display: block;
}

.bio .logo-link:hover .vueloiv-logo {
    opacity: 1;
}

.bio a {
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s ease;
}

.bio a:hover {
    color: var(--accent);
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text);
    text-decoration: none;
    position: relative;
    padding-bottom: 3px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* ── Animation ───────────────────────────────── */

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

/* ── Mobile ──────────────────────────────────── */

@media (max-width: 600px) {
    h1 {
        font-size: clamp(2.5rem, 13vw, 8rem);
        white-space: normal;
        line-height: 0.88;
    }

    nav {
        gap: 1.5rem;
    }
}
