:root {
    --purple-900:#35114b; 
    --purple-800:#591479;
    /*--purple-800:#4b1767;*/
    --purple-700:#591479;
    /*--purple-700:#632182;*/
    --purple-600:#75309a; 
    --purple-100:#f1e8f6; 
    --purple-50:#faf7fc;
    --green:#63a70a; 
    --green-dark:#3f7900; 
    --green-soft:#eef7df;
    --ink:#24222a; 
    --muted:#635e69; 
    --line:#ddd8e1; 
    --paper:#fff;
    --canvas:#f6f4f7; 
    --gold:#efb72f; 
    --gold-soft:#fff7df;
    --red:#a5293e; 
    --blue:#126f9c; 
    --radius:18px;
    --shadow:0 20px 55px rgba(53,17,75,.12);
    --font:"Segoe UI",Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,sans-serif;
    
   
     


.wrap{
    width:min(1160px,calc(100% - 40px));
    margin-inline:auto;
}

.hero{
     position:relative;
     overflow:hidden;
     color:#fff;
     background:linear-gradient(120deg,var(--purple-800),var(--purple-800));
}
    
.hero::after{
    content:"";
    position:absolute;
    right:-100px;
    bottom:-200px;
    width:500px;
    height:500px;
    border:70px solid rgba(255,255,255,.055);
    border-radius:50%;
}
    
.hero .wrap{
    position:relative;
    z-index:1;
    padding:62px 0 68px;
}

 .hero-actions{
     display:flex;
     flex-wrap:wrap;
     gap:12px;
}

 .credit h1,h2,h3{
     margin-top:0;
     border: none;
     color: var(--purple-800);
     font-family: var(--font);
     font-weight: bold;
}
    
.hero h2{
    max-width:800px;
    margin-bottom:18px;
    font-size:clamp(2.6rem,4vw,5rem);
    line-height:.98;
    letter-spacing:-.055em;
    color:#fff;
    border-bottom: none;
    font-weight: bold;
}

 .section-nav{
     position:sticky;
     z-index:30;
     top:0;
     background:rgba(255,255,255,.95);
     border-bottom:1px solid var(--line);
     backdrop-filter:blur(10px)
}
    
.section-nav .wrap{
    display:flex;
    gap:26px;
    overflow-x:auto
}
    
.section-nav a{
    display:flex;
    min-height:52px;
    align-items:center;
    color:var(--muted);
    font-size:.84rem;
    font-weight:750;
    text-decoration:none;
    white-space:nowrap;
}
    
.section-nav a:hover{
    color:var(--purple-700);
}

.button{
    display:inline-flex;
    min-height:48px;
    padding:1px 18px;
    align-items:center;
    justify-content:center;
    gap:8px;
    color:#fff;
    background:var(--green-dark);
    border:0;
    border-radius:9px;
    cursor:pointer;
    font-weight:800;
    text-decoration:none;
    box-shadow:0 7px 18px rgba(0,0,0,.12);
    transition:.18s ease;
}
    
.button:hover{
    color:#fff;
    background:#315f00;
    transform:translateY(-1px);
}

.button.alt{
    color:var(--purple-900);
    background:#fff;
}
    
.button.alt:hover{
    background:#f7f1fa;
}
    
.button.outline{
    color:var(--purple-800);
    background:#fff;
    border:1px solid #bdb1c4;
    box-shadow:none;
}
    
.button.small{
    min-height:42px;
    padding:9px 14px;
    font-size:.88rem;
}
    
.button:focus-visible,.tab:focus-visible,.subtab:focus-visible,summary:focus-visible{
    outline:3px solid var(--gold);
    outline-offset:3px;
}

.credit-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
}
    
.credit-card{
    position:relative;
    display:flex;
    min-height:510px;
    padding:28px;
    flex-direction:column;
    background:#fff;
    border:1px solid var(--line);
    border-radius:var(--radius);
    box-shadow:0 10px 28px rgba(53,17,75,.07);
    overflow:hidden;
}
    
.credit-card::before{
    content:"";position:absolute;
    inset:0 0 auto;
    height:7px;
    background:var(--green);
}
    
.badge{
    align-self:flex-start;
    margin:6px 0 18px;
    padding:5px 10px;
    color:var(--purple-800);
    background:var(--purple-100);
    border-radius:999px;
    font-size:.7rem;
    font-weight:850;
    letter-spacing:.06em;
    text-transform:uppercase;
}
    
.credit-card h3{font-size:1.45rem;
    line-height:1.15;
}

.price{
    margin:8px 0 16px;
    color:var(--purple-900);
    font-size:1.6rem;
    font-weight:900;
}
    
.price small{
    color:var(--muted);
    font-size:.78rem;
    font-weight:600;
}
    
