.page-home {
    background:
        radial-gradient(circle at 18% 18%, rgba(0, 214, 255, 0.16), transparent 24rem),
        linear-gradient(135deg, var(--color-void), #08121a 48%, #04100f);
}

.home-main {
    position: relative;
    overflow: hidden;
}

.home-main::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(30deg, rgba(0, 214, 255, 0.06) 12%, transparent 12.5%, transparent 87%, rgba(0, 214, 255, 0.06) 87.5%),
        linear-gradient(150deg, rgba(0, 214, 255, 0.06) 12%, transparent 12.5%, transparent 87%, rgba(0, 214, 255, 0.06) 87.5%);
    background-size: 76px 44px;
    content: "";
    mask-image: linear-gradient(180deg, black, transparent 72%);
    opacity: 0.42;
}

.home-hero {
    display: grid;
    width: min(100%, var(--content-max));
    min-height: calc(100vh - var(--header-height) - 4rem);
    grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(1.5rem, 4vw, 4rem);
    margin: 0 auto;
    padding: clamp(2rem, 6vw, 4.8rem) clamp(1rem, 4vw, 2rem) 1.8rem;
}

.home-hero__visual img {
    width: min(100%, 520px);
    margin-inline: auto;
    filter: drop-shadow(0 0 28px rgba(0, 214, 255, 0.35));
}

.home-hero__content {
    max-width: 680px;
}

.home-hero__kicker {
    margin-bottom: 1rem;
    color: var(--color-green);
    font-size: 0.92rem;
    font-weight: 900;
    text-transform: uppercase;
}

.home-hero h1 {
    margin-bottom: 0.35rem;
    color: var(--color-text);
    font-size: clamp(4rem, 7.5rem, 7.5rem);
    text-shadow: 0 0 28px rgba(0, 214, 255, 0.35);
}

.home-hero__subtitle {
    margin-bottom: 0;
    color: var(--color-silver);
    font-size: clamp(1.05rem, 1.35rem, 1.35rem);
    font-weight: 800;
}

.home-presentation {
    width: min(100%, var(--content-max));
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem) clamp(3rem, 7vw, 5rem);
}

.home-presentation > p {
    max-width: 900px;
    color: var(--color-silver);
    font-size: 1.05rem;
}

.home-branches {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.home-branches__item {
    padding: 1.2rem;
}

.home-branches__item h2 {
    margin-bottom: 0.65rem;
}

.home-branches__item p {
    margin-bottom: 0;
}

.home-current-state {
    border-left: 3px solid var(--color-cyan);
    padding-left: 1rem;
}

.home-action {
    display: flex;
    margin-top: 2rem;
}

@media (max-width: 900px) {
    .home-hero {
        min-height: auto;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .home-hero__content,
    .home-presentation > p {
        max-width: none;
    }

    .home-hero__visual {
        order: -1;
    }

    .home-hero__visual img {
        width: min(82vw, 420px);
    }

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

    .home-action {
        justify-content: stretch;
    }

    .home-action .button {
        width: 100%;
    }
}

@media (min-width: 1500px) {
    .home-hero {
        min-height: 760px;
    }
}

