
:root{
    --bg:#050914;
    --panel:#0b1726;
    --panel2:#102238;
    --line:#20354d;
    --text:#f7f9fc;
    --muted:#98aabc;
    --gold:#f4bd49;
    --blue:#3da7ff;
    --discord:#5865f2;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    margin:0;
    overflow-x:hidden;
    background:#050914;
    color:var(--text);
    font-family:Arial,Helvetica,sans-serif;
}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}

.pc-nav{
    background:#07101b;
    border-bottom:1px solid var(--line);
}
.pc-symbol{
    width:38px;
    height:38px;
    display:grid;
    place-items:center;
    border-radius:10px;
    background:var(--gold);
    color:#07101b;
    font-weight:900;
}
.nav-link{color:#c5d0dc!important}
.nav-link:hover{color:#fff!important}

.btn-gold{
    background:var(--gold);
    color:#07101b;
    border:0;
    font-weight:800;
}
.btn-gold:hover{background:#ffd06c;color:#07101b}
.btn-outline-soft{
    border:1px solid #4c637a;
    color:#fff;
}
.btn-outline-soft:hover{background:#132338;color:#fff}
.btn-discord{
    background:var(--discord);
    color:#fff;
    border:0;
    font-weight:800;
}

.site-frame{
    width:min(1440px,calc(100% - 24px));
    margin:12px auto;
}

.logo-ribbon{
    display:flex;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
    padding:14px 16px;
    margin-bottom:18px;
    border:1px solid var(--line);
    border-radius:16px;
    background:#091420;
}
.logo-ribbon img{height:34px;width:auto}
.brand-x{color:#65798e}
.pitchcord-wordmark{font-weight:900;font-size:1.2rem}
.pitchcord-wordmark span{color:var(--blue)}
.role-pill{
    padding:5px 9px;
    border-radius:999px;
    border:1px solid #6e5a2f;
    color:var(--gold);
    font-size:.72rem;
    font-weight:800;
}

.text-soft{color:var(--muted)!important}
.eyebrow{
    color:var(--gold);
    font-size:.75rem;
    font-weight:800;
    letter-spacing:.14em;
    text-transform:uppercase;
}

/* HERO: wide banners only */
.hero-carousel{
    overflow:hidden;
    border:1px solid var(--line);
    border-radius:20px;
    background:#03070d;
}
.hero-slide{
    position:relative;
    aspect-ratio:1983/793;
    min-height:430px;
    overflow:hidden;
}
.hero-slide > img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}
.hero-slide::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(2,6,13,.94) 0%,rgba(2,6,13,.72) 36%,rgba(2,6,13,.08) 72%);
}
.hero-copy{
    position:absolute;
    z-index:2;
    left:4%;
    top:50%;
    transform:translateY(-50%);
    width:min(520px,42%);
    padding:24px;
    border:1px solid rgba(255,255,255,.15);
    border-radius:18px;
    background:rgba(5,13,22,.84);
}
.hero-copy.right{left:auto;right:4%}
.hero-copy h1,
.hero-copy h2{
    margin:.18em 0;
    font-size:clamp(2.5rem,4.8vw,5.2rem);
    line-height:.92;
    font-weight:900;
    letter-spacing:-.05em;
}
.hero-copy h1 span,
.hero-copy h2 span{color:var(--gold)}
.hero-copy p{color:#c8d3df;line-height:1.55}
.hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:18px;
}

/* Funnel */
.funnel-strip{padding:36px 0}
.funnel-head{
    display:flex;
    justify-content:space-between;
    align-items:end;
    gap:16px;
    margin-bottom:18px;
}
.funnel-head h2{font-weight:900;margin:4px 0 0}
.funnel-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:12px;
}
.funnel-arrow{display:none}
.funnel-card{
    position:relative;
    min-height:112px;
    padding:18px;
    border:1px solid var(--line);
    border-radius:16px;
    background:var(--panel);
}
.funnel-card > i{
    color:var(--gold);
    font-size:1.4rem;
    margin-bottom:10px;
}
.funnel-card strong,
.funnel-card small{display:block}
.funnel-card small{color:var(--muted);margin-top:4px}
.funnel-num{
    position:absolute;
    top:10px;
    right:12px;
    color:#31465d;
    font-weight:900;
}

/* Content */
.section-pad{padding:56px 0}
.section-title{
    font-size:clamp(2rem,4vw,3.5rem);
    font-weight:900;
    margin:.3em 0;
}
.panel,
.card-pc{
    background:var(--panel);
    border:1px solid var(--line);
    border-radius:18px;
}
.card-pc{
    height:100%;
    padding:22px;
}
.icon-box{
    width:44px;
    height:44px;
    display:grid;
    place-items:center;
    border-radius:12px;
    background:#18263a;
    color:var(--gold);
    font-size:1.2rem;
}
.action-card h4{margin-top:16px}
.action-card a{color:var(--gold);font-weight:800}

/* Wide banner only */
.wide-showcase{overflow:hidden}
.wide-showcase img{
    width:100%;
    aspect-ratio:1983/793;
    object-fit:cover;
}

/* Discord */
.discord-cta{
    display:flex;
    align-items:center;
    gap:22px;
    padding:26px;
    border-radius:18px;
    background:var(--discord);
}
.discord-icon-big{font-size:3.4rem}
.time-big{font-size:2.3rem;font-weight:900}

/* Forms */
.form-control,
.form-select{
    background:#08121e;
    color:#fff;
    border-color:#2b4058;
}
.form-control:focus,
.form-select:focus{
    background:#08121e;
    color:#fff;
    border-color:var(--gold);
    box-shadow:0 0 0 .2rem rgba(244,189,73,.14);
}
.form-control::placeholder{color:#71849a}
.form-select option{background:#08121e;color:#fff}
.progress{background:#1a2939}
.progress-bar{background:var(--gold)}

.status{
    display:none;
    margin-top:12px;
    padding:12px;
    border-radius:10px;
}
.status.ok{display:block;background:#11382e}
.status.err{display:block;background:#431f28}

/* Portal */
.portal-grid{
    display:grid;
    grid-template-columns:220px 1fr;
}
.portal-side{
    padding:18px;
    border-right:1px solid var(--line);
}
.portal-side a{
    display:flex;
    gap:10px;
    padding:11px 12px;
    color:#a7b6c5;
}
.portal-side a:hover,
.portal-side a.active{
    background:#132338;
    color:#fff;
}
.portal-main{padding:24px}
.metric{
    padding:18px;
    border:1px solid var(--line);
    border-radius:14px;
    background:#0d1b2b;
}
.metric strong{display:block;font-size:1.5rem}
.login-card{max-width:470px;margin:50px auto}

/* Footer */
.pc-footer{
    background:#03070d;
    border-top:1px solid var(--line);
}
.lvlup-logo{max-width:320px}

/* Mobile */
@media(max-width:1100px){
    .hero-copy{width:48%}
    }

@media(max-width:900px){
    .hero-slide{
        aspect-ratio:auto;
        min-height:620px;
    }
    .hero-slide::after{
        background:linear-gradient(180deg,rgba(2,6,13,.08),rgba(2,6,13,.92) 65%,rgba(2,6,13,.98));
    }
    .hero-copy,
    .hero-copy.right{
        left:20px;
        right:20px;
        top:auto;
        bottom:24px;
        transform:none;
        width:auto;
    }
    .funnel-grid{grid-template-columns:1fr 1fr}
    .portal-grid{grid-template-columns:1fr}
    .portal-side{
        display:flex;
        overflow:auto;
        border-right:0;
        border-bottom:1px solid var(--line);
    }
}

@media(max-width:700px){
    .site-frame{width:calc(100% - 8px);margin:4px auto}
    .hero-slide{min-height:620px}
    .hero-copy,
    .hero-copy.right{
        left:12px;
        right:12px;
        bottom:14px;
        padding:20px;
    }
    .hero-copy h1,
    .hero-copy h2{font-size:2.7rem}
    .hero-actions .btn{width:100%}
    .funnel-head{align-items:flex-start;flex-direction:column}
    .funnel-grid{grid-template-columns:1fr}
    .discord-cta{align-items:flex-start;flex-direction:column}
}


/* ===== Square content fix ===== */
.content-layout{
    display:grid;
    grid-template-columns:minmax(0,1fr) 360px;
    gap:28px;
    align-items:start;
}

.content-layout aside{
    width:100%;
    min-width:0;
}

.sticky-card{
    position:sticky;
    top:90px;
    width:100%;
    overflow:hidden;
    background:var(--panel);
    border:1px solid var(--line);
    border-radius:18px;
}

.square-content{
    display:block;
    width:100%;
    height:auto;
    aspect-ratio:1 / 1;
    object-fit:contain;
    object-position:center;
    background:#03070d;
    border:0;
    margin:0;
    padding:0;
}

/* Wide banners remain wide and are never reused as square content */
.hero-slide > img,
.wide-showcase img{
    width:100%;
    object-fit:cover;
    object-position:center;
}

@media(max-width:900px){
    .content-layout{
        grid-template-columns:1fr;
    }

    .sticky-card{
        position:relative;
        top:auto;
        max-width:520px;
        margin:0 auto;
    }

    .square-content{
        width:100%;
        height:auto;
        aspect-ratio:1 / 1;
        object-fit:contain;
    }
}

@media(max-width:700px){
    .sticky-card{
        max-width:100%;
    }
}


/* picture wrappers */
.hero-slide > picture,
.hero-slide > picture > img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
}
.hero-slide > picture > img{
    object-fit:cover;
    object-position:center;
}
.sticky-card > picture{
    display:block;
    width:100%;
}
.sticky-card > picture > img.square-content{
    width:100%;
    height:auto;
    aspect-ratio:1/1;
    object-fit:contain;
}
.wide-showcase > picture,
.wide-showcase > picture > img{
    display:block;
    width:100%;
}
.wide-showcase > picture > img{
    height:auto;
    aspect-ratio:1983/793;
    object-fit:cover;
}


/* Inner page banners */
.page-banner{
    position:relative;
    overflow:hidden;
    width:100%;
    aspect-ratio:1983/793;
    min-height:260px;
    margin:0 0 32px;
    border:1px solid var(--line);
    border-radius:18px;
    background:#03070d;
}

.page-banner.compact{
    min-height:220px;
}

.page-banner > img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

.page-banner::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(2,6,13,.92) 0%,rgba(2,6,13,.68) 42%,rgba(2,6,13,.15) 75%);
}

.page-banner-overlay{
    position:absolute;
    z-index:2;
    left:34px;
    bottom:30px;
    max-width:620px;
}

.page-banner-overlay h1{
    margin:.15em 0;
    font-size:clamp(2.2rem,4vw,4.6rem);
    line-height:.95;
    font-weight:900;
    letter-spacing:-.045em;
}

.page-banner-overlay p{
    margin:8px 0 0;
    color:#d0d9e3;
    font-size:1.05rem;
    line-height:1.5;
}

@media(max-width:768px){
    .page-banner{
        aspect-ratio:auto;
        min-height:360px;
    }
    .page-banner > img{
        object-position:center top;
    }
    .page-banner::after{
        background:linear-gradient(180deg,rgba(2,6,13,.15),rgba(2,6,13,.92) 70%,rgba(2,6,13,.98));
    }
    .page-banner-overlay{
        left:20px;
        right:20px;
        bottom:20px;
    }
    .page-banner-overlay h1{
        font-size:2.6rem;
    }
}


/* Pitch page cleanup */
.pitch-form-panel{
    max-width:100%;
}

.pitch-form-intro{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    margin:0 0 18px;
    padding:0 0 14px;
    border-bottom:1px solid var(--line);
}

.pitch-form-intro strong{
    font-size:1rem;
}

.pitch-form-intro span{
    color:var(--muted);
    font-size:.95rem;
}

/* Smaller inner-page banner on form pages */
.page-banner{
    min-height:0;
    aspect-ratio:1983/560;
    margin-bottom:22px;
}

.page-banner-overlay{
    left:28px;
    bottom:22px;
}

.page-banner-overlay h1{
    font-size:clamp(1.9rem,3.2vw,3.5rem);
}

.page-banner-overlay p{
    font-size:.95rem;
    max-width:560px;
}

/* Remove visual dead space before first field */
.pitch-form-panel .progress{
    margin-top:0;
    margin-bottom:22px!important;
}

/* Make the progress line intentional, not a weird floating bar */
.pitch-form-panel .progress{
    height:6px;
    border-radius:999px;
    overflow:hidden;
}

@media(max-width:768px){
    .page-banner{
        min-height:260px;
        aspect-ratio:auto;
    }

    .pitch-form-intro{
        align-items:flex-start;
        flex-direction:column;
        gap:4px;
    }
}


/* Founder School */
.school-section{
    padding:44px 0;
    border-top:1px solid var(--line);
}

.school-section h2{
    margin:.25em 0 .6em;
    font-weight:900;
}

.school-callout{
    padding:22px;
}

.school-callout h4{
    margin-top:16px;
}

.school-item{
    height:100%;
    display:flex;
    gap:16px;
    padding:20px;
    border:1px solid var(--line);
    border-radius:16px;
    background:var(--panel);
}

.school-number{
    flex:0 0 auto;
    color:var(--gold);
    font-weight:900;
    font-size:1.2rem;
}

.school-item h4{
    margin:0 0 6px;
}

.school-item p{
    margin:0;
    color:var(--muted);
}

.pitch-timeline{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:12px;
}

.pitch-step{
    padding:18px;
    border:1px solid var(--line);
    border-radius:16px;
    background:#0b1726;
}

.pitch-step span{
    display:block;
    color:var(--gold);
    font-weight:900;
    margin-bottom:10px;
}

.pitch-step strong{
    display:block;
    margin-bottom:6px;
}

.pitch-step p{
    margin:0;
    color:var(--muted);
    font-size:.92rem;
}

.school-warning{
    display:flex;
    gap:12px;
    align-items:flex-start;
    padding:16px;
    border:1px solid #5f2a33;
    border-radius:14px;
    background:#24131a;
}

.school-warning i{
    color:#ff6475;
    margin-top:2px;
}

.school-final{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    padding:28px;
}

/* Pitch Prep */
.prep-layout{
    display:grid;
    grid-template-columns:240px minmax(0,1fr);
    gap:28px;
    align-items:start;
}

.prep-sidebar{
    position:sticky;
    top:90px;
    padding:18px;
}

.prep-sidebar a{
    display:block;
    padding:9px 10px;
    border-radius:9px;
    color:#aebdca;
}

.prep-sidebar a:hover{
    color:#fff;
    background:#132338;
}

.prep-block{
    position:relative;
    padding:28px 28px 28px 72px;
    margin-bottom:18px;
    border:1px solid var(--line);
    border-radius:18px;
    background:var(--panel);
}

.prep-step{
    position:absolute;
    left:22px;
    top:28px;
    color:var(--gold);
    font-weight:900;
    font-size:1.2rem;
}

.prep-block h3{
    margin:0 0 10px;
}

.prep-block p,
.prep-block li{
    color:var(--muted);
}

.prep-example{
    margin-top:16px;
    padding:14px;
    border-left:3px solid var(--gold);
    background:#111f30;
    color:#dce6ef;
}

.prep-tags{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
    margin-top:14px;
}

.prep-tags span{
    padding:7px 10px;
    border:1px solid #36506a;
    border-radius:999px;
    background:#0b1a2a;
    color:#c8d5e1;
    font-size:.88rem;
}

.prep-ready{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    padding:24px;
    margin-top:26px;
}

@media(max-width:992px){
    .pitch-timeline{
        grid-template-columns:1fr 1fr;
    }

    .prep-layout{
        grid-template-columns:1fr;
    }

    .prep-sidebar{
        position:relative;
        top:auto;
    }
}

@media(max-width:700px){
    .pitch-timeline{
        grid-template-columns:1fr;
    }

    .school-final,
    .prep-ready{
        align-items:flex-start;
        flex-direction:column;
    }

    .prep-block{
        padding:54px 20px 22px;
    }

    .prep-step{
        top:18px;
        left:20px;
    }
}


/* Founder Material Library */
.library-banner{
    margin-bottom:28px;
}

.library-head{
    display:flex;
    justify-content:space-between;
    align-items:end;
    gap:24px;
    margin-bottom:24px;
}

.library-head h2{
    margin:.2em 0 .25em;
    font-weight:900;
}

.library-tools{
    display:flex;
    gap:10px;
    align-items:center;
}

.library-search-wrap{
    position:relative;
    min-width:280px;
}

.library-search-wrap i{
    position:absolute;
    left:13px;
    top:50%;
    transform:translateY(-50%);
    color:var(--muted);
    pointer-events:none;
}

.library-search-wrap input{
    padding-left:38px;
}

.library-tools .form-select{
    min-width:180px;
}

.library-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
}

.library-card{
    position:relative;
    display:flex;
    flex-direction:column;
    min-height:360px;
    padding:22px;
    border:1px solid var(--line);
    border-radius:18px;
    background:linear-gradient(180deg,#0c1827,#09131f);
    box-shadow:0 12px 34px rgba(0,0,0,.16);
    transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease,opacity .2s ease;
}

.library-card:hover{
    transform:translateY(-3px);
    border-color:#385472;
    box-shadow:0 18px 42px rgba(0,0,0,.24);
}

.library-card-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:18px;
}

.pdf-icon{
    width:46px;
    height:46px;
    display:grid;
    place-items:center;
    border-radius:13px;
    background:#341315;
    border:1px solid #673036;
    color:#ff6b75;
    font-size:1.35rem;
}

.library-badge{
    padding:6px 9px;
    border:1px solid #34485f;
    border-radius:999px;
    background:#101f30;
    color:#b9c8d6;
    font-size:.75rem;
    font-weight:800;
    letter-spacing:.04em;
    text-transform:uppercase;
}

.library-card-icon{
    margin-bottom:12px;
    color:var(--gold);
    font-size:1.15rem;
}

.library-card h3{
    margin:0 0 10px;
    font-size:1.22rem;
    font-weight:850;
}

.library-card p{
    flex:1;
    margin:0;
    color:var(--muted);
    line-height:1.55;
    font-size:.94rem;
}

.library-actions{
    display:flex;
    gap:9px;
    margin-top:22px;
}

.library-actions .btn{
    flex:1;
}

.download-loading{
    display:none;
}

.library-download.is-loading .download-label{
    display:none;
}

.library-download.is-loading .download-loading{
    display:inline-flex;
    align-items:center;
}

.library-download:disabled{
    cursor:not-allowed;
    opacity:.72;
}

.library-card.is-hidden{
    display:none;
}

.library-empty{
    display:none;
    text-align:center;
    padding:70px 20px;
    color:var(--muted);
}

.library-empty.show{
    display:block;
}

.library-empty i{
    display:block;
    margin-bottom:10px;
    font-size:2.4rem;
    color:var(--gold);
}

.download-toast{
    position:fixed;
    right:24px;
    bottom:24px;
    z-index:1080;
    display:flex;
    align-items:center;
    gap:9px;
    min-width:260px;
    max-width:420px;
    padding:14px 16px;
    border:1px solid #395a48;
    border-radius:14px;
    background:#0e2418;
    color:#ddf7e6;
    box-shadow:0 18px 50px rgba(0,0,0,.35);
    opacity:0;
    pointer-events:none;
    transform:translateY(12px);
    transition:opacity .2s ease,transform .2s ease;
}

.download-toast.show{
    opacity:1;
    transform:translateY(0);
}

.download-toast.is-error{
    border-color:#6c3640;
    background:#2a1419;
    color:#ffd8df;
}

@media(max-width:1100px){
    .library-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media(max-width:800px){
    .library-head{
        align-items:stretch;
        flex-direction:column;
    }

    .library-tools{
        align-items:stretch;
        flex-direction:column;
    }

    .library-search-wrap,
    .library-tools .form-select{
        width:100%;
        min-width:0;
    }
}

@media(max-width:640px){
    .library-grid{
        grid-template-columns:1fr;
    }

    .library-card{
        min-height:0;
    }

    .library-actions{
        flex-direction:column;
    }

    .download-toast{
        left:16px;
        right:16px;
        bottom:16px;
        min-width:0;
    }
}


/* Main navigation polish */
.navbar{
    padding:.7rem 0;
    background:rgba(6,14,24,.94)!important;
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(255,255,255,.07);
    box-shadow:0 8px 26px rgba(0,0,0,.18);
}

.navbar-brand{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:900;
    letter-spacing:-.02em;
}

.pitchcord-nav{
    gap:4px;
}

.pitchcord-nav .nav-link{
    display:flex;
    align-items:center;
    gap:7px;
    padding:.62rem .78rem!important;
    border-radius:10px;
    color:#b9c7d4!important;
    font-weight:700;
    font-size:.92rem;
    transition:background .16s ease,color .16s ease,transform .16s ease;
}

.pitchcord-nav .nav-link i{
    font-size:.95rem;
    color:#7f96aa;
    transition:color .16s ease;
}

.pitchcord-nav .nav-link:hover,
.pitchcord-nav .nav-link:focus{
    color:#fff!important;
    background:#112235;
    transform:translateY(-1px);
}

.pitchcord-nav .nav-link:hover i,
.pitchcord-nav .nav-link:focus i{
    color:var(--gold);
}

.pitchcord-nav .nav-link.active{
    color:#fff!important;
    background:#13283f;
    box-shadow:inset 0 0 0 1px #274765;
}

.nav-join-btn{
    display:inline-flex;
    align-items:center;
    gap:7px;
    padding:.62rem .92rem;
    border-radius:10px;
    background:linear-gradient(180deg,#efbd57,#d79a2f);
    border:1px solid #efc56c;
    color:#111820!important;
    font-weight:900;
    box-shadow:0 8px 22px rgba(215,154,47,.18);
}

.nav-join-btn:hover{
    color:#111820!important;
    transform:translateY(-1px);
    filter:brightness(1.04);
}

.pitchcord-dropdown{
    min-width:220px;
    padding:8px;
    border:1px solid #29425a;
    border-radius:14px;
    background:#0a1623;
    box-shadow:0 20px 50px rgba(0,0,0,.35);
}

.pitchcord-dropdown .dropdown-item{
    display:flex;
    align-items:center;
    gap:9px;
    padding:10px 11px;
    border-radius:9px;
    color:#c3d0dc;
    font-weight:700;
    font-size:.9rem;
}

.pitchcord-dropdown .dropdown-item i{
    color:var(--gold);
}

.pitchcord-dropdown .dropdown-item:hover{
    background:#13263a;
    color:#fff;
}

.pitchcord-dropdown .dropdown-divider{
    border-color:#25384b;
}

@media(max-width:991px){
    .navbar-collapse{
        margin-top:12px;
        padding:12px;
        border:1px solid #22384d;
        border-radius:14px;
        background:#08131f;
    }

    .pitchcord-nav{
        gap:3px;
    }

    .pitchcord-nav .nav-link{
        width:100%;
        padding:.75rem .8rem!important;
    }

    .pitchcord-nav .nav-item.ms-lg-2{
        margin-top:7px;
    }

    .nav-join-btn{
        width:100%;
        justify-content:center;
    }

    .pitchcord-dropdown{
        width:100%;
        margin-top:4px;
        box-shadow:none;
    }
}


/* Footer + BrokerWise attribution */
.site-footer{
    margin-top:70px;
    padding:46px 0 18px;
    border-top:1px solid #203247;
    background:
        radial-gradient(circle at 15% 0%,rgba(41,86,132,.15),transparent 32%),
        #06101a;
}

.footer-main{
    display:grid;
    grid-template-columns:1.45fr .7fr .8fr 1.25fr;
    gap:34px;
    align-items:start;
}

.footer-brand{
    font-size:1.55rem;
    font-weight:950;
    letter-spacing:-.04em;
    color:#fff;
}

.footer-brand-block > p{
    max-width:470px;
    margin:10px 0 20px;
    color:#8fa2b4;
    line-height:1.55;
}

.powered-brokerwise{
    display:inline-flex;
    align-items:center;
    gap:11px;
    padding:11px 13px;
    border:1px solid #31485e;
    border-radius:13px;
    background:#0b1927;
}

.powered-mark{
    width:38px;
    height:38px;
    display:grid;
    place-items:center;
    border-radius:10px;
    background:#122b42;
    color:var(--gold);
}

.powered-brokerwise span,
.powered-brokerwise strong{
    display:block;
}

.powered-brokerwise span{
    color:#6f879a;
    font-size:.68rem;
    font-weight:900;
    letter-spacing:.12em;
}

.powered-brokerwise strong{
    margin-top:2px;
    color:#fff;
    font-size:.92rem;
    letter-spacing:.02em;
}

.footer-col h5{
    margin:2px 0 13px;
    color:#fff;
    font-size:.82rem;
    font-weight:900;
    letter-spacing:.09em;
    text-transform:uppercase;
}

.footer-col > a:not(.footer-social-card){
    display:block;
    padding:5px 0;
    color:#8fa2b4;
    font-size:.92rem;
}

.footer-col > a:not(.footer-social-card):hover{
    color:#fff;
}

.footer-social-card{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:9px;
    padding:10px;
    border:1px solid #24394d;
    border-radius:12px;
    background:#091624;
    transition:background .16s ease,border-color .16s ease,transform .16s ease;
}

.footer-social-card:hover{
    transform:translateY(-1px);
    border-color:#3a5c78;
    background:#0d1e2f;
}

.social-icon{
    flex:0 0 auto;
    width:34px;
    height:34px;
    display:grid;
    place-items:center;
    border-radius:9px;
    background:#13283c;
    color:#d8e7f4;
}

.social-icon.linkedin{
    background:#0a66c2;
    color:#fff;
}

.footer-social-card strong,
.footer-social-card small{
    display:block;
}

.footer-social-card strong{
    color:#eef5fb;
    font-size:.88rem;
}

.footer-social-card small{
    margin-top:1px;
    color:#8296a8;
    font-size:.75rem;
    line-height:1.25;
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;
    margin-top:34px;
    padding-top:17px;
    border-top:1px solid #1d2d3d;
    color:#64798b;
    font-size:.82rem;
}

.footer-bottom-links{
    display:flex;
    gap:16px;
}

.footer-bottom-links a{
    color:#7e92a4;
}

.footer-bottom-links a:hover{
    color:#fff;
}

/* Team page */
.team-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:20px;
}

.team-card{
    padding:25px;
    border:1px solid var(--line);
    border-radius:18px;
    background:linear-gradient(180deg,#0d1928,#091420);
}

.team-card-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:20px;
}

.team-avatar-icon{
    width:48px;
    height:48px;
    display:grid;
    place-items:center;
    border-radius:14px;
    background:#132d45;
    color:var(--gold);
    font-size:1.35rem;
}

.team-role-badge{
    padding:6px 9px;
    border:1px solid #344d64;
    border-radius:999px;
    color:#adc0d1;
    background:#0e1d2c;
    font-size:.72rem;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.06em;
}

.team-card h2{
    margin:0;
    font-weight:900;
}

.team-role{
    margin:4px 0 13px;
    color:var(--gold);
    font-weight:800;
}

.team-links{
    display:flex;
    gap:9px;
    flex-wrap:wrap;
    margin-top:20px;
}

.team-contact{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:24px;
    padding:25px;
}

@media(max-width:1050px){
    .footer-main{
        grid-template-columns:1.4fr 1fr 1fr;
    }

    .footer-main .footer-col:last-child{
        grid-column:1/-1;
    }

    .footer-main .footer-col:last-child{
        display:grid;
        grid-template-columns:repeat(3,minmax(0,1fr));
        gap:9px;
    }

    .footer-main .footer-col:last-child h5{
        grid-column:1/-1;
    }
}

@media(max-width:760px){
    .footer-main{
        grid-template-columns:1fr 1fr;
    }

    .footer-brand-block{
        grid-column:1/-1;
    }

    .footer-main .footer-col:last-child{
        grid-template-columns:1fr;
    }

    .footer-bottom{
        align-items:flex-start;
        flex-direction:column;
    }

    .team-grid{
        grid-template-columns:1fr;
    }

    .team-contact{
        align-items:flex-start;
        flex-direction:column;
    }
}

@media(max-width:480px){
    .footer-main{
        grid-template-columns:1fr;
    }

    .footer-brand-block{
        grid-column:auto;
    }

    .powered-brokerwise{
        width:100%;
    }
}

.pitchcord-nav .founder-ai-nav{
    color:#fff!important;
    background:linear-gradient(180deg,#15304a,#10263b);
    box-shadow:inset 0 0 0 1px #315878;
}
.pitchcord-nav .founder-ai-nav i{
    color:var(--gold)!important;
}


/* HARD NAV FIX */
.pitchcord-navbar{
    position:sticky!important;
    top:0!important;
    z-index:99999!important;
    width:100%;
    min-height:68px;
    overflow:visible!important;
}

.pitchcord-navbar .container,
.pitchcord-navbar .navbar-collapse,
.pitchcord-navbar .navbar-nav,
.pitchcord-navbar .nav-item{
    overflow:visible!important;
}

.pitchcord-navbar a,
.pitchcord-navbar button{
    pointer-events:auto!important;
}

.pitchcord-brand{
    position:relative;
    z-index:100002;
    display:flex!important;
    align-items:center;
    gap:9px;
    color:#fff!important;
    text-decoration:none!important;
}

.brand-mark{
    width:36px;
    height:36px;
    display:grid;
    place-items:center;
    border-radius:10px;
    background:linear-gradient(180deg,#f0c15f,#d4952f);
    color:#10161d;
    font-weight:950;
}

.brand-copy strong,
.brand-copy small{
    display:block;
    line-height:1.05;
}

.brand-copy strong{
    font-size:1.02rem;
}

.brand-copy small{
    margin-top:3px;
    color:#71889c;
    font-size:.64rem;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.pitchcord-toggler{
    position:relative;
    z-index:100002;
    border:1px solid #38536b!important;
    background:#102236!important;
    box-shadow:none!important;
}

.nav-dropdown-button{
    border:0;
    background:transparent;
}

.pitchcord-dropdown{
    z-index:100005!important;
}

.founder-ai-shell,
.ai-hero,
.founder-avatar-stage,
.ai-brandbar,
.ai-howto,
.ai-grid{
    position:relative;
    z-index:1;
}

@media(max-width:991.98px){
    .pitchcord-navbar{
        min-height:64px;
    }

    .pitchcord-navbar .navbar-collapse{
        position:absolute!important;
        top:100%!important;
        left:12px!important;
        right:12px!important;
        z-index:100001!important;
        max-height:calc(100vh - 84px);
        overflow-y:auto!important;
        padding:12px!important;
        margin-top:8px!important;
        border:1px solid #29445c!important;
        border-radius:14px!important;
        background:#07131f!important;
        box-shadow:0 22px 55px rgba(0,0,0,.48)!important;
    }

    .pitchcord-navbar .navbar-collapse:not(.show){
        display:none!important;
    }

    .pitchcord-navbar .navbar-collapse.show{
        display:block!important;
    }

    .pitchcord-nav{
        width:100%;
        align-items:stretch!important;
    }

    .pitchcord-nav .nav-item{
        width:100%;
    }

    .pitchcord-nav .nav-link,
    .pitchcord-nav .nav-dropdown-button,
    .nav-join-btn{
        width:100%!important;
        min-height:46px;
        justify-content:flex-start!important;
        display:flex!important;
        align-items:center!important;
        gap:10px!important;
    }

    .pitchcord-nav .dropdown-menu{
        position:static!important;
        float:none!important;
        width:100%!important;
        margin:4px 0 8px!important;
        transform:none!important;
    }
}


/* Founder AI main-site CTA */
.btn-founder-ai{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    border:1px solid #5b84a8!important;
    background:linear-gradient(180deg,#173b59,#102a42)!important;
    color:#fff!important;
    font-weight:900!important;
    box-shadow:0 10px 28px rgba(24,70,108,.28);
}
.btn-founder-ai i{
    color:var(--gold);
}
.btn-founder-ai:hover{
    color:#fff!important;
    transform:translateY(-1px);
    background:linear-gradient(180deg,#1d486b,#12314c)!important;
}

/* Dedicated home Founder AI section */
.home-founder-ai{
    padding:24px 0 34px;
}
.home-founder-ai-card{
    display:grid;
    grid-template-columns:minmax(0,1.45fr) minmax(280px,.55fr);
    gap:28px;
    align-items:center;
    padding:30px;
    border:1px solid #31506d;
    border-radius:20px;
    background:
        radial-gradient(circle at 85% 35%,rgba(216,164,62,.13),transparent 25%),
        linear-gradient(135deg,#0d1d2d,#08131f 72%);
    box-shadow:0 22px 52px rgba(0,0,0,.22);
}
.home-ai-copy h2{
    margin:.18em 0 .25em;
    font-size:clamp(2rem,4vw,4rem);
    font-weight:950;
    letter-spacing:-.045em;
}
.home-ai-copy p{
    max-width:760px;
    color:#a9bac8;
    line-height:1.65;
    font-size:1rem;
}
.home-ai-actions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:20px;
}
.home-ai-visual{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    min-height:240px;
    padding:22px;
    border:1px solid #29445c;
    border-radius:18px;
    background:#091723;
}
.home-ai-avatar{
    width:120px;
    height:120px;
    display:grid;
    place-items:center;
    border-radius:50%;
    border:2px solid #466d8d;
    background:radial-gradient(circle at 50% 35%,#2a5476,#112c43 62%,#091722);
    color:var(--gold);
    font-size:3rem;
    box-shadow:0 0 0 10px rgba(43,88,126,.16);
}
.home-ai-status{
    margin-top:18px;
    text-align:center;
}
.home-ai-status span,
.home-ai-status strong,
.home-ai-status small{
    display:block;
}
.home-ai-status span{
    color:#8cd4a5;
    font-size:.75rem;
    font-weight:800;
}
.home-ai-status span i{
    font-size:.5rem;
    color:#42d37e;
}
.home-ai-status strong{
    margin-top:5px;
    color:#fff;
    font-size:1.15rem;
}
.home-ai-status small{
    margin-top:3px;
    color:#7f94a7;
}

/* Keep desktop menu clean instead of crushed */
@media(min-width:992px){
    .pitchcord-navbar .container{
        max-width:1320px;
    }
    .pitchcord-nav{
        flex-wrap:nowrap!important;
        gap:6px!important;
    }
    .pitchcord-nav .nav-link{
        white-space:nowrap;
        padding:.62rem .72rem!important;
    }
    .pitchcord-brand{
        margin-right:24px!important;
        flex:0 0 auto;
    }
}

@media(max-width:850px){
    .home-founder-ai-card{
        grid-template-columns:1fr;
    }
}
@media(max-width:560px){
    .home-founder-ai-card{
        padding:20px;
    }
    .home-ai-actions .btn{
        width:100%;
    }
}


/* =========================================================
   FULL VISIBLE NAVIGATION
   No hamburger. No dropdown. No "More". No hidden links.
   ========================================================= */

.pcfull-nav{
    position:sticky;
    top:0;
    z-index:99999;
    width:100%;
    background:#07111b;
    border-bottom:1px solid #1e3448;
    box-shadow:0 10px 30px rgba(0,0,0,.22);
}

.pcfull-nav .container{
    max-width:1380px;
}

.pcfull-top{
    min-height:58px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.pcfull-brand{
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    text-decoration:none;
}

.pcfull-logo{
    width:36px;
    height:36px;
    display:grid;
    place-items:center;
    border-radius:10px;
    background:linear-gradient(180deg,#efbd52,#d6962f);
    color:#111820;
    font-weight:950;
}

.pcfull-brand-copy strong,
.pcfull-brand-copy small{
    display:block;
}

.pcfull-brand-copy strong{
    font-size:1.05rem;
    line-height:1;
}

.pcfull-brand-copy small{
    margin-top:3px;
    color:#71889c;
    font-size:.6rem;
    font-weight:900;
    letter-spacing:.12em;
}

.pcfull-join{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    min-height:40px;
    padding:0 14px;
    border:1px solid #efc46a;
    border-radius:10px;
    background:linear-gradient(180deg,#efbd52,#d6962f);
    color:#111820;
    font-size:.85rem;
    font-weight:900;
    text-decoration:none;
    white-space:nowrap;
}

.pcfull-join:hover{
    color:#111820;
    filter:brightness(1.04);
}

.pcfull-links{
    display:grid;
    grid-template-columns:repeat(11,minmax(0,1fr));
    gap:6px;
    padding:0 0 10px;
}

.pcfull-links a{
    min-width:0;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    min-height:44px;
    padding:8px 7px;
    border:1px solid #1f3549;
    border-radius:10px;
    background:#0a1724;
    color:#aebdca;
    text-decoration:none;
    font-size:.78rem;
    font-weight:800;
    white-space:nowrap;
    transition:background .15s ease,border-color .15s ease,color .15s ease,transform .15s ease;
}

.pcfull-links a:hover{
    color:#fff;
    background:#102438;
    border-color:#365772;
    transform:translateY(-1px);
}

.pcfull-links a i{
    flex:0 0 auto;
    color:#7f96aa;
}

.pcfull-links .pcfull-ai{
    color:#fff;
    border-color:#4a7190;
    background:linear-gradient(180deg,#15334d,#10273c);
}

.pcfull-links .pcfull-ai i{
    color:var(--gold);
}

.pcfull-links a.active{
    color:#fff;
    background:#132b42;
    border-color:#426683;
}

@media(max-width:1220px){
    .pcfull-links{
        grid-template-columns:repeat(6,minmax(0,1fr));
    }
}

@media(max-width:760px){
    .pcfull-nav{
        position:relative;
    }

    .pcfull-top{
        min-height:54px;
    }

    .pcfull-brand-copy small{
        display:none;
    }

    .pcfull-links{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:7px;
    }

    .pcfull-links a{
        justify-content:flex-start;
        min-height:46px;
        padding:10px 11px;
        font-size:.82rem;
    }

    .pcfull-join{
        padding:0 11px;
        font-size:.8rem;
    }
}

@media(max-width:430px){
    .pcfull-top{
        align-items:center;
    }

    .pcfull-brand-copy strong{
        font-size:.95rem;
    }

    .pcfull-links{
        grid-template-columns:1fr;
    }

    .pcfull-links a{
        width:100%;
    }
}

/* Giant Founder AI homepage launch button */
.founder-ai-launch{padding:12px 0 6px}
.founder-ai-launch-card{
    display:grid;
    grid-template-columns:auto minmax(0,1fr) auto;
    gap:18px;
    align-items:center;
    padding:18px 20px;
    border:1px solid #426987;
    border-radius:17px;
    background:
      radial-gradient(circle at 84% 50%,rgba(232,180,73,.14),transparent 25%),
      linear-gradient(135deg,#10283d,#091723 72%);
    color:#fff;
    text-decoration:none;
    box-shadow:0 15px 38px rgba(0,0,0,.24);
    transition:transform .16s ease,border-color .16s ease,box-shadow .16s ease;
}
.founder-ai-launch-card:hover{
    color:#fff;
    transform:translateY(-2px);
    border-color:#6b94b5;
    box-shadow:0 20px 48px rgba(0,0,0,.3);
}
.founder-ai-launch-icon{
    width:58px;height:58px;display:grid;place-items:center;border-radius:15px;
    background:#173650;color:var(--gold);font-size:1.65rem
}
.founder-ai-launch-copy h2{margin:.08em 0 .1em;font-size:clamp(1.65rem,3vw,2.7rem);font-weight:950;letter-spacing:-.04em}
.founder-ai-launch-copy p{margin:0;color:#a7bac9;line-height:1.45}
.founder-ai-launch-button{
    display:flex;align-items:center;gap:9px;padding:12px 15px;border-radius:11px;
    background:linear-gradient(180deg,#efbd52,#d6962f);color:#111820;font-weight:950;white-space:nowrap
}
.founder-ai-launch-button i{font-size:1.15rem}
@media(max-width:760px){
    .founder-ai-launch-card{grid-template-columns:auto 1fr}
    .founder-ai-launch-button{grid-column:1/-1;justify-content:center}
}


/* ==========================================================
   PITCHCORD LIVE SHOW
   ========================================================== */
.pcfull-links .pcfull-live{
  color:#fff;
  border-color:#5a4630;
  background:#241b10;
}
.pcfull-links .pcfull-live i{color:#efb640}

.home-live-show{padding:10px 0 2px}
.home-live-show-card{
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  align-items:center;
  gap:14px;
  padding:13px 16px;
  border:1px solid #4f6680;
  border-radius:14px;
  background:linear-gradient(135deg,#0d2234,#091620);
  color:#fff;
  text-decoration:none;
}
.home-live-show-card:hover{color:#fff;border-color:#7190aa;background:#10283d}
.home-live-icon{
  width:45px;height:45px;display:grid;place-items:center;
  border-radius:12px;background:#1b3348;color:#efb640;font-size:1.25rem
}
.home-live-copy small,.home-live-copy strong,.home-live-copy b{display:block}
.home-live-copy small{color:#efb640;font-size:.63rem;font-weight:900;letter-spacing:.09em}
.home-live-copy strong{margin-top:2px;font-size:1rem}
.home-live-copy b{margin-top:2px;color:#7890a3;font-size:.7rem;font-weight:700}
.home-live-action{display:flex;align-items:center;gap:7px;color:#bfd0dc;font-size:.78rem;font-weight:900}

.show-page-body{background:#050c14;color:#edf5fb}
.show-page{min-height:100vh}
.show-hero{
  padding:34px 0 30px;
  background:
    radial-gradient(circle at 15% 0%,rgba(47,111,159,.22),transparent 28%),
    radial-gradient(circle at 88% 12%,rgba(238,181,62,.10),transparent 25%),
    #050c14;
}
.show-status-row{display:flex;gap:8px;flex-wrap:wrap;align-items:center;margin-bottom:15px}
.show-status-row>span{
  display:inline-flex;align-items:center;gap:6px;padding:7px 9px;
  border:1px solid #284256;border-radius:999px;background:#091722;
  color:#8ca2b3;font-size:.72rem;font-weight:800
}
.show-live-badge.status-live{border-color:#8a3f49;color:#ff8290;background:#281017}
.show-live-badge.status-live i{animation:showpulse .7s infinite alternate}
.show-live-badge.status-upcoming{color:#efb640}
@keyframes showpulse{to{opacity:.35}}
.show-hero-grid{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(330px,.55fr);gap:22px;align-items:stretch}
.show-hero h1{margin:.12em 0 .2em;font-size:clamp(3rem,7vw,7rem);line-height:.88;font-weight:950;letter-spacing:-.065em}
.show-hero p{max-width:820px;color:#a5b7c5;line-height:1.65}
.show-primary-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:22px}
.show-primary-actions .btn{min-width:220px;display:flex;align-items:center;gap:11px;padding:12px 15px;border-radius:12px;text-align:left}
.show-primary-actions .btn>i{font-size:1.35rem}
.show-primary-actions small,.show-primary-actions span{display:block}
.show-primary-actions small{font-size:.58rem;letter-spacing:.08em;opacity:.7}
.show-discord-btn{background:#5865f2;color:#fff;font-weight:900}
.show-discord-btn:hover{background:#6772f4;color:#fff}
.show-ai-btn{border:1px solid #456c8a;background:#10283c;color:#fff;font-weight:900}
.show-ai-btn i{color:#efb640}
.show-ai-btn:hover{background:#15344e;color:#fff}

.show-now-card{
  padding:25px;border:1px solid #2d4b63;border-radius:18px;
  background:linear-gradient(145deg,#0c1c2b,#07131e);
  box-shadow:0 24px 60px rgba(0,0,0,.25)
}
.show-now-icon{width:54px;height:54px;display:grid;place-items:center;border-radius:14px;background:#18354d;color:#efb640;font-size:1.5rem}
.show-now-card>span{display:block;margin-top:18px;color:#efb640;font-size:.66rem;font-weight:900;letter-spacing:.1em}
.show-now-card>strong{display:block;margin-top:5px;font-size:1.35rem}
.show-now-card>p{margin-top:8px!important;font-size:.84rem}
.show-audience{display:grid;grid-template-columns:1fr 1fr;gap:7px;margin-top:15px}
.show-audience span{padding:8px;border:1px solid #274156;border-radius:9px;background:#091722;color:#899fae;font-size:.72rem;font-weight:800}
.show-audience i{margin-right:5px;color:#efb640}

.show-platforms,.show-flow,.show-vc{padding:30px 0}
.show-section-head{display:flex;justify-content:space-between;align-items:end;gap:25px;margin-bottom:14px}
.show-section-head h2{margin:.16em 0 0;font-size:clamp(2rem,4vw,3.5rem);font-weight:950;letter-spacing:-.04em}
.show-section-head>p{max-width:620px;margin:0;color:#8096a8;line-height:1.55}

.show-platform-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
.show-platform-card{
  position:relative;display:grid;grid-template-columns:auto 1fr;gap:14px;
  min-height:210px;padding:20px;border:1px solid #263f54;border-radius:16px;
  background:#081521;color:#fff;text-decoration:none;overflow:hidden
}
.show-platform-card:hover{color:#fff;transform:translateY(-2px);border-color:#456b88}
.platform-icon{width:50px;height:50px;display:grid;place-items:center;border-radius:13px;background:#102438;font-size:1.45rem}
.show-platform-card.discord .platform-icon{color:#7d87ff}
.show-platform-card.youtube .platform-icon{color:#ff5c65}
.show-platform-card.linkedin .platform-icon{color:#69aef0}
.show-platform-card span{color:#71889a;font-size:.62rem;font-weight:900;letter-spacing:.1em}
.show-platform-card h3{margin:3px 0 5px;font-weight:950}
.show-platform-card p{margin:0;color:#8da2b2;line-height:1.5;font-size:.82rem}
.platform-arrow{position:absolute;right:15px;bottom:14px;color:#5d7890;font-size:1.15rem}

.show-flow-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:9px}
.show-flow-grid article{position:relative;padding:18px;border:1px solid #243d52;border-radius:15px;background:#081521}
.show-flow-grid article>span{position:absolute;right:14px;top:12px;color:#304a60;font-size:1.2rem;font-weight:950}
.show-flow-grid article>i{color:#efb640;font-size:1.25rem}
.show-flow-grid h3{margin:15px 0 5px;font-weight:900}
.show-flow-grid p{margin:0;color:#8096a7;line-height:1.5;font-size:.79rem}

.show-vc-card{
  display:grid;grid-template-columns:auto minmax(0,1fr) auto;gap:18px;align-items:center;
  padding:24px;border:1px solid #456983;border-radius:18px;
  background:radial-gradient(circle at 86% 50%,rgba(239,182,64,.12),transparent 24%),#0a1926
}
.show-vc-icon{width:58px;height:58px;display:grid;place-items:center;border-radius:15px;background:#17354d;color:#efb640;font-size:1.45rem}
.show-vc-card h2{margin:.14em 0 .15em;font-size:clamp(1.7rem,3vw,2.8rem);font-weight:950;letter-spacing:-.035em}
.show-vc-card p{margin:0;color:#879cab;line-height:1.55}
.show-vc-card .btn{white-space:nowrap}

@media(max-width:1000px){
  .show-hero-grid{grid-template-columns:1fr}
  .show-platform-grid{grid-template-columns:1fr}
  .show-flow-grid{grid-template-columns:1fr 1fr}
  .show-vc-card{grid-template-columns:auto 1fr}
  .show-vc-card .btn{grid-column:1/-1}
}
@media(max-width:650px){
  .home-live-show-card{grid-template-columns:auto 1fr}
  .home-live-action{grid-column:1/-1;justify-content:center;padding-top:7px;border-top:1px solid #21394c}
  .show-hero h1{font-size:3.2rem}
  .show-primary-actions .btn{width:100%}
  .show-section-head{align-items:flex-start;flex-direction:column}
  .show-flow-grid{grid-template-columns:1fr}
  .show-vc-card{grid-template-columns:1fr}
  .show-vc-icon{width:48px;height:48px}
}


/* ==========================================================
   FINAL PRODUCT POLISH
   Human-facing UI only. No implementation notes.
   ========================================================== */

.home-rooms-launch{padding:8px 0 2px}
.home-rooms-launch-card{
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  align-items:center;
  gap:14px;
  padding:14px 16px;
  border:1px solid #31516a;
  border-radius:14px;
  background:linear-gradient(135deg,#0b1b29,#07131e);
  color:#fff;
  text-decoration:none;
}
.home-rooms-launch-card:hover{
  color:#fff;
  border-color:#537793;
  background:#10263a;
}
.home-rooms-icon{
  width:46px;height:46px;
  display:grid;place-items:center;
  border-radius:12px;
  background:#14304a;
  color:#efb640;
  font-size:1.25rem;
}
.home-rooms-copy small,
.home-rooms-copy strong,
.home-rooms-copy b{display:block}
.home-rooms-copy small{
  color:#efb640;
  font-size:.62rem;
  font-weight:900;
  letter-spacing:.09em;
}
.home-rooms-copy strong{
  margin-top:2px;
  font-size:1rem;
}
.home-rooms-copy b{
  margin-top:2px;
  color:#7990a2;
  font-size:.7rem;
  font-weight:700;
}
.home-rooms-action{
  display:flex;
  align-items:center;
  gap:7px;
  color:#bfd0dc;
  font-size:.77rem;
  font-weight:900;
  white-space:nowrap;
}

.show-section-head h2 i,
.show-vc-card h2 i{
  color:#efb640;
  font-size:.72em;
}

@media(max-width:680px){
  .home-rooms-launch-card{grid-template-columns:auto 1fr}
  .home-rooms-action{
    grid-column:1/-1;
    justify-content:center;
    padding-top:7px;
    border-top:1px solid #21394c;
  }
}

.pcfull-links a i{
  font-size:.9rem;
}
.pcfull-links a span{
  overflow:hidden;
  text-overflow:ellipsis;
}
