/* Visually hidden but present in the DOM so GTranslate translates the text nodes */
.sfp-ss-panel-pool {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    pointer-events: none;
}

.sfp-ss {
    --ss-bg1: #050d63;
    --ss-bg2: #000869;
    --ss-bg3: #101ba4;
    --ss-text: #f1f4e8;
    --ss-muted: #829394;
    --ss-list-y: 0px;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    color: var(--ss-text);
    padding: 0;
    min-height: 1px;
    isolation: isolate;
}

/* .sfp-ss.is-enhanced {
    height: 100vh;
    min-height: 100vh;
} */

.sfp-ss::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 8% 22%, rgb(0 80 255 / 48%) 0%, rgb(0 55 211 / 3%) 22%, transparent 34%), 
        radial-gradient(circle at 84% 10%, rgb(70 50 255 / 24%) 0%, rgba(213, 225, 220, 0.04) 18%, transparent 35%), 
        linear-gradient(110deg, var(--ss-bg1) 8%, var(--ss-bg2) 55%, var(--ss-bg3) 100%);
    z-index: 0;
}

.sfp-ss-stage {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(420px, 55%) minmax(380px, 40%);
    align-items: center;
    gap: clamp(24px, 3vw, 46px);
    height: 100vh;
    min-height: 100vh;
    padding: clamp(26px, 4vw, 56px);
    overflow: visible;
}

.sfp-ss-wheel-wrap {
    position: relative;
    min-height: 100%;
    overflow: visible;
}

.sfp-ss-wheel {
    position: absolute;
    inset: 0;
    border: 0;
    left:10%;
}

.sfp-ss-svg {
    display: none;
}

.sfp-ss-dot {
    display: none;
}

.sfp-ss-items {
    list-style: none;
    margin: 0;
    padding: 0;

    position: absolute;
    inset: 0;

    /*
     * IMPORTANT:
     * Do not move this container independently.
     *
     * Each .sfp-ss-item receives its exact circle
     * coordinates from JS.
     */
    left: 0 !important;
    top: 0;

    width: 100%;
    height: 100%;

    transform: none;
    transform-origin: 0 0;

    overflow: visible;
}

.sfp-ss-wheel-core {
    position: absolute;
    left: clamp(0px, -1vw, 0px);
    top: 50%;
    width: clamp(120px, 10vw, 180px);
    height: clamp(120px, 10vw, 180px);
    transform: translateY(-50%);
    border-radius: 50%;
    display: grid;
    place-items: center;
    z-index: 4;
}

/*
 * Positions the ring + curved-text SVG asset.
 *
 * The system is positioned from its RIGHT EDGE so it stays concentric
 * at every viewport width.
 */
.sfp-ss-oval-system {
    position: absolute;
    top: 50%;

    /*
     * The visible right-most point of the oval.
     * Desktop: grows with viewport.
     * Mobile: never collapses too far left.
     */
    right: calc(90% - clamp(128px, 14vw, 240px));

    /*
     * On wide screens the viewport height limits the ring size, which keeps
     * the circle visually consistent instead of becoming extremely wide.
     */
    width: min(100%, 92vh);
    aspect-ratio: 1 / 1;

    transform: translateY(-50%);
    transform-origin: center;
    overflow: visible;
    pointer-events: none;
    z-index: 1;
}

/* Ring + curved INSIGHTS / IMAGINATION / INTEGRATION text, baked into the SVG. */
.sfp-ss-oval-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 768px) {
    .sfp-ss-oval-system {
        /*
         * Only its visible right edge is nudged slightly for the tighter layout.
         */
        right: calc(100% - clamp(122px, 30vw, 145px));
        width: min(100%, 74vh);
    }

    .sfp-ss-wheel-core {
        left: -20px !important;
    }
}
.sfp-ss-core-logo {
    width: 60%;
    height: auto;
}

.sfp-ss-core-sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.sfp-ss-item {
    position: absolute;
}

.sfp-ss-trigger {
    all: unset;
    cursor: pointer;
    display: inline-block;
    width: auto;
    font-size: clamp(24px, 3.2vw, 64px);
    /* font-size: 3.5vw; */
    line-height: 1;
    letter-spacing: -0.03em;
    font-weight: 600;
    white-space: nowrap;
    color: var(--ss-muted);
    transition: color 0.2s ease, filter 0.2s ease;
    text-wrap: auto;
    text-align: left;
    max-width: 480px;
}

