.profile-page {
    min-height: 100vh;
    overflow: visible;
    color: #11164c;
    background:
        linear-gradient(180deg, #fdfcff 0%, #fbfaff 44%, #f8f6ff 100%);
}

.profile-page .lucide-icon {
    width: 22px;
    height: 22px;
    stroke-width: 2.15;
}

.profile-dashboard {
    display: grid;
    grid-template-columns: 245px minmax(0, 1fr);
    min-height: 100vh;
    overflow: visible;
    border: 1px solid rgba(115, 84, 245, 0.18);
    border-radius: 14px;
    background: #fbfaff;
}

.dashboard-sidebar {
    display: grid;
    grid-template-rows: 74px auto auto;
    align-content: start;
    min-height: 100vh;
    border-right: 1px solid rgba(116, 84, 245, 0.12);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: inset -18px 0 35px rgba(98, 48, 220, 0.035);
}

.dashboard-logo {
    display: flex;
    align-items: center;
    padding: 10px 10px 10px 30px;
    border-bottom: 1px solid rgba(116, 84, 245, 0.1);
}

.dashboard-logo img {
    width: 124px;
    height: 40px;
    object-fit: contain;
    object-position: center;
}

.dashboard-menu {
    display: grid;
    align-content: start;
    gap: 11px;
    padding: 26px 16px 20px;
}

.dashboard-menu-link {
    position: relative;
    display: flex;
    min-height: 50px;
    align-items: center;
    gap: 16px;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 0 14px 0 18px;
    color: #aaa8c9;
    font-size: 15px;
    font-weight: 750;
    line-height: 1;
    transition:
        color 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.dashboard-menu-link::before {
    position: absolute;
    top: 9px;
    bottom: 9px;
    left: -1px;
    width: 3px;
    border-radius: 999px;
    background: #6a29ff;
    content: "";
    opacity: 0;
}

.dashboard-menu-link:hover,
.dashboard-menu-link.is-active {
    color: #6425ff;
    background:
        linear-gradient(90deg, rgba(105, 41, 255, 0.12), rgba(105, 41, 255, 0.05)),
        rgba(255, 255, 255, 0.72);
    box-shadow:
        0 13px 28px rgba(104, 49, 221, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.dashboard-menu-link:not(.is-active):hover::before {
    opacity: 1;
}

.dashboard-menu-link.is-active::before {
    opacity: 1;
}

.profile-page .dashboard-menu .dashboard-menu-link.is-active {
    border: 1px solid rgba(91, 32, 255, 0.16);
    border-left: 0;
    box-shadow: none;
}

.dashboard-menu-link.is-locked {
    color: #aaa8c9;
}

.dashboard-menu-link.is-locked:hover {
    color: #6425ff;
    transform: translateY(-1px);
}

.dashboard-menu-link .menu-lock {
    width: 14px;
    height: 14px;
    margin-left: auto;
    color: #aaa8c9;
    padding: 3px;
    border-radius: 6px;
    background: rgba(102, 31, 240, 0.06);
    box-sizing: content-box;
}

.dashboard-menu-link:hover .menu-lock {
    color: #6425ff;
}

.sidebar-divider {
    height: 1px;
    margin: 16px 0 6px;
    background: rgba(91, 92, 135, 0.12);
}

.profile-link {
    color: #11164c;
}

.sidebar-help-card {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) 16px;
    align-items: center;
    gap: 12px;
    margin: 0 16px 38px;
    border: 1px solid rgba(116, 84, 245, 0.13);
    border-radius: 8px;
    padding: 15px 14px;
    color: #12174e;
    background: rgba(255, 255, 255, 0.8);
    box-shadow:
        0 18px 36px rgba(42, 18, 99, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.help-icon {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 50%;
    color: #6425ff;
    background: radial-gradient(circle at 50% 42%, #fff 30%, rgba(105, 41, 255, 0.1) 100%);
    box-shadow: 0 10px 22px rgba(102, 31, 240, 0.14);
}

.help-icon .lucide-icon {
    width: 21px;
    height: 21px;
}

.help-copy {
    display: grid;
    min-width: 0;
    gap: 5px;
}

.help-copy strong {
    font-size: 12px;
    font-weight: 750;
}

.help-copy small {
    color: #6f7197;
    font-size: 10px;
    line-height: 1.25;
}

.help-arrow {
    color: #5b5f91;
}

.dashboard-shell {
    position: relative;
    z-index: 0;
    min-width: 0;
    overflow: visible;
    background:
        radial-gradient(circle at 54% 14%, rgba(108, 52, 244, 0.06), transparent 25rem),
        #fbfaff;
}

.dashboard-topbar {
    position: relative;
    z-index: 1000;
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: flex-end;
    overflow: visible;
    border-bottom: 0;
    padding: 0 40px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 10px 32px rgba(50, 22, 120, 0.035);
    backdrop-filter: blur(16px);
}

.topbar-actions {
    position: relative;
    z-index: 1001;
    display: flex;
    align-items: center;
    overflow: visible;
    gap: 22px;
}

.topbar-menu {
    position: relative;
}

.topbar-icon-button {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: #11164c;
    background: transparent;
    cursor: pointer;
    transition:
        color 180ms ease,
        background-color 180ms ease,
        transform 180ms ease;
}

.topbar-icon-button:hover,
.topbar-icon-button[aria-expanded="true"] {
    color: #6425ff;
    background: rgba(102, 31, 240, 0.075);
    transform: translateY(-1px);
}

.topbar-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: -10px;
    z-index: 20;
    display: grid;
    min-width: 235px;
    border: 1px solid rgba(116, 84, 245, 0.16);
    border-radius: 8px;
    padding: 12px;
    color: #15194f;
    background: rgba(255, 255, 255, 0.94);
    box-shadow:
        0 20px 44px rgba(37, 17, 92, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition:
        opacity 180ms ease,
        transform 180ms ease;
    backdrop-filter: blur(16px);
}

.topbar-dropdown.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.notifications-dropdown {
    justify-items: center;
    gap: 8px;
    padding: 18px 16px;
    text-align: center;
}

.dropdown-empty-icon {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    color: #6425ff;
    background: rgba(102, 31, 240, 0.08);
}

.dropdown-empty-icon .lucide-icon {
    width: 20px;
    height: 20px;
}

.notifications-dropdown p {
    margin: 0;
    color: #696d91;
    font-size: 14px;
    line-height: 1.35;
}

.settings-dropdown {
    gap: 4px;
}

.settings-dropdown button {
    min-height: 36px;
    border: 0;
    border-radius: 7px;
    padding: 0 12px;
    color: #15194f;
    background: transparent;
    text-align: left;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
}

.settings-dropdown button:hover {
    color: #6425ff;
    background: rgba(102, 31, 240, 0.075);
}

.dashboard-avatar {
    position: relative;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 50%;
    background:
        linear-gradient(135deg, rgba(123, 57, 255, 0.18), rgba(255, 255, 255, 0.72)),
        #f4edff;
    box-shadow:
        0 10px 20px rgba(39, 18, 97, 0.12),
        inset 0 0 0 2px rgba(255, 255, 255, 0.82);
}

.avatar-image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    clip-path: circle(50% at 50% 50%);
    object-fit: cover;
    object-position: center;
}

.avatar-face {
    position: relative;
    width: 32px;
    height: 36px;
    border-radius: 48% 48% 42% 42%;
    background: #f2ae82;
    box-shadow: inset 0 -6px 0 rgba(139, 76, 52, 0.06);
}

.avatar-face::before {
    position: absolute;
    inset: -5px 3px auto;
    height: 15px;
    border-radius: 50% 50% 35% 35%;
    background: #202062;
    content: "";
}

.avatar-face::after {
    position: absolute;
    top: 19px;
    left: 8px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #1b1e51;
    box-shadow: 12px 0 0 #1b1e51, 6px 8px 0 -2px #c26967;
    content: "";
}

.online-dot {
    position: absolute;
    right: -1px;
    bottom: 6px;
    z-index: 2;
    width: 9px;
    height: 9px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #2fc76f;
}

.dashboard-content {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 17px;
    max-width: 1030px;
    margin: 0 auto;
    padding: 30px 32px 36px;
}

.profile-heading h1 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: #101450;
    font-size: 36px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: 0;
}

.profile-heading p {
    margin: 6px 0 0;
    color: #7678a4;
    font-size: 15px;
    font-weight: 500;
}

.pending-card,
.account-info-card,
.locked-feature-card {
    min-width: 0;
    border: 1px solid rgba(116, 84, 245, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow:
        0 16px 34px rgba(37, 17, 92, 0.075),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
}

.pending-card {
    display: grid;
    grid-template-columns: 178px minmax(0, 1fr) minmax(340px, 420px);
    align-items: center;
    gap: 12px;
    min-height: 244px;
    overflow: hidden;
    padding: 22px 0 14px 34px;
}

.pending-status-icon {
    display: grid;
    width: 170px;
    height: 170px;
    place-items: center;
    align-self: center;
    filter: drop-shadow(0 18px 24px rgba(74, 38, 160, 0.16));
}

.pending-clock-icon {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pending-copy {
    display: grid;
    gap: 12px;
    align-content: center;
}

.pending-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.pending-title-row h2 {
    margin: 0;
    color: #5f1efb;
    font-size: 27px;
    line-height: 1.12;
    font-weight: 750;
}

.pending-title-row span {
    border: 1px solid rgba(238, 137, 44, 0.32);
    border-radius: 999px;
    padding: 6px 12px;
    color: #d96f16;
    background: #fff3e8;
    font-size: 13px;
    font-weight: 600;
}

.pending-progress-row {
    display: grid;
    grid-template-columns: auto minmax(150px, 300px);
    align-items: center;
    justify-content: start;
    gap: 14px;
    color: #696b9b;
}

.pending-progress-row strong {
    font-size: 14px;
    font-weight: 700;
}

.pending-progress {
    display: block;
    height: 7px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(104, 42, 255, 0.14);
}

.pending-progress span {
    display: block;
    width: 35%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #5817ef, #843bff);
}

.pending-copy p {
    max-width: 520px;
    margin: 0;
    color: #555b88;
    font-size: 15px;
    font-weight: 560;
    line-height: 1.55;
}

.whatsapp-button {
    display: inline-flex;
    width: fit-content;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 7px;
    padding: 0 22px;
    color: #fff;
    background: linear-gradient(135deg, #7d37fc 0%, #6825fc 48%, #5f1efb 100%);
    box-shadow: 0 8px 22px rgba(104, 37, 252, 0.28),
            0 00 28px rgba(146, 83, 252, 0.20);
    font-size: 14px;
    font-weight: 750;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow:
        0 16px 28px rgba(102, 31, 240, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.whatsapp-svg {
    display: block;
    flex: 0 0 auto;
}

.whatsapp-button .whatsapp-svg {
    width: 22px;
    height: 22px;
    color: #fff;
}

.pending-visual {
    position: relative;
    align-self: stretch;
    min-height: 184px;
    overflow: hidden;
}

.pending-visual::before {
    position: absolute;
    right: 4px;
    bottom: 9px;
    width: 316px;
    height: 18px;
    border-radius: 50%;
    background: rgba(102, 31, 240, 0.11);
    filter: blur(8px);
    content: "";
}

.visual-clock {
    position: absolute;
    top: 23px;
    left: 18px;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 4px solid rgba(104, 42, 255, 0.16);
    border-radius: 50%;
    color: rgba(104, 42, 255, 0.22);
}

.visual-clock .lucide-icon {
    width: 25px;
    height: 25px;
}

.pending-student {
    position: absolute;
    right: 18px;
    bottom: -36px;
    width: 410px;
    max-width: none;
    height: auto;
    object-fit: contain;
    object-position: right bottom;
    filter: drop-shadow(0 18px 20px rgba(72, 36, 150, 0.12));
}

.account-info-card {
    overflow: hidden;
}

.account-info-card h2 {
    display: flex;
    min-height: 54px;
    align-items: center;
    gap: 12px;
    margin: 0;
    border-bottom: 1px solid rgba(91, 92, 135, 0.13);
    padding: 0 20px;
    color: #11164c;
    font-size: 16px;
    font-weight: 700;
}

.account-heading-icon {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #7d37fc 0%, #6825fc 48%, #5f1efb 100%);
    box-shadow: 0 8px 22px rgba(104, 37, 252, 0.28),
            0 00 28px rgba(146, 83, 252, 0.20);
    padding: 8px;
}

.account-heading-icon .lucide-icon {
    width: 18px;
    height: 18px;
}

.account-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 12px 26px 16px 22px;
}

.account-column {
    display: grid;
}

.account-column:first-child {
    border-right: 1px solid rgba(91, 92, 135, 0.14);
    padding-right: 24px;
}

.account-column:last-child {
    padding-left: 24px;
}

.account-row {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    align-items: center;
    min-height: 48px;
    border-bottom: 1px solid rgba(91, 92, 135, 0.12);
}

.account-row:last-child {
    border-bottom: 0;
}

.account-label {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
    color: #7a7da4;
    font-size: 14px;
    font-weight: 400;
}

.account-label .lucide-icon {
    width: 20px;
    height: 20px;
    color: #6425ff;
}

.account-label .whatsapp-svg {
    width: 21px;
    height: 21px;
    color: #6425ff;
}

.account-row strong {
    min-width: 0;
    color: #11164c;
    font-size: 14px;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.locked-features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 24px;
    margin-top: 2px;
}

.locked-feature-card {
    position: relative;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    align-items: center;
    gap: 15px;
    min-height: 96px;
    padding: 17px 18px 17px 20px;
    background:
        radial-gradient(circle at 88% 14%, rgba(104, 42, 255, 0.11), transparent 8rem),
        rgba(255, 255, 255, 0.76);
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.locked-feature-card:hover {
    border-color: rgba(104, 42, 255, 0.28);
    box-shadow:
        0 20px 38px rgba(37, 17, 92, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);
    transform: translateY(-3px);
}

.feature-lock {
    position: absolute;
    top: 12px;
    right: 12px;
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    border-radius: 10px;
    color: #8984b4;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 8px 18px rgba(39, 18, 97, 0.1);
}

.feature-lock .lucide-icon {
    width: 15px;
    height: 15px;
}

.feature-icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border: 1px solid rgba(104, 42, 255, 0.1);
    border-radius: 18px;
    color: #6425ff;
    background:
        radial-gradient(circle at 50% 34%, rgba(104, 42, 255, 0.09), transparent 65%),
        rgba(255, 255, 255, 0.78);
    box-shadow:
        0 13px 24px rgba(37, 17, 92, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.feature-icon .lucide-icon {
    width: 27px;
    height: 27px;
}

.locked-feature-card h3 {
    margin: 0 0 6px;
    color: #11164c;
    font-size: 15px;
    line-height: 1.1;
    font-weight: 700;
}

.locked-feature-card p {
    margin: 0;
    color: #76799d;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 600;
}

@media (max-width: 1180px) {
    .profile-dashboard {
        grid-template-columns: 230px minmax(0, 1fr);
    }

    .dashboard-content {
        padding-inline: 24px;
    }

    .pending-card {
        grid-template-columns: 104px minmax(0, 1fr);
    }

    .pending-visual {
        display: none;
    }

    .locked-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .account-row {
        grid-template-columns: 150px minmax(0, 1fr);
    }
}

@media (max-width: 900px) {
    .profile-dashboard {
        display: block;
        min-height: 100vh;
        border-radius: 0;
        overflow: visible;
    }

    .dashboard-sidebar {
        min-height: 0;
        grid-template-rows: auto auto;
        border-right: 0;
        border-bottom: 1px solid rgba(116, 84, 245, 0.12);
    }

    .dashboard-logo {
        min-height: 76px;
        padding-inline: 22px;
    }

    .dashboard-menu {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding: 12px 18px 16px;
    }

    .dashboard-menu-link {
        min-width: max-content;
        min-height: 48px;
        gap: 12px;
        padding-inline: 16px;
        font-size: 14px;
    }

    .dashboard-menu-link::before,
    .sidebar-divider,
    .sidebar-help-card {
        display: none;
    }

    .dashboard-topbar {
        min-height: 68px;
        padding-inline: 20px;
    }

    .dashboard-content {
        padding: 26px 18px 34px;
    }

    .profile-heading h1 {
        font-size: 34px;
    }

    .pending-card {
        grid-template-columns: 96px minmax(0, 1fr);
        min-height: 0;
        padding: 24px;
    }

    .pending-status-icon {
        width: 92px;
        height: 92px;
    }

    .account-info-grid {
        grid-template-columns: 1fr;
        padding: 10px 22px 18px;
    }

    .account-column:first-child {
        border-right: 0;
        padding-right: 0;
    }

    .account-column:last-child {
        padding-left: 0;
    }

    .account-column:first-child .account-row:last-child {
        border-bottom: 1px solid rgba(91, 92, 135, 0.12);
    }
}

@media (max-width: 640px) {
    .topbar-actions {
        gap: 12px;
    }

    .dashboard-avatar {
        width: 48px;
        height: 48px;
    }

    .profile-heading h1 {
        font-size: 29px;
    }

    .profile-heading p {
        font-size: 15px;
    }

    .pending-card {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .pending-title-row h2 {
        font-size: 25px;
    }

    .pending-progress-row {
        grid-template-columns: 1fr;
    }

    .whatsapp-button {
        width: 100%;
        padding-inline: 14px;
        text-align: center;
    }

    .account-row {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 5px;
        padding: 12px 0;
    }

    .account-label {
        gap: 12px;
    }

    .locked-features-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .locked-feature-card {
        min-height: 104px;
    }

    .topbar-dropdown {
        right: -70px;
        min-width: min(290px, calc(100vw - 30px));
    }
}

/* Activated dashboard */
.profile-page {
    background: #fbfcff;
}

.profile-dashboard {
    grid-template-columns: 276px minmax(0, 1fr);
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: #fff;
}

.dashboard-sidebar {
    grid-template-rows: 92px auto auto;
    align-content: start;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 248, 255, 0.88));
}

.dashboard-logo {
    padding-inline: 28px;
    justify-content: center;
    height: 78px;
}

.dashboard-logo img {
    width: 126px;
    height: 39px;
}

.dashboard-menu {
    gap: 14px;
    padding: 8px 16px 20px;
}

.dashboard-menu-link {
    min-height: 60px;
    border-radius: 8px;
    color: #202a5d;
    font-size: 16px;
    font-weight: 700;
}

.dashboard-menu-link:hover,
.dashboard-menu-link.is-active {
    color: #5b20ff;
    background: linear-gradient(90deg, rgba(97, 42, 255, 0.13), rgba(97, 42, 255, 0.06));
    box-shadow: none;
}

.dashboard-menu-link.is-active::before {
    opacity: 1;
}

.profile-page .dashboard-menu .dashboard-menu-link.is-active {
    border: 1px solid rgba(91, 32, 255, 0.16);
    border-left: 0;
    box-shadow: none;
}

.dashboard-menu-link:not(.is-active):hover::before {
    opacity: 1;
}

.sidebar-help-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
    gap: 12px;
    margin: 70px 16px 24px;
    padding: 22px 18px 20px;
    background:
        radial-gradient(circle at 0 100%, rgba(91, 32, 255, 0.08) 1px, transparent 1px) 0 0 / 14px 14px,
        linear-gradient(135deg, rgba(187, 0, 255, 0.146), rgba(247, 243, 255, 0.9));
}

.sidebar-help-card .help-icon {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 48px;
    height: 48px;
    align-self: start;
    border-radius: 16px;
    color: #ffffff;
    background: linear-gradient(135deg, #7d37fc 0%, #6825fc 48%, #5f1efb 100%);
    box-shadow: 0 8px 22px rgba(104, 37, 252, 0.28),
                0 00 28px rgba(146, 83, 252, 0.20);

}

.sidebar-help-card .help-copy {
    grid-column: 1;
}

.sidebar-help-card .help-copy strong {
    color: #5b20ff;
    font-size: 14px;
}

.sidebar-help-card .help-copy small {
    color: #4f5785;
    font-size: 12px;
    line-height: 1.55;
}

.sidebar-help-card a {
    display: inline-grid;
    min-height: 42px;
    place-items: center;
    grid-column: 1 / -1;
    border: 1px solid rgba(91, 32, 255, 0.45);
    border-radius: 7px;
    color: #5b20ff;
    background: #fff;
    font-size: 14px;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.sidebar-help-card a:hover {
    box-shadow: 0 12px 24px rgba(91, 32, 255, 0.14);
    transform: translateY(-2px);
}

.dashboard-shell {
    position: relative;
    z-index: 0;
    overflow: visible;
    background: #fff;
}

.dashboard-topbar {
    position: relative;
    z-index: 1000;
    min-height: 76px;
    justify-content: flex-end;
    gap: 22px;
    overflow: visible;
    border-bottom-color: rgba(26, 35, 86, 0.08);
    padding: 0 24px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: none;
}

.dashboard-search {
    display: flex;
    width: min(640px, 52vw);
    min-height: 56px;
    align-items: center;
    gap: 16px;
    border: 1px solid #dde0ee;
    border-radius: 9px;
    padding: 0 18px;
    color: #72799b;
    background: #fff;
}

.dashboard-search .lucide-icon {
    width: 21px;
    height: 21px;
}

.dashboard-search input {
    min-width: 0;
    width: 100%;
    border: 0;
    outline: 0;
    color: #141a4f;
    background: transparent;
    font: inherit;
    font-size: 15px;
    font-weight: 500;
}

.notification-entry {
    position: relative;
}

.topbar-icon-button {
    width: 36px;
    height: 36px;
}

.notification-badge {
    position: absolute;
    top: -2px;
    right: -1px;
    display: grid;
    min-width: 20px;
    height: 20px;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: #5b20ff;
    font-size: 11px;
    font-weight: 900;
}

.topbar-user {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 0;
    color: #11164c;
    background: transparent;
    cursor: pointer;
}

.profile-dropdown-menu[hidden] {
    display: none;
}

.profile-dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    z-index: 1002;
    width: min(300px, calc(100vw - 28px));
    border: 1px solid rgba(115, 72, 220, 0.16);
    border-radius: 18px;
    padding: 18px;
    color: #17194f;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 250, 255, 0.96)),
        radial-gradient(circle at 12% 0%, rgba(134, 87, 255, 0.1), transparent 9rem);
    box-shadow:
        0 24px 62px rgba(36, 20, 91, 0.16),
        0 8px 24px rgba(100, 37, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
}

.profile-dropdown-pointer {
    position: absolute;
    top: -8px;
    right: 42px;
    width: 16px;
    height: 16px;
    border-top: 1px solid rgba(115, 72, 220, 0.16);
    border-left: 1px solid rgba(115, 72, 220, 0.16);
    background: rgba(255, 255, 255, 0.98);
    transform: rotate(45deg);
}

.profile-dropdown-head {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
}

.profile-dropdown-avatar {
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(137, 82, 255, 0.12), transparent 66%),
        rgba(247, 244, 255, 0.92);
    box-shadow:
        inset 0 0 0 1px rgba(115, 72, 220, 0.08),
        0 10px 22px rgba(68, 36, 150, 0.08);
}

.profile-dropdown-avatar .dashboard-avatar {
    width: 54px;
    height: 54px;
}

.profile-dropdown-avatar .avatar-face {
    width: 35px;
    height: 39px;
}

.profile-dropdown-head strong,
.profile-dropdown-head span,
.profile-dropdown-head small {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profile-dropdown-head strong {
    color: #11164c;
    font-size: 18px;
    font-weight: 700;
}

.profile-dropdown-head span {
    margin-top: 6px;
    color: #74638f;
    font-size: 14px;
    font-weight: 750;
}

.profile-dropdown-head span b {
    color: #6425ff;
    font-weight: 900;
}

.profile-dropdown-head small {
    margin-top: 5px;
    color: #897aa3;
    font-size: 13px;
    font-weight: 650;
}

.profile-dropdown-divider {
    display: block;
    height: 1px;
    margin: 16px 0 8px;
    background: linear-gradient(90deg, transparent, rgba(116, 84, 245, 0.16), transparent);
}

.profile-dropdown-item {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 20px;
    align-items: center;
    width: 100%;
    min-height: 48px;
    border: 0;
    border-radius: 12px;
    padding: 0 8px;
    color: #25165f;
    background: transparent;
    font-size: 15px;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
    transition:
        background-color 180ms ease,
        color 180ms ease,
        box-shadow 180ms ease;
}

.profile-dropdown-item:hover,
.profile-dropdown-item:focus-visible {
    background: rgba(102, 31, 240, 0.07);
    color: #4f18d3;
    box-shadow: inset 0 0 0 1px rgba(116, 84, 245, 0.08);
    outline: 0;
}

.profile-dropdown-icon {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    color: currentColor;
}

.profile-dropdown-icon.lucide-icon,
.profile-dropdown-arrow.lucide-icon {
    width: 21px;
    height: 21px;
}

.profile-icon-user {
    color: #6425ff;
}

.profile-dropdown-arrow {
    justify-self: end;
    color: #a391bf;
}

.profile-dropdown-item.is-danger {
    grid-template-columns: 34px minmax(0, 1fr);
    color: #c93a4b;
}

.profile-dropdown-item.is-danger:hover,
.profile-dropdown-item.is-danger:focus-visible {
    color: #a92535;
    background: rgba(236, 65, 86, 0.08);
}

.topbar-user > span:first-child {
    display: grid;
}

.topbar-user > span:nth-of-type(2) {
    display: grid;
    gap: 4px;
    text-align: left;
}

.topbar-user strong {
    font-size: 15px;
    font-weight: 700;
}

.topbar-user small {
    color: #9f7ccb;
    font-size: 13px;
    font-weight: 600;
}

body.student-session-active.profile-page {
    background:
        radial-gradient(circle at 78% 5%, rgba(129, 59, 255, 0.1), transparent 24rem),
        radial-gradient(circle at 14% 22%, rgba(104, 42, 255, 0.06), transparent 22rem),
        linear-gradient(180deg, #fff 0%, #fbf8ff 48%, #f6f1ff 100%);
}

body.student-session-active .profile-dashboard {
    border: 0;
    border-radius: 0;
    background: transparent;
}

body.student-session-active .dashboard-sidebar {
    border-right: 1px solid rgba(167, 119, 255, 0.2);
    background:
        radial-gradient(circle at 78% 18%, rgba(129, 58, 255, 0.22), transparent 13rem),
        radial-gradient(circle at 18% 82%, rgba(121, 45, 255, 0.18), transparent 15rem),
        linear-gradient(180deg, #17103a 0%, #100a2d 46%, #0b0824 100%);
    box-shadow:
        inset -1px 0 0 rgba(255, 255, 255, 0.05),
        18px 0 54px rgba(24, 12, 72, 0.12);
}

body.student-session-active .dashboard-logo {
    border-bottom: 1px solid rgba(177, 139, 255, 0.13);
}

body.student-session-active .dashboard-menu {
    gap: 16px;
    padding: 28px 17px 22px;
}

body.student-session-active .dashboard-menu-link {
    min-height: 58px;
    border-color: transparent;
    border-radius: 10px;
    color: rgba(241, 235, 255, 0.82);
    background: transparent;
    box-shadow: none;
}

body.student-session-active .dashboard-menu-link::before {
    display: none;
}

body.student-session-active .dashboard-menu-link:hover {
    color: #fff;
    border-color: rgba(171, 111, 255, 0.2);
    background: rgba(141, 73, 255, 0.13);
    box-shadow: 0 14px 32px rgba(99, 31, 255, 0.18);
    transform: translateY(-1px);
}

body.student-session-active .dashboard-menu-link.is-active {
    color: #fff;
    border: 1px solid rgba(203, 159, 255, 0.3);
    background:
        radial-gradient(circle at 75% 28%, rgba(220, 129, 255, 0.24), transparent 7rem),
        linear-gradient(135deg, #6428ff 0%, #913aff 100%);
    box-shadow:
        0 18px 36px rgba(113, 38, 255, 0.36),
        inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

body.student-session-active .dashboard-menu-link.is-locked,
body.student-session-active .profile-link {
    color: rgb(255, 255, 255);
}

body.student-session-active .dashboard-menu-link .menu-lock {
    color: rgba(235, 226, 255, 0.72);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(194, 157, 255, 0.09);
}

body.student-session-active .dashboard-menu-link:hover .menu-lock {
    color: #fff;
    background: rgba(145, 58, 255, 0.28);
}

body.student-session-active .sidebar-divider {
    background: rgba(178, 141, 255, 0.15);
}

body.student-session-active .sidebar-help-card {
    border: 1px solid rgba(191, 147, 255, 0.22);
    border-radius: 14px;
    margin: auto 20px 28px;
    padding: 22px;
    color: #fff;
    background:
        radial-gradient(circle at 92% 12%, rgba(179, 83, 255, 0.22), transparent 8rem),
        linear-gradient(145deg, rgba(45, 24, 101, 0.86), rgba(27, 15, 70, 0.9));
    box-shadow:
        0 20px 46px rgba(13, 7, 48, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

body.student-session-active .sidebar-help-card .help-icon {
    color: #fff;
    background: linear-gradient(135deg, #6b2cff, #b544ff);
    box-shadow: 0 12px 28px rgba(122, 44, 255, 0.42);
}

body.student-session-active .help-copy strong {
    color: #fff;
}

body.student-session-active .help-copy small {
    color: rgba(236, 227, 255, 0.78);
}

body.student-session-active .sidebar-help-card a {
    color: #fff;
    background: linear-gradient(135deg, #5f2cff 0%, #7936ff 52%, #b348ff 100%);
    box-shadow:
        0 15px 30px rgba(123, 49, 255, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

body.student-session-active .sidebar-help-card a:hover {
    box-shadow:
        0 18px 38px rgba(137, 55, 255, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

body.student-session-active .dashboard-shell {
    background:
        radial-gradient(circle at 72% 12%, rgba(117, 49, 255, 0.1), transparent 25rem),
        radial-gradient(circle at 30% 85%, rgba(131, 68, 255, 0.07), transparent 24rem),
        #fff;
}

body.student-session-active .dashboard-topbar {
    border-bottom: 0;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: none;
}

body.student-session-active .topbar-icon-button {
    color: #1a1550;
    background: rgba(104, 42, 255, 0.06);
}

body.student-session-active .topbar-icon-button:hover,
body.student-session-active .topbar-icon-button[aria-expanded="true"] {
    color: #6425ff;
    background: rgba(104, 42, 255, 0.12);
}

body.student-session-active .topbar-user {
    color: #11164c;
}

body.student-session-active .dashboard-content {
    width: 100%;
    max-width: 1360px;
    padding: 18px 32px 42px;
}

.dashboard-content {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 20px 24px 28px;
}

.active-dashboard {
    display: grid;
    gap: 18px;
    min-width: 0;
}

body.student-session-active .active-reveal {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(22px);
    transition:
        opacity 520ms ease,
        filter 520ms ease,
        transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, filter, transform;
}

body.student-session-active .active-reveal.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.active-hero-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 565px);
    gap: 18px;
    align-items: center;
    min-width: 0;
}

.active-heading h1 {
    font-size: 32px;
    font-weight: 700;
}

.active-heading p {
    margin-top: 8px;
    font-size: 14px;
}

.subscription-card,
.stats-row,
.activity-card,
.support-pigma-card,
.subject-section,
.access-card {
    min-width: 0;
    border: 1px solid rgba(31, 43, 95, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow:
        0 18px 44px rgba(38, 20, 92, 0.075),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
}

.subscription-card {
    position: relative;
    display: grid;
    min-height: 134px;
    grid-template-columns: minmax(0, 1fr) 244px;
    gap: 16px;
    overflow: hidden;
    padding: 24px 24px 22px;
    background:
        radial-gradient(ellipse at 84% 48%, rgba(115, 65, 255, 0.22) 0%, rgba(164, 131, 255, 0.13) 35%, rgba(255, 255, 255, 0) 68%),
        linear-gradient(135deg, #fff 0%, #fbf9ff 48%, #f4edff 100%);
}

.subscription-card > div {
    min-width: 0;
}

.subscription-card > div > span {
    color: #5b20ff;
    font-size: 13px;
    font-weight: 700;
}

.subscription-title-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 8px 0;
    min-width: 0;
}

.subscription-card h2 {
    min-width: 0;
    margin: 0;
    color: #11164c;
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.subscription-card p {
    margin: 0;
    color: #72799a;
    font-size: 13px;
    font-weight: 650;
}

.subscription-manage-button {
    position: relative;
    z-index: 2;
    display: inline-flex;
    width: fit-content;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    border: 1px solid rgba(91, 32, 255, 0.2);
    border-radius: 12px;
    padding: 0 14px;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(120, 72, 255, 0.98), rgba(91, 32, 255, 0.95)),
        #5b20ff;
    box-shadow:
        0 12px 24px rgba(91, 32, 255, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.subscription-manage-button:hover,
.subscription-manage-button:focus-visible {
    border-color: rgba(255, 255, 255, 0.42);
    box-shadow:
        0 16px 30px rgba(91, 32, 255, 0.28),
        0 0 0 4px rgba(91, 32, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
    transform: translateY(-1px);
}

.subscription-manage-button .lucide-icon {
    width: 17px;
    height: 17px;
    stroke-width: 2.3;
}

.continue-button .lucide-icon,
.whatsapp-panel a .lucide-icon,
.subscription-manage-button .lucide-icon:last-child {
    transition: transform 180ms ease;
}

.whatsapp-panel a:hover .lucide-icon,
.subscription-manage-button:hover .lucide-icon:last-child,
.subscription-manage-button:focus-visible .lucide-icon:last-child {
    transform: translateX(2px);
}

.subscription-title-row > strong {
    display: inline-grid;
    min-width: 54px;
    height: 29px;
    place-items: center;
    border-radius: 999px;
    padding: 0 14px;
    color: #5b20ff;
    background: rgba(91, 32, 255, 0.12);
    font-size: 14px;
    line-height: 1;
    font-weight: 850;
}

.subscription-visual {
    position: relative;
    min-height: 112px;
    margin: 0;
}

.subscription-visual::before {
    content: none;
}

.subscription-visual img {
    position: absolute;
    right: -16px;
    bottom: -18px;
    width: 258px;
    max-width: none;
    height: 142px;
    object-fit: contain;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: 88px;
    padding: 18px 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
    padding-inline: 18px;
    border-right: 1px solid rgba(29, 42, 88, 0.14);
}

.stat-item:first-child {
    padding-left: 0;
}

.stat-item:last-child {
    border-right: 0;
    padding-right: 0;
}

.stat-icon {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
}

.stat-icon.progress {
    color: #6425ff;
    background: conic-gradient(#6425ff var(--stat-progress, 0%), #ede8ff 0);
}

.stat-icon.progress::before {
    width: 34px;
    height: 34px;
    border-radius: inherit;
    background: #fff;
    content: "";
}

.stat-icon.progress .lucide-icon {
    display: none;
}

.stat-icon.success {
    color: #20b95d;
    background: #def8e8;
}

.stat-icon.video {
    color: #6425ff;
    background: #f0eaff;
}

.stat-icon.document {
    color: #1478f2;
    background: #e8f3ff;
}

.stat-icon .lucide-icon {
    width: 23px;
    height: 23px;
}

.stat-item span:not(.stat-icon) {
    display: block;
    color: #424a76;
    font-size: 12px;
    font-weight: 750;
}

.stat-item strong {
    display: block;
    margin-top: 4px;
    color: #070c3f;
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
}

.active-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 330px);
    gap: 18px;
    align-items: start;
}

.active-main-left,
.active-side {
    display: grid;
    gap: 18px;
    min-width: 0;
}

.continue-section h2,
.access-section h2,
.section-title-row h2,
.support-pigma-card h2 {
    margin: 0;
    color: #11164c;
    font-size: 17px;
    line-height: 1.15;
    font-weight: 900;
}

.continue-card {
    display: grid;
    min-height: 150px;
    grid-template-columns: minmax(92px, 104px) minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    margin-top: 10px;
    overflow: hidden;
    border: 1px solid rgba(198, 154, 255, 0.22);
    border-radius: 14px;
    padding: 18px 20px;
    color: #fff;
    background:
        radial-gradient(circle at 82% 14%, rgba(190, 115, 255, 0.34), transparent 12rem),
        radial-gradient(circle at 12% 120%, rgba(110, 48, 255, 0.28), transparent 13rem),
        linear-gradient(135deg, #24106a 0%, #5221df 48%, #741fff 100%);
    box-shadow:
        0 18px 42px rgba(76, 28, 200, 0.24),
        0 0 34px rgba(120, 48, 255, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.math-visual {
    position: relative;
    display: grid;
    width: 104px;
    height: 108px;
    grid-template-columns: auto 1fr;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 12px;
    padding: 14px 15px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.05));
}

.math-visual span {
    font-size: 42px;
    font-family: Georgia, serif;
}

.math-visual small {
    position: absolute;
    left: 30px;
    bottom: 20px;
    font-family: Georgia, serif;
    font-size: 12px;
    line-height: 1;
}

.math-visual em {
    font-family: Georgia, serif;
    font-size: 25px;
}

.math-visual .lucide-icon {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 24px;
    height: 24px;
}

.continue-copy > span {
    display: inline-grid;
    min-height: 26px;
    place-items: center;
    border-radius: 999px;
    padding: 0 13px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 12px;
    font-weight: 700;
}

.continue-copy h3 {
    overflow-wrap: anywhere;
    margin: 11px 0 5px;
    font-size: 22px;
    line-height: 1.08;
    font-weight: 900;
}

.continue-copy p {
    margin: 0 0 14px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffffb9;
}

.mini-progress,
.access-progress {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
}

.mini-progress > span,
.access-progress > span,
.subject-bar {
    display: block;
    height: 6px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
}

.mini-progress > span span,
.access-progress > span span,
.subject-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: currentColor;
}

.mini-progress strong {
    font-size: 14px;
}

.continue-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 12px;
    padding: 0 24px;
    color: #5b20ff;
    background: #fff;
    font-size: 14px;
    font-weight: 900;
    box-shadow:
        0 14px 30px rgba(28, 17, 77, 0.22),
        0 0 28px rgba(255, 255, 255, 0.12);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.continue-button:hover {
    box-shadow: 0 16px 32px rgba(28, 17, 77, 0.22);
    transform: translateY(-2px);
}

.access-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 10px;
}

.access-card {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    min-height: 118px;
    padding: 16px;
}

.access-card > div,
.activity-item > div,
.whatsapp-panel > div {
    min-width: 0;
}

.school-mark {
    display: grid;
    width: 62px;
    height: 70px;
    place-items: center;
    border: 1px solid rgba(31, 43, 95, 0.1);
    border-radius: 8px;
    color: #0d55b8;
    background: linear-gradient(135deg, #fff, #f7fbff);
    font-size: 14px;
    font-weight: 900;
}

.access-card h3 {
    margin: 0 0 6px;
    color: #11164c;
    font-size: 16px;
    font-weight: 900;
}

.access-card p {
    margin: 0 0 12px;
    color: #435079;
    font-size: 12px;
    font-weight: 650;
}

.access-progress {
    color: #6425ff;
}

.access-card.ensa-ensam .access-progress {
    color: #1683ec;
}

.access-progress > span {
    background: #e6e7f2;
}

.access-progress strong {
    color: #252c5d;
    font-size: 12px;
}

.access-card small {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    border: 1px solid rgba(36, 190, 94, 0.25);
    border-radius: 8px;
    padding: 0 13px;
    color: #18a650;
    background: #effcf3;
    font-size: 12px;
    font-weight: 800;
}

.section-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.section-title-row a,
.section-title-row button {
    border: 0;
    color: #5b20ff;
    background: transparent;
    font-size: 12px;
    font-weight: 750;
    cursor: pointer;
}

.subject-list {
    display: grid;
    margin-top: 11px;
}

.subject-section {
    padding: 20px;
}

.subject-row {
    display: grid;
    grid-template-columns: 32px minmax(120px, 150px) minmax(0, 1fr) 44px;
    gap: 14px;
    align-items: center;
    min-height: 44px;
    border-bottom: 1px solid rgba(31, 43, 95, 0.09);
}

.subject-row:last-child {
    border-bottom: 0;
}

.subject-icon {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 7px;
    color: #fff;
}

.subject-icon.purple,
.activity-icon.purple {
    background: linear-gradient(135deg, #5b20ff, #8c3cff);
}

.subject-icon.blue,
.activity-icon.blue {
    background: #1485f7;
}

.subject-icon.green,
.activity-icon.green {
    background: #25c866;
}

.subject-icon.orange,
.activity-icon.orange {
    background: #ffad2f;
}

.subject-row strong {
    min-width: 0;
    color: #11164c;
    font-size: 13px;
    overflow-wrap: anywhere;
}

.subject-bar {
    color: #6425ff;
    background: #eef0f5;
}

.subject-row em {
    color: #1c2458;
    font-size: 13px;
    font-style: normal;
    font-weight: 750;
    text-align: right;
}

.activity-card,
.support-pigma-card {
    padding: 20px;
}

.activity-list {
    display: grid;
    gap: 15px;
    margin-top: 18px;
}

.activity-item {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
}

.activity-icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 8px;
    color: #6425ff;
    background: #f0eaff;
}

.activity-icon.green {
    color: #18a650;
    background: #eaf9ef;
}

.activity-icon.orange {
    color: #f39a16;
    background: #fff5df;
}

.activity-icon.blue {
    color: #1478f2;
    background: #e8f3ff;
}

.activity-icon.purple {
    color: #6425ff;
    background: #f0eaff;
}

.activity-item h3 {
    min-width: 0;
    margin: 0 0 5px;
    color: #11164c;
    font-size: 13px;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.activity-item p,
.activity-item small {
    display: block;
    margin: 0;
    color: #687092;
    font-size: 11px;
    font-weight: 650;
}

.activity-item small {
    margin-top: 5px;
}

.empty-state {
    margin: 0;
    color: #737b9c;
    font-size: 14px;
    font-weight: 650;
}

.support-pigma-card {
    background: linear-gradient(135deg, #fff, #f7f1ff);
}

.whatsapp-panel {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    margin-top: 16px;
    border: 1px solid rgba(31, 43, 95, 0.1);
    border-radius: 8px;
    padding: 16px 14px 14px;
    background: rgba(255, 255, 255, 0.72);
}

.whatsapp-mark {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, #29d466, #18b956);
    box-shadow: 0 12px 22px rgba(24, 185, 86, 0.24);
}

.whatsapp-mark .lucide-icon {
    width: 31px;
    height: 31px;
}

.whatsapp-mark .whatsapp-svg {
    width: 31px;
    height: 31px;
}

.whatsapp-panel h3 {
    min-width: 0;
    margin: 0 0 7px;
    color: #11164c;
    font-size: 14px;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.whatsapp-panel p {
    margin: 0;
    color: #56607f;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 650;
}

.whatsapp-panel a {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    grid-column: 1 / -1;
    margin-top: 7px;
    border-radius: 9px;
    color: #fff;
    background: linear-gradient(135deg, #5f2cff 0%, #7936ff 52%, #b348ff 100%);
    box-shadow:
        0 15px 30px rgba(123, 49, 255, 0.35),
        0 0 32px rgba(146, 83, 252, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    font-size: 14px;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-panel a:hover {
    box-shadow:
        0 18px 38px rgba(137, 55, 255, 0.48),
        0 0 40px rgba(167, 79, 255, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.24);
    transform: translateY(-2px);
}

.support-note {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 13px 0 0;
    color: #687092;
    font-size: 11px;
    font-weight: 700;
}

.support-note .lucide-icon {
    width: 18px;
    height: 18px;
    color: #1c2458;
}

.profile-management {
    display: grid;
    gap: 16px;
}

.profile-management .profile-scroll-reveal {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(22px);
    transition:
        opacity 520ms ease,
        filter 520ms ease,
        transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, filter, transform;
}

.profile-management .profile-scroll-reveal.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.profile-management-heading h1 {
    margin: 0;
    color: #101450;
    font-size: 31px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 0;
}

.profile-management-heading p {
    margin: 8px 0 0;
    color: #69739c;
    font-size: 14px;
    font-weight: 500;
}

.profile-management-card {
    min-width: 0;
    border: 1px solid rgba(189, 143, 255, 0.22);
    border-radius: 18px;
    color: #f8f4ff;
    background:
        radial-gradient(circle at 88% 12%, rgb(145 85 255 / 12%), #00000000 11rem),
        linear-gradient(145deg, rgb(32 22 88 / 76%), rgb(18 13 56));
    box-shadow:
        0 24px 58px rgba(22, 14, 65, 0.18),
        0 0 34px rgba(112, 48, 255, 0.11),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(16px);
}

.profile-management-card h2,
.profile-management-card h3 {
    color: #fff;
    letter-spacing: 0;
}

.profile-management-card h2 {
    margin: 0;
    font-size: 18px;
    line-height: 1.18;
    font-weight: 700;
}

.profile-summary-card {
    display: flex;
    min-height: 142px;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 22px 28px;
}

.profile-summary-main {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 24px;
}

.profile-management-avatar {
    display: grid;
    width: 96px;
    height: 96px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(218, 194, 255, 0.22);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(177, 111, 255, 0.2), transparent 66%),
        rgba(255, 255, 255, 0.1);
    box-shadow:
        0 14px 30px rgba(10, 7, 36, 0.2),
        inset 0 0 0 6px rgba(255, 255, 255, 0.06);
}

.profile-management-avatar .dashboard-avatar {
    width: 84px;
    height: 84px;
    box-shadow: none;
}

.profile-management-avatar .avatar-face {
    width: 54px;
    height: 61px;
}

.profile-management-avatar .avatar-face::before {
    height: 24px;
}

.profile-management-avatar .avatar-face::after {
    top: 30px;
    left: 15px;
    box-shadow: 18px 0 0 #1b1e51, 9px 13px 0 -2px #c26967;
}

.profile-summary-main h2 {
    margin: 0;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 700;
}

.profile-summary-main p {
    margin: 7px 0 0;
    color: rgba(235, 226, 255, 0.78);
    font-size: 15px;
    font-weight: 500;
}

.profile-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.profile-badge {
    display: inline-flex;
    min-height: 29px;
    align-items: center;
    gap: 8px;
    border-radius: 10px;
    padding: 0 12px;
    font-size: 13px;
    line-height: 1;
    font-weight: 650;
}

.profile-badge .lucide-icon {
    width: 17px;
    height: 17px;
}

.profile-badge.is-active {
    border: 1px solid rgba(65, 226, 138, 0.3);
    color: #79f0ab;
    background: rgba(29, 190, 94, 0.13);
}

.profile-badge.is-pending {
    border: 1px solid rgba(255, 187, 99, 0.34);
    color: #ffc27b;
    background: rgba(255, 138, 42, 0.14);
}

.profile-badge.is-plan {
    border: 1px solid rgba(202, 174, 255, 0.16);
    color: #e6d9ff;
    background: rgba(139, 83, 255, 0.18);
}

.profile-outline-button,
.profile-primary-button {
    display: inline-flex;
    min-height: 43px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 7px;
    padding: 0 18px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease,
        background-color 180ms ease;
}

.profile-outline-button {
    border: 1px solid rgba(91, 32, 255, 0.46);
    color: #5b20ff;
    background: #fff;
}

.profile-management .profile-outline-button {
    position: relative;
    border: 1px solid rgba(206, 180, 255, 0.42);
    color: #fff;
    background:
        linear-gradient(135deg, rgba(127, 56, 255, 0.22), rgba(99, 30, 255, 0.12)),
        rgba(255, 255, 255, 0.06);
    box-shadow:
        0 12px 28px rgba(102, 31, 240, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.profile-outline-button:hover,
.profile-primary-button:hover {
    box-shadow: 0 12px 24px rgba(91, 32, 255, 0.15);
    transform: translateY(-1px);
}

.profile-management .profile-outline-button:hover,
.profile-management .profile-primary-button:hover {
    border-color: rgba(231, 216, 255, 0.56);
    box-shadow:
        0 16px 32px rgba(102, 31, 240, 0.28),
        0 0 28px rgba(146, 83, 252, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.profile-primary-button {
    width: 100%;
    border: 0;
    color: #fff;
    background: linear-gradient(135deg, #7d37fc 0%, #6825fc 48%, #5f1efb 100%);
    box-shadow: 0 8px 20px rgba(104, 37, 252, 0.24);
}

.profile-management .profile-primary-button {
    box-shadow:
        0 14px 28px rgba(102, 31, 240, 0.28),
        0 0 28px rgba(146, 83, 252, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.profile-outline-button.is-full {
    width: 100%;
}

.profile-outline-button .lucide-icon,
.profile-primary-button .lucide-icon {
    width: 19px;
    height: 19px;
}

.profile-modal[hidden] {
    display: none;
}

.profile-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 22px;
}

.profile-modal-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(12, 16, 45, 0.28);
    backdrop-filter: blur(12px);
    cursor: pointer;
}

.profile-modal-panel {
    position: relative;
    z-index: 1;
    width: min(620px, calc(100vw - 34px));
    max-height: calc(100vh - 44px);
    overflow: auto;
    border: 1px solid rgba(91, 32, 255, 0.16);
    border-radius: 12px;
    padding: 26px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 26px 80px rgba(18, 22, 65, 0.24);
}

.profile-modal-panel h2 {
    margin: 0 44px 20px 0;
    color: #11164c;
    font-size: 22px;
    font-weight: 850;
    letter-spacing: 0;
}

.profile-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: #1d2559;
    background: rgba(91, 32, 255, 0.08);
    cursor: pointer;
}

.profile-modal-close .lucide-icon {
    width: 18px;
    height: 18px;
}

.profile-modal-form {
    display: grid;
    gap: 14px;
}

.profile-modal-form label {
    display: grid;
    gap: 8px;
    color: #4d5882;
    font-size: 13px;
    font-weight: 800;
}

.profile-modal-form input {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(91, 32, 255, 0.18);
    border-radius: 8px;
    padding: 0 14px;
    color: #11164c;
    background: #fff;
    font-size: 14px;
    font-weight: 650;
    outline: 0;
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.profile-modal-form input:focus {
    border-color: rgba(91, 32, 255, 0.54);
    box-shadow: 0 0 0 4px rgba(91, 32, 255, 0.08);
}

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

.profile-form-status {
    min-height: 20px;
    margin: 0;
    color: #687092;
    font-size: 13px;
    font-weight: 750;
}

.profile-form-status.is-error {
    color: #d93838;
}

.profile-form-status.is-success {
    color: #18a650;
}

.profile-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 4px;
}

.profile-modal-actions .profile-outline-button,
.profile-modal-actions .profile-primary-button {
    width: auto;
    min-width: 130px;
}

.profile-management-primary-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 1fr);
    gap: 16px;
}

.personal-info-card,
.security-card,
.compact-subscription-card,
.preferences-card,
.support-card {
    padding: 24px;
}

.personal-info-list {
    display: grid;
    margin-top: 14px;
}

.personal-info-row,
.preference-row {
    display: grid;
    align-items: center;
    color: rgba(231, 222, 255, 0.72);
}

.personal-info-row {
    grid-template-columns: 34px 170px minmax(0, 1fr);
    min-height: 46px;
    border-bottom: 1px solid rgba(222, 202, 255, 0.12);
    font-size: 14px;
    font-weight: 500;
}

.personal-info-row:last-child {
    border-bottom: 0;
}

.profile-row-icon {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    color: #d9bdff;
    filter: drop-shadow(0 0 10px rgba(147, 91, 255, 0.36));
}

.profile-row-icon .lucide-icon {
    width: 20px;
    height: 20px;
}

.personal-info-row strong,
.preference-row strong {
    min-width: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.security-card {
    display: grid;
    align-content: start;
    gap: 16px;
}

.security-card-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px;
    align-items: center;
    gap: 16px;
}

.security-card-top p {
    margin: 12px 0 0;
    max-width: 360px;
    color: rgba(231, 222, 255, 0.72);
    font-size: 13px;
    line-height: 1.55;
    font-weight: 500;
}

.security-card-top img {
    width: 145px;
    max-width: 100%;
    justify-self: end;
    filter: drop-shadow(0 16px 26px rgba(146, 83, 252, 0.28));
}

.password-preview {
    display: grid;
    grid-template-columns: minmax(100px, 1fr) auto 24px;
    align-items: center;
    gap: 14px;
    min-height: 51px;
    border: 1px solid rgba(218, 194, 255, 0.16);
    border-radius: 12px;
    padding: 0 14px 0 18px;
    color: rgba(231, 222, 255, 0.76);
    background: rgba(255, 255, 255, 0.07);
    font-size: 14px;
    font-weight: 500;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.password-preview strong {
    color: #fff;
    font-size: 18px;
    letter-spacing: 4px;
}

.password-preview .lucide-icon {
    width: 21px;
    height: 21px;
    color: #f4edff;
}

.profile-management-secondary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.compact-subscription-card,
.preferences-card,
.support-card {
    display: grid;
    align-content: start;
    gap: 15px;
    min-height: 178px;
}

.compact-subscription-card {
    position: relative;
    overflow: hidden;
    grid-template-columns: minmax(0, 1fr);
}

.compact-card-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.compact-card-title-row span {
    display: inline-grid;
    min-height: 28px;
    place-items: center;
    border-radius: 999px;
    padding: 0 12px;
    border: 1px solid rgba(65, 226, 138, 0.24);
    color: #79f0ab;
    background: rgba(29, 190, 94, 0.12);
    font-size: 13px;
    font-weight: 650;
}

.compact-subscription-card h3 {
    margin: 13px 106px 7px 0;
    font-size: 23px;
    line-height: 1;
    font-weight: 700;
}

.compact-subscription-card p {
    margin: 0;
    color: rgba(231, 222, 255, 0.72);
    font-size: 13px;
    font-weight: 500;
}

.compact-subscription-card img {
    position: absolute;
    top: 64px;
    right: 20px;
    width: 106px;
    opacity: 0.88;
    filter: drop-shadow(0 16px 26px rgba(146, 83, 252, 0.24));
}

.preference-list {
    display: grid;
    gap: 2px;
}

.preference-row {
    grid-template-columns: 32px minmax(0, 1fr) auto;
    min-height: 36px;
    font-size: 14px;
}

.preference-row strong {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.preference-row i {
    display: block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #1fc95a;
    box-shadow: 0 0 0 3px rgba(31, 201, 90, 0.1);
}

.support-card-body {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
}

.support-card-icon {
    display: grid;
    width: 72px;
    height: 72px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background:
        radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.26) 0 28%, rgba(139, 83, 255, 0.18) 100%),
        rgba(255, 255, 255, 0.08);
    box-shadow:
        0 12px 30px rgba(102, 31, 240, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.support-card-icon .lucide-icon {
    width: 42px;
    height: 42px;
    stroke-width: 2.2;
}

.support-card-body p {
    margin: 0;
    color: rgba(231, 222, 255, 0.76);
    font-size: 13px;
    line-height: 1.55;
    font-weight: 500;
}

@media (max-width: 1260px) {
    .profile-management-primary-grid {
        grid-template-columns: 1fr;
    }

    .profile-management-secondary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .profile-summary-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .security-card-top {
        grid-template-columns: minmax(0, 1fr) 128px;
    }

    .security-card-top img {
        width: 126px;
    }
}

@media (max-width: 640px) {
    .profile-modal {
        padding: 14px;
    }

    .profile-modal-panel {
        width: calc(100vw - 28px);
        padding: 22px 18px;
    }

    .profile-modal-grid,
    .profile-modal-actions {
        grid-template-columns: 1fr;
    }

    .profile-modal-actions {
        display: grid;
    }

    .profile-modal-actions .profile-outline-button,
    .profile-modal-actions .profile-primary-button {
        width: 100%;
    }
}

@media (max-width: 760px) {
    .profile-management-heading h1 {
        font-size: 27px;
    }

    .profile-summary-main {
        align-items: flex-start;
        gap: 16px;
    }

    .profile-management-avatar {
        width: 78px;
        height: 78px;
    }

    .profile-management-avatar .dashboard-avatar {
        width: 68px;
        height: 68px;
    }

    .profile-management-avatar .avatar-face {
        width: 43px;
        height: 49px;
    }

    .profile-summary-main h2 {
        font-size: 21px;
    }

    .personal-info-row {
        grid-template-columns: 31px minmax(118px, 0.72fr) minmax(0, 1fr);
    }

    .profile-management-secondary-grid {
        grid-template-columns: 1fr;
    }

    .compact-subscription-card img {
        width: 122px;
    }
}

@media (max-width: 560px) {
    .profile-management {
        gap: 14px;
    }

    .profile-summary-card,
    .personal-info-card,
    .security-card,
    .compact-subscription-card,
    .preferences-card,
    .support-card {
        padding: 18px;
    }

    .profile-summary-main {
        display: grid;
    }

    .personal-info-row {
        grid-template-columns: 28px minmax(0, 1fr);
        gap: 4px 10px;
        min-height: 58px;
    }

    .personal-info-row strong {
        grid-column: 2;
    }

    .security-card-top {
        grid-template-columns: 1fr;
    }

    .security-card-top img {
        justify-self: center;
    }

    .compact-subscription-card img {
        display: none;
    }

    .compact-subscription-card h3 {
        margin-right: 0;
    }

    .password-preview {
        grid-template-columns: 1fr 24px;
    }

    .password-preview strong {
        grid-column: 1;
        font-size: 16px;
    }

    .password-preview .lucide-icon {
        grid-column: 2;
        grid-row: 1 / 3;
    }

    .support-card-body {
        grid-template-columns: 1fr;
    }
}

.notifications-overlay[hidden] {
    display: none;
}

.notifications-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 24px;
}

.notifications-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(12, 16, 45, 0.22);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.notifications-panel {
    position: relative;
    z-index: 1;
    width: min(520px, calc(100vw - 34px));
    border: 1px solid rgba(91, 32, 255, 0.16);
    border-radius: 12px;
    padding: 26px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 70px rgba(18, 22, 65, 0.24);
}

.notifications-panel h2 {
    margin: 0 0 18px;
    color: #11164c;
    font-size: 22px;
    font-weight: 800;
}

.notifications-close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: #1d2559;
    background: rgba(91, 32, 255, 0.08);
    cursor: pointer;
}

.notification-empty {
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 26px 10px 8px;
    text-align: center;
}

.notification-empty > .lucide-icon {
    width: 44px;
    height: 44px;
    color: #6425ff;
}

.notification-empty h3,
.notification-item h3 {
    margin: 0;
    color: #11164c;
    font-size: 16px;
    font-weight: 900;
}

.notification-empty p,
.notification-item p {
    margin: 0;
    color: #687092;
    font-size: 13px;
    line-height: 1.55;
    font-weight: 600;
}

.notification-item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    border: 1px solid rgba(91, 32, 255, 0.12);
    border-radius: 8px;
    padding: 16px;
}

.notification-item > .lucide-icon {
    display: grid;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #6425ff;
    background: rgba(91, 32, 255, 0.08);
    padding: 10px;
    box-sizing: border-box;
}

.complete-button.is-complete {
    color: #fff;
    border-color: transparent;
    background: #21b95f;
}

.checkmark-icon {
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6 9 17l-5-5' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.summary-item.is-complete .summary-marker::before {
    border-color: #21b95f;
    background: #21b95f;
}

.summary-item.is-complete .summary-marker::after {
    opacity: 1;
}

@media (max-width: 1260px) {
    .profile-dashboard {
        grid-template-columns: 238px minmax(0, 1fr);
    }

    .active-hero-row,
    .active-main-grid {
        grid-template-columns: 1fr;
    }

    .active-side {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .dashboard-search {
        width: min(100%, 520px);
    }

    .topbar-user {
        display: none;
    }

    .stats-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 0;
    }

    .stat-item:nth-child(2) {
        border-right: 0;
    }

    .active-side,
    .access-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .dashboard-topbar {
        flex-wrap: wrap;
        padding-block: 14px;
    }

    .dashboard-search {
        order: 2;
        width: 100%;
        min-height: 48px;
    }

    .subscription-card {
        grid-template-columns: 1fr auto;
    }

    .subscription-visual {
        display: none;
    }

    .continue-card {
        grid-template-columns: 1fr;
    }

    .math-visual {
        width: 100%;
    }

    .continue-button {
        width: 100%;
    }

    .subject-row {
        grid-template-columns: 36px minmax(0, 1fr) 42px;
    }

    .subject-bar {
        grid-column: 2 / -1;
    }
}

@media (max-width: 560px) {
    .dashboard-content {
        padding-inline: 16px;
    }

    .active-heading h1 {
        font-size: 28px;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: 0;
        border-bottom: 1px solid rgba(29, 42, 88, 0.12);
        padding: 0 0 16px;
    }

    .stat-item:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .access-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    body.student-session-active .profile-dashboard {
        display: block;
    }

    body.student-session-active .dashboard-sidebar {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid rgba(167, 119, 255, 0.2);
    }

    body.student-session-active .dashboard-logo {
        min-height: 72px;
    }

    body.student-session-active .dashboard-menu {
        display: flex;
        grid-auto-flow: column;
        gap: 10px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        padding: 12px 18px 18px;
        scrollbar-width: none;
    }

    body.student-session-active .dashboard-menu::-webkit-scrollbar {
        display: none;
    }

    body.student-session-active .dashboard-menu-link {
        flex: 0 0 auto;
        min-width: 170px;
        min-height: 54px;
    }

    body.student-session-active .sidebar-divider,
    body.student-session-active .sidebar-help-card {
        display: none;
    }

    body.student-session-active .dashboard-content {
        padding: 26px 22px 38px;
    }
}

@media (max-width: 768px) {
    body.student-session-active.profile-page {
        background:
            radial-gradient(circle at 50% 0%, rgba(129, 59, 255, 0.12), transparent 18rem),
            linear-gradient(180deg, #fff 0%, #fbf8ff 52%, #f7f2ff 100%);
    }

    body.student-session-active .profile-dashboard {
        padding-bottom: calc(86px + env(safe-area-inset-bottom, 0px));
    }

    body.student-session-active .dashboard-sidebar {
        position: fixed;
        right: 12px;
        bottom: max(10px, env(safe-area-inset-bottom, 0px));
        left: 12px;
        z-index: 1200;
        display: block;
        min-height: 0;
        border: 1px solid rgba(190, 145, 255, 0.3);
        border-radius: 22px;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
            radial-gradient(circle at 12% 20%, rgba(153, 80, 255, 0.32), transparent 11rem),
            linear-gradient(135deg, rgba(20, 13, 58, 0.94), rgba(12, 8, 36, 0.96));
        box-shadow:
            0 20px 52px rgba(16, 8, 52, 0.36),
            0 0 42px rgba(112, 42, 255, 0.16),
            inset 0 1px 0 rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(22px);
    }

    body.student-session-active .dashboard-logo {
        display: none;
    }

    body.student-session-active .dashboard-menu {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 4px;
        overflow: visible;
        padding: 8px;
    }

    body.student-session-active .dashboard-menu-link {
        min-width: 0;
        min-height: 64px;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        border-radius: 16px;
        padding: 8px 5px;
        text-align: center;
        font-size: 11px;
        line-height: 1.08;
        font-weight: 800;
    }

    body.student-session-active .dashboard-menu-link > .lucide-icon:first-child {
        width: 21px;
        height: 21px;
    }

    body.student-session-active .dashboard-menu-link .menu-lock {
        position: absolute;
        top: 6px;
        right: 6px;
        width: 11px;
        height: 11px;
        margin: 0;
        padding: 3px;
        border-radius: 999px;
    }

    body.student-session-active .dashboard-topbar {
        min-height: 66px;
        padding-inline: 16px;
        background: rgba(255, 255, 255, 0.84);
        backdrop-filter: blur(18px);
    }

    body.student-session-active .topbar-actions {
        width: 100%;
        justify-content: flex-end;
        gap: 12px;
    }

    body.student-session-active .topbar-user {
        display: flex;
        gap: 8px;
    }

    body.student-session-active .topbar-user > span:nth-of-type(2) {
        display: none;
    }

    body.student-session-active .dashboard-avatar {
        width: 42px;
        height: 42px;
    }

    body.student-session-active .avatar-face {
        width: 28px;
        height: 32px;
    }

    body.student-session-active .dashboard-content {
        gap: 18px;
        padding: 22px 16px 28px;
    }
}

@media (max-width: 430px) {
    body.student-session-active .dashboard-content {
        padding-inline: 14px;
    }

    body.student-session-active .dashboard-menu-link {
        min-height: 60px;
        font-size: 10px;
    }

    body.student-session-active .dashboard-menu-link > .lucide-icon:first-child {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 370px) {
    body.student-session-active .dashboard-sidebar {
        right: 8px;
        left: 8px;
        border-radius: 18px;
    }
}

@media (max-width: 1200px) {
    body.student-session-active .dashboard-content {
        max-width: 100%;
        padding-inline: 26px;
    }

    body.student-session-active .active-hero-row,
    body.student-session-active .active-main-grid {
        grid-template-columns: 1fr;
    }

    body.student-session-active .active-side {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.student-session-active .subscription-card {
        min-height: 150px;
    }
}

@media (max-width: 1024px) {
    body.student-session-active .topbar-user {
        display: flex;
    }

    body.student-session-active .stats-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    body.student-session-active .active-side {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body.student-session-active .active-dashboard {
        gap: 16px;
    }

    body.student-session-active .active-heading h1 {
        font-size: clamp(29px, 8vw, 40px);
        line-height: 1.04;
    }

    body.student-session-active .active-heading p {
        max-width: 32rem;
        font-size: 15px;
        line-height: 1.45;
    }

    body.student-session-active .subscription-card {
        grid-template-columns: minmax(0, 1fr);
        min-height: 0;
        border-radius: 20px;
        padding: 22px;
    }

    body.student-session-active .subscription-title-row {
        align-items: flex-start;
    }

    body.student-session-active .subscription-card h2 {
        font-size: clamp(22px, 6vw, 28px);
        line-height: 1.08;
    }

    body.student-session-active .stats-row {
        grid-template-columns: 1fr;
        gap: 0;
        border-radius: 20px;
        padding: 18px;
    }

    body.student-session-active .stat-item {
        min-height: 74px;
        border-right: 0;
        border-bottom: 1px solid rgba(29, 42, 88, 0.1);
        padding: 12px 0;
    }

    body.student-session-active .stat-item:first-child {
        padding-top: 0;
    }

    body.student-session-active .stat-item:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    body.student-session-active .continue-section,
    body.student-session-active .access-section,
    body.student-session-active .subject-section,
    body.student-session-active .activity-card,
    body.student-session-active .support-pigma-card {
        border-radius: 20px;
    }

    body.student-session-active .continue-card {
        grid-template-columns: 1fr;
        gap: 16px;
        min-height: 0;
        border-radius: 18px;
        padding: 18px;
    }

    body.student-session-active .math-visual {
        width: 100%;
        max-width: 220px;
        height: 96px;
    }

    body.student-session-active .continue-copy h3 {
        font-size: clamp(22px, 7vw, 28px);
        line-height: 1.04;
    }

    body.student-session-active .continue-button,
    body.student-session-active .whatsapp-panel a {
        width: 100%;
        min-height: 52px;
    }

    body.student-session-active .access-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    body.student-session-active .access-card {
        border-radius: 18px;
        min-height: 0;
    }

    body.student-session-active .section-title-row {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    body.student-session-active .subject-row {
        grid-template-columns: 34px minmax(0, 1fr) 42px;
        gap: 11px;
        min-height: 54px;
        padding-block: 8px;
    }

    body.student-session-active .subject-bar {
        grid-column: 2 / -1;
    }

    body.student-session-active .whatsapp-panel {
        grid-template-columns: 52px minmax(0, 1fr);
        border-radius: 16px;
    }
}

@media (max-width: 430px) {
    body.student-session-active .dashboard-content {
        padding-bottom: 118px;
    }

    body.student-session-active .subscription-card,
    body.student-session-active .stats-row,
    body.student-session-active .subject-section,
    body.student-session-active .activity-card,
    body.student-session-active .support-pigma-card {
        padding: 16px;
    }

    body.student-session-active .access-card {
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 12px;
        padding: 14px;
    }

    body.student-session-active .school-mark {
        width: 54px;
        height: 60px;
        font-size: 12px;
    }

    body.student-session-active .activity-item {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 12px;
    }

    body.student-session-active .activity-icon {
        width: 42px;
        height: 42px;
    }

    body.student-session-active .whatsapp-panel {
        grid-template-columns: 1fr;
        justify-items: start;
    }
}

@media (max-width: 390px) {
    body.student-session-active .dashboard-content {
        padding-inline: 12px;
    }

    body.student-session-active .topbar-icon-button {
        width: 34px;
        height: 34px;
    }

    body.student-session-active .continue-card {
        padding: 16px;
    }

    body.student-session-active .access-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 360px) {
    body.student-session-active .dashboard-menu {
        gap: 3px;
        padding: 7px;
    }

    body.student-session-active .dashboard-menu-link {
        min-height: 58px;
        padding-inline: 3px;
        font-size: 9px;
    }

    body.student-session-active .subscription-title-row > strong {
        min-width: 0;
        height: 27px;
        padding-inline: 10px;
        font-size: 12px;
    }

    body.student-session-active .stat-icon {
        width: 42px;
        height: 42px;
    }

    body.student-session-active .stat-icon.progress::before {
        width: 30px;
        height: 30px;
    }
}

/* Pending activation premium dashboard */
body.student-session-pending.profile-page {
    color: #f7f2ff;
    background:
        radial-gradient(circle at 78% 5%, rgba(129, 59, 255, 0.12), transparent 24rem),
        radial-gradient(circle at 14% 22%, rgba(104, 42, 255, 0.08), transparent 22rem),
        linear-gradient(180deg, #fff 0%, #fbf8ff 48%, #f6f1ff 100%);
}

body.student-session-pending .profile-dashboard {
    border: 0;
    border-radius: 0;
    background: transparent;
}

body.student-session-pending .dashboard-sidebar {
    border-right: 1px solid rgba(167, 119, 255, 0.2);
    background:
        radial-gradient(circle at 78% 18%, rgba(129, 58, 255, 0.22), transparent 13rem),
        radial-gradient(circle at 18% 82%, rgba(121, 45, 255, 0.18), transparent 15rem),
        linear-gradient(180deg, #17103a 0%, #100a2d 46%, #0b0824 100%);
    box-shadow:
        inset -1px 0 0 rgba(255, 255, 255, 0.05),
        18px 0 54px rgba(24, 12, 72, 0.12);
}

body.student-session-pending .dashboard-logo {
    border-bottom: 1px solid rgba(177, 139, 255, 0.13);
}

body.student-session-pending .dashboard-menu {
    gap: 16px;
    padding: 28px 17px 22px;
}

body.student-session-pending .dashboard-menu-link {
    min-height: 58px;
    border-color: transparent;
    border-radius: 10px;
    color: rgba(241, 235, 255, 0.82);
    background: transparent;
    box-shadow: none;
}

body.student-session-pending .dashboard-menu-link::before {
    display: none;
}

body.student-session-pending .dashboard-menu-link:hover {
    color: #fff;
    border-color: rgba(171, 111, 255, 0.2);
    background: rgba(141, 73, 255, 0.13);
    box-shadow: 0 14px 32px rgba(99, 31, 255, 0.18);
    transform: translateY(-1px);
}

body.student-session-pending .dashboard-menu-link.is-active {
    color: #fff;
    border: 1px solid rgba(203, 159, 255, 0.3);
    background:
        radial-gradient(circle at 75% 28%, rgba(220, 129, 255, 0.24), transparent 7rem),
        linear-gradient(135deg, #6428ff 0%, #913aff 100%);
    box-shadow:
        0 18px 36px rgba(113, 38, 255, 0.36),
        inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

body.student-session-pending .dashboard-menu-link.is-locked,
body.student-session-pending .profile-link {
    color: rgb(255, 255, 255);
}

body.student-session-pending .dashboard-menu-link .menu-lock {
    color: rgba(235, 226, 255, 0.72);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(194, 157, 255, 0.09);
}

body.student-session-pending .dashboard-menu-link:hover .menu-lock {
    color: #fff;
    background: rgba(145, 58, 255, 0.28);
}

body.student-session-pending .sidebar-divider {
    background: rgba(178, 141, 255, 0.15);
}

body.student-session-pending .sidebar-help-card {
    border: 1px solid rgba(191, 147, 255, 0.22);
    border-radius: 14px;
    margin: auto 20px 28px;
    padding: 22px;
    color: #fff;
    background:
        radial-gradient(circle at 92% 12%, rgba(179, 83, 255, 0.22), transparent 8rem),
        linear-gradient(145deg, rgba(45, 24, 101, 0.86), rgba(27, 15, 70, 0.9));
    box-shadow:
        0 20px 46px rgba(13, 7, 48, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

body.student-session-pending .sidebar-help-card .help-icon {
    color: #fff;
    background: linear-gradient(135deg, #6b2cff, #b544ff);
    box-shadow: 0 12px 28px rgba(122, 44, 255, 0.42);
}

body.student-session-pending .help-copy strong {
    color: #fff;
}

body.student-session-pending .help-copy small {
    color: rgba(236, 227, 255, 0.78);
}

body.student-session-pending .sidebar-help-card a {
    color: #fff;
    background: linear-gradient(135deg, #5f2cff 0%, #7936ff 52%, #b348ff 100%);
    box-shadow:
        0 15px 30px rgba(123, 49, 255, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

body.student-session-pending .sidebar-help-card a:hover {
    box-shadow:
        0 18px 38px rgba(137, 55, 255, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

body.student-session-pending .dashboard-shell {
    background:
        radial-gradient(circle at 72% 12%, rgba(117, 49, 255, 0.1), transparent 25rem),
        radial-gradient(circle at 30% 85%, rgba(131, 68, 255, 0.07), transparent 24rem),
        #fff;
}

body.student-session-pending .dashboard-topbar {
    border-bottom: 0;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: none;
}

body.student-session-pending .topbar-icon-button {
    color: #1a1550;
    background: rgba(104, 42, 255, 0.06);
}

body.student-session-pending .topbar-icon-button:hover,
body.student-session-pending .topbar-icon-button[aria-expanded="true"] {
    color: #6425ff;
    background: rgba(104, 42, 255, 0.12);
}

body.student-session-pending .topbar-user {
    color: #11164c;
}

body.student-session-pending .dashboard-content {
    gap: 22px;
    width: 100%;
    max-width: 1360px;
    padding: 18px 32px 42px;
}

body.student-session-pending .profile-heading h1 {
    color: #141044;
    font-size: clamp(34px, 3.1vw, 44px);
    font-weight: 800;
}

body.student-session-pending .profile-heading p {
    color: #626083;
    font-size: 16px;
}

body.student-session-pending .pending-card,
body.student-session-pending .account-info-card,
body.student-session-pending .locked-feature-card {
    border: 1px solid rgba(149, 88, 255, 0.34);
    border-radius: 16px;
    color: #f8f3ff;
    background:
        radial-gradient(circle at 78% 22%, rgba(101, 31, 209, 0.42), transparent 19rem),
        radial-gradient(circle at 10% 110%, rgba(95, 30, 251, 0.22), transparent 18rem),
        linear-gradient(145deg, rgba(27, 17, 78, 0.98), rgba(16, 10, 47, 0.98));
    box-shadow:
        0 22px 58px rgba(21, 12, 70, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.035) inset,
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
}

body.student-session-pending .pending-card {
    grid-template-columns: minmax(136px, 210px) minmax(0, 1fr) minmax(280px, 420px);
    min-height: 278px;
    padding: 28px 28px 22px;
}

body.student-session-pending .pending-status-icon {
    width: 178px;
    height: 178px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(135, 53, 255, 0.28), transparent 59%),
        rgba(117, 50, 255, 0.08);
    box-shadow:
        0 0 0 1px rgba(155, 82, 255, 0.42),
        0 0 42px rgba(133, 48, 255, 0.36),
        inset 0 0 36px rgba(150, 70, 255, 0.16);
    filter: drop-shadow(0 22px 30px rgba(91, 31, 204, 0.26));
}

body.student-session-pending .pending-clock-icon {
    width: 100%;
    height: 100%;
    filter:
        drop-shadow(0 0 16px rgba(179, 90, 255, 0.75))
        saturate(1.08);
}

body.student-session-pending .pending-copy {
    gap: 15px;
}

body.student-session-pending .pending-title-row h2 {
    color: #fff;
    font-size: clamp(25px, 2.2vw, 32px);
    font-weight: 700;
}

body.student-session-pending .pending-title-row span {
    border-color: rgba(255, 132, 42, 0.5);
    color: #ff9b39;
    background: rgba(255, 119, 28, 0.08);
    box-shadow:
        0 0 20px rgba(255, 120, 33, 0.12),
        inset 0 1px 0 rgba(255, 184, 116, 0.13);
    font-weight: 750;
}

body.student-session-pending .pending-progress-row {
    color: rgba(236, 227, 255, 0.9);
}

body.student-session-pending .pending-progress {
    height: 9px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

body.student-session-pending .pending-progress span {
    background: linear-gradient(90deg, #6930ff, #a851ff);
    box-shadow: 0 0 18px rgba(157, 78, 255, 0.65);
}

body.student-session-pending .pending-copy p {
    color: rgba(241, 235, 255, 0.88);
    font-size: 15.5px;
}

body.student-session-pending .whatsapp-button {
    min-height: 46px;
    border-radius: 9px;
    padding: 0 26px;
    background: linear-gradient(135deg, #5e2dff 0%, #7d36ff 52%, #ad48ff 100%);
    box-shadow:
        0 16px 32px rgba(118, 45, 255, 0.42),
        0 0 36px rgba(145, 65, 255, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

body.student-session-pending .whatsapp-button:hover {
    box-shadow:
        0 20px 42px rgba(128, 49, 255, 0.56),
        0 0 44px rgba(167, 79, 255, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.26);
    transform: translateY(-2px);
}

body.student-session-pending .pending-visual::before {
    background: rgba(137, 75, 255, 0.24);
}

body.student-session-pending .visual-clock {
    border-color: rgba(172, 104, 255, 0.24);
    color: rgba(186, 123, 255, 0.5);
    background: rgba(255, 255, 255, 0.03);
}

body.student-session-pending .pending-student {
    filter:
        drop-shadow(0 24px 26px rgba(20, 10, 64, 0.28))
        saturate(1.04);
}

body.student-session-pending .account-info-card {
    overflow: hidden;
}

body.student-session-pending .account-info-card h2 {
    border-bottom-color: rgba(187, 143, 255, 0.16);
    color: #fff;
    font-size: 18px;
}

body.student-session-pending .account-heading-icon {
    background: linear-gradient(135deg, #5f2cff, #9a42ff);
    box-shadow:
        0 0 20px rgba(135, 60, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

body.student-session-pending .account-column:first-child {
    border-right-color: rgba(187, 143, 255, 0.14);
}

body.student-session-pending .account-row {
    border-bottom-color: rgba(187, 143, 255, 0.14);
}

body.student-session-pending .account-label {
    color: rgba(222, 210, 255, 0.68);
}

body.student-session-pending .account-label .lucide-icon,
body.student-session-pending .account-label .whatsapp-svg {
    color: #b365ff;
    filter: drop-shadow(0 0 10px rgba(169, 89, 255, 0.45));
}

body.student-session-pending .account-row strong {
    color: #fff;
    font-weight: 600;
    overflow-wrap: anywhere;
    word-break: break-word;
}

body.student-session-pending .locked-features-grid {
    grid-template-columns: repeat(5, minmax(150px, 1fr));
    gap: 20px;
}

body.student-session-pending .locked-feature-card {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: center;
    gap: 12px;
    min-height: 170px;
    padding: 24px 18px 22px;
    text-align: center;
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

body.student-session-pending .locked-feature-card:hover {
    border-color: rgba(188, 112, 255, 0.58);
    box-shadow:
        0 26px 58px rgba(38, 18, 105, 0.24),
        0 0 42px rgba(128, 49, 255, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
    transform: translateY(-3px);
}

body.student-session-pending .feature-lock {
    color: rgba(243, 235, 255, 0.78);
    background: rgba(255, 255, 255, 0.08);
    box-shadow:
        0 8px 20px rgba(7, 4, 32, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body.student-session-pending .feature-icon {
    width: 72px;
    height: 72px;
    border-color: rgba(174, 93, 255, 0.28);
    border-radius: 50%;
    color: #ca72ff;
    background:
        radial-gradient(circle, rgba(174, 82, 255, 0.26), transparent 62%),
        rgba(120, 53, 255, 0.08);
    box-shadow:
        0 0 32px rgba(151, 58, 255, 0.36),
        inset 0 0 24px rgba(177, 92, 255, 0.14);
}

body.student-session-pending .feature-icon .lucide-icon {
    width: 34px;
    height: 34px;
}

body.student-session-pending .locked-feature-card h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 850;
}

body.student-session-pending .locked-feature-card p {
    color: rgba(223, 211, 255, 0.72);
    font-size: 14px;
}

@media (max-width: 1180px) {
    body.student-session-pending .pending-card {
        grid-template-columns: 120px minmax(0, 1fr);
    }

    body.student-session-pending .pending-status-icon {
        width: 112px;
        height: 112px;
    }

    body.student-session-pending .locked-features-grid {
        grid-template-columns: repeat(3, minmax(150px, 1fr));
    }
}

@media (max-width: 900px) {
    body.student-session-pending .dashboard-sidebar {
        border-right: 0;
        border-bottom: 1px solid rgba(167, 119, 255, 0.2);
    }

    body.student-session-pending .dashboard-menu {
        padding: 12px 18px 18px;
    }

    body.student-session-pending .dashboard-menu-link {
        min-height: 50px;
    }

    body.student-session-pending .dashboard-content {
        padding: 24px 18px 36px;
    }

    body.student-session-pending .pending-card {
        padding: 24px;
    }

    body.student-session-pending .account-column:first-child {
        border-right: 0;
    }

    body.student-session-pending .account-column:first-child .account-row:last-child {
        border-bottom-color: rgba(187, 143, 255, 0.14);
    }

    body.student-session-pending .locked-features-grid {
        grid-template-columns: repeat(2, minmax(150px, 1fr));
    }
}

@media (max-width: 640px) {
    body.student-session-pending .dashboard-topbar {
        background: rgba(255, 255, 255, 0.88);
    }

    body.student-session-pending .topbar-user > span:nth-of-type(2) {
        display: none;
    }

    body.student-session-pending .pending-card {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    body.student-session-pending .pending-status-icon {
        width: 104px;
        height: 104px;
    }

    body.student-session-pending .pending-progress-row {
        grid-template-columns: 1fr;
        width: 100%;
    }

    body.student-session-pending .locked-features-grid {
        grid-template-columns: 1fr;
    }

    body.student-session-pending .locked-feature-card {
        min-height: 150px;
    }
}

/* Pending activation layout refinement */
body.student-session-pending .pending-card,
body.student-session-pending .account-info-card,
body.student-session-pending .locked-feature-card {
    border-color: rgb(130 78 187 / 73%);
    background:
        linear-gradient(180deg, rgb(255 255 255 / 0%), rgb(255 255 255 / 15%)),
            radial-gradient(circle at 72% 10%, rgb(132 52 255 / 21%), #00000005 21rem),
            radial-gradient(circle at 8% 100%, rgb(110 36 255 / 21%), #0000001c 18rem),
            linear-gradient(145deg, rgb(25 16 74), rgb(13 9 43 / 75%));
    box-shadow:
        0 24px 62px rgb(30 12 70 / 59%),
        0 10px 28px rgb(102 31 240 / 33%),
        inset 0 1px 0 rgb(255 255 255 / 54%),
        inset 0 -1px 0 rgb(147 78 255 / 28%);
}

body.student-session-pending .pending-card {
    position: relative;
    grid-template-columns: minmax(158px, 216px) minmax(430px, 1fr) minmax(300px, 390px);
    gap: clamp(24px, 3vw, 44px);
    min-height: 232px;
    align-items: center;
    padding: clamp(24px, 2.2vw, 34px) clamp(26px, 2.7vw, 42px);
}

body.student-session-pending .pending-card::before {
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background:
        linear-gradient(105deg, rgba(255, 255, 255, 0.08), transparent 28%),
        radial-gradient(circle at 88% 28%, rgba(156, 68, 255, 0.22), transparent 18rem);
    pointer-events: none;
    content: "";
}

body.student-session-pending .pending-card > * {
    position: relative;
    z-index: 1;
}

body.student-session-pending .pending-status-icon {
    width: clamp(138px, 11vw, 172px);
    height: clamp(138px, 11vw, 172px);
    justify-self: center;
}

body.student-session-pending .pending-copy {
    max-width: 650px;
    gap: 14px;
    align-content: center;
}

body.student-session-pending .pending-title-row {
    gap: 14px;
    flex-wrap: nowrap;
}

body.student-session-pending .pending-title-row h2 {
    flex: 0 1 auto;
    font-size: clamp(28px, 2vw, 34px);
    line-height: 1.04;
    white-space: nowrap;
}

body.student-session-pending .pending-title-row span {
    flex: 0 0 auto;
    padding: 7px 14px;
    font-size: 13px;
}

body.student-session-pending .pending-progress-row {
    grid-template-columns: auto minmax(230px, 330px);
    gap: 18px;
}

body.student-session-pending .pending-progress-row strong {
    white-space: nowrap;
}

body.student-session-pending .pending-copy p {
    max-width: 610px;
    font-size: 14px;
    line-height: 1.5;
}

body.student-session-pending .whatsapp-button {
    max-width: 100%;
    min-height: 48px;
    padding-inline: 28px;
    white-space: normal;
}

body.student-session-pending .pending-visual {
    min-height: 210px;
}

body.student-session-pending .visual-clock {
    top: 16px;
    left: 26px;
    width: 52px;
    height: 52px;
}

body.student-session-pending .pending-student {
    right: -2px;
    bottom: -30px;
    width: min(390px, 112%);
}

body.student-session-pending .account-info-card {
    border-radius: 17px;
}

body.student-session-pending .account-info-card h2 {
    min-height: 66px;
    padding-inline: 28px;
}

body.student-session-pending .account-info-grid {
    padding: 18px 32px 24px;
}

body.student-session-pending .account-column:first-child {
    padding-right: 34px;
}

body.student-session-pending .account-column:last-child {
    padding-left: 34px;
}

body.student-session-pending .account-row {
    grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
    min-height: 58px;
}

body.student-session-pending .account-label {
    gap: 16px;
    font-size: 15px;
}

body.student-session-pending .account-row strong {
    font-size: 15px;
    line-height: 1.25;
}

body.student-session-pending .locked-features-grid {
    gap: 22px;
}

body.student-session-pending .locked-feature-card {
    min-height: 188px;
    border-radius: 17px;
    padding: 25px 20px 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.01)),
        radial-gradient(circle at 52% 18%, rgba(151, 61, 255, 0.32), transparent 9rem),
        linear-gradient(180deg, rgba(50, 20, 119, 0.96), rgba(31, 12, 83, 0.98));
}

body.student-session-pending .feature-lock {
    top: 16px;
    right: 16px;
    border-radius: 12px;
}

body.student-session-pending .feature-icon {
    width: 78px;
    height: 78px;
    margin-bottom: 6px;
    box-shadow:
        0 0 36px rgba(174, 82, 255, 0.42),
        inset 0 0 30px rgba(177, 92, 255, 0.17),
        inset 0 1px 0 rgba(255, 255, 255, 0.11);
}

body.student-session-pending .locked-feature-card h3 {
    margin-bottom: 8px;
    font-size: clamp(18px, 1.35vw, 22px);
    line-height: 1.08;
}

body.student-session-pending .locked-feature-card p {
    max-width: 180px;
    font-size: 14px;
    line-height: 1.35;
}

@media (max-width: 1320px) {
    body.student-session-pending .pending-card {
        grid-template-columns: 142px minmax(0, 1fr) minmax(240px, 330px);
        gap: 24px;
    }

    body.student-session-pending .pending-title-row {
        flex-wrap: wrap;
    }

    body.student-session-pending .pending-title-row h2 {
        white-space: normal;
    }

    body.student-session-pending .pending-copy p {
        max-width: 520px;
    }
}

@media (max-width: 1180px) {
    body.student-session-pending .pending-card {
        grid-template-columns: 120px minmax(0, 1fr);
        min-height: 0;
    }

    body.student-session-pending .pending-title-row h2 {
        font-size: clamp(25px, 3vw, 30px);
    }

    body.student-session-pending .pending-progress-row {
        grid-template-columns: auto minmax(180px, 280px);
    }
}

@media (max-width: 900px) {
    body.student-session-pending .account-info-grid {
        padding: 14px 24px 22px;
    }

    body.student-session-pending .account-column:first-child,
    body.student-session-pending .account-column:last-child {
        padding-inline: 0;
    }
}

@media (max-width: 640px) {
    body.student-session-pending .pending-card {
        gap: 18px;
        padding: 22px;
    }

    body.student-session-pending .pending-copy {
        max-width: none;
    }

    body.student-session-pending .pending-title-row {
        align-items: flex-start;
    }

    body.student-session-pending .pending-progress-row {
        grid-template-columns: 1fr;
    }

    body.student-session-pending .account-info-card h2 {
        padding-inline: 20px;
    }

    body.student-session-pending .account-row {
        grid-template-columns: 1fr;
    }
}

/* Pending activation responsive app polish */
body.student-session-pending {
    overflow-x: hidden;
}

body.student-session-pending .profile-dashboard,
body.student-session-pending .dashboard-shell,
body.student-session-pending .dashboard-content,
body.student-session-pending .pending-card,
body.student-session-pending .account-info-card,
body.student-session-pending .locked-feature-card {
    min-width: 0;
}

body.student-session-pending .dashboard-content {
    align-content: start;
}

body.student-session-pending .pending-card {
    overflow: hidden;
}

body.student-session-pending .pending-copy,
body.student-session-pending .account-row,
body.student-session-pending .locked-feature-card {
    overflow-wrap: anywhere;
}

body.student-session-pending .pending-reveal {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(22px);
    transition:
        opacity 520ms ease,
        filter 520ms ease,
        transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, filter, transform;
}

body.student-session-pending .pending-reveal.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    body.student-session-active .active-reveal,
    .profile-management .profile-scroll-reveal {
        opacity: 1;
        filter: none;
        transform: none;
        transition: none;
    }

    body.student-session-pending .pending-reveal {
        opacity: 1;
        filter: none;
        transform: none;
        transition: none;
    }

    body.student-session-pending .dashboard-menu-link,
    body.student-session-pending .locked-feature-card,
    body.student-session-pending .whatsapp-button {
        transition: none;
    }
}

@media (max-width: 1440px) {
    body.student-session-pending .dashboard-content {
        max-width: 1240px;
        padding-inline: 28px;
    }

    body.student-session-pending .pending-card {
        grid-template-columns: minmax(130px, 178px) minmax(360px, 1fr) minmax(260px, 340px);
        gap: 26px;
    }

    body.student-session-pending .pending-student {
        width: min(340px, 108%);
    }
}

@media (max-width: 1200px) {
    body.student-session-pending .dashboard-content {
        padding-inline: 24px;
    }

    body.student-session-pending .pending-card {
        grid-template-columns: 120px minmax(0, 1fr);
        gap: 22px;
    }

    body.student-session-pending .pending-visual {
        grid-column: 1 / -1;
        min-height: 150px;
        margin-top: -8px;
    }

    body.student-session-pending .visual-clock {
        display: none;
    }

    body.student-session-pending .pending-student {
        right: 10px;
        bottom: -58px;
        width: min(300px, 42vw);
        opacity: 0.92;
    }

    body.student-session-pending .locked-features-grid {
        grid-template-columns: repeat(3, minmax(180px, 1fr));
    }
}

@media (max-width: 1024px) {
    body.student-session-pending .profile-dashboard {
        display: block;
    }

    body.student-session-pending .dashboard-sidebar {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid rgba(167, 119, 255, 0.2);
    }

    body.student-session-pending .dashboard-logo {
        min-height: 72px;
    }

    body.student-session-pending .dashboard-menu {
        display: flex;
        grid-auto-flow: column;
        gap: 10px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        padding: 12px 18px 18px;
        scrollbar-width: none;
    }

    body.student-session-pending .dashboard-menu::-webkit-scrollbar {
        display: none;
    }

    body.student-session-pending .dashboard-menu-link {
        flex: 0 0 auto;
        min-width: 170px;
        min-height: 54px;
    }

    body.student-session-pending .sidebar-divider,
    body.student-session-pending .sidebar-help-card {
        display: none;
    }

    body.student-session-pending .dashboard-content {
        padding: 26px 22px 38px;
    }

    body.student-session-pending .account-info-grid {
        grid-template-columns: 1fr;
    }

    body.student-session-pending .account-column:first-child {
        border-right: 0;
        padding-right: 0;
    }

    body.student-session-pending .account-column:last-child {
        padding-left: 0;
    }

    body.student-session-pending .account-column:first-child .account-row:last-child {
        border-bottom: 1px solid rgba(187, 143, 255, 0.14);
    }
}

@media (max-width: 768px) {
    body.student-session-pending.profile-page {
        background:
            radial-gradient(circle at 50% 0%, rgba(129, 59, 255, 0.12), transparent 18rem),
            linear-gradient(180deg, #fff 0%, #fbf8ff 52%, #f7f2ff 100%);
    }

    body.student-session-pending .profile-dashboard {
        padding-bottom: calc(86px + env(safe-area-inset-bottom, 0px));
    }

    body.student-session-pending .dashboard-sidebar {
        position: fixed;
        right: 12px;
        bottom: max(10px, env(safe-area-inset-bottom, 0px));
        left: 12px;
        z-index: 1200;
        display: block;
        min-height: 0;
        border: 1px solid rgba(190, 145, 255, 0.3);
        border-radius: 22px;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
            radial-gradient(circle at 12% 20%, rgba(153, 80, 255, 0.32), transparent 11rem),
            linear-gradient(135deg, rgba(20, 13, 58, 0.94), rgba(12, 8, 36, 0.96));
        box-shadow:
            0 20px 52px rgba(16, 8, 52, 0.36),
            0 0 42px rgba(112, 42, 255, 0.16),
            inset 0 1px 0 rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(22px);
    }

    body.student-session-pending .dashboard-logo {
        display: none;
    }

    body.student-session-pending .dashboard-menu {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 4px;
        overflow: visible;
        padding: 8px;
    }

    body.student-session-pending .dashboard-menu-link {
        min-width: 0;
        min-height: 64px;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        border-radius: 16px;
        padding: 8px 5px;
        text-align: center;
        font-size: 11px;
        line-height: 1.08;
        font-weight: 800;
    }

    body.student-session-pending .dashboard-menu-link > .lucide-icon:first-child {
        width: 21px;
        height: 21px;
    }

    body.student-session-pending .dashboard-menu-link .menu-lock {
        position: absolute;
        top: 6px;
        right: 6px;
        width: 11px;
        height: 11px;
        margin: 0;
        padding: 3px;
        border-radius: 999px;
    }

    body.student-session-pending .dashboard-topbar {
        min-height: 66px;
        padding-inline: 16px;
        background: rgba(255, 255, 255, 0.84);
        backdrop-filter: blur(18px);
    }

    body.student-session-pending .topbar-actions {
        width: 100%;
        justify-content: flex-end;
        gap: 12px;
    }

    body.student-session-pending .topbar-user {
        display: flex;
        gap: 8px;
    }

    body.student-session-pending .topbar-user > span:nth-of-type(2) {
        display: none;
    }

    body.student-session-pending .dashboard-avatar {
        width: 42px;
        height: 42px;
    }

    body.student-session-pending .avatar-face {
        width: 28px;
        height: 32px;
    }

    body.student-session-pending .dashboard-content {
        gap: 18px;
        padding: 22px 16px 28px;
    }

    body.student-session-pending .profile-heading h1 {
        display: block;
        font-size: clamp(30px, 9vw, 40px);
        line-height: 1.02;
    }

    body.student-session-pending .profile-heading p {
        max-width: 32rem;
        font-size: 15px;
    }

    body.student-session-pending .pending-card {
        grid-template-columns: 1fr;
        gap: 18px;
        border-radius: 22px;
        padding: 22px;
    }

    body.student-session-pending .pending-status-icon {
        width: 112px;
        height: 112px;
        justify-self: start;
    }

    body.student-session-pending .pending-title-row {
        gap: 10px;
        flex-wrap: wrap;
    }

    body.student-session-pending .pending-title-row h2 {
        width: 100%;
        font-size: clamp(27px, 8vw, 34px);
        white-space: normal;
    }

    body.student-session-pending .pending-title-row span {
        padding: 6px 11px;
        font-size: 12px;
    }

    body.student-session-pending .pending-progress-row {
        grid-template-columns: 1fr;
        gap: 9px;
        width: 100%;
    }

    body.student-session-pending .pending-progress-row strong {
        white-space: normal;
    }

    body.student-session-pending .pending-progress {
        width: 100%;
    }

    body.student-session-pending .pending-copy p {
        font-size: 14px;
        line-height: 1.55;
    }

    body.student-session-pending .whatsapp-button {
        width: 100%;
        min-height: 52px;
        padding-inline: 16px;
        border-radius: 13px;
        font-size: 14px;
        text-align: center;
    }

    body.student-session-pending .pending-visual {
        display: none;
    }

    body.student-session-pending .account-info-card {
        border-radius: 22px;
    }

    body.student-session-pending .account-info-card h2 {
        min-height: 62px;
        padding: 16px 18px;
        font-size: 17px;
        line-height: 1.15;
    }

    body.student-session-pending .account-info-grid {
        gap: 10px;
        padding: 14px 14px 16px;
    }

    body.student-session-pending .account-column {
        gap: 10px;
    }

    body.student-session-pending .account-column:first-child .account-row:last-child,
    body.student-session-pending .account-row {
        border: 1px solid rgba(187, 143, 255, 0.14);
        border-radius: 15px;
        padding: 13px 14px;
        background: rgba(255, 255, 255, 0.035);
    }

    body.student-session-pending .account-row {
        grid-template-columns: 1fr;
        gap: 8px;
        min-height: 0;
    }

    body.student-session-pending .account-label {
        gap: 10px;
        font-size: 13px;
    }

    body.student-session-pending .account-row strong {
        font-size: 14px;
    }

    body.student-session-pending .locked-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    body.student-session-pending .locked-feature-card {
        min-height: 144px;
        border-radius: 20px;
        gap: 8px;
        padding: 18px 12px 16px;
    }

    body.student-session-pending .feature-lock {
        top: 10px;
        right: 10px;
        width: 22px;
        height: 22px;
    }

    body.student-session-pending .feature-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 4px;
    }

    body.student-session-pending .feature-icon .lucide-icon {
        width: 28px;
        height: 28px;
    }

    body.student-session-pending .locked-feature-card h3 {
        font-size: 15px;
    }

    body.student-session-pending .locked-feature-card p {
        max-width: 130px;
        font-size: 12px;
    }
}

@media (max-width: 430px) {
    body.student-session-pending .dashboard-content {
        padding-inline: 14px;
    }

    body.student-session-pending .dashboard-menu-link {
        min-height: 60px;
        font-size: 10px;
    }

    body.student-session-pending .dashboard-menu-link > .lucide-icon:first-child {
        width: 20px;
        height: 20px;
    }

    body.student-session-pending .pending-card {
        padding: 20px;
    }

    body.student-session-pending .pending-status-icon {
        width: 98px;
        height: 98px;
    }

    body.student-session-pending .locked-features-grid {
        grid-template-columns: 1fr;
    }

    body.student-session-pending .locked-feature-card {
        grid-template-columns: 58px minmax(0, 1fr);
        justify-items: start;
        min-height: 112px;
        text-align: left;
    }

    body.student-session-pending .locked-feature-card p {
        max-width: none;
    }
}

@media (max-width: 370px) {
    body.student-session-pending .dashboard-sidebar {
        right: 8px;
        left: 8px;
        border-radius: 18px;
    }

    body.student-session-pending .dashboard-menu {
        padding: 6px;
    }

    body.student-session-pending .dashboard-menu-link {
        min-height: 56px;
        padding-inline: 3px;
        font-size: 9.5px;
    }

    body.student-session-pending .account-info-card h2 {
        font-size: 15px;
    }
}

/* Refresh button styling */
.whatsapp-button.refresh-button {
    background: linear-gradient(135deg, rgba(125, 55, 252, 0.08) 0%, rgba(104, 37, 252, 0.12) 100%);
    border: 1px solid rgba(125, 55, 252, 0.35);
    color: #6825fc;
    box-shadow: none;
    margin-top: 10px;
    cursor: pointer;
}

.whatsapp-button.refresh-button:hover {
    background: linear-gradient(135deg, rgba(125, 55, 252, 0.12) 0%, rgba(104, 37, 252, 0.18) 100%);
    border-color: rgba(125, 55, 252, 0.55);
    box-shadow: 0 8px 16px rgba(102, 31, 240, 0.08);
    transform: translateY(-2px);
}

.whatsapp-button.refresh-button .lucide-icon {
    width: 17px;
    height: 17px;
}

body.student-session-pending .whatsapp-button.refresh-button {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    margin-top: 10px;
    cursor: pointer;
}

body.student-session-pending .whatsapp-button.refresh-button:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.38);
    box-shadow: 0 12px 24px rgba(118, 45, 255, 0.16);
    transform: translateY(-2px);
}
