/* Home screen overrides */
.hero-shell {
    min-height: calc(100vh - var(--header-h) - 56px);
    grid-template-columns: 1fr;
    place-items: center;
    text-align: center;
}

.hero-copy {
    width: min(960px, 100%);
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(40px, 9vh, 96px) 0 clamp(88px, 16vh, 168px);
    position: relative;
}

.hero-title-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.hero h1 {
    max-width: 100%;
}

.hero h1 .line-main {
    text-align: center;
}

.hero h1 .neon::after {
    margin: 18px auto 0;
}

.hero-subtitle {
    max-width: 820px;
    margin: 24px auto 0;
    text-align: center;
}

.hero-actions {
    justify-content: center;
    margin-top: clamp(34px, 6vh, 72px);
}

.hero-actions .btn {
    min-width: 200px;
    padding: 17px 30px;
    font-size: 16px;
    letter-spacing: .04em;
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 28px rgba(8, 16, 40, .32), inset 0 0 0 1px rgba(255, 255, 255, .05);
}

.hero-actions .btn-primary {
    background: linear-gradient(135deg, rgba(94, 242, 255, .3), rgba(91, 140, 255, .36));
    box-shadow: 0 0 0 1px rgba(94, 242, 255, .28), 0 18px 46px rgba(94, 242, 255, .24), inset 0 0 26px rgba(255, 255, 255, .09);
}

.hero-actions .btn-primary:hover {
    box-shadow: 0 0 0 1px rgba(94, 242, 255, .38), 0 22px 56px rgba(94, 242, 255, .3), inset 0 0 30px rgba(255, 255, 255, .12);
}

.hero-actions .btn-secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(176, 77, 255, .14));
    box-shadow: 0 0 0 1px rgba(176, 77, 255, .2), 0 18px 46px rgba(176, 77, 255, .16), inset 0 0 24px rgba(255, 255, 255, .05);
}

.hero-actions .btn-secondary:hover {
    box-shadow: 0 0 0 1px rgba(176, 77, 255, .3), 0 22px 54px rgba(176, 77, 255, .22), inset 0 0 28px rgba(255, 255, 255, .08);
}

@media (max-width: 768px) {
    .hero-copy {
        padding: 28px 0 112px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-actions {
        width: 100%;
        gap: 14px;
    }

    .hero-actions .btn {
        width: min(320px, 100%);
    }
}