.sfp-ss-trigger:hover,
.sfp-ss-trigger:focus-visible,
.sfp-ss-trigger[aria-pressed="true"] {
    color: #f0f2df;
}

.sfp-ss-trigger[aria-pressed="true"] {
    filter: drop-shadow(0 0 14px rgba(233, 237, 212, 0.46));
}

.sfp-ss-trigger:focus-visible {
    outline: 2px solid #f0f2df;
    outline-offset: 6px;
    border-radius: 4px;
}

.sfp-ss-content {
    display: grid;
    grid-template-columns: minmax(150px, 360px) minmax(240px, 360px);
    column-gap: 8px;
    row-gap: 8px;
    align-items: center;
}

.sfp-ss-content-primary {
    grid-column: 1;
}

.sfp-ss-content-secondary {
    grid-column: 2;
}

.sfp-ss-kicker {
    margin: 0;
    font-size: clamp(14px, 1vw, 16px);
    font-weight: 600;
    color: #ebeee0;
    padding-bottom: 8px;
}

.sfp-ss-title {
    margin: 0;
    font-size: clamp(24px, 2vw, 32px);;
    line-height: 1.2;
    letter-spacing: -0.03em;
    max-width: 13ch;
    overflow-wrap: anywhere;
    text-wrap: balance;
}

.sfp-ss-excerpt {
    margin: 0;
    color: #dce2d7;
    font-size: clamp(17px, 1vw, 24px);
    line-height: 1.32;
    max-width: 30ch;
}

