/* Úvodná prezentačná stránka — jednoduchá verzia, dizajn sa bude ešte dolaďovať. */

.landing-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

/* Jemná "spotlight" žiara za logom - iba dekoratívna vrstva pod obsahom. */
.landing-hero::before {
    content: "";
    position: absolute;
    top: 8%;
    left: 50%;
    width: 640px;
    height: 640px;
    max-width: 140vw;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(176, 106, 53, 0.16) 0%, rgba(176, 106, 53, 0) 65%);
    pointer-events: none;
    z-index: 0;
}

.landing-hero > * {
    position: relative;
    z-index: 1;
}

.landing-hero__logo {
    font-size: 2.4rem;
    letter-spacing: 0.14em;
    margin: 0 0 12px;
    /* farba (gradientovy text) prichadza zo zdielaneho pravidla v style.css */
}

.landing-hero__tagline {
    font-size: 1.15rem;
    max-width: 480px;
    margin: 0 0 8px;
}

.landing-hero__desc {
    color: var(--feelip-text-muted);
    max-width: 480px;
    margin: 0 0 32px;
}

.landing-hero .btn {
    width: auto;
    padding: 16px 40px;
    font-size: 1.05rem;
}

.landing-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 760px;
    margin: 48px auto 0;
    padding: 0 20px;
}

.landing-step {
    background: linear-gradient(165deg, var(--feelip-surface-2) 0%, var(--feelip-surface) 100%);
    border: 1px solid var(--feelip-border);
    border-radius: var(--feelip-radius);
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.landing-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--feelip-accent-hover) 0%, var(--feelip-accent) 100%);
    color: var(--feelip-accent-text);
    font-weight: 700;
    margin-bottom: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.landing-step__title {
    font-weight: 700;
    margin: 0 0 6px;
}

.landing-step__text {
    color: var(--feelip-text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.landing-footer {
    text-align: center;
    color: var(--feelip-text-muted);
    font-size: 0.8rem;
    padding: 40px 20px;
}
