.home-real {
    width: min(980px, 100%);
    margin: 20px auto 0;
    display: grid;
    gap: clamp(22px, 5vw, 42px);
}

.home-real-hero {
    position: relative;
    display: grid;
    justify-items: center;
    gap: clamp(18px, 4vw, 30px);
    min-height: clamp(360px, 58dvh, 560px);
    padding: clamp(20px, 5vw, 54px) 0;
    overflow: visible;
    text-align: center;
    background: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.home-real-hero::before {
    display: none;
}

.home-logo,
.home-copy {
    position: relative;
    z-index: 1;
}

.home-logo {
    display: block;
    width: min(640px, 96%);
    height: auto;
    object-fit: contain;
    filter:
        contrast(1.08)
        drop-shadow(0 0 18px rgba(196, 212, 228, 0.12))
        drop-shadow(0 24px 42px rgba(0, 0, 0, 0.34));
}

.home-copy {
    display: grid;
    justify-items: center;
    gap: 10px;
    max-width: 620px;
}

.home-copy h1 {
    margin: 0;
    font-size: clamp(2rem, 7vw, 4.8rem);
    letter-spacing: 0;
}

.home-copy p {
    max-width: 560px;
    margin: 0;
    color: var(--muted);
    font-size: clamp(1rem, 2.2vw, 1.18rem);
    line-height: 1.65;
}

.home-sections {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.home-section-link {
    display: grid;
    align-content: start;
    gap: 8px;
    min-width: 0;
    min-height: 126px;
    padding: 18px;
    color: var(--text);
    background: rgba(17, 23, 32, 0.74);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    transition: background 140ms ease, border-color 140ms ease, transform 140ms ease;
}

.home-section-link:hover {
    color: var(--text-strong);
    background: rgba(27, 37, 52, 0.82);
    border-color: rgba(157, 178, 200, 0.34);
    transform: translateY(-1px);
}

.home-section-link span {
    color: var(--text-strong);
    font-size: 1.15rem;
    font-weight: 900;
}

.home-section-link small {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 780px) {
    .home-real {
        margin-top: 8px;
    }

    .home-real-hero {
        min-height: auto;
        padding-block: 30px;
    }

    .home-sections {
        grid-template-columns: 1fr;
    }

    .home-section-link,
    .home-section-link:hover {
        opacity: 1;
        transform: none;
    }

    .home-section-link {
        transition: background 120ms ease, border-color 120ms ease, color 120ms ease;
        will-change: auto;
    }
}

@media (max-width: 420px) {
    .home-real-hero {
        padding-inline: 0;
    }

    .home-section-link {
        min-height: 0;
        padding: 16px;
    }
}