.sfp-ss-cta {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    color: var(--bde-brand-primary-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: clamp(16px, 0.95vw, 18px);
    font-weight: 600;
	padding:0;
}

.sfp-ss-cta--mobile {
    display: none;
}

.sfp-ss-cta svg {
    width: 15px;
    height: 15px;
}

.sfp-ss-cta:focus-visible {
    outline: 2px solid #f0f2df;
    outline-offset: 4px;
    border-radius: 4px;
}

.sfp-ss-accordion {
    display: block;
    z-index: 1;
    position: relative;
    padding: clamp(20px, 4vw, 28px);
    background: linear-gradient(160deg, #1e3437 0%, #223b43 100%);
}

.sfp-ss-acc-item {
    border-top: 1px solid rgba(241, 244, 232, 0.25);
    padding: 14px 0;
}

.sfp-ss-acc-item:last-child {
    border-bottom: 1px solid rgba(241, 244, 232, 0.25);
}

.sfp-ss-acc-item summary {
    cursor: pointer;
    font-size: clamp(26px, 6vw, 42px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.03em;
    list-style: none;
}

.sfp-ss-acc-item summary::-webkit-details-marker {
    display: none;
}

.sfp-ss-acc-item p {
    margin: 10px 0;
    color: #e2e8dc;
}

.sfp-ss-enhanced {
    display: none;
}

.sfp-ss.is-enhanced .sfp-ss-enhanced {
    display: block;
}

.sfp-ss.is-enhanced .sfp-ss-accordion {
    display: none;
}

.sfp-ss-empty {
    color: #1e3437;
}

body.sfp-ss-drawer-open {
    overflow: hidden;
}

.sfp-ss-drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 2147483645;
    background: rgba(2, 6, 34, 0.58);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.sfp-ss-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(540px, 92vw);
    z-index: 2147483646;
    transform: translateX(102%);
    will-change: transform;
    box-shadow: -28px 0 60px rgba(0, 0, 0, 0.34);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.sfp-ss-drawer-overlay.is-open {
    opacity: 1;
}

.sfp-ss-drawer.is-open {
    transform: translateX(0) !important;
}

.sfp-ss-drawer-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    overflow-y: auto;
    padding: clamp(18px, 3vw, 28px);
    background:
        radial-gradient(circle at 16% 10%, rgb(57 59 235 / 45%) 0%, transparent 36%),
        linear-gradient(165deg, #111c8a 0%, #1a1fa2 36%, #10189b 100%);
    color: #fff;
}

.sfp-ss-drawer-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.sfp-ss-drawer-close:hover,
.sfp-ss-drawer-close:focus-visible {
    background: rgba(255, 255, 255, 0.25);
}

.sfp-ss-drawer-content {
    padding-top: 26px;
}

.sfp-ss-drawer-title {
    margin: 0;
    font-size: clamp(30px, 5vw, 42px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: #ffd825;
}

.sfp-ss-drawer-description {
    margin: 12px 0 0;
    color: #f8f8ff;
    font-size: clamp(16px, 2.4vw, 18px);
    line-height: 1.45;
    max-width: 44ch;
}

.sfp-ss-drawer-subservices-wrap,
.sfp-ss-drawer-works-wrap {
    margin-top: 20px;
}

.sfp-ss-drawer-heading {
    margin: 0 0 12px;
    font-size: clamp(24px, 4.5vw, 34px);
    line-height: 1;
    color: #ffd825;
}

.sfp-ss-drawer-subservices {
    display: grid;
    gap: 8px;
}

.sfp-ss-drawer-acc-item {
    border-radius: 18px;
    background: rgba(20, 28, 150, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.sfp-ss-drawer-acc-summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.sfp-ss-drawer-acc-summary::-webkit-details-marker {
    display: none;
}

.sfp-ss-drawer-acc-summary::before {
    content: "+";
    color: #d9deff;
    font-size: 18px;
    line-height: 1;
}

.sfp-ss-drawer-acc-item[open] .sfp-ss-drawer-acc-summary {
    background: #ffd825;
    color: #1b1e65;
    border-radius: 18px;
}

.sfp-ss-drawer-acc-item[open] .sfp-ss-drawer-acc-summary::before {
    content: "-";
    color: #1b1e65;
}

.sfp-ss-drawer-acc-description {
    margin: 0;
    padding: 12px 16px 14px;
    color: #f8f8ff;
    line-height: 1.5;
}

.sfp-ss-drawer-works {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.sfp-ss-drawer-work {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    min-height: 130px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.09);
}

.sfp-ss-drawer-work-image {
    width: 100%;
    height: 100%;
    min-height: 130px;
    object-fit: cover;
    display: block;
}

.sfp-ss-drawer-work-meta {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    display: grid;
    gap: 2px;
    padding: 8px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
}

.sfp-ss-drawer-work-title {
    display: block;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
}

.sfp-ss-drawer-work-year {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    line-height: 1.1;
}

.sfp-ss-drawer-link {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffd825;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 12px;
}

.sfp-ss-drawer-link::after {
    content: "\2192";
    line-height: 1;
}

.sfp-ss-drawer-empty {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}
/* @media (max-width: 1260px) {
    .sfp-ss-trigger {
        max-width: 200px;
        font-size: 4ch;
    }
} */

@media (max-width: 1080px) {
    .sfp-ss-stage {
        grid-template-columns: 1fr;
        height: auto;
        /* min-height: min(88vh, 900px); */
        align-items: flex-start;
    }
    .sfp-ss-oval-system {
    right: calc(90% - 30vw);
    }

    .sfp-ss-wheel-wrap {
        min-height: min(68vh,42vh);
    }
    

    .sfp-ss-trigger {
        width: 40vw;
        /* font-size: 3ch; */
        /* font-size: clamp(28px, 8vw, 52px); */
    }

    .sfp-ss-content {
        display: block;
        height: 200px;
    }

    .sfp-ss-title {
        max-width: 12ch;
    }

    .sfp-ss-excerpt {
        margin-top: 10px;
        max-width: 36ch;
    }

    .sfp-ss-cta--desktop {
        display: none;
    }

    .sfp-ss-cta--mobile {
        display: inline-flex;
    }

    .sfp-ss-drawer {
        width: min(560px, 100vw);
    }

    .sfp-ss-drawer-inner {
        padding-inline: 14px;
        padding-bottom: 22px;
    }

    .sfp-ss-drawer-works {
        gap: 8px;
    }
}


@media (prefers-reduced-motion: reduce) {
    .sfp-ss-items,
    .sfp-ss-trigger,
    .sfp-ss-drawer,
    .sfp-ss-drawer-overlay {
        transition: none !important;
    }
}