.home {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100dvh;
    padding: var(--space-lg) var(--space-sm);
    position: relative;
    text-align: center;
    z-index: 1;
}

#stars-canvas {
    inset: 0;
    pointer-events: none;
    position: fixed;
    z-index: 0;
}

.home__icon {
    display: block;
    height: 200px;
    width: 200px;
}

.home__title {
    font-family: var(--font-brand);
    font-size: clamp(2.8rem, 10vw, 4.5rem);
    font-weight: 600;
    color: var(--color-text);
    margin-top: var(--space-md);
    letter-spacing: -0.01em;
}

.home__badge {
    margin-top: var(--space-lg);
    display: inline-block;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.home__badge:hover {
    transform: scale(1.04);
    opacity: 0.9;
}

.home__badge img {
    height: 72px;
    width: auto;
}