.figuree-fsi-page{
    --fsi-bg:var(--figuree-bg,var(--fs-bg,#050505));
    --fsi-ink:#fff;
    --fsi-muted:rgba(255,255,255,.68);
    --fsi-soft:rgba(255,255,255,.48);
    --fsi-line:rgba(255,255,255,.1);
    --fsi-card:rgba(255,255,255,.04);
    --fsi-card-strong:rgba(255,255,255,.065);
    --fsi-accent:var(--figuree-accent,var(--figuree-primary,#f5478d));
    --fsi-width:1800px;
    position:relative;
    isolation:isolate;
    width:100vw;
    max-width:100vw;
    left:50%;
    right:50%;
    margin-left:-50vw;
    margin-right:-50vw;
    overflow:hidden;
    color:var(--fsi-ink);
    background:transparent;
    padding-bottom:126px;
}

.figuree-fsi-page::before{
    content:none;
}

.figuree-fsi-shell{
    width:min(calc(100vw - 96px),var(--fsi-width));
    max-width:var(--fsi-width);
    margin-inline:auto;
}

.figuree-fsi-hero{
    padding:var(--figuree-header-clearance, clamp(120px,11vh,164px)) 0 clamp(58px,7vw,102px);
}

.figuree-fsi-hero-inner{
    display:grid;
    grid-template-columns:minmax(720px,1.05fr) minmax(420px,.85fr);
    gap:clamp(40px,4.5vw,76px);
    align-items:center;
}

.figuree-fsi-hero-copy{
    max-width:960px;
}

.figuree-fsi-kicker{
    display:inline-flex;
    align-items:center;
    gap:16px;
    margin:0 0 18px;
    color:var(--fsi-accent);
    font-size:12px;
    font-weight:800;
    line-height:1;
    letter-spacing:.18em;
    text-transform:uppercase;
}

.figuree-fsi-kicker::before{
    content:"";
    width:54px;
    height:1px;
    background:color-mix(in srgb,var(--fsi-accent) 88%,transparent);
}

.figuree-fsi-hero h1{
    margin:0;
    color:#fff;
    line-height:.92;
    letter-spacing:0;
}

.figuree-fsi-hero h1 em,
.figuree-fsi-section-head h2 em,
.figuree-fsi-editorial h2 em,
.figuree-fsi-final-cta h2 em{
    font-family:var(--figuree-serif-font,var(--figuree-heading-serif-font,"Instrument Serif",Georgia,serif));
    font-style:italic;
    font-weight:400;
    letter-spacing:0;
}

.figuree-fsi-subtitle{
    max-width:820px;
    margin:24px 0 0;
    color:#fff;
    font-size:36px;
    font-weight:500;
    line-height:1.08;
    letter-spacing:0;
}

.figuree-fsi-hero-copy > p:not(.figuree-fsi-subtitle){
    max-width:700px;
    margin:22px 0 0;
    color:var(--fsi-muted);
    font-size:18px;
    line-height:1.65;
}

.figuree-fsi-actions,
.figuree-fsi-final-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:34px;
}

.figuree-fsi-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:var(--figuree-button-height,48px);
    max-width:100%;
    padding:0 26px;
    border:1px solid var(--figuree-button-primary-bg,var(--fsi-accent));
    border-radius:var(--figuree-button-radius,999px);
    background:var(--figuree-button-primary-bg,var(--fsi-accent));
    color:var(--figuree-button-primary-text,#fff)!important;
    font-size:12px;
    font-weight:850;
    letter-spacing:.07em;
    line-height:1.1;
    text-align:center;
    text-decoration:none!important;
    text-transform:uppercase;
    transition:transform .2s ease,filter .2s ease,border-color .2s ease,background .2s ease;
}

.figuree-fsi-button:hover{
    filter:brightness(1.07);
    transform:translateY(-2px);
}

.figuree-fsi-button.is-ghost{
    border-color:rgba(255,255,255,.16);
    background:rgba(255,255,255,.035);
    color:#fff!important;
}

.figuree-fsi-button.is-ghost:hover{
    border-color:var(--fsi-accent);
    background:color-mix(in srgb,var(--fsi-accent) 14%,rgba(255,255,255,.04));
}

.figuree-fsi-badges,
.figuree-fsi-tags,
.figuree-fsi-pill-stack{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.figuree-fsi-tags span,
.figuree-fsi-pill-stack span{
    display:inline-flex;
    align-items:center;
    min-height:34px;
    padding:0 14px;
    border:1px solid rgba(255,255,255,.105);
    border-radius:999px;
    background:rgba(255,255,255,.035);
    color:rgba(255,255,255,.78);
    font-size:12px;
    font-weight:760;
    line-height:1;
    white-space:normal;
}

.figuree-fsi-preview{
    min-width:0;
    position:relative;
    display:flex;
    justify-content:flex-end;
}

.figuree-fsi-preview img{
    display:block;
    width:min(100%,760px);
    height:auto;
    margin-left:auto;
    border-radius:8px;
    filter:drop-shadow(0 34px 70px rgba(0,0,0,.38));
}

.figuree-fsi-section{
    margin-top:120px;
}

.figuree-fsi-workflow{
    margin-top:0;
}

.figuree-fsi-workflow-card,
.figuree-fsi-final-cta-inner{
    border:1px solid rgba(255,255,255,.105);
    border-radius:8px;
    background:
        linear-gradient(135deg,rgba(255,255,255,.07),rgba(255,255,255,.025)),
        rgba(255,255,255,.035);
    box-shadow:0 24px 70px rgba(0,0,0,.24);
    backdrop-filter:blur(18px);
}

.figuree-fsi-workflow-card{
    padding:clamp(26px,3vw,42px);
}

.figuree-fsi-workflow-steps{
    display:grid;
    grid-template-columns:1fr auto 1fr auto 1fr;
    gap:24px;
    align-items:center;
}

.figuree-fsi-workflow-step{
    min-width:0;
}

.figuree-fsi-workflow-step span,
.figuree-fsi-card::before{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:32px;
    height:32px;
    margin-bottom:18px;
    border:1px solid color-mix(in srgb,var(--fsi-accent) 65%,transparent);
    border-radius:999px;
    color:var(--fsi-accent);
    font-size:11px;
    font-weight:850;
}

.figuree-fsi-workflow-step h3,
.figuree-fsi-card h3,
.figuree-fsi-included-card h3{
    margin:0;
    color:#fff;
    font-size:20px;
    font-weight:760;
    line-height:1.12;
    letter-spacing:0;
}

.figuree-fsi-workflow-step p,
.figuree-fsi-card p,
.figuree-fsi-included-card p,
.figuree-fsi-note,
.figuree-fsi-editorial p,
.figuree-fsi-final-cta p{
    margin:12px 0 0;
    color:var(--fsi-muted);
    font-size:15px;
    line-height:1.66;
}

.figuree-fsi-arrow{
    width:44px;
    height:1px;
    background:rgba(255,255,255,.26);
}

.figuree-fsi-arrow::after{
    content:"";
    display:block;
    width:9px;
    height:9px;
    margin-top:-4px;
    margin-left:auto;
    border-top:1px solid rgba(255,255,255,.38);
    border-right:1px solid rgba(255,255,255,.38);
    transform:rotate(45deg);
}

.figuree-fsi-workflow-note{
    margin:30px 0 0;
    padding-top:22px;
    border-top:1px solid rgba(255,255,255,.09);
    color:var(--fsi-soft);
    font-size:13px;
    line-height:1.6;
}

.figuree-fsi-section-head{
    margin-bottom:28px;
}

.figuree-fsi-section-head h2,
.figuree-fsi-editorial h2{
    max-width:760px;
    margin:0;
    color:#fff;
    font-size:44px;
    font-weight:760;
    line-height:1.02;
    letter-spacing:0;
}

.figuree-fsi-card-grid{
    display:grid;
    gap:18px;
}

.figuree-fsi-card-grid.is-three{
    grid-template-columns:repeat(3,minmax(0,1fr));
}

.figuree-fsi-card-grid.is-six{
    grid-template-columns:repeat(3,minmax(0,1fr));
}

.figuree-fsi-card,
.figuree-fsi-included-card{
    border:1px solid rgba(255,255,255,.09);
    border-radius:8px;
    background:var(--fsi-card);
}

.figuree-fsi-card{
    position:relative;
    min-height:240px;
    padding:28px;
}

.figuree-fsi-card::before{
    content:"";
    box-shadow:0 0 0 8px color-mix(in srgb,var(--fsi-accent) 9%,transparent);
}

.figuree-fsi-included-card{
    display:grid;
    grid-template-columns:44px minmax(0,1fr);
    gap:16px;
    min-height:136px;
    padding:22px;
}

.figuree-fsi-included-card > span{
    display:flex;
    align-items:center;
    justify-content:center;
    width:44px;
    height:44px;
    border:1px solid rgba(255,255,255,.105);
    border-radius:8px;
    background:rgba(255,255,255,.045);
    color:var(--fsi-accent);
    font-size:11px;
    font-weight:900;
    letter-spacing:.03em;
}

.figuree-fsi-note{
    max-width:740px;
    margin-top:22px;
    color:var(--fsi-soft);
}

.figuree-fsi-editorial-inner{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(340px,.62fr);
    gap:clamp(40px,7vw,112px);
    align-items:center;
    padding:70px 0;
    border-top:1px solid var(--fsi-line);
    border-bottom:1px solid var(--fsi-line);
}

.figuree-fsi-editorial p{
    max-width:660px;
    font-size:16px;
}

.figuree-fsi-pill-stack{
    align-content:start;
}

.figuree-fsi-pill-stack span{
    width:100%;
    min-height:48px;
    justify-content:space-between;
    padding:0 18px;
    border-radius:8px;
}

.figuree-fsi-tags span{
    min-height:42px;
    padding:0 17px;
}

.figuree-fsi-final-cta{
    margin-top:116px;
}

.figuree-fsi-final-cta-inner{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(360px,.56fr);
    gap:clamp(34px,5vw,84px);
    align-items:end;
    padding:clamp(34px,5vw,70px);
}

.figuree-fsi-final-cta h2{
    max-width:980px;
    margin:0;
    color:#fff;
    font-size:68px;
    font-weight:500;
    line-height:.95;
    letter-spacing:0;
}

.figuree-fsi-final-cta p{
    max-width:620px;
    font-size:16px;
}

.figuree-fsi-final-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    align-items:center;
    justify-content:flex-end;
    margin-top:0;
}

.figuree-fsi-final-actions .figuree-fsi-button{
    flex:0 0 auto;
}

@media (prefers-reduced-motion:reduce){
    .figuree-fsi-button{
        transition:none;
    }
}

@media (max-width:1100px){
    .figuree-fsi-shell{
        width:min(calc(100vw - 56px),var(--fsi-width));
    }

    .figuree-fsi-hero-inner,
    .figuree-fsi-editorial-inner,
    .figuree-fsi-final-cta-inner{
        grid-template-columns:1fr;
    }

    .figuree-fsi-preview{
        max-width:720px;
    }

    .figuree-fsi-preview,
    .figuree-fsi-preview img{
        margin-left:0;
    }

    .figuree-fsi-card-grid.is-three,
    .figuree-fsi-card-grid.is-six{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .figuree-fsi-final-actions{
        justify-content:flex-start;
    }

    .figuree-fsi-final-cta h2{
        font-size:56px;
    }

    .figuree-fsi-subtitle{
        font-size:32px;
    }

    .figuree-fsi-section-head h2,
    .figuree-fsi-editorial h2{
        font-size:40px;
    }
}

@media (max-width:1000px){
    .figuree-fsi-section{
        margin-top:86px;
    }
}

@media (max-width:820px){
    .figuree-fsi-workflow-steps{
        grid-template-columns:1fr;
        gap:22px;
    }

    .figuree-fsi-arrow{
        width:1px;
        height:30px;
        margin-left:16px;
    }

    .figuree-fsi-arrow::after{
        margin-top:auto;
        margin-left:-4px;
        transform:rotate(135deg);
    }
}

@media (max-width:640px){
    .figuree-fsi-shell{
        width:min(calc(100vw - 36px),var(--fsi-width));
    }

    .figuree-fsi-hero{
        padding:var(--figuree-header-clearance, 82px) 0 56px;
    }

    .figuree-fsi-hero-copy,
    .figuree-fsi-section-head,
    .figuree-fsi-editorial-inner,
    .figuree-fsi-final-cta-inner{
        text-align:center;
    }

    .figuree-fsi-hero-copy,
    .figuree-fsi-subtitle,
    .figuree-fsi-hero-copy > p:not(.figuree-fsi-subtitle),
    .figuree-fsi-section-head h2,
    .figuree-fsi-editorial h2,
    .figuree-fsi-editorial p,
    .figuree-fsi-note,
    .figuree-fsi-final-cta h2,
    .figuree-fsi-final-cta p{
        margin-left:auto;
        margin-right:auto;
    }

    .figuree-fsi-kicker{
        justify-content:center;
    }

    .figuree-fsi-preview,
    .figuree-fsi-preview img{
        margin-left:auto;
        margin-right:auto;
    }

    .figuree-fsi-subtitle{
        font-size:26px;
    }

    .figuree-fsi-hero-copy > p:not(.figuree-fsi-subtitle){
        font-size:15px;
    }

    .figuree-fsi-section{
        margin-top:64px;
    }

    .figuree-fsi-kicker{
        gap:12px;
        font-size:11px;
        letter-spacing:.13em;
    }

    .figuree-fsi-kicker::before{
        width:28px;
    }

    .figuree-fsi-card-grid.is-three,
    .figuree-fsi-card-grid.is-six{
        grid-template-columns:1fr;
    }

    .figuree-fsi-card{
        min-height:0;
        padding:24px;
    }

    .figuree-fsi-included-card{
        grid-template-columns:40px minmax(0,1fr);
        padding:18px;
    }

    .figuree-fsi-included-card > span{
        width:40px;
        height:40px;
    }

    .figuree-fsi-actions,
    .figuree-fsi-button{
        width:100%;
    }

    .figuree-fsi-actions{
        justify-content:center;
    }

    .figuree-fsi-final-actions{
        width:100%;
        flex-direction:column;
        align-items:stretch;
        gap:12px;
    }

    .figuree-fsi-final-actions .figuree-fsi-button{
        width:100%;
        justify-content:center;
        text-align:center;
    }

    .figuree-fsi-final-cta-inner{
        padding:28px 20px;
    }

    .figuree-fsi-section-head h2,
    .figuree-fsi-editorial h2,
    .figuree-fsi-final-cta h2{
        font-size:34px;
    }
}
