.profile-page-grid{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(280px,.38fr);
    gap:20px;
    align-items:start;
}

.profile-section{
    background:#fff;
    border:1px solid var(--border);
    border-radius:13px;
    margin-bottom:20px;
    overflow:hidden;
}

.profile-section-head{
    padding:20px 22px;
    border-bottom:1px solid var(--border);
}

.profile-section-head h2{
    margin:0 0 4px;
    font-family:"Roboto Condensed",sans-serif;
    color:var(--navy);
    font-size:22px;
}

.profile-section-head p{
    margin:0;
    color:var(--muted);
    font-size:12px;
}

.profile-section-body{
    padding:22px;
}

.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.form-field{
    margin-bottom:18px;
}

.form-field.full{
    grid-column:1 / -1;
}

.form-label{
    display:block;
    color:#344054;
    font-size:12px;
    font-weight:600;
    margin-bottom:7px;
}

.form-input,
.form-select,
.form-textarea{
    width:100%;
    border:1px solid #d0d5dd;
    border-radius:8px;
    background:white;
    color:#101828;
    font-family:"Inter",sans-serif;
    font-size:13px;
    padding:11px 12px;
    outline:none;
}

.form-input,
.form-select{
    height:44px;
}

.form-textarea{
    min-height:125px;
    resize:vertical;
    line-height:1.55;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus{
    border-color:var(--purple);
    box-shadow:0 0 0 3px rgba(104,88,255,.10);
}

.form-input[readonly]{
    background:#f9fafb;
    color:#667085;
}

.profile-actions{
    display:flex;
    justify-content:flex-end;
    gap:10px;
    margin-top:5px;
}

.save-profile-btn{
    border:0;
    border-radius:22px;
    padding:11px 22px;
    background:var(--purple);
    color:#fff;
    font-size:12px;
    font-weight:700;
    cursor:pointer;
}

.save-profile-btn:disabled{
    opacity:.55;
    cursor:not-allowed;
}

.profile-message{
    display:none;
    padding:12px 14px;
    border-radius:8px;
    font-size:12px;
    margin-bottom:18px;
}

.profile-message.success{
    display:block;
    background:#ecfdf3;
    color:#067647;
}

.profile-message.error{
    display:block;
    background:#fef3f2;
    color:#b42318;
}

.account-card{
    background:linear-gradient(145deg,#10264c,#173a67);
    border-radius:13px;
    padding:24px;
    color:white;
    margin-bottom:20px;
}

.account-avatar{
    width:62px;
    height:62px;
    border-radius:50%;
    display:grid;
    place-items:center;
    background:#fff;
    color:#10264c;
    font-family:"Roboto Condensed",sans-serif;
    font-size:22px;
    font-weight:800;
    margin-bottom:15px;
}

.account-name{
    font-family:"Roboto Condensed",sans-serif;
    font-size:22px;
    font-weight:700;
}

.account-email{
    font-size:12px;
    opacity:.8;
    margin-top:3px;
}

.account-note{
    font-size:11px;
    line-height:1.55;
    opacity:.75;
    margin-top:18px;
}

.profile-summary-card{
    background:white;
    border:1px solid var(--border);
    border-radius:13px;
    padding:20px;
}

.profile-summary-title{
    font-family:"Roboto Condensed",sans-serif;
    color:var(--navy);
    font-weight:700;
    margin-bottom:15px;
    font-size:17px;
}

.profile-summary-row{
    display:flex;
    justify-content:space-between;
    gap:15px;
    padding:10px 0;
    border-bottom:1px solid var(--border);
    font-size:12px;
}

.profile-summary-row:last-child{
    border:0;
}

.profile-summary-row span:first-child{
    color:var(--muted);
}

.profile-summary-row span:last-child{
    color:var(--navy);
    font-weight:600;
    text-align:right;
}

.module-coming{
    text-align:center;
    padding:70px 25px;
}

.module-coming-icon{
    width:60px;
    height:60px;
    border-radius:16px;
    display:grid;
    place-items:center;
    margin:0 auto 18px;
    background:var(--purple-soft);
    color:var(--purple);
    font-size:25px;
}

.module-coming h2{
    font-family:"Roboto Condensed",sans-serif;
    color:var(--navy);
    font-size:25px;
    margin:0 0 8px;
}

.module-coming p{
    color:var(--muted);
    font-size:13px;
    max-width:450px;
    margin:0 auto 20px;
}

.top-nav-link{
    border:0;
    background:transparent;
    color:#344054;
    font-size:13px;
    cursor:pointer;
    padding:8px 2px;
}

.top-nav-link:hover{
    color:var(--purple);
}

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

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