.scg-method-visual {
    background: linear-gradient(145deg, #f7fbfc 0%, #eef8fa 54%, #f2faf7 100%);
    border: 1px solid var(--scg-line);
    border-radius: 24px;
    box-shadow: 0 18px 52px rgba(18, 48, 58, .07);
    margin: clamp(2.25rem, 6vw, 4.5rem) 0;
    max-width: 960px;
    overflow: hidden;
    padding: clamp(1.25rem, 4vw, 2.5rem);
}

.scg-method-visual__caption {
    display: grid;
    gap: .3rem;
    margin-bottom: clamp(1.4rem, 3vw, 2.25rem);
}

.scg-method-visual__caption p {
    display: grid;
    gap: .3rem;
    margin: 0;
}

.scg-method-visual__caption strong {
    color: var(--scg-ink);
    font-size: clamp(1.22rem, 2.5vw, 1.65rem);
    line-height: 1.25;
}

.scg-method-visual__caption span {
    color: var(--scg-muted);
    max-width: 66ch;
}

.scg-method-map {
    display: grid;
    gap: 1rem;
    grid-template-areas:
        "strategy enablement processes"
        "data enablement technology"
        ". people .";
    grid-template-columns: minmax(0, 1fr) minmax(210px, 1.15fr) minmax(0, 1fr);
    position: relative;
}

.scg-method-map__connectors {
    inset: 0;
    overflow: visible;
    pointer-events: none;
    position: absolute;
    z-index: 0;
}

.scg-method-map__connectors line {
    stroke: rgba(8, 122, 159, .38);
    stroke-linecap: round;
    stroke-width: 2;
    vector-effect: non-scaling-stroke;
}

.scg-method-map.has-connector-svg::before {
    opacity: 0;
}

.scg-method-map::before {
    background:
        linear-gradient(90deg, transparent 12%, rgba(8, 122, 159, .16) 12%, rgba(8, 122, 159, .16) 88%, transparent 88%) center / 100% 1px no-repeat,
        linear-gradient(rgba(8, 122, 159, .16), rgba(8, 122, 159, .16)) center / 1px 100% no-repeat;
    content: "";
    inset: 12% 10% 15%;
    pointer-events: none;
    position: absolute;
}

.scg-method-map__core,
.scg-method-map__node {
    align-items: center;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(8, 122, 159, .16);
    border-radius: 17px;
    display: flex;
    justify-content: center;
    min-height: 92px;
    padding: 1rem;
    position: relative;
    text-align: center;
    z-index: 1;
}

.scg-method-map__core {
    align-self: stretch;
    background: var(--scg-ink);
    border: 0;
    border-radius: 50%;
    box-shadow: 0 0 0 9px rgba(8, 122, 159, .1), 0 16px 36px rgba(18, 48, 58, .16);
    color: #fff;
    grid-area: enablement;
    justify-self: center;
    min-height: 205px;
    width: 205px;
}

.scg-method-map__core strong {
    font-size: 1.08rem;
    line-height: 1.35;
    max-width: 11ch;
}

.scg-method-map__core p,
.scg-method-map__node p {
    margin: 0;
}

.scg-method-map__node {
    color: var(--scg-blue-dark);
    font-weight: 800;
}

.scg-method-map__node--strategy { grid-area: strategy; }
.scg-method-map__node--processes { grid-area: processes; }
.scg-method-map__node--data { grid-area: data; }
.scg-method-map__node--technology { grid-area: technology; }
.scg-method-map__node--people { grid-area: people; }

.scg-method-cycle {
    counter-reset: method-step;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    list-style: none;
    margin: 0;
    padding: 0;
}

.scg-method-cycle li {
    background: rgba(255, 255, 255, .96);
    border: 1px solid var(--scg-line);
    border-radius: 18px;
    counter-increment: method-step;
    min-height: 158px;
    padding: 1.2rem 1.15rem 1.1rem;
    position: relative;
}

.scg-method-cycle li:nth-child(4) { grid-column: 1; grid-row: 2; }
.scg-method-cycle li:nth-child(5) { grid-column: 2; grid-row: 2; }
.scg-method-cycle li:nth-child(6) { grid-column: 3; grid-row: 2; }

.scg-method-cycle li::before {
    align-items: center;
    background: var(--scg-sky);
    border-radius: 50%;
    color: var(--scg-blue-dark);
    content: counter(method-step);
    display: flex;
    font-size: .9rem;
    font-weight: 900;
    height: 2.35rem;
    justify-content: center;
    margin-bottom: .8rem;
    width: 2.35rem;
}

.scg-method-cycle li::after {
    align-items: center;
    background: var(--scg-blue);
    border: 3px solid #f2f9fa;
    border-radius: 50%;
    color: #fff;
    content: none;
    display: flex;
    font-size: .92rem;
    font-weight: 900;
    height: 1.8rem;
    justify-content: center;
    position: absolute;
    right: -.92rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.8rem;
    z-index: 2;
}

.scg-method-cycle li:nth-child(1)::after,
.scg-method-cycle li:nth-child(2)::after {
    content: "→";
}

.scg-method-cycle li:nth-child(3)::after {
    bottom: -.92rem;
    content: "↓";
    left: 50%;
    right: auto;
    top: auto;
    transform: translateX(-50%);
}

.scg-method-cycle li:nth-child(5)::after,
.scg-method-cycle li:nth-child(6)::after {
    content: "←";
    left: -.92rem;
    right: auto;
}

.scg-method-cycle li:nth-child(4)::after {
    bottom: auto;
    content: "↑";
    left: 50%;
    right: auto;
    top: -.92rem;
    transform: translateX(-50%);
}

.scg-method-cycle strong {
    color: var(--scg-ink);
    display: block;
    line-height: 1.3;
    margin-bottom: .35rem;
}

.scg-method-cycle span {
    color: var(--scg-muted);
    display: block;
    font-size: .93rem;
    line-height: 1.45;
}

html.scg-method-motion-ready .scg-method-cycle li {
    opacity: 0;
    transform: translateY(12px) scale(.985);
    transition:
        opacity 1.26s ease,
        transform 1.56s cubic-bezier(.22, 1, .36, 1),
        border-color .9s ease,
        box-shadow .9s ease;
}

html.scg-method-motion-ready .scg-method-cycle li.is-revealed {
    opacity: 1;
    transform: none;
}

html.scg-method-motion-ready .scg-method-cycle li.is-pulsing {
    animation: scg-method-cycle-pulse 1.5s ease-out both;
}

html.scg-method-motion-ready .scg-method-map__connectors line {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
}

html.scg-method-motion-ready .scg-method-visual.is-active .scg-method-map__connectors line {
    animation: scg-method-line-draw .72s cubic-bezier(.22, 1, .36, 1) forwards;
}

html.scg-method-motion-ready .scg-method-visual.is-active .scg-method-map__connectors line:nth-child(2) { animation-delay: .1s; }
html.scg-method-motion-ready .scg-method-visual.is-active .scg-method-map__connectors line:nth-child(3) { animation-delay: .2s; }
html.scg-method-motion-ready .scg-method-visual.is-active .scg-method-map__connectors line:nth-child(4) { animation-delay: .3s; }
html.scg-method-motion-ready .scg-method-visual.is-active .scg-method-map__connectors line:nth-child(5) { animation-delay: .4s; }

html.scg-method-motion-ready .scg-method-visual.is-active .scg-method-map__node {
    animation: scg-method-node-intro .7s cubic-bezier(.22, 1, .36, 1) both;
}

html.scg-method-motion-ready .scg-method-visual.is-active .scg-method-map__node--strategy { animation-delay: .08s; }
html.scg-method-motion-ready .scg-method-visual.is-active .scg-method-map__node--processes { animation-delay: .16s; }
html.scg-method-motion-ready .scg-method-visual.is-active .scg-method-map__node--data { animation-delay: .24s; }
html.scg-method-motion-ready .scg-method-visual.is-active .scg-method-map__node--technology { animation-delay: .32s; }
html.scg-method-motion-ready .scg-method-visual.is-active .scg-method-map__node--people { animation-delay: .4s; }

html.scg-method-motion-ready .scg-method-visual.is-active .scg-method-map__core {
    animation: scg-method-core-pulse .9s .58s ease-out both;
}

@keyframes scg-method-line-draw {
    to { stroke-dashoffset: 0; }
}

@keyframes scg-method-node-intro {
    0% { opacity: .58; transform: translateY(5px) scale(.985); }
    100% { opacity: 1; transform: none; }
}

@keyframes scg-method-core-pulse {
    0%, 100% { box-shadow: 0 0 0 9px rgba(8, 122, 159, .1), 0 16px 36px rgba(18, 48, 58, .16); transform: scale(1); }
    48% { box-shadow: 0 0 0 14px rgba(8, 122, 159, .08), 0 18px 40px rgba(18, 48, 58, .18); transform: scale(1.018); }
}

@keyframes scg-method-cycle-pulse {
    0%, 100% { border-color: var(--scg-line); box-shadow: none; transform: none; }
    45% { border-color: rgba(8, 122, 159, .38); box-shadow: 0 10px 26px rgba(8, 122, 159, .12); transform: translateY(-3px) scale(1.012); }
}

@media (max-width: 760px) {
    .scg-method-map {
        grid-template-areas:
            "enablement enablement"
            "strategy processes"
            "data technology"
            "people people";
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .scg-method-map::before {
        background: linear-gradient(rgba(8, 122, 159, .18), rgba(8, 122, 159, .18)) center / 1px 100% no-repeat;
        inset: 5% 50%;
    }

    .scg-method-map__core {
        border-radius: 22px;
        min-height: 94px;
        width: min(100%, 320px);
    }

    .scg-method-map__node--people {
        justify-self: center;
        width: min(100%, 320px);
    }

    .scg-method-map__core strong {
        max-width: none;
    }

    .scg-method-cycle {
        grid-template-columns: 1fr;
    }

    .scg-method-cycle li:nth-child(n) {
        grid-column: 1;
        grid-row: auto;
        min-height: 0;
        padding: .95rem 1rem .95rem 4.35rem;
    }

    .scg-method-cycle li:nth-child(1) { order: 1; }
    .scg-method-cycle li:nth-child(2) { order: 2; }
    .scg-method-cycle li:nth-child(3) { order: 3; }
    .scg-method-cycle li:nth-child(6) { order: 4; }
    .scg-method-cycle li:nth-child(5) { order: 5; }
    .scg-method-cycle li:nth-child(4) { order: 6; }

    .scg-method-cycle li::before {
        left: 1rem;
        margin: 0;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .scg-method-cycle li:nth-child(1)::after,
    .scg-method-cycle li:nth-child(2)::after,
    .scg-method-cycle li:nth-child(3)::after,
    .scg-method-cycle li:nth-child(5)::after,
    .scg-method-cycle li:nth-child(6)::after {
        bottom: -.92rem;
        content: "↓";
        left: 50%;
        right: auto;
        top: auto;
        transform: translateX(-50%);
    }

    .scg-method-cycle li:nth-child(4)::after {
        bottom: auto;
        content: "↑";
        left: auto;
        right: .75rem;
        top: .75rem;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .scg-method-visual * {
        animation: none !important;
        scroll-behavior: auto;
        transition: none !important;
    }

    .scg-method-cycle li {
        opacity: 1 !important;
        transform: none !important;
    }

    .scg-method-map__connectors line {
        stroke-dasharray: none !important;
        stroke-dashoffset: 0 !important;
    }
}
