:root {
    --brand-purple: #593068;
    --brand-black: #16121a;
    --brand-white: #ffffff;
    --brand-gray: #5c5565;
    --text-main: #221b28;
    --panel: rgba(255, 255, 255, 0.84);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-main);
    background:
        radial-gradient(circle at 10% 15%, rgba(89, 48, 104, 0.28) 0%, rgba(89, 48, 104, 0) 35%),
        radial-gradient(circle at 90% 80%, rgba(34, 17, 43, 0.22) 0%, rgba(34, 17, 43, 0) 40%),
        linear-gradient(135deg, #ffffff 0%, #efe4f5 52%, #e7ddef 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    position: relative;
    z-index: 2;
    width: min(1320px, 96vw);
    margin: 0 auto;
    padding: 2.5rem 0 4rem;
}

.hero {
    margin-bottom: 0.8rem;
}

.eyebrow {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-purple);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

h1 {
    margin: 0;
    font-size: clamp(1.9rem, 4vw, 3rem);
}



.steps-guide {
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(89, 48, 104, 0.22);
    border-radius: 16px;
    padding: 1rem 1.1rem 1rem 2rem;
    margin-top: 0.5rem;
}

.guide-panel {
    background: linear-gradient(155deg, rgba(249, 245, 252, 0.95), rgba(238, 229, 245, 0.92));
    border: 1px solid rgba(89, 48, 104, 0.2);
    box-shadow: 0 12px 26px rgba(89, 48, 104, 0.12);
}

.guide-kicker {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.72rem;
    font-weight: 800;
    color: #6d3d7f;
}

.professional-guide {
    list-style: none;
    margin: 0.9rem 0 0;
    padding: 0;
    background: transparent;
    border: 0;
    display: grid;
    gap: 0.65rem;
}

.professional-guide li {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 0.7rem;
    align-items: start;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(89, 48, 104, 0.14);
    border-radius: 14px;
    padding: 0.7rem;
}

.professional-guide p {
    margin: 0.24rem 0 0;
    color: var(--brand-gray);
    line-height: 1.35;
}

.step-badge {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.76rem;
    color: #ffffff;
    background: linear-gradient(140deg, #693b7b, #4f2a5d);
    box-shadow: 0 6px 12px rgba(79, 42, 93, 0.24);
}

.intro-two-col {
    display: grid;
    grid-template-columns: minmax(0, 1.72fr) minmax(340px, 0.78fr);
    gap: 1rem;
    align-items: stretch;
}

.intro-two-col.single-col {
    grid-template-columns: 1fr;
}

.process-evaluation-card {
    width: 100%;
    max-width: 460px;
    justify-self: end;
}

.panel {
    background: var(--panel);
    border: 1px solid rgba(89, 48, 104, 0.16);
    border-radius: 20px;
    padding: 1.3rem;
    backdrop-filter: blur(7px);
    margin-bottom: 1.1rem;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
    gap: 1rem;
    align-items: start;
}

.analysis-layout {
    grid-template-columns: minmax(0, 1.72fr) minmax(340px, 0.78fr);
    gap: 0.8rem;
}

.analysis-layout .panel {
    padding: 1.45rem;
}

.split-left,
.split-right {
    min-width: 0;
    min-height: 0;
    height: 100%;
}

.split-left {
    overflow: auto;
    padding-right: 0.2rem;
}

.split-right {
    position: static;
    max-height: none;
    overflow: auto;
    padding-right: 0.2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.is-hidden {
    display: none !important;
}

.analysis-loading {
    border: 1px solid rgba(89, 48, 104, 0.2);
    border-radius: 16px;
    padding: 1rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(242, 233, 248, 0.85));
}

.analysis-loading h2 {
    margin: 0 0 0.3rem;
}

.analysis-steps {
    list-style: none;
    margin: 0.8rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.6rem;
}

.analysis-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #41224f;
}

.analysis-row.is-done {
    color: #1f6a3b;
}

.analysis-track {
    height: 8px;
    border-radius: 999px;
    background: rgba(89, 48, 104, 0.15);
    overflow: hidden;
    margin-top: 0.3rem;
}

.analysis-fill {
    width: 0;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #7b4a8f, #b489c7);
    transition: width 0.35s linear;
}

.analysis-loading.is-complete .analysis-fill {
    width: 100% !important;
    transition: width 0.25s ease;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

input[type="text"],
input[type="email"],
input[type="url"] {
    width: 100%;
    padding: 0.75rem 0.8rem;
    border-radius: 10px;
    border: 1px solid rgba(89, 48, 104, 0.25);
    background: rgba(255, 255, 255, 0.85);
    color: var(--text-main);
}

.radio-group {
    border: 1px solid rgba(89, 48, 104, 0.16);
    border-radius: 14px;
    padding: 0.7rem 0.9rem;
    background: rgba(255, 255, 255, 0.5);
}

.radio-group legend {
    font-weight: 600;
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.q-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--brand-purple);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    flex-shrink: 0;
}

