/* --------------------------------------------- */
/* Process visual banner                         */
/* --------------------------------------------- */

.process-visual-banner {
    position: relative;
    width: 100%;
    min-height: 620px;
    margin-top: -96px;
    overflow: hidden;
}

.process-visual-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(8, 13, 24, 0.15) 0%, rgba(8, 13, 24, 0.10) 42%, var(--bg) 100%),
        radial-gradient(circle at 50% 12%, rgba(125, 211, 252, 0.12), transparent 46%);
    pointer-events: none;
}

.process-visual-banner img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    object-position: center top;
    opacity: 0.9;
}

/* --------------------------------------------- */
/* Process hero                                  */
/* --------------------------------------------- */

.process-hero-copy {
    position: relative;
    z-index: 2;
    margin-top: -120px;
    padding-top: 0;
    padding-bottom: 72px;
}

.process-hero-copy h1 {
    max-width: 900px;
}

.process-hero-copy .hero-lead {
    max-width: 760px;
}

/* --------------------------------------------- */
/* Process lead                                  */
/* --------------------------------------------- */

.process-lead {
    position: relative;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 56px;
    align-items: start;

    margin-top: 12px;
    padding: clamp(28px, 5vw, 52px);

    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(125, 211, 252, 0.11), rgba(255, 255, 255, 0.055)),
        rgba(255, 255, 255, 0.045);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.process-lead::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.045);
    border-radius: calc(var(--radius-lg) - 12px);
    pointer-events: none;
}

.process-lead::after {
    content: "";
    position: absolute;
    top: 34px;
    right: 38px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(125, 211, 252, 0.18), transparent 68%);
    pointer-events: none;
}

.process-lead > * {
    position: relative;
    z-index: 1;
}

.process-lead h2 {
    max-width: 660px;
    margin-bottom: 0;
}

.process-lead > p {
    max-width: 640px;
    margin: 0;
    color: var(--muted-strong);
    justify-self: end;
}

/* --------------------------------------------- */
/* Process cards                                 */
/* --------------------------------------------- */

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.process-card {
    min-height: 260px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(125, 211, 252, 0.08), rgba(255, 255, 255, 0.045)),
        var(--bg-card);
    box-shadow: var(--shadow-soft);
}

.process-card span {
    display: inline-flex;
    margin-bottom: 34px;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.12em;
}

.process-card p {
    margin-bottom: 0;
}

/* --------------------------------------------- */
/* Process support cards                         */
/* --------------------------------------------- */

.process-support-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 0.9fr;
    gap: 16px;
}

.process-support-card {
    position: relative;
    min-height: 230px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background 180ms ease,
        box-shadow 180ms ease;
}

.process-support-card::before {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.42), transparent);
    opacity: 0.68;
}

.process-support-card:hover {
    transform: translateY(-3px);
    border-color: rgba(125, 211, 252, 0.32);
    background:
        linear-gradient(180deg, rgba(125, 211, 252, 0.09), rgba(255, 255, 255, 0.04));
    box-shadow: var(--shadow-strong);
}

.process-support-card.is-featured {
    grid-row: span 2;
    min-height: 476px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        radial-gradient(circle at 22% 18%, rgba(125, 211, 252, 0.18), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.04));
}

.process-support-card h3 {
    margin-top: 22px;
    margin-bottom: 10px;
    font-size: 22px;
}

.process-support-card.is-featured h3 {
    font-size: 30px;
    letter-spacing: -0.04em;
}

.process-support-card p {
    max-width: 56ch;
    margin: 0;
}

/* --------------------------------------------- */
/* Responsive                                    */
/* --------------------------------------------- */

@media (max-width: 1050px) {
    .process-visual-banner {
        min-height: 520px;
        margin-top: -88px;
    }

    .process-visual-banner img {
        height: 520px;
    }

    .process-hero-copy {
        margin-top: -90px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-support-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-support-card.is-featured {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 320px;
    }
}

@media (max-width: 900px) {
    .process-lead {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .process-lead > p {
        max-width: none;
        justify-self: stretch;
    }

    .process-support-grid {
        grid-template-columns: 1fr;
    }

    .process-support-card,
    .process-support-card.is-featured {
        min-height: auto;
    }
}

@media (max-width: 650px) {
    .process-visual-banner {
        min-height: 430px;
        margin-top: -82px;
    }

    .process-visual-banner img {
        height: 430px;
        object-position: center top;
    }

    .process-hero-copy {
        margin-top: -64px;
        padding-bottom: 56px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-card,
    .process-support-card {
        min-height: auto;
        padding: 22px;
    }
}

@media (max-width: 560px) {
    .process-lead {
        padding: 26px 22px;
        border-radius: 26px;
    }

    .process-lead::before,
    .process-lead::after {
        display: none;
    }

    .process-lead h2 {
        font-size: 31px;
    }

    .process-lead > p {
        font-size: 16px;
        line-height: 1.65;
    }

    .process-support-card.is-featured h3 {
        font-size: 26px;
    }
}