/* Historia landing — scoped styles */

/* =====================================================================
   HERO
   ===================================================================== */
.hist-hero {
    background: linear-gradient(135deg, #576279 0%, #8754A1 55%, #C9A90A 100%);
    position: relative;
    overflow: hidden;
}
.hist-hero::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 340px; height: 340px;
    background: radial-gradient(circle, rgba(255,255,255,0.15), transparent);
    border-radius: 50%;
}
.hist-hero::after {
    content: '';
    position: absolute;
    bottom: -90px; left: -90px;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(201,169,10,0.20), transparent);
    border-radius: 50%;
}
.typed-word {
    display: inline-block;
    min-height: 1.2em;
    min-width: 1ch;
}

/* =====================================================================
   PILLARS — 3 tarjetas con colores de sub-area
   ===================================================================== */
.pillar-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: default;
}
.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12) !important;
}
.pillar-icon {
    width: 70px; height: 70px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    color: #fff;
}
.pillar-history    { background-color: #8754A1; }
.pillar-geography  { background-color: #16A085; }
.pillar-social     { background-color: #C9A90A; }

.border-top-history    { border-top: 4px solid #8754A1 !important; }
.border-top-geography  { border-top: 4px solid #16A085 !important; }
.border-top-social     { border-top: 4px solid #C9A90A !important; }

/* =====================================================================
   LIVE DEMO SIMULATOR
   ===================================================================== */
.demo-simulator-wrapper {
    max-width: 920px;
    margin: 0 auto;
    position: relative;
}
.demo-simulator-frame {
    width: 100%;
    aspect-ratio: 4 / 3;
    border: none;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(135, 84, 161, 0.25);
    background: #0a1a2e; /* matches simulator ocean bg while loading */
}
.demo-simulator-badge {
    position: absolute;
    top: -25px; left: 50%;
    transform: translateX(-50%);
    background: #C9A90A;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 30px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(201,169,10,0.4);
}

/* =====================================================================
   HOW IT WORKS
   ===================================================================== */
.how-step {
    position: relative;
    text-align: center;
}
.how-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px; height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8754A1, #16A085);
    color: #fff;
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
    box-shadow: 0 10px 30px rgba(135,84,161,0.25);
}

/* =====================================================================
   FAQ accordion — <h3> wrapper is structural (SEO heading hierarchy).
   ===================================================================== */
.faq-item h3 { margin: 0; padding: 0; font-size: inherit; font-weight: inherit; }
.faq-item {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}
.faq-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.faq-question {
    width: 100%;
    background: #fff;
    border: none;
    text-align: left;
    padding: 18px 22px;
    font-weight: 700;
    font-size: 1.05rem;
    color: #52617A;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.faq-question[aria-expanded="true"] { color: #8754A1; }
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-chevron { transition: transform 0.2s ease; color: #8754A1; }
.faq-answer {
    padding: 0 22px 18px 22px;
    color: #576279;
    line-height: 1.7;
    display: none;
}
.faq-answer.open { display: block; }
.faq-question:focus-visible { outline: 3px solid #C9A90A; outline-offset: -3px; }

@media (max-width: 767px) {
    .demo-simulator-frame { aspect-ratio: 3 / 4; }
}

/* =====================================================================
   HISTORIA PUBLICATIONS cards
   ===================================================================== */
.hist-post-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border-radius: 14px;
    overflow: hidden;
}
.hist-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(135, 84, 161, 0.14) !important;
}
.hist-post-img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    width: 100%;
}
.hist-post-card a { text-decoration: none; }

/* =====================================================================
   Accessibility — skip-link visible on focus only.
   ===================================================================== */
.hist-skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: #8754A1;
    color: #fff;
    padding: 10px 18px;
    border-radius: 0 0 8px 0;
    z-index: 9999;
    text-decoration: none;
    font-weight: 700;
}
.hist-skip-link:focus {
    top: 0;
    color: #fff;
    text-decoration: none;
}

/* =====================================================================
   TIMELINE PREVIEW — visual device inside the "why Umaximo" section
   shows a mini interactive timeline the student manipulates.
   ===================================================================== */
.hist-timeline {
    position: relative;
    padding: 18px 14px 20px 14px;
    background: linear-gradient(180deg, #F8F4EE 0%, #EDE2D0 100%);
    border-radius: 16px;
    overflow: hidden;
}
.hist-timeline::before {
    content: '';
    position: absolute;
    top: 58px; left: 20px; right: 20px;
    height: 3px;
    background: repeating-linear-gradient(90deg, #C9A90A 0 8px, transparent 8px 14px);
    opacity: 0.55;
}
.hist-timeline-title {
    font-size: 0.78rem;
    font-weight: 800;
    color: #8754A1;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
    text-align: center;
}
.hist-timeline-track {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 6px;
    padding: 0 6px;
}
.hist-timeline-event {
    position: relative;
    flex: 1;
    text-align: center;
    z-index: 1;
}
.hist-timeline-dot {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #8754A1;
    margin: 0 auto 8px auto;
    box-shadow: 0 4px 10px rgba(135,84,161,0.25);
    transition: transform 0.2s ease, background 0.2s ease;
}
.hist-timeline-event.active .hist-timeline-dot {
    background: #C9A90A;
    border-color: #C9A90A;
    transform: scale(1.15);
}
.hist-timeline-year {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 0.8rem;
    color: #52617A;
}
.hist-timeline-label {
    display: block;
    font-size: 0.68rem;
    color: #8898AA;
    line-height: 1.2;
    margin-top: 2px;
}
.hist-timeline-card {
    margin-top: 18px;
    padding: 14px 16px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    min-height: 86px;
}
.hist-timeline-card strong {
    display: block;
    color: #8754A1;
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.hist-timeline-card p {
    margin: 0;
    font-size: 0.85rem;
    color: #576279;
    line-height: 1.45;
}

/* =======================================================================
   PRODUCT PROTOTYPE (.proto-*) — interactive in-page mock of the teacher
   dashboard and student workstation. Scoped under .proto-* to avoid global
   collisions (patterns reused from /web/ingles, adapted for Historia).
   ======================================================================= */
.proto-stage {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 60px 20px;
    perspective: 1400px;
}
.proto-glow {
    position: absolute;
    inset: -40px -20px;
    background:
        radial-gradient(ellipse at 30% 45%, rgba(135, 84, 161, 0.20), transparent 55%),
        radial-gradient(ellipse at 75% 60%, rgba(22, 160, 133, 0.18), transparent 55%);
    filter: blur(20px);
    pointer-events: none;
    z-index: 0;
}
.proto-panels {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}
.proto-panel {
    background: #F4F5F9;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    flex: 0 0 auto;
    transition: transform 0.5s cubic-bezier(.22,.61,.36,1);
    box-shadow:
        0 30px 60px -18px rgba(30, 30, 60, 0.30),
        0 12px 28px -10px rgba(135, 84, 161, 0.18),
        0 2px 6px rgba(0, 0, 0, 0.05);
}
/* Fixed natural widths — each panel has room for its content to breathe */
.proto-panel-teacher {
    width: 560px;
    transform: rotateZ(-1.2deg) translateY(12px);
    transform-origin: right center;
    z-index: 1;
}
.proto-panel-student {
    width: 420px;
    transform: rotateZ(1.2deg) translateY(-12px);
    transform-origin: left center;
    z-index: 2;
    margin-left: -20px;
}
.proto-stage:hover .proto-panel-teacher,
.proto-stage:hover .proto-panel-student {
    transform: rotateZ(0deg) translateY(0);
}

/* --- TEACHER VIEW --- */
.proto-teacher {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
}
.proto-main { padding: 22px 24px 24px 24px; gap: 18px; overflow: hidden; }
.proto-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}
.proto-breadcrumb { font-size: 0.82rem; color: #8898AA; }
.proto-breadcrumb strong { color: #2D3748; font-weight: 700; }
.proto-breadcrumb .sep { margin: 0 6px; color: #CBD2D9; }
.proto-topbar-right { display: flex; align-items: center; gap: 14px; }
.proto-bell {
    position: relative;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #8898AA;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.proto-bell:hover { color: #8754A1; transform: translateY(-1px); }
.proto-bell-dot {
    position: absolute;
    top: 7px; right: 8px;
    width: 8px; height: 8px;
    background: #C9A90A;
    border: 2px solid #fff;
    border-radius: 50%;
}
.proto-avatar-circle {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8754A1, #16A085);
    color: #fff;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.proto-kpi-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 12px;
}
.proto-kpi {
    background: #fff;
    border-radius: 12px;
    padding: 12px 14px;
    box-shadow: 0 2px 10px rgba(135,84,161,0.06);
    border-left: 4px solid #8754A1;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.proto-kpi:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(135,84,161,0.12);
}
.proto-kpi.accent-teal   { border-left-color: #16A085; }
.proto-kpi.accent-gold   { border-left-color: #C9A90A; }
.proto-kpi-label { color: #8898AA; font-size: 0.7rem; line-height: 1.2; font-weight: 600; margin-bottom: 4px; }
.proto-kpi-value {
    font-size: 1.55rem;
    font-weight: 900;
    color: #2D3748;
    line-height: 1.1;
    font-family: 'Nunito', sans-serif;
}
.proto-kpi-sub { font-size: 0.72rem; color: #52617A; margin-top: 2px; }
.proto-kpi-sub .up { color: #16A085; font-weight: 700; }
.proto-kpi-cta {
    margin-top: 10px;
    border: none;
    background: linear-gradient(135deg, #8754A1, #16A085);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(135, 84, 161, 0.22);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.proto-kpi-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(135, 84, 161, 0.3);
}
.proto-kpi-urgent {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 800;
    color: #C24919;
    background: #FFEBE3;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 6px;
    vertical-align: middle;
    letter-spacing: 0.2px;
}

/* Inner teacher sub-grid */
.proto-subgrid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.proto-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px 18px;
    box-shadow: 0 2px 10px rgba(135, 84, 161, 0.06);
}
.proto-card-title {
    font-size: 0.92rem;
    font-weight: 800;
    color: #2D3748;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.proto-card-title .proto-card-tag {
    font-size: 0.68rem;
    background: #F2EEF7;
    color: #8754A1;
    padding: 3px 10px;
    border-radius: 12px;
    font-weight: 700;
    white-space: nowrap;
}
.proto-topic-row {
    display: grid;
    grid-template-columns: 36px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px 8px;
    border-radius: 10px;
    transition: background 0.15s ease;
}
.proto-topic-row + .proto-topic-row {
    margin-top: 4px;
    border-top: 1px solid #F3F4F8;
    padding-top: 14px;
}
.proto-topic-row:hover { background: #FAFBFD; }
.proto-topic-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.92rem;
    flex-shrink: 0;
}
.proto-topic-body { min-width: 0; }
.proto-topic-body strong {
    display: block;
    font-size: 0.88rem;
    color: #2D3748;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2px;
}
.proto-topic-body span { font-size: 0.72rem; color: #8898AA; }
.proto-topic-cta {
    border: 1px solid #E0D5EA;
    background: #fff;
    color: #8754A1;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, gap 0.18s ease, padding 0.18s ease;
}
.proto-topic-cta::after {
    content: '→';
    font-weight: 900;
    font-size: 0.85rem;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition: opacity 0.18s ease, max-width 0.18s ease;
}
.proto-topic-cta:hover,
.proto-topic-row:hover .proto-topic-cta {
    background: #8754A1;
    border-color: #8754A1;
    color: #fff;
    padding-right: 14px;
}
.proto-topic-cta:hover::after,
.proto-topic-row:hover .proto-topic-cta::after {
    opacity: 1;
    max-width: 14px;
}

/* Students list (compact inside teacher panel) */
.proto-students { list-style: none; padding: 0; margin: 0; }
.proto-student {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 7px 8px;
    border-bottom: 1px solid #F3F4F8;
    transition: background 0.15s ease;
    cursor: pointer;
}
.proto-student:last-child { border-bottom: none; }
.proto-student:hover { background: #FAFAFE; }
.proto-student-initials {
    width: 28px; height: 28px;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.68rem;
}
.proto-student-info strong { display: block; font-size: 0.86rem; color: #2D3748; font-weight: 700; }
.proto-student-badge {
    font-size: 0.66rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}
.proto-badge-history    { background: #8754A1; }
.proto-badge-geography  { background: #16A085; }
.proto-badge-social     { background: #C9A90A; }

/* Trust-signal chip row above the stage */
.proto-meta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0 auto 24px auto;
    max-width: 960px;
}
.proto-meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #EEE9F5;
    color: #52617A;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(135,84,161,0.06);
}
.proto-meta-chip i { color: #8754A1; }

/* --- STUDENT VIEW --- */
.proto-student-view {
    background: linear-gradient(180deg, #FDFBFF 0%, #F0EEF5 100%);
    min-height: 560px;
    padding: 22px 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
.proto-student-main { display: flex; flex-direction: column; }
.proto-topstrip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 14px;
    padding: 10px 14px;
    box-shadow: 0 2px 8px rgba(135,84,161,0.08);
    margin-bottom: 14px;
}
.proto-player { display: flex; align-items: center; gap: 10px; }
.proto-player-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C9A90A, #8754A1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 12px rgba(135,84,161,0.25);
}
.proto-player-meta strong { color: #2D3748; font-size: 0.92rem; font-weight: 800; display: block; }
.proto-xp {
    width: 140px;
    height: 6px;
    background: #F0F2F7;
    border-radius: 4px;
    margin-top: 3px;
    overflow: hidden;
}
.proto-xp > div {
    height: 100%;
    width: 68%;
    background: linear-gradient(90deg, #8754A1, #16A085);
    border-radius: 4px;
}
.proto-chips { display: flex; gap: 8px; }
.proto-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #FFF6E7;
    color: #C47C0A;
    font-weight: 800;
    font-size: 0.82rem;
    padding: 5px 11px;
    border-radius: 20px;
}
.proto-chip.streak { background: #FFE8E2; color: #E64526; }

/* Exercise card */
.proto-exercise {
    background: #fff;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 6px 20px rgba(135,84,161,0.1);
    flex: 1;
    display: flex;
    flex-direction: column;
}
.proto-exercise-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.proto-exercise-title { font-size: 0.82rem; font-weight: 800; color: #8754A1; letter-spacing: 0.2px; }
.proto-exercise-counter { font-size: 0.78rem; color: #8898AA; font-weight: 600; }

/* Stimulus — the "artifact card" that poses the question */
.proto-artifact {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: linear-gradient(135deg, #F6F0FB, #F0EEE5);
    border-radius: 14px;
    margin-bottom: 14px;
    position: relative;
    overflow: hidden;
}
.proto-artifact::before {
    content: '';
    position: absolute;
    top: -30px; right: -30px;
    width: 90px; height: 90px;
    background: radial-gradient(circle, rgba(201,169,10,0.18), transparent);
    border-radius: 50%;
    pointer-events: none;
}
.proto-artifact-img {
    width: 70px; height: 70px;
    border-radius: 12px;
    background: linear-gradient(135deg, #8754A1, #16A085);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(135,84,161,0.25);
    position: relative;
    z-index: 1;
}
.proto-artifact-text {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}
.proto-artifact-text strong {
    display: block;
    font-size: 0.95rem;
    color: #2D3748;
    line-height: 1.3;
    margin-bottom: 4px;
}
.proto-artifact-text small {
    font-size: 0.78rem;
    color: #8898AA;
    font-weight: 600;
    font-style: italic;
}

/* Alternatives grid — 2x2 with visual icon per option */
.proto-alts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 14px;
}
.proto-alt {
    background: #fff;
    border: 2px solid #EEF0F5;
    border-radius: 12px;
    padding: 12px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}
.proto-alt:hover {
    border-color: #8754A1;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(135,84,161,0.14);
}
.proto-alt-emoji {
    font-size: 1.8rem;
    line-height: 1;
    flex-shrink: 0;
}
.proto-alt-label {
    font-size: 0.8rem;
    font-weight: 800;
    color: #2D3748;
    line-height: 1.25;
}
.proto-alt.correct {
    border-color: #16A085;
    background: #E8FAF5;
    animation: proto-shake-ok 0.4s ease;
}
.proto-alt.wrong {
    border-color: #E64526;
    background: #FFE8E2;
    animation: proto-shake-err 0.4s ease;
}
@keyframes proto-shake-ok {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.05); }
}
@keyframes proto-shake-err {
    0%, 100% { transform: translateX(0); }
    25%      { transform: translateX(-5px); }
    75%      { transform: translateX(5px); }
}
.proto-alt.disabled { pointer-events: none; opacity: 0.55; }
.proto-feedback {
    min-height: 30px;
    text-align: center;
    font-weight: 800;
    font-size: 0.88rem;
    padding: 8px 12px;
    border-radius: 10px;
    margin-bottom: 12px;
    display: none;
}
.proto-feedback.show { display: block; }
.proto-feedback.ok  { background: #E8FAF5; color: #16A085; }
.proto-feedback.err { background: #FFE8E2; color: #E64526; }

.proto-progress { height: 10px; background: #F0F2F7; border-radius: 6px; overflow: hidden; }
.proto-progress > div {
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, #16A085, #8754A1);
    border-radius: 6px;
    transition: width 0.3s ease;
}
.proto-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: #8898AA;
    font-weight: 600;
    margin-top: 6px;
}

/* Tablet (<1060px): stack panels vertically */
@media (max-width: 1059px) {
    .proto-stage { padding: 20px 10px 40px 10px; }
    .proto-panels { flex-direction: column; gap: 28px; }
    .proto-panel {
        width: 100%;
        max-width: 560px;
        margin-left: 0 !important;
        transform: none !important;
    }
    .proto-stage:hover .proto-panel { transform: none !important; }
}

/* Mobile (<576px): tighten spacings */
@media (max-width: 575px) {
    .proto-main { padding: 14px; }
    .proto-kpi-row { grid-template-columns: 1fr; }
    .proto-kpi-value { font-size: 1.35rem; }
    .proto-student-view { padding: 14px; }
    .proto-alts { grid-template-columns: 1fr; }
    .proto-artifact-img { width: 56px; height: 56px; font-size: 2rem; }
    .hist-timeline-label { display: none; }
}