.ideal{
    min-height:73px;
    color:var(--muted);
    font-size:.92rem;
}
    
.checklist{
    display:grid;
    gap:12px;
    margin:18px 0 25px;
    padding:0;
    list-style:none;
}
    
.checklist li{
    position:relative;
    padding-left:28px;
    font-size:.91rem;
    list-style-image: none;
    margin: 0;
}
    
.checklist li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:1px;
    display:grid;
    width:20px;
    height:20px;
    place-items:center;
    color:#fff;
    background:var(--green-dark);
    border-radius:50%;
    font-size:.68rem;
    font-weight:900;}
    
.credit-card .button{
    margin-top:auto;
}
    
.credit-note{
    margin-top:22px;
    color:var(--muted);
    font-size:.84rem;
    text-align:center;
}

.section-head {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(260px,.55fr);
    gap: 50px;
    align-items: end;
    margin-bottom: 34px;
}

 .section-head>p,.intro{
     color:var(--muted);
}

.section{
    padding:60px 0;
    border-bottom: medium solid var(--purple-700);
}

.section:last-child {
    padding:60px 0;
    border-bottom: none;
}

.section h2{
    color:var(--purple-800);
    font-size:clamp(2rem,2.5vw,4rem);
    font-weight: bold;
    line-height: 1.05;
    letter-spacing: -.04em;
    margin: 0 0 12px 0;
   padding-bottom: 5px;
    border-bottom: none;
    font-family:var(--font);
}

.kicker{
    margin:0 0 8px;
    color:var(--green-dark);
    font-size:.76rem;
    font-weight:850;
    letter-spacing:.11em;
    text-transform:uppercase;
}



 .fees{
     display:grid;
     grid-template-columns:1.15fr repeat(3,minmax(150px,.55fr));
     margin-top:32px;background:#fff;
     border:1px solid var(--line);
     border-radius:15px;
     overflow:hidden;
}
    
.fee-cell{
    display:grid;
    min-height:108px;
    padding:18px 20px;
    align-content:center;
    border-left:1px solid var(--line);
}
    
.fee-cell:first-child{
    border-left:0;
    background:var(--purple-50);
}
    
.fee-cell strong{
    color:var(--purple-800);
    font-size:1.25rem;
    font-weight: bold;
}
    
.fee-cell span{
    color:var(--muted);
    font-size:.82rem;
}


 .alert2{
     display:grid;
     grid-template-columns:42px 1fr;
     gap:14px;
     align-items:start;
     padding:20px 22px;
     border:1px solid var(--green-dark);
     border-left:5px solid var(--green);
     border-radius:12px;
     background:var(--green-soft);
}
    
.alert2-icon{
    display:grid;
    width:36px;
    height:36px;
    place-items:center;
    color:#fff;
    background:var(--green);
    border-radius:50%;
    font-weight:900;
}
    
.alert2 p{
    margin:0;
    
}
    
.alert2 strong{
    font-weight: bold;
}

.guide-shell{
    background:#fff;
    border:1px solid rgba(53,17,75,.15);
    border-radius:22px;
    box-shadow:var(--shadow);
    overflow:hidden;
}


 .tabs{
     display:grid;
     grid-template-columns:repeat(3,minmax(140px,1fr));
     padding:12px 12px 0;
     background:#eee9f1;
     border-bottom:1px solid var(--line);
}
    
.tab{
    position:relative;
    min-height:68px;
    padding:13px;
    color:var(--muted);
    background:transparent;
    border:0;
    border-radius:10px 10px 0 0;
    cursor:pointer;
    font-weight:800;
}
    
.tab span{
    display:block;
    margin-bottom:2px;
    color:var(--purple-700);
    font-size:.67rem;
    letter-spacing:.07em;
    text-transform:uppercase;
}
    
.tab[aria-selected=true]{
    color:var(--purple-900);
    background:#fff;
}
    
.tab[aria-selected=true]::after{
    content:"";
    position:absolute;
    right:20px;
    bottom:0;
    left:20px;
    height:4px;
    background:var(--green);
    border-radius:3px 3px 0 0;
}


 .panel{
     padding:clamp(28px,5vw,54px);
     animation:in .2s ease both;
}
    
.panel[hidden]{
    display:none;
}
   
@keyframes in{from{
    opacity:0;
    transform:translateY(4px)
    }
}
    
.panel-grid{
    display:grid;
    grid-template-columns:minmax(0,1.4fr) minmax(260px,.7fr);
    gap:54px;
}
    
.panel h3.big{
    font-size:clamp(1.6rem,1.5vw,2.25rem);
    letter-spacing:-.025em;
    border: none;
    font-family: var(--font);
    font-weight: bold;
    color: var(--purple-700);
    
}


 .contact-band{
     display:grid;
     grid-template-columns:1fr auto;
     gap:30px;
     align-items:center;
     margin-top:27px;
     padding:28px;
     background:var(--purple-50);
     border-radius:15px;
}
    
