:root{
    --hyro-primary:#EC4899;
    --hyro-secondary:#C084FC;
    --hyro-accent:#8B5CF6;

    --hyro-bg:#FDF4FF;
    --hyro-card:#FFFFFF;
    --hyro-soft:#FAE8FF;

    --hyro-text:#1F2937;
    --hyro-muted:#6B7280;
    --hyro-border:#F3E8FF;

    --hyro-success:#16A34A;
    --hyro-warning:#F59E0B;
    --hyro-danger:#DC2626;

    --hyro-sidebar:#FFFFFF;
    --hyro-sidebar-text:#7E22CE;

    --hyro-radius:16px;
    --hyro-shadow:0 12px 35px rgba(236,72,153,.12);

    --hyro-font:"Century Gothic","Segoe UI",Arial,sans-serif;
}
*{box-sizing:border-box}

body{
    margin:0;
    font-family:var(--hyro-font);
    background:var(--hyro-bg);
    color:var(--hyro-text);
}

.hyro-topbar{
    height:68px;
    background:linear-gradient(90deg,var(--hyro-primary),var(--hyro-secondary));
    color:white;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 28px;
}

.hyro-brand h2{
    margin:0;
    font-size:22px;
}

.hyro-brand span{
    font-size:12px;
    opacity:.9;
}

.hyro-layout{
    display:flex;
    min-height:calc(100vh - 68px);
}

.hyro-sidebar{
    width:250px;
    background:var(--hyro-sidebar);
    color:white;
    padding:24px 14px;
}

.hyro-sidebar a{
    display:block;
    color:white;
    text-decoration:none;
    padding:12px 14px;
    border-radius:10px;
    margin-bottom:6px;
    font-size:14px;
}

.hyro-sidebar a:hover,
.hyro-sidebar a.active{
    background:rgba(255,255,255,.12);
}

.hyro-main{
    flex:1;
    padding:28px;
}

.hyro-page-title{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:24px;
}

.hyro-page-title h1{
    margin:0;
    font-size:26px;
}

.hyro-page-title p{
    margin:5px 0 0;
    color:var(--hyro-muted);
}

.hyro-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(190px,1fr));
    gap:18px;
}

.hyro-card{
    background:var(--hyro-card);
    border-radius:var(--hyro-radius);
    box-shadow:var(--hyro-shadow);
    padding:20px;
    border:1px solid var(--hyro-border);
}

.hyro-card-label{
    color:var(--hyro-muted);
    font-size:13px;
    margin-bottom:10px;
}

.hyro-card-number{
    font-size:34px;
    font-weight:800;
}

.hyro-card-small{
    margin-top:8px;
    font-size:13px;
    color:var(--hyro-muted);
}

.hyro-section{
    margin-top:26px;
}

.hyro-table{
    width:100%;
    border-collapse:collapse;
    background:white;
    border-radius:var(--hyro-radius);
    overflow:hidden;
    box-shadow:var(--hyro-shadow);
}

.hyro-table th,
.hyro-table td{
    padding:14px;
    text-align:left;
    border-bottom:1px solid var(--hyro-border);
    font-size:14px;
}

.hyro-table th{
    background:#F1F5F9;
    color:#334155;
}

.hyro-badge{
    padding:5px 11px;
    border-radius:20px;
    font-size:12px;
    font-weight:bold;
    display:inline-block;
}