.conditional-sub {
    border-top: 1px solid rgba(89, 48, 104, 0.14);
    margin-top: 0.7rem;
    padding-top: 0.5rem;
    transition: opacity 0.25s ease, max-height 0.3s ease;
    overflow: hidden;
    max-height: 600px;
    opacity: 1;
}

.conditional-sub.is-hidden {
    max-height: 0;
    opacity: 0;
    margin: 0;
    padding: 0;
    border: none;
}

















.btn-primary {
    display: inline-block;
    background: linear-gradient(120deg, var(--brand-purple), #381e44);
    color: var(--brand-white);
    border: 1px solid rgba(56, 30, 68, 0.35);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    text-decoration: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.4;
    font-family: inherit;
}

.btn-primary:hover {
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-block;
    background: rgba(89, 48, 104, 0.08);
    color: var(--brand-purple);
    border: 1px solid rgba(89, 48, 104, 0.28);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    text-decoration: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.4;
    font-family: inherit;
}

.result-actions {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}







.muted {
    color: var(--brand-gray);
}

.category-block {
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid rgba(89, 48, 104, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.7);
}

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(22, 18, 26, 0.65);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay.is-hidden {
    display: none;
}

.modal-content {
    background: var(--panel);
    border: 1px solid rgba(89, 48, 104, 0.2);
    border-radius: 20px;
    padding: 1rem 1.5rem;
    max-width: 680px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.modal-close {
    position: absolute;
    top: 0.6rem;
    right: 0.8rem;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--brand-gray);
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-main);
}

.section-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
}

.section-button {
    text-align: left;
    border: 1px solid rgba(89, 48, 104, 0.22);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-main);
    padding: 0.58rem 0.65rem;
    cursor: pointer;
    display: grid;
    gap: 0.15rem;
}

.section-button small {
    color: var(--brand-gray);
}

.section-button.is-active {
    border-color: rgba(89, 48, 104, 0.45);
    background: linear-gradient(145deg, rgba(89, 48, 104, 0.16), rgba(255, 255, 255, 0.9));
}

.questionnaire-sections-form {
    margin-top: 1rem;
}

.questionnaire-sections-form.is-hidden {
    display: none;
}

.questionnaire-section.is-hidden {
    display: none;
}

.questionnaire-section h3 {
    margin-bottom: 0.25rem;
}

.questionnaire-section h4 {
    margin: 0;
}

.question-card {
    border-top: 1px solid rgba(89, 48, 104, 0.12);
    padding-top: 0.7rem;
    margin-top: 0.8rem;
}

.question-card:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.option-grid {
    display: grid;
    gap: 0.55rem;
}

.option-grid.cols-1 {
    grid-template-columns: 1fr;
}

.option-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.option-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.option-grid label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem;
    border-radius: 10px;
    background: rgba(89, 48, 104, 0.04);
}

.alert {
    margin: 0.8rem 0;
    background: rgba(255, 68, 68, 0.2);
    border: 1px solid rgba(255, 68, 68, 0.5);
    color: #ffd8d8;
    border-radius: 10px;
    padding: 0.8rem;
}

.score-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(89, 48, 104, 0.2);
    border-radius: 16px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
}

.rec-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0;
}

.global-stars-box {
    border: 1px solid rgba(89, 48, 104, 0.22);
    border-radius: 16px;
    padding: 0.6rem;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.86), rgba(241, 232, 247, 0.95));
    margin: 0.3rem 0;
}

.global-stars {
    margin: 0.35rem 0 0;
    color: #ca9c14;
    font-size: clamp(1.8rem, 4.2vw, 2.5rem);
    letter-spacing: 0.08em;
    line-height: 1;
}

.global-stars-meta {
    margin: 0.35rem 0 0;
    color: var(--brand-gray);
    font-weight: 700;
}

.result-topline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 0.7rem;
}

.result-topline h2 {
    margin: 0;
}

.compact-global-stars {
    margin: 0;
    min-width: 220px;
    max-width: 260px;
    padding: 0.65rem 0.8rem;
}

.compact-global-stars .global-stars {
    margin: 0.2rem 0 0;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
}

.compact-global-stars .global-stars-meta {
    margin: 0;
    font-size: 0.86rem;
}

.global-stars-inline {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.2rem;
}

.score-label {
    margin: 0;
    color: var(--brand-gray);
}

.score-percent {
    font-size: 2rem;
    margin: 0;
    font-weight: 800;
}

.stars {
    color: #f0de78;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
}