.contact-band p{
    margin:0;
    color:var(--muted);
}

.contact a{
    color:var(--purple-700)!important;
    text-underline-offset:3px;
    }
 
    
    button{font:inherit}
    .skip{position:fixed;z-index:100;top:10px;left:10px;padding:10px 14px;color:#fff;background:var(--purple-900);border-radius:8px;transform:translateY(-160%)}
    .skip:focus{transform:translateY(0)}
    

    
    .brandbar{position:relative;z-index:1;min-height:112px;display:flex;align-items:center;justify-content:space-between;gap:28px}
    .brandbar img{width:200px;height:90px;object-fit:contain}
    .site-search{display:flex;align-items:center;gap:10px}
    .site-search a{color:var(--purple-800);font-size:.86rem;font-weight:750}
    .searchbox{display:flex;width:290px;height:44px;background:#fff;border:1px solid #cfc8d3;border-radius:5px;overflow:hidden;box-shadow:0 4px 15px rgba(0,0,0,.06)}
    .searchbox input{width:100%;min-width:0;padding:0 14px;border:0;font:inherit}
    .searchbox button{width:48px;border:0;color:#fff;background:var(--purple-700);cursor:pointer}
   

    
    
    .eyebrow{margin:0 0 10px;color:#c9ec91;font-size:.78rem;font-weight:850;letter-spacing:.12em;text-transform:uppercase}
    
    
    .lede{max-width:760px;margin-bottom:31px;color:#eee6f2;font-size:clamp(1.05rem,2vw,1.28rem)}
   
   

    
    
   
   

   
    

   

    
   
   
    .steps{display:grid;gap:13px;margin:22px 0 0;padding:0;counter-reset:steps;list-style:none}
    .steps li{position:relative;padding:16px 18px 16px 55px;background:var(--purple-50);border-radius:11px}
    .steps li::before{counter-increment:steps;content:counter(steps);position:absolute;left:17px;top:15px;display:grid;width:27px;height:27px;place-items:center;color:#fff;background:var(--purple-700);border-radius:8px;font-size:.78rem;font-weight:850}
    .side-card{padding:24px;background:var(--purple-50);border:1px solid var(--line);border-radius:15px}
    .side-card p{color:var(--muted);font-size:.9rem}
    .contact{display:grid;gap:10px;margin-top:15px}
    .contact a{font-size:.9rem;font-weight:750;overflow-wrap:anywhere}

    .subtabs-wrap{margin-top:27px;border:1px solid var(--line);border-radius:15px;overflow:hidden}
    .subtabs{display:grid;grid-template-columns:repeat(6,minmax(105px,1fr));overflow-x:auto;background:#f1edf3}
    .subtab{min-height:57px;padding:9px 10px;color:var(--muted);background:transparent;border:0;border-bottom:3px solid transparent;cursor:pointer;font-size:.82rem;font-weight:800;white-space:nowrap}
    .subtab[aria-selected=true]{color:var(--purple-900);background:#fff;border-bottom-color:var(--green)}
    .subpanel{min-height:295px;padding:26px}
    .subpanel[hidden]{display:none}
    .subpanel p{color:var(--muted)}
    .choice-row{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin-top:18px}
    .choice{padding:18px;background:var(--purple-50);border:1px solid var(--line);border-radius:12px}
    .choice p{font-size:.88rem}
    .choice .button{margin-top:6px}
    .resources-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:13px}
    .resource-card{display:grid;grid-template-columns:40px minmax(0,1fr);gap:13px;align-items:start;padding:18px;color:inherit;background:var(--purple-50);border:1px solid var(--line);border-radius:12px;text-decoration:none;transition:.18s ease}
    .resource-card:hover{border-color:#aa97b5;background:#fff;box-shadow:0 8px 18px rgba(53,17,75,.07);transform:translateY(-1px)}
    .resource-icon{display:grid;width:40px;height:40px;place-items:center;color:#fff;background:var(--purple-700);border-radius:11px;font-weight:900}
    .resource-card strong{color:var(--purple-800)}
    .resource-card p{margin:3px 0 0;color:var(--muted);font-size:.81rem}
    .next{display:flex;margin-top:24px;padding-top:19px;justify-content:space-between;gap:15px;border-top:1px solid var(--line);color:var(--muted);font-size:.83rem}
    .next button{color:var(--purple-700);background:none;border:0;cursor:pointer;font-weight:850;text-decoration:underline;text-underline-offset:4px}
    .grant-note{margin-top:20px;padding:20px;color:#fff;background:linear-gradient(120deg,var(--purple-900),var(--purple-700));border-radius:13px}
    .grant-note h3{color:#fff}.grant-note p{margin:0;color:#eee4f3}

    .policy-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;margin-top:28px}
    .policy-card{padding:23px;background:#fff;border:1px solid var(--line);border-radius:15px}
    .policy-num{display:grid;width:38px;height:38px;margin-bottom:15px;place-items:center;color:#fff;background:var(--purple-700);border-radius:11px;font-weight:900}
    .policy-card p{margin:0;color:var(--muted);font-size:.9rem}

    .grant-layout{display:grid;grid-template-columns:minmax(260px,.65fr) minmax(0,1.35fr);gap:24px;align-items:start}
    .eligibility{padding:28px;color:#fff;background:linear-gradient(135deg,var(--purple-800),var(--purple-700));border-radius:var(--radius)}
    .eligibility h3{color:#fff;font-size:1.5rem}
    .eligibility p{color:#eee6f2}
    .eligibility .checklist li::before{color:var(--purple-900);background:#fff}
    .grant-paths{display:grid;gap:16px}
    .grant-path{padding:25px;background:#fff;border:1px solid var(--line);border-radius:var(--radius)}
    .mini-steps{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px;margin-top:19px}
    .mini-step{position:relative;padding:43px 14px 15px;background:var(--purple-50);border-radius:11px;font-size:.83rem}
    .mini-step::before{content:attr(data-step);position:absolute;top:12px;left:14px;color:var(--green-dark);font-size:.7rem;font-weight:900;letter-spacing:.05em;text-transform:uppercase}
    .eligibility-courses{margin-top:24px;padding:20px;color:var(--ink);background:#fff;border-radius:12px;box-shadow:0 8px 20px rgba(0,0,0,.1)}
    .eligibility-courses h3{margin-bottom:10px;color:var(--purple-800);font-size:1rem}
    .eligibility-courses ul{display:grid;gap:9px;margin:0;padding-left:18px}
    .eligibility-courses li{font-size:.86rem;line-height:1.4}

    .transcript-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:17px}
    details.transcript{background:#fff;border:1px solid var(--line);border-radius:15px;overflow:hidden}
    details.transcript[open]{box-shadow:0 12px 30px rgba(53,17,75,.08)}
    details.transcript summary{position:relative;padding:23px 52px 23px 22px;cursor:pointer;color:var(--purple-800);font-size:1.08rem;font-weight:850;list-style:none}
    details.transcript summary::-webkit-details-marker{display:none}
    details.transcript summary::after{content:"+";position:absolute;right:21px;top:17px;font-size:1.6rem;font-weight:500}
    details.transcript[open] summary::after{content:"−"}
    .details-body{padding:0 22px 24px;border-top:1px solid var(--line)}
    .details-body p{margin:18px 0;color:var(--muted);font-size:.9rem}
    .details-body .steps li{padding-top:12px;padding-bottom:12px;background:#faf8fb;font-size:.87rem}
    .details-body .steps li::before{top:11px}
    

    
    .prototype{margin-top:10px;color:#bbaac5!important;font-size:.72rem!important}

    @media(max-width:900px){
        
        .credit-grid{
            grid-template-columns:1fr;
        }
        
        .credit-card{
            min-height:0;
        }
        
      .section-head,.panel-grid,.grant-layout{
          grid-template-columns:1fr;
        }
      
      .ideal{min-height:0}.fees{grid-template-columns:1fr 1fr}
        .fee-cell:nth-child(3){border-left:0;border-top:1px solid var(--line)}
      .policy-grid,.transcript-grid{grid-template-columns:1fr}
      .mini-steps{grid-template-columns:repeat(2,1fr)}
    }

    @media(max-width:650px){
        
         .wrap{
          width:min(100% - 24px,1160px);
        }
        
         .hero h2{
            font-size:clamp(2.55rem,14vw,4rem);
        }
        
        .tabs{
            grid-template-columns:repeat(3,minmax(112px,1fr));
            overflow-x:auto;
        }
        
        .section-head{
            gap:12px;
        }
        
        .panel{
            padding:27px 21px;
        }
        
        .contact-band,.next{
            align-items:flex-start;
            flex-direction:column;
        }
        
      
      .brandbar{min-height:78px}
        .brandbar img{width:150px;height:auto}
      .site-search{display:none}
      
        .section-nav .wrap{gap:20px}
      
        .subtabs-wrap{margin-inline:-1px}
      .choice-row,.resources-grid,.fees{grid-template-columns:1fr}
        .fee-cell{border-left:0;border-top:1px solid var(--line)}
      .mini-steps{grid-template-columns:1fr}
        
    }
   
@media(prefers-reduced-motion:reduce){*{scroll-behavior:auto!important;animation-duration:.01ms!important;transition-duration:.01ms!important}}
   
