:root {
    --bg: #0a0c11;
    --text: #ffffff;
    --muted: #cdd3df;
    --accent: #ffffff;
    --focus: #8fd3ff;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    background: var(--bg);
    color: var(--text);
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow: hidden;
}

.page {
    position: relative;
    min-height: 100dvh;
    display: grid;
    place-items: center;
    padding: 24px;
    text-align: center;
    isolation: isolate;
}

/* Blurry, dark multi-color background (green + blue only, larger and more prominent) */
.bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -1;
}

.blob {
    position: absolute;
    filter: blur(110px);
    opacity: 0.45;
    /* slightly more prominent */
    mix-blend-mode: screen;
    will-change: transform;
    transform: translateZ(0);
    animation: float 20s ease-in-out infinite;
}

.blob.b1 {
    top: -25%;
    left: -20%;
    width: 95vw;
    height: 95vw;
    background: radial-gradient(closest-side at 40% 50%, rgba(12, 140, 90, 0.7), rgba(12, 140, 90, 0) 72%);
    animation-duration: 24s;
}

.blob.b2 {
    bottom: -30%;
    right: -25%;
    width: 110vw;
    height: 110vw;
    background: radial-gradient(closest-side at 60% 50%, rgba(40, 120, 230, 0.65), rgba(40, 120, 230, 0) 72%);
    animation-duration: 28s;
    animation-delay: -6s;
}

.vignette {
    position: absolute;
    inset: -10%;
    pointer-events: none;
    background:
        radial-gradient(120% 120% at 50% 50%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 55%, rgba(0, 0, 0, 0.68) 100%);
    z-index: 1;
}

@keyframes float {

    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(2%, -2%, 0) scale(1.04);
    }
}

@media (prefers-reduced-motion: reduce) {
    .blob {
        animation: none;
    }
}

main.hero {
    width: min(92vw, 720px);
    display: grid;
    place-items: center;
    gap: clamp(10px, 2.2vw, 18px);
    z-index: 2;
}

/* Plain logo, no box around it */
.logo {
    width: clamp(96px, 22vw, 172px);
    height: auto;
    display: block;
}

h1 {
    margin: 0;
    font-size: clamp(28px, 5.5vw, 42px);
    letter-spacing: 0.2px;
    font-weight: 700;
}

p.tagline {
    margin: 0;
    font-size: clamp(15px, 3.6vw, 18px);
    color: var(--muted);
}

.social {
    display: flex;
    gap: 14px;
    margin-top: clamp(8px, 2.2vw, 12px);
}

.social a {
    --size: 46px;
    width: var(--size);
    height: var(--size);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    transition: background-color .2s ease, transform .15s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
    text-decoration: none;
    outline: none;
}

.social a:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.social a:focus-visible {
    box-shadow: 0 0 0 3px rgba(143, 211, 255, 0.5);
    border-color: var(--focus);
}

.social svg {
    width: 22px;
    height: 22px;
}

footer {
    position: fixed;
    inset-inline: 0;
    bottom: 10px;
    display: grid;
    place-items: center;
    z-index: 2;
    pointer-events: none;
}

.chips {
    display: inline-flex;
    gap: 8px;
    pointer-events: auto;
    align-items: center;
}

.chip {
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    backdrop-filter: blur(6px);
    background: rgba(0, 0, 0, 0.25);
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    transition: border-color .2s ease, background-color .2s ease, color .2s ease, box-shadow .2s ease, transform .15s ease;
}

.chip:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.chip:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(143, 211, 255, .5);
    border-color: var(--focus);
}

@media (max-width: 360px) {
    .social a {
        --size: 42px;
    }

    .logo {
        width: 112px;
    }
}