*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,Helvetica,sans-serif;
}

body{
    background:#0f172a;
    color:#fff;
}

.layout{
    display:flex;
    min-height:100vh;
}

.sidebar{

    width:300px;

    background:#111827;

    padding:35px;

    border-right:1px solid #1f2937;

}

.sidebar h1{

    color:#fbbf24;

    margin-bottom:8px;

}

.subtitle{

    color:#9ca3af;

    margin-bottom:35px;

}

.progress-card{

    background:#1f2937;

    padding:20px;

    border-radius:12px;

    margin-bottom:35px;

}

.progress-bar{

    width:100%;

    height:12px;

    background:#374151;

    border-radius:50px;

    overflow:hidden;

    margin:15px 0;

}

.progress-fill{

    width:0%;

    height:100%;

    background:#22c55e;

    transition:.6s;

}

.steps{

    list-style:none;

}

.steps li{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:12px 0;

    border-bottom:1px solid #1f2937;

    font-size:15px;

}

.content{

    flex:1;

    padding:60px;

}

.hero{

    margin-bottom:40px;

}

.hero h1{

    font-size:38px;

    margin-bottom:15px;

}

.hero p{

    color:#9ca3af;

    font-size:18px;

    max-width:700px;

}

#cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:20px;

}

.card{

    background:#1f2937;

    border:1px solid #374151;

    border-radius:14px;

    padding:25px;

}

.card h3{

    margin-bottom:12px;

}

.card p{

    color:#9ca3af;

    margin-bottom:20px;

}

.card button{

    background:#2563eb;

    color:#fff;

    border:none;

    padding:12px 20px;

    border-radius:8px;

    cursor:pointer;

}

.card button:hover{

    background:#1d4ed8;

}

@media(max-width:900px){

.layout{

    flex-direction:column;

}

.sidebar{

    width:100%;

}

.content{

    padding:30px;

}

}
.card{

    background:#1e293b;

    padding:24px;

    border-radius:12px;

    margin-bottom:20px;

    border:1px solid #334155;

}

.card h2{

    margin-bottom:15px;

}

.card p{

    color:#cbd5e1;

    margin-bottom:20px;

}

.card ul{

    margin-left:20px;

    margin-bottom:20px;

}

.card li{

    margin-bottom:10px;

}

.card button{

    background:#fbbf24;

    color:#111827;

    border:none;

    padding:12px 20px;

    border-radius:8px;

    cursor:pointer;

    font-weight:bold;

}

.card button:hover{

    opacity:.9;

}

/* ===================================================== */
/* LUTERAS TECH BRANDING */
/* ===================================================== */

.portal-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 30px;
    color: #ffffff;
    text-decoration: none;
}

.portal-brand:hover {
    text-decoration: none;
}

.portal-logo {
    display: block;
    width: 128px;
    height: 82px;
    object-fit: contain;
}

.portal-name {
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: #facc15;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}


/* ===================================================== */
/* PROGRESS */
/* ===================================================== */

.progress-bar {
    overflow: hidden;
}

.progress-fill {
    width: 0;
    transition: width 0.35s ease;
}

.step-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    margin-left: auto;
    font-size: 20px;
    font-weight: 800;
}

.step-complete {
    color: #22c55e;
}

.step-pending {
    color: #94a3b8;
}

.steps li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-label {
    flex: 1;
}


/* ===================================================== */
/* SIDEBAR LINKS */
/* ===================================================== */

.sidebar-links {
    display: grid;
    gap: 9px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.sidebar-links a {
    padding: 9px 11px;
    color: #cbd5e1;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.sidebar-links a:hover {
    background: rgba(37, 99, 235, 0.14);
    color: #facc15;
}


/* ===================================================== */
/* CARDS AND BUTTONS */
/* ===================================================== */

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

.card {
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.card-icon {
    margin-bottom: 14px;
    font-size: 34px;
}

.card p {
    color: #cbd5e1;
    line-height: 1.7;
}

.card-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 24px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 20px;
    border: 1px solid transparent;
    border-radius: 8px;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
}

.button-primary {
    background: #facc15;
    color: #111827;
}

.button-primary:hover {
    background: #fde047;
}

.button-secondary {
    background: #1e293b;
    color: #ffffff;
    border-color: #475569;
}

.button-secondary:hover {
    background: #273449;
}


/* ===================================================== */
/* CHECKLIST */
/* ===================================================== */

.production-checklist {
    display: grid;
    gap: 12px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.production-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.production-checklist span {
    font-size: 20px;
    font-weight: 800;
}

.check-complete span {
    color: #22c55e;
}

.check-pending span {
    color: #94a3b8;
}


/* ===================================================== */
/* MESSAGES */
/* ===================================================== */

.status-message {
    margin-bottom: 22px;
    padding: 14px 17px;
    border-radius: 9px;
}

.status-error {
    background: rgba(220, 38, 38, 0.12);
    color: #fecaca;
    border: 1px solid rgba(220, 38, 38, 0.4);
}

.status-success {
    background: rgba(34, 197, 94, 0.12);
    color: #bbf7d0;
    border: 1px solid rgba(34, 197, 94, 0.4);
}

.error-card,
.loading-card,
.completion-card {
    grid-column: 1 / -1;
}


/* ===================================================== */
/* RESPONSIVE */
/* ===================================================== */

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

@media (max-width: 700px) {
    .portal-logo {
        width: 96px;
        height: 64px;
    }

    .portal-brand {
        margin-bottom: 20px;
    }

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

    .card-actions .button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .progress-fill {
        transition: none;
    }
}