.hyro-badge-success{background:#DCFCE7;color:#166534}
.hyro-badge-danger{background:#FEE2E2;color:#991B1B}
.hyro-badge-info{background:#DBEAFE;color:#1E40AF}
.hyro-badge-warning{background:#FEF3C7;color:#92400E}

.hyro-devbar{
    margin-top:24px;
    background:#111827;
    color:#D1D5DB;
    border-radius:12px;
    padding:12px 16px;
    font-size:12px;
}

@media(max-width:768px){
    .hyro-layout{flex-direction:column}
    .hyro-sidebar{width:100%;min-height:auto}
    .hyro-page-title{display:block}
}



/* ===========================
   HDS Buttons
=========================== */

.hyro-btn{

display:inline-flex;
align-items:center;
gap:8px;

padding:11px 18px;

border:none;

border-radius:12px;

cursor:pointer;

font-size:14px;

font-weight:600;

transition:.25s;

color:white;

}

.hyro-btn:hover{

transform:translateY(-1px);

}

.hyro-btn-primary{

background:#2563EB;

}

.hyro-btn-success{

background:#16A34A;

}

.hyro-btn-danger{

background:#DC2626;

}

.hyro-btn-warning{

background:#F59E0B;

}

.hyro-btn-secondary{

background:#64748B;

}



.hyro-quick-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:16px;
}

.hyro-quick-action{
    background:#FFFFFF;
    border:1px solid #E5E7EB;
    border-radius:14px;
    padding:18px;
    display:flex;
    gap:14px;
    align-items:center;
    text-decoration:none;
    color:#111827;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.25s;
}

.hyro-quick-action:hover{
    transform:translateY(-2px);
    border-color:#2563EB;
}

.hyro-quick-icon{
    font-size:30px;
}

.hyro-quick-title{
    font-weight:700;
    margin-bottom:4px;
}

.hyro-quick-subtitle{
    font-size:13px;
    color:#64748B;
}

.hyro-card label{
    display:block;
    margin-bottom:7px;
    font-size:13px;
    font-weight:600;
    color:var(--hyro-text);
}

.hyro-card input,
.hyro-card select,
.hyro-card textarea{
    width:100%;
    padding:12px 14px;
    border:1px solid var(--hyro-border);
    border-radius:12px;
    background:#FFFFFF;
    color:var(--hyro-text);
    font-family:var(--hyro-font);
    font-size:14px;
    outline:none;
}

.hyro-card input:focus,
.hyro-card select:focus,
.hyro-card textarea:focus{
    border-color:var(--hyro-primary);
    box-shadow:0 0 0 3px rgba(236,72,153,.10);
}
/* ==========================================
   HYRO ONE Premium Organization Onboarding
========================================== */

.hyro-onboarding-shell{
    width:100%;
    max-width:980px;
    margin:0 auto;
}

.hyro-onboarding-intro{
    text-align:center;
    margin-bottom:28px;
}

.hyro-onboarding-intro h1,
.hyro-onboarding-success h1{
    margin:8px 0 10px;
    font-size:34px;
}

.hyro-eyebrow{
    color:var(--hyro-primary);
    font-size:12px;
    font-weight:700;
    letter-spacing:1.4px;
    text-transform:uppercase;
}

.hyro-onboarding-lead{
    color:var(--hyro-muted);
    max-width:650px;
    margin:0 auto;
    line-height:1.7;
}

.hyro-onboarding-benefits{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px 22px;
    margin-top:20px;
    color:var(--hyro-muted);
    font-size:13px;
}

.hyro-stepper{
    display:flex;
    align-items:center;
    justify-content:center;
    max-width:620px;
    margin:0 auto 28px;
}

.hyro-step{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:7px;
    color:var(--hyro-muted);
    font-size:12px;
}

.hyro-step span{
    width:34px;
    height:34px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid var(--hyro-border);
    background:#FFFFFF;
    font-weight:700;
}

.hyro-step.active{
    color:var(--hyro-primary);
}

.hyro-step.active span{
    color:#FFFFFF;
    border-color:transparent;
    background:linear-gradient(
        135deg,
        var(--hyro-primary),
        var(--hyro-secondary)
    );
}

.hyro-step-line{
    width:110px;
    height:1px;
    background:var(--hyro-border);
    margin:0 12px 22px;
}

.hyro-onboarding-form{
    padding:30px;
}

.hyro-form-section-title{
    font-size:17px;
    font-weight:700;
    margin-bottom:22px;
}

.hyro-form-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:20px;
}

.hyro-form-field label{
    display:block;
    margin-bottom:8px;
    font-size:13px;
    font-weight:700;
}

.hyro-form-field small{
    display:block;
    margin-top:7px;
    color:var(--hyro-muted);
    font-size:11px;
    line-height:1.5;
}

.hyro-product-choice{
    min-height:48px;
    padding:12px 14px;
    border:1px solid var(--hyro-primary);
    border-radius:12px;
    display:flex;
    align-items:center;
    gap:12px;
    background:rgba(236,72,153,.04);
}

.hyro-product-choice-icon{
    width:36px;
    height:36px;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#FFFFFF;
    background:linear-gradient(
        135deg,
        var(--hyro-primary),
        var(--hyro-secondary)
    );
}

.hyro-product-choice strong,
.hyro-product-choice span{
    display:block;
}

.hyro-product-choice span{
    margin-top:3px;
    color:var(--hyro-muted);
    font-size:11px;
}

.hyro-product-selected{
    margin-left:auto;
    color:var(--hyro-primary);
    font-size:11px;
    font-weight:700;
}

.hyro-form-actions{
    display:flex;
    justify-content:flex-end;
    gap:12px;
    margin-top:28px;
}

.hyro-provisioning-message{
    margin-top:22px;
    padding:16px;
    border-radius:12px;
    background:var(--hyro-soft);
    display:flex;
    align-items:center;
    gap:14px;
}

.hyro-provisioning-message[hidden]{
    display:none;
}

.hyro-provisioning-message strong,
.hyro-provisioning-message span{
    display:block;
}

.hyro-provisioning-message span{
    color:var(--hyro-muted);
    margin-top:4px;
    font-size:12px;
}

.hyro-spinner{
    width:30px;
    height:30px;
    border-radius:50%;
    border:3px solid rgba(236,72,153,.18);
    border-top-color:var(--hyro-primary);
    animation:hyroSpin .8s linear infinite;
}

@keyframes hyroSpin{
    to{transform:rotate(360deg)}
}

.hyro-form-message{
    padding:16px 18px;
    border-radius:12px;
    margin-bottom:20px;
}

.hyro-form-message p{
    margin:6px 0 0;
}

.hyro-form-message small{
    display:block;
    margin-top:8px;
}

.hyro-form-message-error{
    background:#FEF2F2;
    border:1px solid #FECACA;
    color:#991B1B;
}

.hyro-onboarding-success{
    background:#FFFFFF;
    border:1px solid var(--hyro-border);
    border-radius:var(--hyro-radius);
    box-shadow:var(--hyro-shadow);
    padding:42px;
    text-align:center;
}

.hyro-success-icon{
    width:72px;
    height:72px;
    margin:0 auto 18px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#FFFFFF;
    font-size:32px;
    font-weight:700;
    background:linear-gradient(
        135deg,
        #16A34A,
        #4ADE80
    );
}

.hyro-success-details{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
    margin:30px 0;
    text-align:left;
}

.hyro-success-item{
    padding:15px;
    background:var(--hyro-bg);
    border:1px solid var(--hyro-border);
    border-radius:12px;
}

.hyro-success-item span,
.hyro-success-item strong{
    display:block;
}

.hyro-success-item span{
    color:var(--hyro-muted);
    font-size:11px;
    margin-bottom:6px;
}

.hyro-success-actions{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
}

@media(max-width:760px){
    .hyro-form-grid,
    .hyro-success-details{
        grid-template-columns:1fr;
    }

    .hyro-onboarding-form,
    .hyro-onboarding-success{
        padding:22px;
    }

    .hyro-step-line{
        width:44px;
    }

    .hyro-form-actions{
        flex-direction:column-reverse;
    }

    .hyro-form-actions .hyro-btn{
        justify-content:center;
        width:100%;
    }
}