.summary-text {
    border-left: 3px solid #8f5da3;
    margin: 1rem 0;
    padding: 0.8rem 1rem;
    background: rgba(89, 48, 104, 0.22);
    border-radius: 8px;
}

.bars {
    display: grid;
    gap: 0.7rem;
}

.bar-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.3rem;
}

.bar-track {
    height: 12px;
    border-radius: 999px;
    background: rgba(89, 48, 104, 0.15);
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #8f5da3 0%, #ffffff 100%);
}

.tips {
    padding-left: 1.2rem;
}



.area-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

@media (max-width: 1250px) {
    .area-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.area-card {
    border: 1px solid rgba(89, 48, 104, 0.18);
    border-radius: 14px;
    padding: 0.95rem;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.78), rgba(246, 238, 250, 0.9));
    box-shadow: 0 8px 18px rgba(89, 48, 104, 0.08);
    cursor: pointer;
    position: relative;
}

.area-card h4 {
    margin: 0;
}

.area-card.is-completed {
    border-color: #593068;
    background: linear-gradient(145deg, rgba(89, 48, 104, 0.2), rgba(89, 48, 104, 0.08));
    position: relative;
}

.area-card .area-check {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #593068;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(89, 48, 104, 0.35);
}

.area-stars {
    margin: 0.18rem 0 0;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 1.1rem;
    line-height: 1;
}

.area-stars-value {
    color: var(--brand-gray);
    font-size: 0.78rem;
    font-weight: 700;
}

.stars-group {
    display: inline-flex;
    align-items: center;
    gap: 0.08rem;
}

.star {
    font-size: 1.15rem;
    line-height: 1;
}

.star.full {
    color: #ca9c14;
}

.star.empty {
    color: #cdbbd4;
}

