/* =========================================================
   P553A — EXHIBITION STAND DESIGN
   ========================================================= */

.pstand-page{
    --ps-bg:#06131b;
    --ps-bg2:#071922;
    --ps-cyan:#63dce8;
    --ps-gold:#d8aa62;
    --ps-text:#eef5f7;
    --ps-muted:#8fa4ad;

    background:var(--ps-bg);
    color:var(--ps-text);
}

.pstand-shell{
    width:min(1180px,calc(100% - 48px));
    margin:auto;
}

.pstand-hero{
    padding:clamp(105px,10vw,150px) 0 90px;
    background:
        linear-gradient(
            125deg,
            #071923 0%,
            #06131b 62%,
            #0a131b 100%
        );
}

.pstand-hero-grid{
    display:grid;
    grid-template-columns:1.08fr .72fr;
    gap:76px;
    align-items:center;
}

.pstand-kicker,
.pstand-section-head>span,
.pstand-cta-panel>div>span,
.pstand-note-panel>span{
    display:block;
    margin-bottom:15px;
    color:var(--ps-cyan);
    font-size:10px;
    font-weight:800;
    letter-spacing:.14em;
}

.pstand-hero h1{
    margin:0;
    color:#f6f9fa;
    font-size:clamp(42px,5.3vw,72px);
    line-height:1.37;
}

.pstand-hero h1 strong{
    display:block;
    color:var(--ps-gold);
    font-weight:700;
}

.pstand-hero-copy>p{
    max-width:670px;
    margin:27px 0 0;
    color:#9db0b7;
    font-size:15px;
    line-height:2.1;
}

.pstand-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:30px;
}

.pstand-primary,
.pstand-cta-panel>a{
    display:inline-flex;
    min-height:52px;
    align-items:center;
    justify-content:center;
    padding:0 21px;
    border:1px solid rgba(99,220,232,.35);
    border-radius:8px;
    background:rgba(99,220,232,.10);
    color:#dff8fa;
    font-size:12px;
    font-weight:800;
    text-decoration:none;
}

.pstand-secondary{
    display:inline-flex;
    min-height:52px;
    align-items:center;
    padding:0 18px;
    color:#b7c8ce;
    font-size:12px;
    font-weight:800;
    text-decoration:none;
}

.pstand-brief{
    padding:30px;
    border:1px solid rgba(216,170,98,.17);
    background:rgba(255,255,255,.025);
}

.pstand-brief>span{
    color:var(--ps-gold);
    font-size:10px;
    font-weight:800;
}

.pstand-brief h2{
    margin:12px 0 22px;
    font-size:22px;
}

.pstand-brief ul{
    margin:0;
    padding:0;
    list-style:none;
}

.pstand-brief li{
    position:relative;
    padding:10px 20px 10px 0;
    border-bottom:1px solid rgba(255,255,255,.055);
    color:#96aab2;
    font-size:12px;
}

.pstand-brief li:before{
    position:absolute;
    top:17px;
    right:0;
    width:5px;
    height:5px;
    border-radius:50%;
    background:var(--ps-cyan);
    content:"";
}

.pstand-scope,
.pstand-process,
.pstand-cost{
    padding:clamp(80px,9vw,125px) 0;
}

.pstand-scope{
    background:#071720;
}

.pstand-process{
    background:#06131b;
}

.pstand-cost{
    background:#071720;
}

.pstand-section-head{
    display:grid;
    grid-template-columns:1fr .8fr;
    gap:50px;
    align-items:end;
    margin-bottom:40px;
}

.pstand-section-head>span{
    grid-column:1 / -1;
    margin-bottom:-25px;
}

.pstand-section-head h2{
    margin:0;
    color:#f2f7f8;
    font-size:clamp(30px,4vw,48px);
    line-height:1.5;
}

.pstand-section-head h2 strong{
    color:var(--ps-gold);
}

.pstand-section-head>p{
    margin:0;
    color:var(--ps-muted);
    font-size:13px;
    line-height:2;
}

.pstand-scope-grid,
.pstand-process-grid,
.pstand-cost-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:1px;
    background:rgba(255,255,255,.06);
}

