/* Quanttik Home — teaser minimal */

body.page-home {
    min-height: 100vh;
    min-height: 100dvh;
}

.page-home .page-bg {
    z-index: -3;
}

.page-home .page-bg::before {
    opacity: 1;
}

.page-home .page-bg::after {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.021) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.021) 1px, transparent 1px);
}

.home-grid-layer {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(0, 229, 255, 0.040) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.040) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 95% 85% at 50% 45%, black 25%, transparent 78%);
    animation: homeGridDrift 48s linear infinite;
}

@keyframes homeGridDrift {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 48px 48px, 48px 48px; }
}

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

#matrixCanvas {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.98;
}

.home-teaser {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(2rem, 6vw, 3rem);
    padding: max(1.5rem, env(safe-area-inset-top)) 1.25rem max(1.5rem, env(safe-area-inset-bottom));
    text-align: center;
}

.home-teaser__logo {
    width: min(200px, 72vw);
    height: auto;
}

.home-teaser__message {
    max-width: 42rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.home-teaser__lead {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3.8vw, 1.65rem);
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.home-teaser__body {
    font-size: clamp(0.8rem, 2vw, 0.92rem);
    line-height: 1.35;
    color: var(--text-secondary);
}