.star.half {
    color: transparent;
    background: linear-gradient(90deg, #ca9c14 0 50%, #cdbbd4 50% 100%);
    -webkit-background-clip: text;
    background-clip: text;
}







.score-pill {
    font-size: 0.75rem;
    border-radius: 999px;
    padding: 0.2rem 0.55rem;
    font-weight: 700;
}

.state-good {
    color: #145c2f;
    background: rgba(42, 183, 95, 0.18);
}

.state-mid {
    color: #8a5b00;
    background: rgba(244, 180, 0, 0.2);
}

.state-low {
    color: #7f0f0f;
    background: rgba(219, 68, 55, 0.2);
}

.state-na {
    color: #5c5565;
    background: rgba(89, 48, 104, 0.1);
}

.mini-track {
    height: 9px;
    border-radius: 999px;
    background: rgba(89, 48, 104, 0.13);
    margin-top: 0.45rem;
    overflow: hidden;
}

.mini-fill {
    height: 100%;
    border-radius: 999px;
}

.mini-fill.state-good {
    background: linear-gradient(90deg, #31b968 0%, #7edfa3 100%);
}

.mini-fill.state-mid {
    background: linear-gradient(90deg, #f3ad14 0%, #f8d070 100%);
}

.mini-fill.state-low {
    background: linear-gradient(90deg, #df463d 0%, #ee8b84 100%);
}

.mini-fill.state-na {
    background: linear-gradient(90deg, #8f7a9b 0%, #b8a9c1 100%);
}





.metric-help {
    margin: 0.22rem 0 0;
    color: var(--brand-gray);
    font-size: 0.86rem;
    line-height: 1.25;
}

.metric-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.metric-help {
    font-size: 0.82rem;
    color: var(--brand-gray);
    margin: 0.2rem 0 0;
}

.bg-orb {
    position: fixed;
    z-index: 1;
    filter: blur(26px);
    opacity: 0.56;
    pointer-events: none;
}

.orb-1 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #7a4590 0%, #593068 65%, #41224f 100%);
    top: -140px;
    left: -140px;
    animation: edgeSlideLeft 12s linear infinite alternate;
}

.orb-2 {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #f7e8ff 0%, #c69ad7 60%, #8e5aa4 100%);
    top: -170px;
    right: -150px;
    animation: edgeSlideRight 16s linear infinite alternate-reverse;
}

.orb-3 {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, #3a2d41 0%, #24182a 70%, #140f18 100%);
    top: -120px;
    left: -110px;
    animation: edgeSlideLeft 18s linear infinite alternate-reverse;
}

@keyframes edgeSlideLeft {
    from {
        transform: translateY(0) scale(0.96);
    }
    to {
        transform: translateY(calc(100vh - 340px)) scale(1.08);
    }
}

@keyframes edgeSlideRight {
    from {
        transform: translateY(0) scale(0.95);
    }
    to {
        transform: translateY(calc(100vh - 390px)) scale(1.06);
    }
}

.reveal {
    animation: fadeUp 0.7s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 700px) {
    .container {
        width: 96vw;
        height: auto;
        min-height: 100vh;
        padding-top: 1.1rem;
    }

    .score-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .result-topline {
        flex-direction: column;
        align-items: stretch;
    }

    .compact-global-stars {
        max-width: none;
        min-width: 0;
    }

    .timing-grid {
        grid-template-columns: 1fr;
    }

    .split-layout {
        grid-template-columns: 1fr;
    }

    .intro-two-col {
        grid-template-columns: 1fr;
    }

    .process-evaluation-card {
        max-width: none;
        justify-self: stretch;
    }

    .section-nav {
        grid-template-columns: 1fr;
    }

    .area-grid {
        grid-template-columns: 1fr;
    }

    .split-right {
        position: static;
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }

    body {
        overflow-y: auto;
    }
}

.actions-hidden #exit-fullscreen-btn,
.actions-hidden #admin-btn {
    display: none !important;
}

.admin-visible #exit-fullscreen-btn,
.admin-visible #admin-btn {
    display: inline-block !important;
}

.final-report-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.final-report-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 680px) {
    .final-report-grid.cols-2 {
        grid-template-columns: 1fr;
    }
}

/* ===== Panel de administracion ===== */
.admin-panel {
    max-width: 1100px;
    margin: 0 auto;
}

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.admin-header h2 {
    margin: 0;
}

.admin-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.admin-search {
    max-width: 320px;
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.admin-table th,
.admin-table td {
    text-align: left;
    padding: 0.7rem 0.8rem;
    border-bottom: 1px solid rgba(89, 48, 104, 0.14);
}

.admin-table th {
    background: rgba(89, 48, 104, 0.08);
    color: #41224f;
    font-weight: 700;
    white-space: nowrap;
}

.admin-table tbody tr:hover {
    background: rgba(89, 48, 104, 0.05);
}

.admin-empty {
    text-align: center;
    color: var(--brand-gray);
    padding: 1.5rem !important;
}

.admin-type-pill {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 0.18rem 0.55rem;
    white-space: nowrap;
}

.admin-type-pill.has-web {
    color: #145c2f;
    background: rgba(42, 183, 95, 0.18);
}

.admin-type-pill.no-web {
    color: #8a5b00;
    background: rgba(244, 180, 0, 0.2);
}

.admin-detail-content {
    max-width: 95vw;
    width: 95vw;
    max-height: 92vh;
    height: 92vh;
    display: flex;
    flex-direction: column;
    padding: 1rem 2rem 1rem 1.5rem;
}

.admin-detail-body {
    flex: 1;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 1.2rem;
    overflow: hidden;
    min-height: 0;
}

.admin-detail-left {
    overflow-y: auto;
    padding-right: 0.5rem;
}

.admin-detail-right {
    overflow-y: auto;
    padding-left: 0.5rem;
    border-left: 1px solid rgba(89, 48, 104, 0.16);
}

@media (max-width: 800px) {
    .admin-detail-body {
        grid-template-columns: 1fr;
    }
    .admin-detail-right {
        border-left: none;
        padding-left: 0;
    }
}

.admin-detail-section {
    margin-bottom: 1.2rem;
}

.admin-detail-section h4 {
    margin: 0 0 0.5rem;
    color: #41224f;
    border-bottom: 1px solid rgba(89, 48, 104, 0.16);
    padding-bottom: 0.35rem;
}

.admin-detail-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    margin-bottom: 0.8rem;
}

.admin-detail-meta div {
    background: rgba(89, 48, 104, 0.06);
    border-radius: 10px;
    padding: 0.55rem 0.7rem;
}

.admin-detail-meta span {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--brand-gray);
    font-weight: 700;
}

.admin-q-item {
    border: 1px solid rgba(89, 48, 104, 0.14);
    border-radius: 10px;
    padding: 0.55rem 0.7rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.6);
}

.admin-q-item .q {
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.admin-q-item .a {
    color: var(--brand-gray);
}

.admin-score-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    border-bottom: 1px solid rgba(89, 48, 104, 0.1);
    padding: 0.45rem 0;
}

.admin-score-row:last-child {
    border-bottom: none;
}

.admin-rec {
    border-left: 3px solid #8f5da3;
    padding: 0.5rem 0.7rem;
    margin-bottom: 0.5rem;
    background: rgba(89, 48, 104, 0.1);
    border-radius: 8px;
}

.admin-rec h5 {
    margin: 0 0 0.2rem;
}

.admin-rec p {
    margin: 0;
    color: var(--brand-gray);
    font-size: 0.88rem;
}

@media (max-width: 680px) {
    .admin-detail-meta {
        grid-template-columns: 1fr;
    }
}