.pstand-scope-grid article,
.pstand-process-grid article,
.pstand-cost-grid article{
    min-height:255px;
    padding:27px;
    background:#06131b;
}

.pstand-scope-grid article>b,
.pstand-process-grid article>span,
.pstand-cost-grid article>span{
    color:var(--ps-gold);
    font-size:11px;
    font-weight:800;
    letter-spacing:.08em;
}

.pstand-scope-grid h3,
.pstand-process-grid h3,
.pstand-cost-grid h3{
    margin:27px 0 11px;
    color:#edf5f7;
    font-size:18px;
}

.pstand-scope-grid p,
.pstand-process-grid p,
.pstand-cost-grid p{
    margin:0;
    color:#8298a1;
    font-size:11.5px;
    line-height:1.95;
}

.pstand-brand{
    padding:105px 0;
    background:#06131b;
}

.pstand-brand-grid{
    display:grid;
    grid-template-columns:.8fr 1fr;
    gap:90px;
    align-items:start;
}

.pstand-brand h2{
    margin:0;
    font-size:clamp(30px,4vw,48px);
    line-height:1.55;
}

.pstand-brand h2 strong{
    color:var(--ps-gold);
}

.pstand-brand-grid>div:last-child>p{
    margin:0;
    color:#91a5ad;
    font-size:13px;
    line-height:2.1;
}

.pstand-brand-links{
    display:flex;
    flex-wrap:wrap;
    gap:25px;
    margin-top:27px;
}

.pstand-brand-links a{
    color:var(--ps-cyan);
    font-size:11px;
    font-weight:800;
    text-decoration:none;
}

.pstand-portfolio-note{
    padding:0 0 105px;
    background:#06131b;
}

.pstand-note-panel{
    padding:42px;
    border:1px solid rgba(216,170,98,.16);
    background:rgba(216,170,98,.025);
}

.pstand-note-panel h2{
    margin:0;
    font-size:30px;
    line-height:1.55;
}

.pstand-note-panel h2 strong{
    color:var(--ps-gold);
}

.pstand-note-panel p{
    max-width:800px;
    margin:15px 0 0;
    color:#8ca1aa;
    font-size:12px;
    line-height:2;
}

.pstand-note-panel>a{
    display:inline-block;
    margin-top:22px;
    color:var(--ps-cyan);
    font-size:11px;
    font-weight:800;
    text-decoration:none;
}

.pstand-cta{
    padding:0 0 120px;
    background:#06131b;
}

.pstand-cta-panel{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:48px;
    padding:45px;
    border:1px solid rgba(99,220,232,.15);
    background:
        linear-gradient(
            120deg,
            rgba(99,220,232,.025),
            rgba(216,170,98,.02)
        );
}

.pstand-cta-panel h2{
    margin:0;
    font-size:30px;
    line-height:1.55;
}

.pstand-cta-panel h2 strong{
    color:var(--ps-gold);
}

.pstand-cta-panel p{
    max-width:690px;
    margin:13px 0 0;
    color:#8da2aa;
    font-size:12px;
    line-height:2;
}

.pstand-cta-panel>a{
    flex:0 0 auto;
}

@media(max-width:900px){

    .pstand-hero-grid,
    .pstand-section-head,
    .pstand-brand-grid{
        grid-template-columns:1fr;
        gap:32px;
    }

    .pstand-section-head>span{
        margin-bottom:0;
    }

    .pstand-scope-grid,
    .pstand-process-grid,
    .pstand-cost-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:620px){

    .pstand-shell{
        width:min(100% - 28px,1180px);
    }

    .pstand-hero{
        padding-top:85px;
    }

    .pstand-scope-grid,
    .pstand-process-grid,
    .pstand-cost-grid{
        grid-template-columns:1fr;
    }

    .pstand-scope-grid article,
    .pstand-process-grid article,
    .pstand-cost-grid article{
        min-height:0;
    }

    .pstand-note-panel{
        padding:28px;
    }

    .pstand-cta-panel{
        align-items:flex-start;
        flex-direction:column;
        padding:28px;
    }
}

/* END P553A */
