:root {
    --ink-900: #182033;
    --ink-700: #4e5b72;
    --sand-50: #f7f3ec;
    --sand-100: #ede3d2;
    --sea-700: #1f2d4b;
    --sea-800: #11192b;
    --clay-500: #6e2830;
    --gold-400: #b79252;
    --forest-600: #32483d;
    --slate-300: #d6dce5;
    --white: #ffffff;
    --shadow-soft: 0 28px 70px rgba(15, 22, 38, 0.11);
    --shadow-card: 0 20px 38px rgba(15, 22, 38, 0.08);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 14px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(83, 109, 254, 0.4);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(83, 109, 254, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(83, 109, 254, 0);
    }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink-900);
    font-family: 'Source Sans 3', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(183, 146, 82, 0.24), transparent 28%),
        radial-gradient(circle at 80% 10%, rgba(110, 40, 48, 0.14), transparent 22%),
        linear-gradient(180deg, #fcfaf6 0%, #f4eee4 48%, #edf1f6 100%);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.public-shell,
.admin-shell {
    min-height: 100vh;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(22px);
    background: rgba(250, 246, 239, 0.9);
    border-bottom: 1px solid rgba(183, 146, 82, 0.18);
}

.institution-strip {
    background: linear-gradient(90deg, #11192b 0%, #1f2d4b 48%, #6e2830 100%);
    color: rgba(255, 255, 255, 0.88);
}

.institution-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0.6rem 1.5rem;
    font-size: 0.86rem;
    letter-spacing: 0.04em;
}

.site-header__inner,
.site-footer__inner,
.hero-section,
.section-block,
.auth-landing {
    max-width: 1240px;
    margin: 0 auto;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
}

.site-footer__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 2.5rem;
    padding: 3rem 1.5rem 1.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

.brand strong,
.brand small {
    display: block;
}

.brand small {
    color: var(--ink-700);
    font-size: 0.84rem;
}

.brand__seal {
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 18px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--white);
    background: linear-gradient(145deg, #152340, #24395f 60%, #b79252 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: var(--shadow-card);
}

.brand--inverse {
    color: var(--white);
}

.brand--inverse small {
    color: rgba(255, 255, 255, 0.72);
}

.site-nav,
.cta-row,
.admin-topbar__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.site-nav a:not(.button) {
    padding: 0.35rem 0.2rem;
    color: var(--ink-700);
    font-weight: 600;
}

/* ============================================
   PROFESSIONAL BUTTON SYSTEM
   ============================================ */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 42px;
    padding: 0.55rem 1.2rem;
    border: none;
    border-radius: 10px;
    background: #2d3748;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.88rem;
    font-family: 'Source Sans 3', -apple-system, sans-serif;
    letter-spacing: 0.01em;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.1);
    line-height: 1.4;
}

.button:hover {
    background: #1a202c;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.06),
        0 2px 4px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.button:active {
    transform: translateY(0);
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.1);
}

.button:focus-visible {
    outline: 2px solid #2d3748;
    outline-offset: 2px;
}

/* ---- Ghost ---- */
.button--ghost {
    background: transparent;
    color: #2d3748;
    border: 1.5px solid #e2e8f0;
    box-shadow: none;
}

.button--ghost:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
    box-shadow: none;
    transform: translateY(-1px);
}

/* ---- Small ---- */
.button--small {
    min-height: 36px;
    padding: 0.4rem 0.85rem;
    font-size: 0.8rem;
    border-radius: 8px;
}

.eyebrow,
.card-kicker,
.panel-chip {
    margin: 0 0 0.65rem;
    color: #b79252;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-section,
.section-block,
.auth-landing {
    padding: 2rem 1.5rem;
}

.hero-grid,
.split-section,
.path-grid,
.auth-landing__grid,
.admin-grid {
    display: grid;
    gap: 1.5rem;
}

.hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    align-items: start;
    padding-top: 2rem;
}

.hero-title,
.section-head h2,
.site-footer h2,
.admin-card h2,
.metric-card strong,
.auth-panel h2,
.panel-card h3,
.profile-preview h3,
.path-card h3,
.story-card p,
.admin-topbar h1 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
}

.hero-title {
    max-width: 12ch;
    font-size: clamp(2.9rem, 5vw, 5rem);
    line-height: 0.98;
}

.hero-copy,
.section-copy,
.panel-copy,
.panel-card p,
.benefit-card p,
.story-card span,
.site-footer p,
.auth-brief p,
.metric-card span,
.metric-card p,
.admin-card p,
.stack-item span,
.stack-item p {
    color: var(--ink-700);
    line-height: 1.6;
}

.hero-metrics,
.benefit-grid,
.alumni-grid,
.stats-grid,
.story-grid,
.metric-grid,
.kanban-grid,
.check-grid,
.form-grid,
.process-grid {
    display: grid;
    gap: 1rem;
}

.hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 2rem 0;
}

.hero-metric,
.benefit-card,
.alumni-card,
.panel-card,
.process-card,
.profile-preview,
.path-card,
.story-card,
.auth-brief,
.metric-card,
.admin-card,
.kanban-card,
.auth-panel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(183, 146, 82, 0.16);
    box-shadow: var(--shadow-soft);
}

.hero-metric::before,
.benefit-card::before,
.panel-card::before,
.process-card::before,
.path-card::before,
.story-card::before,
.metric-card::before,
.admin-card::before,
.kanban-card::before,
.auth-brief::before,
.auth-panel::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 76px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-400), rgba(183, 146, 82, 0));
}

.hero-metric,
.benefit-card,
.panel-card,
.process-card,
.path-card,
.story-card,
.metric-card,
.admin-card,
.kanban-card,
.auth-brief,
.auth-panel {
    padding: 1.35rem;
}

.hero-metric strong,
.stat-card strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.hero-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 150px;
    gap: 1rem;
}

.gallery-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    border-radius: var(--radius-xl);
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

.gallery-card--feature {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-card--coral {
    background: linear-gradient(145deg, #6e2830, #2d1115);
}

.gallery-card--ocean {
    background: linear-gradient(145deg, #1f2d4b, #11192b);
}

.gallery-card--sun {
    background: linear-gradient(145deg, #b79252, #6c5424);
}

.gallery-card--forest {
    background: linear-gradient(145deg, #32483d, #1b2822);
}

.gallery-card--slate {
    background: linear-gradient(145deg, #42506a, #1f293d);
}

.gallery-avatar,
.alumni-avatar {
    display: grid;
    place-items: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 999px;
    font-weight: 800;
}

.gallery-avatar {
    margin-bottom: auto;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gallery-meta {
    margin: 0 0 0.25rem;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gallery-card h3,
.gallery-card p {
    margin: 0;
}

.gallery-card p:last-child {
    margin-top: 0.25rem;
    color: rgba(255, 255, 255, 0.8);
}

.auth-panel,
.auth-panel--admin {
    border-radius: 16px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(119, 29, 29, 0.08);
    box-shadow: 0 2px 8px rgba(119, 29, 29, 0.04), 0 4px 16px rgba(119, 29, 29, 0.08);
}

.auth-panel {
    padding: 2rem;
}

.auth-panel--admin {
    padding: 2rem;
    align-self: center;
}

.auth-panel h2 {
    color: #771d1d;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.mini-form {
    display: grid;
    gap: 1.25rem;
}

.mini-form button,
.mini-form .button {
    width: 100%;
    min-height: 44px;
    margin-top: 0.5rem;
    background: #2d3748 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 0.55rem 1.5rem !important;
    border-radius: 10px !important;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.mini-form button:hover,
.mini-form .button:hover {
    background: #1a202c !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

.mini-form button:active,
.mini-form .button:active {
    transform: translateY(0) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) !important;
}

/* ============================================
   PROFESSIONAL FORM SYSTEM v2
   ============================================ */

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

@media (max-width: 640px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-grid .field {
        grid-column: auto !important;
    }
}

.form-grid .field:last-child,
.form-grid .field:nth-last-child(2) {
    grid-column: 1 / -1;
}

/* ---- FORM SECTION CARDS ---- */
.form-section {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.form-section:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e0;
}

.form-section:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.form-section__title {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin: 0 0 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1.5px solid #edf2f7;
    font-size: 0.82rem;
    font-weight: 700;
    color: #2d3748;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form-section__title::before {
    content: '';
    display: block;
    width: 3px;
    height: 16px;
    border-radius: 2px;
    background: #2d3748;
    flex-shrink: 0;
}

.form-section .form-grid {
    gap: 1rem;
}

.form-section + .form-section {
    margin-top: 0;
}

@media (max-width: 640px) {
    .form-section {
        padding: 1.25rem 1rem;
    }
}

/* Form wrapper card - creates contrast with inner form-sections */
.employer-sub-card--form {
    background: #f4f6f9;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: none;
}

/* ---- FIELD ---- */
.field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    position: relative;
}

.field label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #4a5568;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.field label .required-star {
    color: #e53e3e;
    font-weight: 500;
    margin-left: 0.15rem;
}

.field label .optional-tag {
    font-size: 0.65rem;
    font-weight: 500;
    color: #a0aec0;
    text-transform: none;
    letter-spacing: 0.02em;
    margin-left: auto;
}

/* ---- INPUT ---- */
.input-control {
    appearance: none;
    width: 100%;
    min-height: 44px;
    padding: 0.55rem 0.85rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    background: #ffffff;
    color: #1a202c;
    font-size: 0.9rem;
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.5;
    transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.input-control::placeholder {
    color: #a0aec0;
    font-weight: 400;
}

.input-control:hover {
    border-color: #cbd5e0;
}

.input-control:focus {
    outline: none;
    border-color: #2d3748;
    background: #ffffff;
    box-shadow:
        0 0 0 3px rgba(45, 55, 72, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.04);
}

/* ---- TEXTAREA ---- */
.input-control--textarea {
    min-height: 110px;
    padding: 0.65rem 0.85rem;
    resize: vertical;
    line-height: 1.6;
}

/* ---- SELECT ---- */
select.input-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23718096' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

select.input-control option {
    color: #1a202c;
    font-weight: 400;
}

/* ---- FILE INPUT ---- */
input[type="file"].input-control {
    padding: 0.45rem 0.85rem;
    cursor: pointer;
    color: #4a5568;
}

input[type="file"].input-control::file-selector-button {
    padding: 0.35rem 0.75rem;
    border: none;
    border-radius: 6px;
    background: #edf2f7;
    color: #2d3748;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    margin-right: 0.75rem;
    transition: background 0.15s ease;
}

input[type="file"].input-control::file-selector-button:hover {
    background: #e2e8f0;
}

/* ---- ALERT / ERROR ---- */
.admin-alert {
    margin-bottom: 1.25rem;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.5;
    border: 1px solid #edf2f7;
    background: #f7fafc;
    color: #2d3748;
}

.admin-alert--metro {
    background: rgba(183, 146, 82, 0.08);
    color: #6b4f17;
    border: 1px solid rgba(183, 146, 82, 0.18);
}

.error-summary {
    margin-bottom: 1.25rem;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    background: rgba(229, 62, 62, 0.05);
    border: 1px solid rgba(229, 62, 62, 0.15);
    color: #9b2c2c;
    font-size: 0.85rem;
    line-height: 1.6;
}

.error-summary p {
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.error-summary p::before {
    content: '•';
    color: #e53e3e;
    font-weight: 700;
    flex-shrink: 0;
}

/* ---- CHECK / TOGGLE ---- */
.check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
}

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

.check-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    border: 1.5px solid #edf2f7;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.15s ease;
    user-select: none;
}

.check-item:hover {
    border-color: #cbd5e0;
    background: #f7fafc;
}

.check-item:has(input:checked) {
    border-color: #2d3748;
    background: rgba(45, 55, 72, 0.04);
}

.check-item input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1.5px solid #cbd5e0;
    border-radius: 5px;
    background: #ffffff;
    cursor: pointer;
    flex-shrink: 0;
    margin: 0;
    position: relative;
    transition: all 0.15s ease;
}

.check-item input[type="checkbox"]:checked {
    border-color: #2d3748;
    background: #2d3748;
}

.check-item input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.check-item--align-start {
    align-items: flex-start;
}

.check-item--align-start input[type="checkbox"] {
    margin-top: 0.15rem;
}

/* ---- CAPTCHA ---- */
.field--captcha {
    grid-column: 1 / -1;
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1.5px solid #edf2f7;
}

.field--captcha label {
    color: #4a5568;
    font-weight: 700;
    font-size: 0.88rem;
}

.captcha-wrap {
    position: relative;
}

.captcha-hint {
    position: absolute;
    right: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    color: #a0aec0;
    letter-spacing: 0.04em;
    pointer-events: none;
}

.captcha-wrap .input-control {
    padding-right: 7.5rem;
}

/* ---- FORM ACTIONS ---- */
.form-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1.5px solid #edf2f7;
}

.form-actions .button {
    flex-shrink: 0;
}
    font-weight: 700;
}

.panel-note {
    display: inline-flex;
    padding: 0.9rem 1rem;
    background: rgba(183, 146, 82, 0.14);
    color: #705623;
    line-height: 1.5;
}

.panel-note--wide {
    display: flex;
    width: 100%;
    margin-top: 1rem;
}

.section-block {
    margin-top: 1rem;
}

.section-block--accent {
    background: linear-gradient(180deg, rgba(17, 25, 43, 0.96), rgba(31, 45, 75, 0.98));
    border-radius: 32px;
    color: var(--white);
}

.section-block--accent .eyebrow,
.section-block--accent .section-copy,
.section-block--accent .panel-card p,
.section-block--accent .panel-note {
    color: rgba(255, 255, 255, 0.84);
}

.section-block--accent .panel-card,
.section-block--accent .process-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.benefit-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.benefit-grid--stacked {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.benefit-card {
    padding: 2rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(119, 29, 29, 0.08);
    box-shadow: 0 2px 8px rgba(119, 29, 29, 0.04), 0 4px 16px rgba(119, 29, 29, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(119, 29, 29, 0.1), 0 8px 24px rgba(119, 29, 29, 0.12);
}

.benefit-card::before {
    height: 4px;
    background: linear-gradient(90deg, #b79252, rgba(183, 146, 82, 0));
}

.benefit-card h3,
.alumni-card h3,
.process-card h3,
.path-card h3,
.kanban-card h3 {
    margin: 0 0 0.45rem;
}

.benefit-card h3 {
    color: #771d1d;
    font-size: 1.1rem;
    font-weight: 700;
}

.benefit-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.alumni-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 1.25rem;
}

.alumni-card,
.profile-preview__header,
.stack-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.alumni-card {
    padding: 1rem;
}

.alumni-avatar {
    flex: 0 0 auto;
    background: linear-gradient(135deg, rgba(24, 78, 87, 0.18), rgba(203, 109, 81, 0.32));
    color: var(--sea-800);
}

.alumni-avatar--hidden {
    background: linear-gradient(135deg, rgba(214, 221, 228, 0.8), rgba(117, 129, 141, 0.85));
}

.alumni-avatar--hidden::before {
    content: '';
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 999px 999px 40% 40%;
    background: rgba(255, 255, 255, 0.85);
}

.process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 1.25rem;
}

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

.step-list {
    margin: 1rem 0 0;
    padding-left: 1.1rem;
    color: inherit;
    line-height: 1.8;
}

.profile-preview__body {
    display: grid;
    gap: 0.8rem;
    margin: 1.2rem 0;
}

.profile-preview__body p {
    margin: 0;
}

.catalog-stack {
    display: grid;
    gap: 1rem;
}

.token-list {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
}

.path-grid,
.stats-grid,
.metric-grid,
.kanban-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 1.25rem 0;
}

.stat-card {
    display: grid;
    gap: 0.25rem;
    padding: 1.1rem 1.2rem;
    background: rgba(31, 45, 75, 0.08);
}

.stat-card strong {
    font-size: 2rem;
    color: var(--sea-800);
}

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

.story-card p {
    font-size: 1.05rem;
    line-height: 1.5;
}

.site-footer {
    margin-top: 2rem;
    border-top: 1px solid rgba(183, 146, 82, 0.18);
    background: rgba(247, 243, 236, 0.92);
}

.footer-note {
    max-width: 340px;
}

.auth-landing__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: start;
    gap: 2rem;
}

@media (max-width: 992px) {
    .auth-landing__grid {
        grid-template-columns: 1fr;
    }
}

.auth-brief {
    border-radius: 16px;
}

.auth-brief::before {
    height: 4px;
    background: linear-gradient(90deg, #b79252, rgba(183, 146, 82, 0));
}

.auth-brief h1 {
    color: #771d1d;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.1;
    margin: 1rem 0;
}

.auth-brief > p:first-of-type {
    color: #b79252;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.auth-brief > p:nth-of-type(2) {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.admin-shell {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    background: #eef1f6;
}

@media (max-width: 640px) {
    .admin-shell--dashboard {
        display: block !important;
        grid-template-columns: 1fr !important;
        overflow-x: hidden;
    }
}

.site-footer {
    grid-column: 2 / -1;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.admin-sidebar {
    padding: 1.5rem;
    background: linear-gradient(180deg, #11192b 0%, #1f2d4b 72%, #6e2830 100%);
}

.admin-nav {
    display: grid;
    gap: 0.4rem;
    margin: 2rem 0;
}

.admin-nav a {
    padding: 0.95rem 1rem;
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.82);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.admin-nav .is-active,
.admin-nav a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    transform: translateX(4px);
}

.admin-sidebar__card {
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(183, 146, 82, 0.22);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.admin-sidebar__card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(183, 146, 82, 0.35);
    transform: translateY(-2px);
}

.admin-main {
    padding: 1.5rem;
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.admin-alert {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    background: rgba(31, 45, 75, 0.06);
    color: #1f2d4b;
    font-weight: 600;
    font-size: 0.88rem;
    line-height: 1.5;
    border: 1px solid rgba(31, 45, 75, 0.1);
}

.admin-alert--metro {
    background: rgba(183, 146, 82, 0.1);
    color: #7a5c1e;
    border: 1px solid rgba(183, 146, 82, 0.25);
}

.error-summary {
    display: grid;
    gap: 0.45rem;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    background: rgba(220, 53, 69, 0.06);
    color: #a12b38;
    font-size: 0.88rem;
    border: 1px solid rgba(220, 53, 69, 0.12);
}

.error-summary p {
    margin: 0;
    line-height: 1.5;
}
    border-radius: 18px;
    background: rgba(155, 42, 26, 0.08);
    color: #8a2f20;
}

.error-summary p {
    margin: 0;
}

.metric-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 1.5rem;
}

.metric-card strong {
    display: block;
    margin: 0.45rem 0;
    font-size: 2.6rem;
    color: var(--sea-800);
}

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

.admin-card--wide {
    grid-column: span 2;
}

.card-heading {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.9rem;
    background: rgba(31, 45, 75, 0.12);
    color: var(--sea-800);
    font-size: 0.84rem;
    font-weight: 800;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 999px;
    box-shadow: 0 2px 4px rgba(31, 45, 75, 0.08);
}

.status-pill:hover {
    background: rgba(31, 45, 75, 0.18);
    transform: scale(1.03);
    box-shadow: 0 4px 8px rgba(31, 45, 75, 0.12);
}

.status-pill--warning {
    background: rgba(203, 109, 81, 0.15);
    color: #8a452f;
}

.status-pill--success {
    background: rgba(40, 91, 78, 0.16);
    color: var(--forest-600);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 0.95rem 0.5rem;
    border-bottom: 1px solid rgba(24, 78, 87, 0.08);
    text-align: left;
}

.stack-list {
    display: grid;
    gap: 0.8rem;
}

.stack-item {
    justify-content: space-between;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(31, 45, 75, 0.05);
}

.stack-item--column {
    align-items: start;
    flex-direction: column;
}

.kanban-card {
    background: linear-gradient(180deg, rgba(24, 78, 87, 0.08), rgba(24, 78, 87, 0.02));
}

@media (max-width: 1120px) {
    .hero-grid,
    .split-section,
    .auth-landing__grid,
    .admin-shell,
    .metric-grid,
    .benefit-grid,
    .alumni-grid,
    .process-grid,
    .admin-grid,
    .path-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .admin-card--wide,
    .gallery-card--feature {
        grid-column: span 1;
    }

    .gallery-card--feature {
        grid-row: span 1;
    }
}

@media (max-width: 760px) {
    .site-header__inner,
    .site-footer__inner,
    .admin-topbar,
    .section-head {
        align-items: start;
        flex-direction: column;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-gallery,
    .check-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .site-nav {
        width: 100%;
    }

    .site-nav a:not(.button) {
        padding: 0.2rem 0;
    }
}

/* ==========================================================================
   BESPOKE EDITORIAL & HIGH-END INSTITUTIONAL STYLES (FLDCH & INEF)
   ========================================================================== */

/* 1. Global Reset & Variables Overrides for Deeper Prestigous Vibe */
:root {
    --color-primary: #121f38;     /* Midnight Navy */
    --color-primary-light: #24395e;
    --color-accent: #6e2830;      /* Rich Oxblood Burgundy */
    --color-gold: #b79252;        /* Real Brassy Academic Gold */
    --color-gold-light: #eadecd;  /* Warm Linen Marble */
    --color-sand: #faf7f2;        /* Pearl Alabaster */
    --color-text-dark: #1e2533;
    --color-text-muted: #5e6b7d;
    --shadow-bespoke: 0 32px 80px rgba(18, 25, 43, 0.05), 0 4px 16px rgba(18, 25, 43, 0.02);
    --border-bespoke: 1px solid rgba(183, 146, 82, 0.16);
}

/* 2. Hero Section - Editorial layout */
.editorial-hero {
    position: relative;
    padding: 5.5rem 1.5rem 6.5rem;
    max-width: 1240px;
    margin: 0 auto;
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4.5rem;
    align-items: start;
}

/* Academic Crest & Hierarchy Branding */
.academic-crest {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    margin-bottom: 2rem;
}

.crest-monogram {
    display: grid;
    place-items: center;
    width: 2.85rem;
    height: 2.85rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: var(--white);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 20px rgba(18, 31, 56, 0.15);
}

.crest-text {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent);
    border-bottom: 1px solid rgba(110, 40, 48, 0.2);
    padding-bottom: 0.15rem;
}

.section-tag {
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.editorial-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.4rem;
    font-weight: 500;
    line-height: 1.15;
    color: var(--color-primary);
    margin: 0 0 1.8rem;
    letter-spacing: -0.01em;
}

.editorial-intro {
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--color-text-dark);
    margin-bottom: 2rem;
}

.editorial-intro strong {
    color: var(--color-accent);
    font-weight: 700;
}

/* Pull-Quotes styles */
.director-quote {
    position: relative;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4c3237;
    margin: 2.5rem 0;
    padding-left: 2rem;
    border-left: 2px solid var(--color-gold);
}

.director-quote::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 2px;
    background: var(--color-accent);
}

/* Sophisticated Benchmark blocks instead of card loops */
.academic-benchmarks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    border-top: 1px solid rgba(183, 146, 82, 0.15);
    margin-top: 3.5rem;
    padding-top: 2rem;
}

.benchmark-item {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.benchmark-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: -0.02em;
}

.benchmark-label {
    font-size: 0.86rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-primary);
    margin: 0;
}

.benchmark-desc {
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--color-text-muted);
}

/* 3. The Portal Form Sidebar (The right panel) */
.editorial-portal {
    position: relative;
    padding: 2.4rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-xl);
    border: var(--border-bespoke);
    box-shadow: var(--shadow-bespoke);
}

.editorial-portal::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-gold) 50%, var(--color-primary) 100%);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.portal-card-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.85rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0.35rem 0 0.5rem;
}

.portal-subtitle {
    font-size: 0.86rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.bespoke-form {
    display: grid;
    gap: 1.4rem;
}

.field-elegant {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.field-elegant label {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-primary-light);
}

.input-elegant {
    appearance: none;
    width: 100%;
    min-height: 48px;
    padding: 0.85rem 1.1rem;
    border: 1px solid rgba(183, 146, 82, 0.2);
    border-radius: 10px;
    background: var(--color-sand);
    color: var(--color-text-dark);
    font-size: 0.92rem;
    font-family: inherit;
    transition: all 0.25s ease;
}

.input-elegant:focus {
    outline: none;
    border-color: var(--color-primary-light);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(36, 57, 94, 0.08);
}

.textarea-elegant {
    appearance: none;
    width: 100%;
    min-height: 110px;
    padding: 0.85rem 1.1rem;
    border: 1px solid rgba(183, 146, 82, 0.2);
    border-radius: 10px;
    background: var(--color-sand);
    color: var(--color-text-dark);
    font-size: 0.92rem;
    font-family: inherit;
    resize: vertical;
    transition: all 0.25s ease;
}

.textarea-elegant:focus {
    outline: none;
    border-color: var(--color-primary-light);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(36, 57, 94, 0.08);
}

.portal-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin-top: 1rem;
}

.button-elegant {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.4rem;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.button-elegant--primary {
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    color: var(--white);
    border: 1px solid var(--color-primary);
    box-shadow: 0 8px 24px rgba(18, 31, 56, 0.12);
}

.button-elegant--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(18, 31, 56, 0.2);
}

.button-elegant--secondary {
    background: var(--white);
    color: var(--color-primary-light);
    border: 1px solid rgba(36, 57, 94, 0.2);
}

.button-elegant--secondary:hover {
    background: var(--color-sand);
}

.button-elegant--primary-dark {
    background: linear-gradient(135deg, var(--color-accent), #451b21);
    color: var(--white);
    border: 1px solid var(--color-accent);
}

.button-elegant--primary-dark:hover {
    transform: translateY(-2px);
}

.portal-footer-links {
    margin-top: 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(183, 146, 82, 0.12);
    padding-top: 1.25rem;
}

.portal-footer-links p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin: 0 0 0.45rem;
}

.text-link-elegant {
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--color-accent);
    text-decoration: none;
    border-bottom: 1px dotted var(--color-accent);
}

.text-link-elegant:hover {
    border-bottom-style: solid;
}

/* Requirements section in sidebar */
.editorial-requirements {
    margin-top: 2rem;
    border-top: 1px dashed rgba(183, 146, 82, 0.2);
    padding-top: 1.5rem;
}

.editorial-requirements h3 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-accent);
    margin: 0 0 0.9rem;
}

.requirement-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.req-tag {
    padding: 0.35rem 0.65rem;
    background: rgba(183, 146, 82, 0.09);
    border: 1px solid rgba(183, 146, 82, 0.15);
    color: #7d5f27;
    font-size: 0.74rem;
    font-weight: 600;
    border-radius: 4px;
}

.req-footer-note {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    margin: 0.8rem 0 0;
    font-style: italic;
}

/* 4. Editorial Content Sections */
.section-editorial {
    padding: 7rem 1.5rem;
    max-width: 1240px;
    margin: 0 auto;
}

.editorial-section-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: end;
    border-bottom: 1px solid rgba(183, 146, 82, 0.15);
    padding-bottom: 2.2rem;
    margin-bottom: 4rem;
}

.eyebrow-accent {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
}

.serif-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 500;
    line-height: 1.15;
    color: var(--color-primary);
    margin: 0;
}

.section-lead-paragraph {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin: 0;
}

/* Asymmetric Structural Row layouts */
.asymmetric-layout {
    display: grid;
    grid-template-columns: 0.80fr 1.2fr;
    gap: 4.5rem;
    align-items: start;
    margin-bottom: 4rem;
}

.editorial-philosophy-card {
    position: relative;
    padding: 2.6rem;
    background: var(--color-primary);
    color: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-bespoke);
}

.editorial-philosophy-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.85rem;
    font-weight: 500;
    margin: 0 0 1.2rem;
    color: var(--color-gold-light);
}

.editorial-philosophy-card p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.institutions-logos {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.logo-shield {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 0.35rem 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 4px;
}

.logo-separator {
    color: var(--color-gold);
    font-weight: 700;
}

/* Elegant list rows rather than repetitive grids */
.editorial-benefit-cards {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.luxury-benefit-row {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 1.5rem;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid rgba(183, 146, 82, 0.12);
}

.luxury-benefit-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.luxury-benefit-num {
    display: grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    background: rgba(183, 146, 82, 0.1);
    border: 1px solid rgba(183, 146, 82, 0.2);
}

.luxury-benefit-num::before {
    content: '◇';
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--color-accent);
    font-weight: bold;
}

.luxury-benefit-content h4 {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 0.45rem;
}

.luxury-benefit-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin: 0;
}

/* 5. Executive Honor Hall (Elegant Alumni Grid) */
.executive-hall-header {
    text-align: center;
    max-width: 680px;
    margin: 6rem auto 3rem;
}

.hall-badge {
    display: inline-block;
    padding: 0.32rem 0.85rem;
    background: rgba(110, 40, 48, 0.08);
    border: 1px solid rgba(110, 40, 48, 0.14);
    color: var(--color-accent);
    border-radius: 20px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.executive-hall-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--color-primary);
    margin: 0 0 0.8rem;
}

.executive-hall-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
}

.executive-profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.2rem 1.6rem;
    background: var(--white);
    border: var(--border-bespoke);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 36px rgba(18, 25, 43, 0.03);
    transition: all 0.25s ease;
}

.executive-profile-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(18, 25, 43, 0.06);
    border-color: var(--color-accent);
}

.exec-avatar-wrapper {
    position: relative;
    margin-bottom: 1.25rem;
}

.exec-avatar {
    display: grid;
    place-items: center;
    width: 4rem;
    height: 4rem;
    border-radius: 999px;
    background: var(--color-sand);
    border: 2px solid var(--color-gold);
    color: var(--color-accent);
    font-size: 1.35rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

.exec-avatar--anonymous {
    background: linear-gradient(135deg, rgba(82, 100, 120, 0.1), rgba(82, 100, 120, 0.2));
    border-color: rgba(82, 100, 120, 0.3);
}

.exec-avatar--anonymous::before {
    content: '';
    width: 1.15rem;
    height: 1.15rem;
    border-radius: 999px 999px 40% 40%;
    background: rgba(82, 100, 120, 0.65);
}

.exec-details h4 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 0.35rem;
}

.exec-role {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-accent);
    margin: 0 0 0.25rem;
}

.exec-institution {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* 6. Dark Editorial Sections (For flows / Trazabilidad) */
.section-dark-editorial {
    background: linear-gradient(180deg, #11192b 0%, #17243c 100%);
    color: var(--white);
    padding: 7rem 1.5rem;
}

.dark-editorial-inner {
    max-width: 1240px;
    margin: 0 auto;
}

.dark-section-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: end;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2.2rem;
    margin-bottom: 4rem;
}

.dark-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.dark-serif-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 500;
    color: var(--white);
    margin: 0;
}

.dark-section-lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Elegant Vertical Timeline instead of bulky cards */
.academic-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto 5rem;
}

.academic-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.timeline-stop {
    position: relative;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

.timeline-stop:last-child {
    margin-bottom: 0;
}

.timeline-indicator {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    background: #11192b;
    border: 1px solid var(--color-gold);
    border-radius: 999px;
}

.stop-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-gold);
}

.stop-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--white);
    margin: 0 0 0.55rem;
}

.stop-content p {
    font-size: 0.98rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* Complementary flow panels */
.editorial-split-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 5rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    padding-top: 3.5rem;
}

.info-card-bespoke {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.card-num-marker {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-gold);
}

.info-card-bespoke h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    font-weight: 500;
    color: var(--white);
    margin: 0;
}

.info-card-bespoke p {
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* 7. Directory & Networking Executive layouts */
.executive-dossier {
    position: relative;
    padding: 3rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: var(--border-bespoke);
    box-shadow: var(--shadow-bespoke);
}

.executive-dossier::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 6px;
    height: 100%;
    background: var(--color-accent);
    border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}

.dossier-headline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.dossier-tag {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-accent);
}

.dossier-seal {
    font-size: 0.74rem;
    font-weight: 800;
    padding: 0.25rem 0.55rem;
    border: 1px solid rgba(18, 31, 56, 0.15);
    color: var(--color-primary);
    border-radius: 4px;
}

.dossier-identity {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    margin-bottom: 2.2rem;
}

.dossier-avatar {
    display: grid;
    place-items: center;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dossier-name-block h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0;
}

.dossier-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--color-accent);
    margin: 0.2rem 0 0.15rem;
}

.dossier-span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.dossier-body {
    display: grid;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.dossier-row {
    font-size: 0.95rem;
    line-height: 1.5;
    border-bottom: 1px solid rgba(183, 146, 82, 0.1);
    padding-bottom: 0.65rem;
}

.dossier-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.dossier-row strong {
    display: block;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    margin-bottom: 0.15rem;
}

.dossier-row span {
    color: var(--color-text-dark);
}

.availability-badge {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--forest-600);
}

/* Taxonomies for directory */
.academic-taxonomies {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

.taxonomy-card h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    margin: 0 0 1rem;
}

.taxonomy-tokens {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.tax-token {
    padding: 0.45rem 1rem;
    background: var(--color-sand);
    border: 1px solid rgba(183, 146, 82, 0.18);
    color: var(--color-text-dark);
    font-size: 0.86rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.2s ease;
}

.tax-token:hover {
    background: var(--white);
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.tax-token--accent {
    background: rgba(110, 40, 48, 0.04);
}

.taxonomy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.taxonomy-check-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    background: var(--color-sand);
    border-radius: 8px;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--color-text-dark);
    border: 1px solid transparent;
}

.check-box-decorative {
    color: var(--color-accent);
    font-weight: bold;
}

/* 8. Grey Editorial Sections (For employment metrics) */
.section-grey-editorial {
    background: #edf1f6;
    padding: 7rem 1.5rem;
}

.academic-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
    max-width: 1240px;
    margin: 0 auto;
}

.editorial-stat-block {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    position: relative;
    padding-top: 1.5rem;
}

.stat-bullet-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 1.5px;
    background: var(--color-accent);
}

.stat-main-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.stat-heading-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-accent);
    margin: 0;
}

/* Dual Paths block */
.academic-flow-column {
    padding: 3.5rem;
    background: var(--white);
    border: var(--border-bespoke);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-bespoke);
}

.academic-flow-column--dark {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: var(--white);
    border: none;
}

.flow-header {
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(183, 146, 82, 0.15);
    padding-bottom: 1.5rem;
}

.academic-flow-column--dark .flow-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.flow-tag {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    background: rgba(183, 146, 82, 0.14);
    color: #8c6627;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: 4px;
    margin-bottom: 0.8rem;
}

.flow-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-primary);
    margin: 0 0 0.5rem;
}

.flow-header p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.academic-flow-column--dark .flow-header h3 {
    color: var(--white);
}

.academic-flow-column--dark .flow-header p {
    color: rgba(255, 255, 255, 0.7);
}

.dossier-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.dossier-list li {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dossier-list li strong {
    font-size: 0.94rem;
    font-weight: 700;
    color: var(--color-accent);
}

.dossier-list li p {
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--color-text-dark);
    margin: 0;
}

.dossier-list--light li strong {
    color: var(--color-gold);
}

.dossier-list--light li p {
    color: rgba(255, 255, 255, 0.8);
}

.editorial-dossier-card {
    padding: 2.2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border-left: 2.5px solid var(--color-gold);
    box-shadow: 0 8px 24px rgba(18, 25, 43, 0.02);
}

.editorial-dossier-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 0.65rem;
}

.editorial-dossier-card p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin: 0;
}

/* 9. Testimonies editorial grid */
.editorial-testimony-form {
    padding: 3rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: var(--border-bespoke);
    box-shadow: var(--shadow-bespoke);
}

.editorial-testimony-form h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0 0 0.5rem;
}

.form-instructions {
    font-size: 0.86rem;
    line-height: 1.5;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.custom-checkbox-pair {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    cursor: pointer;
    margin-top: 0.5rem;
}

.custom-checkbox-pair input {
    margin-top: 0.25rem;
}

.checkbox-rich-label {
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--color-text-muted);
}

.testimonies-editorial-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.editorial-testimony-card {
    position: relative;
    padding: 2.2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 30px rgba(18, 25, 43, 0.02);
    margin: 0;
    border: 1px solid rgba(183, 146, 82, 0.1);
}

.quote-mark-icon {
    position: absolute;
    top: 0.5rem;
    right: 1.8rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: rgba(183, 146, 82, 0.15);
    line-height: 1;
}

.testimony-text {
    position: relative;
    z-index: 2;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--color-text-dark);
    margin-bottom: 1.2rem;
}

.testimony-author {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-accent);
}

/* Responsive updates for editorial elements */
@media (max-width: 1040px) {
    .editorial-grid,
    .editorial-section-header,
    .dark-section-header,
    .asymmetric-layout,
    .editorial-split-info {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .editorial-title {
        font-size: 2.8rem;
    }

    .executive-hall-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .admin-shell--dashboard {
        grid-template-columns: 1fr;
    }

    .editorial-title {
        font-size: 2.22rem;
    }

    .academic-benchmarks {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .executive-hall-grid {
        grid-template-columns: 1fr;
    }

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


/* =====================================================
   PORTAL v3 — PROFESSIONAL INSTITUTIONAL DESIGN
   ===================================================== */

/* 1. Clean body background — remove landing-page gradient */
body {
    background: #f0f2f5;
    background-image: none;
}

/* 2. Compact single-line header */
.site-header {
    background: #ffffff !important;
    backdrop-filter: none !important;
    border-bottom: 1px solid #e2e6ec !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06) !important;
}

.hdr-inner {
    height: 60px;
    padding: 0 1.5rem !important;
    gap: 0 !important;
    display: flex !important;
    align-items: center !important;
    max-width: 1280px !important;
}

.hdr-brand {
    display: flex !important;
    align-items: center !important;
    gap: 0.65rem !important;
    text-decoration: none;
    flex-shrink: 0;
    margin-right: 2.5rem;
}

.hdr-brand-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ink-900);
    white-space: nowrap;
}

.hdr-nav {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    flex-wrap: nowrap !important;
    flex: 1;
}

.hdr-nav a {
    padding: 0 0.8rem !important;
    height: 60px;
    display: flex !important;
    align-items: center !important;
    font-size: 0.87rem !important;
    font-weight: 600;
    color: var(--ink-700) !important;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.15s, border-color 0.15s;
    text-decoration: none;
}

.hdr-nav a:hover {
    color: var(--ink-900) !important;
    border-bottom-color: var(--sea-700);
}

.hdr-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-left: auto;
    flex-shrink: 0;
}

.hdr-link {
    font-size: 0.87rem;
    font-weight: 600;
    color: var(--ink-700);
    padding: 0 0.5rem;
    text-decoration: none;
    transition: color 0.15s;
}

.hdr-link:hover {
    color: var(--ink-900);
}

.hdr-btn {
    display: inline-flex;
    align-items: center;
    height: 36px;
    padding: 0 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.15s, background 0.15s;
}

.hdr-btn--primary {
    background: var(--sea-800);
    color: #ffffff;
}

.hdr-btn--primary:hover {
    opacity: 0.88;
}

.hdr-btn--ghost {
    background: transparent;
    color: var(--ink-700);
    border: 1.5px solid #d0d5de;
}

.hdr-btn--ghost:hover {
    background: rgba(24,32,51,0.05);
    color: var(--ink-900);
}

/* 3. Portal hero — split layout */
.portal-hero {
    background: linear-gradient(135deg, #0d1828 0%, #1a2a4a 45%, #2a1830 100%);
    min-height: calc(100vh - 84px);
    display: flex;
    align-items: stretch;
    position: relative;
    overflow: hidden;
}

.portal-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 20% 50%, rgba(119, 29, 29, 0.25), transparent),
        radial-gradient(ellipse 40% 50% at 75% 30%, rgba(183, 146, 82, 0.15), transparent);
    pointer-events: none;
    z-index: 0;
}

.portal-hero__inner {
    display: flex;
    flex-wrap: wrap;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
    gap: 2rem;
    position: relative;
    z-index: 1;
    align-items: stretch;
}

.portal-identity {
    flex: 1 1 57.5%;
    padding: 5rem 3.5rem 5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    color: #ffffff;
    min-width: 0;
}

.portal-auth-panel {
    flex: 1 1 42.5%;
    min-width: 0;
}


.portal-institution {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.portal-crest {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(183, 146, 82, 0.2) 0%, rgba(119, 29, 29, 0.12) 100%);
    border: 1px solid rgba(183, 146, 82, 0.4);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #b79252;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(183, 146, 82, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.portal-institution:hover .portal-crest {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(183, 146, 82, 0.25);
}

.portal-institution-name {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(183,146,82,0.85);
    font-weight: 600;
}

.portal-headline {
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin: 0;
    max-width: 22ch;
    letter-spacing: -0.02em;
}

.portal-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin: -0.75rem 0 0;
    max-width: 46ch;
    font-weight: 400;
}

.portal-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0 2.5rem;
}

.portal-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.9rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.04em;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.portal-hero-btn--primary {
    background: linear-gradient(135deg, #b79252 0%, #9d7a3f 100%);
    color: #0d1828;
    box-shadow: 0 8px 24px rgba(183, 146, 82, 0.3);
}

.portal-hero-btn--primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(183, 146, 82, 0.4);
}

.portal-hero-btn--ghost {
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(183, 146, 82, 0.3);
    color: #ffffff;
    backdrop-filter: blur(8px);
}

.portal-hero-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(183, 146, 82, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(183, 146, 82, 0.15);
}

.portal-pillars {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    scroll-behavior: smooth;
}

.portal-slider-container {
    position: relative;
    width: 100%;
}

.portal-slider-container .portal-pillars {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0;
    padding-bottom: 0.5rem;
}

.portal-slider-container .portal-pillars::-webkit-scrollbar {
    height: 4px;
}

.portal-slider-container .portal-pillars::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
}

.portal-slider-container .portal-pillars::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
}

.portal-slider-container .portal-pillars::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.3);
}

.portal-slider-container .portal-pillar {
    flex-shrink: 0;
    width: 100%;
    scroll-snap-align: start;
    height: 280px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(183, 146, 82, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 576px) {
    .portal-slider-container .portal-pillar {
        height: 320px;
    }
}

@media (min-width: 992px) {
    .portal-slider-container .portal-pillar {
        height: 360px;
    }
}

.portal-slider-nav {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem;
    z-index: 10;
}

.portal-slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(0,0,0,0.4);
    color: rgba(255,255,255,0.9);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    backdrop-filter: blur(8px);
}

.portal-slider-btn:hover:not(:disabled) {
    background: rgba(0,0,0,0.6);
    color: #fff;
}

.portal-slider-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.portal-slider-btn--prev::before {
    content: "‹";
    font-size: 1.5rem;
}

.portal-slider-btn--next::before {
    content: "›";
    font-size: 1.5rem;
}

/* Slider dot navigation */
.portal-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.portal-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.portal-slider-dot.active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.25);
}

.portal-slider-dot:hover {
    border-color: rgba(255,255,255,0.8);
}

.portal-pillar {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 2.5rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
}

.portal-pillar:hover {
    transform: translateY(-6px);
}

.portal-pillar:hover .portal-pillar__overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.7) 100%);
}

.portal-pillar__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.portal-pillar__icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 2.4rem;
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.portal-pillar:hover .portal-pillar__icon {
    transform: scale(1.1);
}

.pillar--networking .portal-pillar__icon { 
    background: linear-gradient(135deg, rgba(119, 29, 29, 0.8) 0%, rgba(183, 146, 82, 0.3) 100%);
    color: #b79252; 
}

.pillar--bolsa .portal-pillar__icon { 
    background: linear-gradient(135deg, rgba(119, 29, 29, 0.8) 0%, rgba(183, 146, 82, 0.3) 100%);
    color: #b79252; 
}

.pillar--cred .portal-pillar__icon { 
    background: linear-gradient(135deg, rgba(119, 29, 29, 0.8) 0%, rgba(183, 146, 82, 0.3) 100%);
    color: #b79252; 
}

.portal-pillar__text {
    position: relative;
    z-index: 2;
    width: 100%;
}

.portal-pillar__text strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.6rem;
}

.portal-pillar__text span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.portal-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(183, 146, 82, 0.25);
    margin-top: 2rem;
}

@media (max-width: 640px) {
    .portal-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .portal-stat {
        flex: 0 0 calc(50% - 0.75rem);
    }
    
    .portal-stat:last-child {
        flex-basis: 100%;
    }
}

.portal-stat {
    flex: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.portal-stat strong {
    display: block;
    font-size: 2.4rem;
    font-weight: 800;
    color: #b79252;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.portal-stat span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Login panel */
.portal-auth-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3.25rem 1rem 3.5rem;
    border-left: 1px solid rgba(255,255,255,0.12);
}

.portal-auth-card {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    border: 1px solid rgba(31, 45, 75, 0.08);
    border-radius: 24px;
    padding: 2.4rem 2.1rem 2rem;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.08), 0 4px 24px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}

.portal-auth-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(96, 113, 255, 0.16), transparent 24%),
        radial-gradient(circle at bottom left, rgba(85, 135, 255, 0.08), transparent 18%);
    pointer-events: none;
}

.portal-auth-card:hover {
    transform: translateY(-4px);
    border-color: rgba(31, 45, 75, 0.14);
    box-shadow: 0 32px 96px rgba(15, 23, 42, 0.12), 0 8px 32px rgba(15, 23, 42, 0.08);
}

.portal-auth-card h2 {
    position: relative;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.45rem, 2.5vw, 1.75rem);
    font-weight: 600;
    color: var(--ink-900);
    margin: 0 0 0.65rem;
    letter-spacing: -0.02em;
}

@media (max-width: 992px) {
    .portal-auth-panel {
        padding: 2rem 0 2.25rem;
        border-left: none;
    }

    .portal-auth-card {
        padding: 2rem 1.4rem 1.6rem;
    }
}

@media (max-width: 680px) {
    .portal-auth-panel {
        padding: 1.5rem 0 1.5rem;
    }

    .portal-auth-card {
        padding: 1.6rem 1rem 1.25rem;
    }
}

.auth-tagline {
    font-size: 0.86rem;
    color: var(--ink-700);
    margin: 0 0 1.5rem;
}

.auth-form {
    display: grid;
    gap: 0.9rem;
}

.auth-field {
    display: grid;
    gap: 0.3rem;
}

.auth-field label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ink-900);
    letter-spacing: 0.01em;
}

.auth-input {
    appearance: none;
    width: 100%;
    height: 44px;
    padding: 0 0.9rem;
    border: 1.5px solid #dde1e9;
    border-radius: 9px;
    background: #f8f9fb;
    color: var(--ink-900);
    font-size: 0.93rem;
    transition: border-color 0.15s, background 0.15s;
}

.auth-input:focus {
    outline: none;
    border-color: rgba(31,45,75,0.45);
    background: #ffffff;
}

.auth-submit {
    width: 100%;
    height: 46px;
    border: none;
    border-radius: 9px;
    background: linear-gradient(135deg, #1f2d4b, #0d1828);
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 0.25rem;
    transition: opacity 0.15s;
    letter-spacing: 0.02em;
}

.auth-submit:hover { opacity: 0.88; }

.auth-divider {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin: 1.25rem 0 0.9rem;
    color: #9aa0ad;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e9f0;
}

.auth-register-links {
    display: grid;
    gap: 0.5rem;
}

.auth-register-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0.9rem;
    border: 1.5px solid #e5e9f0;
    border-radius: 9px;
    text-decoration: none;
    transition: border-color 0.15s, background 0.15s;
}

.auth-register-link:hover {
    border-color: rgba(31,45,75,0.28);
    background: rgba(31,45,75,0.02);
}

.auth-register-link .rl-label {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--ink-900);
}

.auth-register-link .rl-action {
    font-size: 0.79rem;
    color: var(--sea-700);
    font-weight: 700;
}

/* 4. Feature section */
.feature-section {
    background: linear-gradient(135deg, #ffffff 0%, #f9fbff 100%);
    padding: 5rem 2rem;
    border-bottom: 1px solid rgba(119, 29, 29, 0.08);
    position: relative;
}

.feature-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(183, 146, 82, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.feature-section__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.section-kicker {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #771d1d;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(119, 29, 29, 0.08) 0%, rgba(183, 146, 82, 0.06) 100%);
    border-radius: 999px;
    border: 1px solid rgba(119, 29, 29, 0.1);
}

.feature-section__header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.feature-section__header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 600;
    color: #1a2a3a;
    margin: 0 0 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.feature-section__header p {
    color: #555;
    max-width: 65ch;
    margin: 0 auto;
    line-height: 1.75;
    font-size: 1rem;
    font-weight: 400;
}

.feature-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

@media (max-width: 992px) {
    .feature-tiles {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .feature-tiles {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.feature-tile {
    border: 1px solid rgba(119, 29, 29, 0.08);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(119, 29, 29, 0.04), 0 4px 16px rgba(119, 29, 29, 0.02);
}

.feature-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(183, 146, 82, 0.4), transparent);
}

.feature-tile:hover {
    box-shadow: 0 12px 32px rgba(119, 29, 29, 0.12), 0 8px 24px rgba(119, 29, 29, 0.06);
    transform: translateY(-4px);
    border-color: rgba(119, 29, 29, 0.15);
}

.feature-tile__icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-tile:hover .feature-tile__icon {
    transform: scale(1.1) rotate(0deg);
}

.feature-tile--net .feature-tile__icon {
    background: linear-gradient(135deg, rgba(31, 45, 75, 0.12) 0%, rgba(31, 45, 75, 0.06) 100%);
    color: #1f2d4b;
    border: 1px solid rgba(31, 45, 75, 0.1);
}

.feature-tile--bolsa .feature-tile__icon {
    background: linear-gradient(135deg, rgba(50, 72, 61, 0.12) 0%, rgba(50, 72, 61, 0.06) 100%);
    color: #32483d;
    border: 1px solid rgba(50, 72, 61, 0.1);
}

.feature-tile--cred .feature-tile__icon {
    background: linear-gradient(135deg, rgba(119, 29, 29, 0.12) 0%, rgba(183, 146, 82, 0.08) 100%);
    color: #771d1d;
    border: 1px solid rgba(119, 29, 29, 0.15);
}

.feature-tile h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a2a3a;
    margin: 0 0 0.75rem;
    line-height: 1.3;
}

.feature-tile p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.8;
    margin: 0 0 1.75rem;
    font-weight: 400;
}

.feature-tile__link {
    font-size: 0.88rem;
    font-weight: 700;
    color: #771d1d;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(119, 29, 29, 0.06);
}

.feature-tile__link:hover {
    gap: 0.75rem;
    background: rgba(119, 29, 29, 0.12);
    color: #771d1d;
}

.feature-tile__link i {
    font-size: 0.75rem;
}

/* 5. Benefits strip */
.benefits-strip {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f9fbff 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(119, 29, 29, 0.08);
    position: relative;
}

.benefits-strip::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(183, 146, 82, 0.3), transparent);
}

.benefits-strip__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .benefits-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .benefits-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.benefit-item {
    padding: 2rem;
    border: 1px solid rgba(119, 29, 29, 0.08);
    border-radius: 16px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(119, 29, 29, 0.04), 0 4px 16px rgba(119, 29, 29, 0.02);
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(183, 146, 82, 0.4), transparent);
}

.benefit-item:hover {
    box-shadow: 0 12px 32px rgba(119, 29, 29, 0.12), 0 8px 24px rgba(119, 29, 29, 0.06);
    transform: translateY(-4px);
    border-color: rgba(119, 29, 29, 0.15);
}

.benefit-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: #1a2a3a;
    margin: 0 0 0.65rem;
    font-weight: 600;
    line-height: 1.3;
}

.benefit-item p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

/* 6. Process section */
.process-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f9fbff 100%);
    border-bottom: 1px solid rgba(119, 29, 29, 0.08);
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(183, 146, 82, 0.3), transparent);
}

.process-section__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    margin-top: 2.5rem;
    position: relative;
}

@media (max-width: 992px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.process-step {
    padding: 2rem;
    border: 1px solid rgba(119, 29, 29, 0.08);
    border-radius: 16px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(119, 29, 29, 0.04), 0 4px 16px rgba(119, 29, 29, 0.02);
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(183, 146, 82, 0.4), transparent);
}

.process-step:hover {
    box-shadow: 0 12px 32px rgba(119, 29, 29, 0.12), 0 8px 24px rgba(119, 29, 29, 0.06);
    transform: translateY(-4px);
    border-color: rgba(119, 29, 29, 0.15);
}

.process-step__num {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, #771d1d 0%, #8a3030 100%);
    color: #ffffff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 12px rgba(119, 29, 29, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover .process-step__num {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(119, 29, 29, 0.3);
}

.process-step h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a2a3a;
    margin: 0 0 0.65rem;
    line-height: 1.3;
}

.process-step p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

/* 7. Networking preview */
.networking-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f9fbff 100%);
    border-bottom: 1px solid rgba(119, 29, 29, 0.08);
    position: relative;
}

.networking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(183, 146, 82, 0.3), transparent);
}

.networking-section__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.networking-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .networking-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .networking-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.alumni-portal-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    border: 1px solid rgba(119, 29, 29, 0.08);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(119, 29, 29, 0.04), 0 4px 16px rgba(119, 29, 29, 0.02);
}

.alumni-portal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(183, 146, 82, 0.4), transparent);
}

.alumni-portal-card:hover {
    box-shadow: 0 12px 32px rgba(119, 29, 29, 0.12), 0 8px 24px rgba(119, 29, 29, 0.06);
    transform: translateY(-4px);
    border-color: rgba(119, 29, 29, 0.15);
}

.alumni-portal-avatar {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(119, 29, 29, 0.12) 0%, rgba(183, 146, 82, 0.08) 100%);
    color: #771d1d;
    border: 1px solid rgba(119, 29, 29, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.alumni-portal-card:hover .alumni-portal-avatar {
    transform: scale(1.08);
}

.alumni-portal-photo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #ffffff;
    box-shadow: 0 8px 18px rgba(18, 34, 58, 0.14);
}

.alumni-portal-avatar--anon {
    background: linear-gradient(135deg, rgba(119, 29, 29, 0.12) 0%, rgba(183, 146, 82, 0.08) 100%);
    color: rgba(119, 29, 29, 0.6);
}

.alumni-portal-card h4 {
    margin: 0 0 0.25rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a2a3a;
    line-height: 1.2;
}

.alumni-portal-card p {
    margin: 0;
    font-size: 0.82rem;
    color: #666;
    font-weight: 400;
    line-height: 1.4;
}

.networking-experience-tags {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.experience-tag {
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(119, 29, 29, 0.08) 0%, rgba(183, 146, 82, 0.06) 100%);
    border: 1px solid rgba(119, 29, 29, 0.12);
    font-size: 0.85rem;
    color: #771d1d;
    font-weight: 600;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.experience-tag:hover {
    background: linear-gradient(135deg, rgba(119, 29, 29, 0.15) 0%, rgba(183, 146, 82, 0.12) 100%);
    border-color: rgba(119, 29, 29, 0.2);
    box-shadow: 0 2px 8px rgba(119, 29, 29, 0.1);
}

/* 8. Job board preview */
.jobboard-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #fafbfc 0%, #f5f8fc 100%);
    border-bottom: 1px solid rgba(119, 29, 29, 0.08);
    position: relative;
}

.jobboard-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(183, 146, 82, 0.3), transparent);
}

.jobboard-section__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.jobboard-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    align-items: start;
}

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

@media (max-width: 640px) {
    .jobboard-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.jobboard-col {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(119, 29, 29, 0.08);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(119, 29, 29, 0.04), 0 4px 16px rgba(119, 29, 29, 0.02);
}

.jobboard-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(183, 146, 82, 0.4), transparent);
}

.jobboard-col:hover {
    box-shadow: 0 12px 32px rgba(119, 29, 29, 0.12), 0 8px 24px rgba(119, 29, 29, 0.06);
    transform: translateY(-4px);
    border-color: rgba(119, 29, 29, 0.15);
}

.jobboard-col h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #771d1d;
    margin: 0 0 1.75rem;
    line-height: 1.2;
}

.jobboard-flow-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    font-size: 0.9rem;
    color: #666;
    border-bottom: 1px solid rgba(119, 29, 29, 0.06);
    line-height: 1.5;
}

.jobboard-flow-step:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.jfs-num {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #771d1d 0%, #8a3030 100%);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 800;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border: 1px solid rgba(119, 29, 29, 0.15);
    box-shadow: 0 4px 12px rgba(119, 29, 29, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.jobboard-flow-step:hover .jfs-num {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(119, 29, 29, 0.25);
}

.jobboard-stat-card {
    background: linear-gradient(135deg, #771d1d 0%, #8a3030 100%);
    border-radius: 16px;
    padding: 2rem;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(119, 29, 29, 0.2), 0 4px 12px rgba(119, 29, 29, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.jobboard-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(183, 146, 82, 0.4), transparent);
}

.jobboard-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(119, 29, 29, 0.3), 0 8px 20px rgba(119, 29, 29, 0.15);
}

.jobboard-stat-card h3 {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 2rem;
    font-weight: 600;
    line-height: 1.2;
}

.jbs-row {
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.jbs-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.jbs-row strong {
    display: block;
    font-size: 2.6rem;
    font-weight: 800;
    color: #b79252;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.jbs-row span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* 9. Testimonials */
.testimonials-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0d1828 0%, #1a2a4a 50%, #142035 100%);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(183, 146, 82, 0.3), transparent);
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(183, 146, 82, 0.3), transparent);
}

.testimonials-section__inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

.testimonials-header {
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.testimony-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(183, 146, 82, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(183, 146, 82, 0.1);
}

.testimony-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(183, 146, 82, 0.4), transparent);
}

.testimony-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.08) 100%);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 8px 20px rgba(183, 146, 82, 0.15);
    transform: translateY(-4px);
    border-color: rgba(183, 146, 82, 0.3);
}

.testimony-card blockquote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1.5rem;
    font-style: italic;
    font-weight: 400;
}

.testimony-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimony-avatar {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(183, 146, 82, 0.3) 0%, rgba(119, 29, 29, 0.15) 100%);
    border: 1px solid rgba(183, 146, 82, 0.4);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 1rem;
    color: #b79252;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimony-card:hover .testimony-avatar {
    transform: scale(1.1);
    border-color: rgba(183, 146, 82, 0.6);
    background: linear-gradient(135deg, rgba(183, 146, 82, 0.4) 0%, rgba(119, 29, 29, 0.2) 100%);
}

.testimony-author-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
}

.testimony-author-role {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

/* 10. Footer redesign */
.site-footer {
    background: #0d1828;
    border-top: none;
    margin-top: 0;
}

/* Footer inner already defined globally, just customize footer-specific elements below */

.footer-col {
    flex: 1 1 min(220px, 100%);
    min-width: 220px;
}


.footer-logo {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-logo .brand__seal {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    color: #ffffff;
}

.footer-logo strong {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
}

.footer-desc {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.68);
    line-height: 1.8;
    margin: 0;
    max-width: 42ch;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links-title {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(183,146,82,0.9);
    margin: 0 0 0.75rem;
}

.footer-links a {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.15s ease;
    white-space: normal;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-rights {
    background: rgba(255,255,255,0.04);
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-rights p {
    width: min(1280px, 100%);
    margin: 0 auto;
    padding: 1rem 2rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
}

/* 11. Portal responsive */
@media (max-width: 1080px) {
    .portal-hero__inner {
        flex-direction: column;
        min-height: auto;
    }

    .portal-identity {
        flex: 1 1 auto;
        padding: 3.5rem 0 2rem;
    }

    .portal-auth-panel {
        flex: 1 1 auto;
        padding: 0 0 3.5rem;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.08);
    }

    .feature-tiles,
    .benefits-list,
    .process-steps,
    .networking-grid {
        gap: 0.75rem;
    }

    .jobboard-stat-card {
        flex: 1 1 100%;
    }

    .site-footer__inner {
        gap: 2rem;
        padding: 2.5rem 1.5rem 1.5rem;
    }

    .footer-col {
        flex: 1 1 min(180px, 100%);
        min-width: 180px;
    }
}

@media (max-width: 700px) {
    .portal-hero__inner {
        padding: 0 1.25rem;
    }

    .portal-headline {
        font-size: 1.9rem;
    }

    .feature-tiles,
    .benefits-list,
    .networking-grid,
    .process-steps {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hdr-nav { display: none !important; }

    .feature-section,
    .benefits-strip,
    .process-section,
    .networking-section,
    .jobboard-section,
    .testimonials-section {
        padding: 2.5rem 1.25rem;
    }

    .networking-section {
        padding: 2.75rem 1rem;
    }

    .networking-section__inner.container-xxl {
        padding-left: 0;
        padding-right: 0;
    }

    .alumni-portal-card {
        padding: 1.1rem;
    }

    .site-footer__inner {
        flex-direction: column;
        gap: 2rem;
        padding: 2.5rem 1.5rem 1.5rem;
    }
}

/* ---- HEADER FIX: compact seal size inside header ---- */
.hdr-brand .brand__seal {
    width: 36px !important;
    height: 36px !important;
    border-radius: 10px !important;
    font-size: 0.95rem !important;
}

/* ---- HERO: ensure 2-col grid takes full width ---- */
.portal-hero {
    min-height: auto !important;
}

.portal-hero__inner {
    min-height: calc(100vh - 84px);
    padding: 0 2rem !important;
}

/* ---- auth card should have reasonable max-width ---- */
.portal-auth-card {
    max-width: 100%;
}


/* ---- HEADER DEFINITIVE FIX (high specificity) ---- */
header.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #ffffff;
    backdrop-filter: none;
    border-bottom: 1px solid #e2e6ec;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

header.site-header .site-header__inner {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-start;
    height: 60px;
    padding: 0 1.5rem;
    gap: 0;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

header.site-header .hdr-brand {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    flex-shrink: 0;
    margin-right: 2rem;
}

header.site-header .brand__seal {
    width: 34px !important;
    height: 34px !important;
    border-radius: 9px !important;
    font-size: 0.88rem !important;
    flex-shrink: 0;
}

header.site-header .hdr-brand-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #182033;
    white-space: nowrap;
}

header.site-header .hdr-nav {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 0;
    flex: 1;
    height: 100%;
}

header.site-header .hdr-nav a {
    display: flex;
    align-items: center;
    height: 60px;
    padding: 0 0.75rem;
    font-size: 0.86rem;
    font-weight: 600;
    color: #4e5b72;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    text-decoration: none;
    transition: color 0.15s, border-color 0.15s;
}

header.site-header .hdr-nav a:hover {
    color: #182033;
    border-bottom-color: #1f2d4b;
}

header.site-header .hdr-actions {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    margin-left: auto;
}

header.site-header .hdr-link {
    font-size: 0.86rem;
    font-weight: 600;
    color: #4e5b72;
    padding: 0 0.4rem;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.15s;
}

header.site-header .hdr-link:hover { color: #182033; }

header.site-header .hdr-btn {
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 0.9rem;
    border-radius: 7px;
    font-size: 0.83rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.15s, background 0.15s;
}

header.site-header .hdr-btn--primary {
    background: #1f2d4b;
    color: #ffffff;
}

header.site-header .hdr-btn--primary:hover { opacity: 0.85; }

header.site-header .hdr-btn--ghost {
    background: transparent;
    color: #4e5b72;
    border: 1.5px solid #d0d5de;
}

header.site-header .hdr-btn--ghost:hover {
    background: rgba(24,32,51,0.05);
    color: #182033;
}

/* ---- BREAKPOINT FIX: hero stays 2-column until 900px ---- */
@media (max-width: 1080px) {
    .portal-hero__inner {
        flex-direction: column !important;
        min-height: calc(100vh - 84px) !important;
    }
    .portal-auth-panel {
        padding: 4rem 0 4rem 2.5rem !important;
        border-left: 1px solid rgba(255,255,255,0.07) !important;
        border-top: none !important;
    }
    .feature-tiles,
    .benefits-list,
    .networking-grid {
        flex-direction: column !important;
        gap: 1rem !important;
    }
}
@media (max-width: 860px) {
    .portal-hero__inner {
        flex-direction: column !important;
        min-height: auto !important;
    }
    .portal-auth-panel {
        padding: 0 0 3.5rem !important;
        border-left: none !important;
        border-top: 1px solid rgba(255,255,255,0.08) !important;
    }
}
@media (max-width: 680px) {
    .feature-tiles,
    .benefits-list,
    .networking-grid,
    .process-steps {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }
    .jobboard-columns {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    .testimonials-grid {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    .site-footer__inner {
        flex-direction: column !important;
        gap: 1rem !important;
    }
}

/* ---- MOBILE HEADER: hide nav links, show compact header ---- */
@media (max-width: 700px) {
    header.site-header .hdr-nav {
        display: none !important;
    }
    header.site-header .site-header__inner {
        height: 56px !important;
        padding: 0 1rem !important;
        gap: 0.5rem !important;
    }
    header.site-header .hdr-brand-name {
        font-size: 0.8rem !important;
    }
    header.site-header .hdr-btn {
        height: 30px !important;
        padding: 0 0.75rem !important;
        font-size: 0.75rem !important;
    }
    header.site-header .hdr-link {
        font-size: 0.75rem !important;
        padding: 0 0.5rem !important;
    }
}

/* ---- SMALL VIEWPORT: hero single column ---- */
@media (max-width: 700px) {
    .portal-hero__inner {
        grid-template-columns: 1fr !important;
    }
    .portal-identity {
        padding: 3rem 1.25rem 2rem !important;
    }
    .portal-headline {
        font-size: 2rem !important;
    }
    .portal-auth-panel {
        padding: 0 1.25rem 3rem !important;
        border-left: none !important;
        border-top: 1px solid rgba(255,255,255,0.08) !important;
    }
}

/* ---- RESPONSIVE HEADER IMPROVEMENTS ---- */
/* Desktop (1200px+) */
@media (min-width: 1201px) {
    header.site-header .site-header__inner {
        height: 60px;
        padding: 0 2rem;
        gap: 1.5rem;
    }
    header.site-header .hdr-brand {
        margin-right: 2.5rem;
    }
    header.site-header .hdr-nav a {
        height: 60px;
        padding: 0 0.9rem;
        font-size: 0.86rem;
    }
    header.site-header .hdr-btn {
        height: 34px;
        padding: 0 0.9rem;
        font-size: 0.83rem;
    }
}

/* Tablet landscape (1000px - 1200px) */
@media (max-width: 1200px) and (min-width: 1001px) {
    header.site-header .site-header__inner {
        height: 58px;
        padding: 0 1.75rem;
        gap: 1.2rem;
    }
    header.site-header .hdr-brand {
        margin-right: 2rem;
    }
    header.site-header .hdr-nav a {
        height: 58px;
        padding: 0 0.75rem;
        font-size: 0.82rem;
    }
    header.site-header .hdr-btn {
        height: 32px;
        padding: 0 0.8rem;
        font-size: 0.8rem;
    }
    header.site-header .brand__seal {
        width: 32px !important;
        height: 32px !important;
    }
}

/* Tablet standard (801px - 1000px) - NAV VISIBLE */
@media (max-width: 1000px) and (min-width: 801px) {
    header.site-header .hdr-nav {
        display: flex !important;
    }
    header.site-header .site-header__inner {
        height: 56px;
        padding: 0 1.25rem;
        gap: 0.8rem;
    }
    header.site-header .hdr-brand {
        margin-right: 1.5rem;
        gap: 0.5rem;
    }
    header.site-header .hdr-brand-name {
        font-size: 0.85rem;
    }
    header.site-header .brand__seal {
        width: 32px !important;
        height: 32px !important;
    }
    header.site-header .hdr-nav a {
        height: 56px;
        padding: 0 0.6rem;
        font-size: 0.78rem;
    }
    header.site-header .hdr-link {
        font-size: 0.78rem;
        padding: 0 0.3rem;
    }
    header.site-header .hdr-btn {
        height: 32px;
        padding: 0 0.7rem;
        font-size: 0.75rem;
    }
}

/* Mobile landscape/Tablet small (701px - 800px) - NAV HIDDEN, HAMBURGER VISIBLE */
@media (max-width: 800px) and (min-width: 701px) {
    header.site-header .hdr-nav {
        display: none !important;
    }
    header.site-header .site-header__inner {
        height: 56px;
        padding: 0 1rem;
        gap: 0.6rem;
    }
    header.site-header .hdr-brand {
        margin-right: 1rem;
        gap: 0.5rem;
    }
    header.site-header .hdr-brand-name {
        font-size: 0.82rem;
    }
    header.site-header .brand__seal {
        width: 30px !important;
        height: 30px !important;
    }
    header.site-header .hdr-link {
        font-size: 0.75rem;
        padding: 0 0.3rem;
    }
    header.site-header .hdr-btn {
        height: 32px;
        padding: 0 0.65rem;
        font-size: 0.73rem;
    }
}

/* Mobile (≤700px) - already defined above, refining */
@media (max-width: 700px) {
    header.site-header .site-header__inner {
        height: 54px;
        padding: 0 0.9rem;
        gap: 0.4rem;
        overflow: hidden;
    }
    header.site-header .hdr-brand {
        margin-right: 0.75rem;
        gap: 0.45rem;
    }
    header.site-header .brand__seal {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.75rem !important;
    }
    header.site-header .hdr-brand-name {
        font-size: 0.75rem;
    }
    header.site-header .hdr-link {
        font-size: 0.7rem;
        padding: 0 0.25rem;
    }
    header.site-header .hdr-btn {
        height: 30px;
        padding: 0 0.6rem;
        font-size: 0.7rem;
    }
}

/* Extra small mobile (≤480px) */
@media (max-width: 480px) {
    header.site-header .site-header__inner {
        height: 52px;
        padding: 0 0.75rem;
        gap: 0.3rem;
    }
    header.site-header .hdr-brand-name {
        display: none;
    }
    header.site-header .hdr-brand {
        margin-right: 0.5rem;
    }
    header.site-header .brand__seal {
        width: 26px !important;
        height: 26px !important;
        font-size: 0.65rem !important;
    }
    header.site-header .hdr-link {
        font-size: 0.65rem;
        padding: 0 0.2rem;
    }
    header.site-header .hdr-btn {
        height: 28px;
        padding: 0 0.5rem;
        font-size: 0.65rem;
    }
}

/* ---- HAMBURGER MENU (MOBILE ONLY) ---- */
.hdr-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    flex-direction: column;
    gap: 0.35rem;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0 0;
    flex-shrink: 0;
}

.hdr-menu-toggle__line {
    width: 24px;
    height: 2.5px;
    background: #4e5b72;
    border-radius: 1.25px;
    transition: all 0.3s ease;
}

.hdr-menu-toggle.active .hdr-menu-toggle__line:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.hdr-menu-toggle.active .hdr-menu-toggle__line:nth-child(2) {
    opacity: 0;
}

.hdr-menu-toggle.active .hdr-menu-toggle__line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hdr-mobile-actions {
    display: none;
}

body.mobile-nav-open {
    overflow: hidden;
}

/* ---- MOBILE NAV OVERLAY ---- */
.hdr-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(17, 25, 43, 0.45);
    z-index: 18;
    opacity: 0;
    transition: opacity 0.25s ease;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.hdr-overlay.visible {
    opacity: 1 !important;
    pointer-events: all !important;
}

@media (max-width: 800px) {
    .hdr-overlay {
        display: block;
    }
}

/* Desktop: nav visible, hamburger hidden */
@media (min-width: 1001px) {
    header.site-header .hdr-nav {
        display: flex !important;
        opacity: 1 !important;
        position: static !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        flex-direction: row !important;
        gap: 0 !important;
        height: auto !important;
        max-height: none !important;
    }
}

/* Tablets: nav visible, hamburger hidden */
@media (max-width: 1000px) and (min-width: 801px) {
    header.site-header .hdr-nav {
        display: flex !important;
        opacity: 1 !important;
        position: static !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        flex-direction: row !important;
        gap: 0 !important;
        height: auto !important;
        max-height: none !important;
    }
}

/* Mobile landscape: hamburger appears, nav collapses */
@media (max-width: 800px) and (min-width: 701px) {
    .hdr-menu-toggle {
        display: flex;
    }
    header.site-header .hdr-actions {
        display: none;
    }
    header.site-header .hdr-nav {
        display: none;
        opacity: 0;
        position: absolute;
        top: 56px;
        left: 0;
        right: 0;
        background: #ffffff;
        border-bottom: 1px solid #e2e6ec;
        padding: 0.75rem 1rem;
        flex-direction: column;
        gap: 0.5rem;
        max-height: calc(100vh - 56px);
        overflow-y: auto;
        z-index: 19;
    }
    header.site-header .hdr-nav.open {
        display: flex !important;
        opacity: 1;
        height: auto !important;
    }
    header.site-header .hdr-nav a {
        height: auto !important;
        padding: 0.75rem 0.75rem !important;
        border-bottom: none !important;
        font-size: 0.9rem !important;
    }
    .hdr-mobile-actions {
        display: grid;
        gap: 0.65rem;
        margin-top: 0.5rem;
        padding-top: 0.85rem;
        border-top: 1px solid #e2e6ec;
    }
}

/* Mobile portrait: hamburger appears, nav collapses */
@media (max-width: 700px) {
    .hdr-menu-toggle {
        display: flex;
    }
    header.site-header .hdr-actions {
        display: none;
    }
    header.site-header .hdr-nav {
        display: none;
        opacity: 0;
        position: absolute;
        top: 54px;
        left: 0;
        right: 0;
        background: #ffffff;
        border-bottom: 1px solid #e2e6ec;
        padding: 0.75rem 1rem;
        flex-direction: column;
        gap: 0.5rem;
        max-height: calc(100vh - 54px);
        overflow-y: auto;
        z-index: 19;
    }
    header.site-header .hdr-nav.open {
        display: flex !important;
        opacity: 1;
        height: auto !important;
    }
    header.site-header .hdr-nav a {
        height: auto !important;
        padding: 0.75rem 0.75rem !important;
        border-bottom: none !important;
        font-size: 0.9rem !important;
        color: #4e5b72;
    }
    header.site-header .hdr-nav a:hover {
        background: #f0f2f5;
        border-radius: 6px;
    }
    .hdr-mobile-actions {
        display: grid;
        gap: 0.65rem;
        margin-top: 0.5rem;
        padding-top: 0.85rem;
        border-top: 1px solid #e2e6ec;
    }
}

/* Extra small mobile */
@media (max-width: 480px) {
    .hdr-menu-toggle {
        width: 36px;
        height: 36px;
        gap: 0.28rem;
    }
    .hdr-menu-toggle__line {
        width: 20px;
        height: 2px;
    }
    header.site-header .hdr-nav {
        top: 52px !important;
        max-height: calc(100vh - 52px) !important;
    }
}

@media (max-width: 800px) {
    .hdr-mobile-actions .hdr-link,
    .hdr-mobile-actions .hdr-btn {
        width: 100%;
        justify-content: center;
    }

    .hdr-mobile-actions .hdr-link {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 42px;
        padding: 0.75rem 1rem;
        background: #f4f6f9;
        border-radius: 8px;
        color: #182033;
    }

    header.site-header .hdr-nav.open {
        box-shadow: 0 14px 30px rgba(24, 32, 51, 0.14);
    }
}

@media (max-width: 700px) {
    .portal-hero__inner {
        padding: 0 1rem !important;
    }

    .portal-identity {
        padding: 2.5rem 0 1.5rem !important;
        gap: 1.5rem !important;
        min-width: 0;
    }

    .portal-institution {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .portal-institution-name {
        min-width: 0;
        font-size: 0.72rem;
        line-height: 1.45;
        letter-spacing: 0.08em;
        overflow-wrap: anywhere;
    }

    .portal-headline,
    .portal-subtitle {
        max-width: none;
    }

    .portal-subtitle {
        font-size: 0.94rem;
        line-height: 1.6;
    }

    .portal-pillars {
        gap: 0.5rem;
    }

    .portal-pillar {
        align-items: flex-start;
        padding: 0.8rem 0.85rem;
    }

    .portal-pillar__text {
        min-width: 0;
    }

    .portal-pillar__text strong,
    .portal-pillar__text span {
        overflow-wrap: anywhere;
    }

    .portal-stats {
        flex-wrap: wrap;
        gap: 1rem;
        padding-top: 1.25rem;
    }

    .portal-stat {
        min-width: calc(50% - 0.5rem);
    }

    .portal-auth-panel {
        padding: 0 0 2.5rem !important;
    }

    .portal-auth-card {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .portal-hero__inner {
        padding: 0 0.75rem !important;
    }

    .portal-identity {
        padding: 2rem 0 1.25rem !important;
    }

    .portal-crest {
        width: 34px;
        height: 34px;
    }

    .portal-institution-name {
        font-size: 0.68rem;
    }

    .portal-headline {
        font-size: 1.65rem !important;
    }

    .portal-subtitle {
        font-size: 0.9rem;
    }

    .portal-pillar {
        gap: 0.7rem;
    }

    .portal-pillar__icon {
        width: 30px;
        height: 30px;
    }

    .portal-stat {
        min-width: 100%;
    }
}

/* ---- METIER-INSPIRED THEME OVERRIDES ---- */
:root {
    --metier-ink-950: #06090f;
    --metier-ink-900: #0a101a;
    --metier-ink-800: #111b2a;
    --metier-ink-700: #1a2638;
    --metier-snow: #edf2ff;
    --metier-muted: #aeb7c9;
    --metier-gold-300: #d8be87;
    --metier-cyan-300: #82c9f3;
}

body.public-shell--metier {
    background: radial-gradient(circle at 80% -10%, rgba(109, 40, 60, 0.24), transparent 36%),
                radial-gradient(circle at -5% 20%, rgba(45, 95, 150, 0.22), transparent 30%),
                var(--metier-ink-950);
    color: var(--metier-snow);
    font-family: 'Manrope', 'Source Sans 3', sans-serif;
    letter-spacing: 0.01em;
}

body.public-shell--metier::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: repeating-linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.02) 0,
        rgba(255, 255, 255, 0.02) 1px,
        transparent 1px,
        transparent 4px
    );
    opacity: 0.22;
    z-index: 0;
}

body.public-shell--metier .institution-strip,
body.public-shell--metier header.site-header,
body.public-shell--metier main,
body.public-shell--metier footer.site-footer {
    position: relative;
    z-index: 1;
}

body.public-shell--metier .institution-strip {
    background: linear-gradient(90deg, #0b1324 0%, #121d30 60%, #281623 100%);
    border-bottom: 1px solid rgba(216, 190, 135, 0.23);
}

body.public-shell--metier .institution-strip__inner span {
    color: rgba(237, 242, 255, 0.88);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}

body.public-shell--metier header.site-header {
    position: sticky;
    top: 0;
    z-index: 35;
    background: rgba(8, 13, 22, 0.78) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid rgba(130, 201, 243, 0.2) !important;
    box-shadow: 0 18px 32px rgba(2, 4, 8, 0.44) !important;
}

body.public-shell--metier header.site-header .site-header__inner {
    min-height: 84px;
}

body.public-shell--metier header.site-header .hdr-inner {
    height: 84px !important;
    padding: 0 1.35rem !important;
}

body.public-shell--metier header.site-header .hdr-brand-name {
    font-family: 'Syne', 'Manrope', sans-serif;
    color: #f2f6ff;
    letter-spacing: 0.02em;
}

body.public-shell--metier header.site-header .brand__seal {
    border-radius: 14px;
    background: linear-gradient(145deg, #2b4f96, #101a30 58%, #1f385f);
    border: 1px solid rgba(216, 190, 135, 0.44);
    color: #f3dfb1;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 10px 24px rgba(6, 10, 16, 0.5);
}

body.public-shell--metier header.site-header .hdr-nav a {
    color: rgba(236, 243, 255, 0.84);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    border-bottom-color: transparent;
}

body.public-shell--metier header.site-header .hdr-nav a:hover {
    color: #ffffff;
    border-bottom-color: var(--metier-gold-300);
}

body.public-shell--metier header.site-header .hdr-link {
    color: rgba(236, 243, 255, 0.9);
}

body.public-shell--metier header.site-header .hdr-btn {
    border-radius: 999px;
}

body.public-shell--metier header.site-header .hdr-btn--primary {
    background: linear-gradient(120deg, #d6ba84 0%, #c69f58 100%);
    color: #1b1a15;
    border-color: transparent;
    box-shadow: 0 10px 22px rgba(198, 159, 88, 0.28);
}

body.public-shell--metier header.site-header .hdr-btn--ghost {
    color: #eaf0ff;
    border-color: rgba(130, 201, 243, 0.45);
    background: rgba(17, 27, 42, 0.52);
}

body.public-shell--metier .portal-hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 82% 18%, rgba(106, 28, 55, 0.34), transparent 40%),
                radial-gradient(circle at 15% 10%, rgba(31, 93, 156, 0.24), transparent 33%),
                linear-gradient(145deg, #05080f 0%, #0a1322 50%, #101826 100%);
    padding: clamp(2rem, 3vw, 3rem) 0 clamp(4rem, 7vw, 7rem);
}

body.public-shell--metier .portal-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.04), transparent 30%, rgba(255, 255, 255, 0.02) 70%, transparent);
}

body.public-shell--metier .portal-hero::after {
    content: '';
    position: absolute;
    width: min(38vw, 520px);
    height: min(38vw, 520px);
    right: -8vw;
    top: -12vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(128, 201, 243, 0.23), rgba(11, 17, 28, 0));
    filter: blur(6px);
}

body.public-shell--metier .portal-hero__inner {
    width: min(1240px, 92vw);
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: clamp(2rem, 5vw, 5.25rem);
}

body.public-shell--metier .portal-identity {
    padding: clamp(2rem, 7vw, 6rem) 0 1rem;
    position: relative;
    z-index: 2;
}

body.public-shell--metier .portal-institution {
    width: fit-content;
    min-width: 0;
    gap: 0.95rem;
    padding: 0.62rem 1.1rem;
    border-radius: 999px;
    background: rgba(10, 18, 30, 0.58);
    border: 1px solid rgba(216, 190, 135, 0.34);
}

body.public-shell--metier .portal-crest {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(145deg, #223a67 0%, #101b2f 60%, #243f6f 100%);
    border: 1px solid rgba(216, 190, 135, 0.42);
    color: #f5ddad;
    box-shadow: 0 10px 20px rgba(1, 3, 7, 0.42);
}

body.public-shell--metier .portal-institution-name {
    color: rgba(216, 190, 135, 0.93);
    font-size: clamp(0.66rem, 1.1vw, 0.88rem);
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

body.public-shell--metier .portal-headline {
    margin: 1.8rem 0 1.2rem;
    color: #f4f7ff;
    font-family: 'Syne', 'Manrope', sans-serif;
    font-size: clamp(2.7rem, 8vw, 6.25rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

body.public-shell--metier .portal-headline__outline {
    display: block;
    margin-top: 0.2em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(237, 242, 255, 0.8);
    text-shadow: 0 0 14px rgba(237, 242, 255, 0.12);
}

body.public-shell--metier .portal-subtitle {
    max-width: 65ch;
    color: rgba(237, 242, 255, 0.84);
    font-size: clamp(1rem, 1.6vw, 1.33rem);
    line-height: 1.8;
}

body.public-shell--metier .portal-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin: 1.5rem 0 2rem;
}

body.public-shell--metier .portal-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.78rem 1.3rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

body.public-shell--metier .portal-hero-btn:hover {
    transform: translateY(-2px);
}

body.public-shell--metier .portal-hero-btn--primary {
    background: linear-gradient(120deg, #d9bd86 0%, #bc9550 100%);
    color: #17140f;
    box-shadow: 0 10px 24px rgba(188, 149, 80, 0.35);
}

body.public-shell--metier .portal-hero-btn--ghost {
    background: rgba(13, 22, 37, 0.55);
    border: 1px solid rgba(130, 201, 243, 0.45);
    color: #eaf1ff;
}

body.public-shell--metier .portal-pillars {
    gap: 0.95rem;
}

body.public-shell--metier .portal-pillar {
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(125deg, rgba(14, 22, 36, 0.82), rgba(18, 22, 36, 0.58));
    box-shadow: 0 14px 26px rgba(2, 4, 8, 0.3);
}

body.public-shell--metier .portal-pillar:hover {
    border-color: rgba(130, 201, 243, 0.5);
    transform: translateY(-2px);
}

body.public-shell--metier .portal-pillar__icon {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

body.public-shell--metier .portal-pillar__text strong {
    font-family: 'Syne', 'Manrope', sans-serif;
    color: #f5f8ff;
    letter-spacing: 0.01em;
}

body.public-shell--metier .portal-pillar__text span {
    color: rgba(225, 232, 247, 0.76);
}

body.public-shell--metier .portal-stats {
    margin-top: 1.6rem;
    gap: 0.75rem;
}

body.public-shell--metier .portal-stat {
    min-width: 178px;
    padding: 0.92rem 1rem;
    border-radius: 14px;
    background: rgba(11, 20, 32, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

body.public-shell--metier .portal-stat strong {
    color: var(--metier-cyan-300);
    font-family: 'Syne', 'Manrope', sans-serif;
}

body.public-shell--metier .portal-stat span {
    color: rgba(229, 236, 250, 0.7);
}

body.public-shell--metier .portal-auth-panel {
    padding: clamp(2rem, 8vw, 6.2rem) 0 1rem;
}

body.public-shell--metier .portal-auth-card {
    border-radius: 24px;
    padding: clamp(1.45rem, 2.4vw, 2.1rem);
    background: linear-gradient(165deg, rgba(9, 14, 24, 0.94), rgba(12, 21, 35, 0.84));
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 28px 54px rgba(2, 4, 9, 0.54);
}

body.public-shell--metier .portal-auth-card h2 {
    color: #f7faff;
    font-family: 'Syne', 'Manrope', sans-serif;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

body.public-shell--metier .auth-tagline,
body.public-shell--metier .auth-field label,
body.public-shell--metier .auth-divider,
body.public-shell--metier .rl-label {
    color: rgba(228, 235, 249, 0.72);
}

body.public-shell--metier .auth-input {
    background: rgba(8, 14, 24, 0.72);
    border: 1px solid rgba(130, 201, 243, 0.2);
    color: #f4f8ff;
}

body.public-shell--metier .auth-input:focus {
    border-color: rgba(216, 190, 135, 0.75);
    box-shadow: 0 0 0 4px rgba(216, 190, 135, 0.13);
}

body.public-shell--metier .auth-submit {
    border-radius: 999px;
    background: linear-gradient(120deg, #d8be87 0%, #c79f59 100%);
    color: #1a1610;
    font-weight: 800;
}

body.public-shell--metier .auth-register-link {
    border-radius: 14px;
    background: rgba(9, 16, 28, 0.5);
    border: 1px solid rgba(130, 201, 243, 0.24);
}

body.public-shell--metier .rl-action {
    color: #b8e1ff;
}

body.public-shell--metier .feature-section,
body.public-shell--metier .benefits-strip,
body.public-shell--metier .process-section,
body.public-shell--metier .networking-section,
body.public-shell--metier .jobboard-section,
body.public-shell--metier .testimonials-section {
    padding: clamp(3.8rem, 8vw, 6.5rem) 0;
}

body.public-shell--metier .feature-section {
    background: linear-gradient(180deg, rgba(8, 13, 22, 0.68) 0%, rgba(9, 14, 24, 0.96) 100%);
}

body.public-shell--metier .benefits-strip,
body.public-shell--metier .networking-section {
    background: linear-gradient(160deg, rgba(10, 16, 27, 0.98), rgba(8, 13, 22, 0.92));
}

body.public-shell--metier .process-section,
body.public-shell--metier .jobboard-section {
    background: linear-gradient(200deg, rgba(11, 18, 30, 0.96), rgba(8, 14, 24, 0.9));
}

body.public-shell--metier .testimonials-section {
    background: radial-gradient(circle at 12% 10%, rgba(31, 93, 156, 0.16), transparent 35%),
                linear-gradient(160deg, #0a1220 0%, #0b1422 45%, #101224 100%);
}

body.public-shell--metier .feature-section__header {
    max-width: 780px;
}

body.public-shell--metier .section-kicker {
    color: rgba(216, 190, 135, 0.96);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    font-weight: 800;
}

body.public-shell--metier .feature-section__header h2,
body.public-shell--metier .testimonials-header h2 {
    font-family: 'Syne', 'Manrope', sans-serif;
    color: #f4f8ff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.05;
    font-size: clamp(1.9rem, 4.6vw, 3.5rem);
}

body.public-shell--metier .feature-section__header p,
body.public-shell--metier .testimonials-header p {
    color: rgba(224, 232, 248, 0.74);
    font-size: 1.02rem;
}

body.public-shell--metier .feature-tile,
body.public-shell--metier .benefit-item,
body.public-shell--metier .process-step,
body.public-shell--metier .alumni-portal-card,
body.public-shell--metier .jobboard-col,
body.public-shell--metier .jobboard-stat-card,
body.public-shell--metier .testimony-card {
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(140deg, rgba(12, 20, 33, 0.86), rgba(11, 17, 29, 0.74));
    box-shadow: 0 14px 26px rgba(2, 4, 9, 0.3);
}

body.public-shell--metier .feature-tile h3,
body.public-shell--metier .benefit-item h4,
body.public-shell--metier .process-step h4,
body.public-shell--metier .jobboard-col h3,
body.public-shell--metier .jobboard-stat-card h3,
body.public-shell--metier .alumni-portal-card h4 {
    color: #f4f8ff;
    font-family: 'Syne', 'Manrope', sans-serif;
    letter-spacing: 0.02em;
}

body.public-shell--metier .feature-tile p,
body.public-shell--metier .benefit-item p,
body.public-shell--metier .process-step p,
body.public-shell--metier .jobboard-col p,
body.public-shell--metier .alumni-portal-card p,
body.public-shell--metier .jbs-row span,
body.public-shell--metier .jobboard-flow-step span:last-child {
    color: rgba(223, 232, 247, 0.76);
}

body.public-shell--metier .feature-tile__icon,
body.public-shell--metier .process-step__num,
body.public-shell--metier .jfs-num,
body.public-shell--metier .testimony-avatar {
    background: rgba(130, 201, 243, 0.12);
    color: #cde8fb;
    border: 1px solid rgba(130, 201, 243, 0.38);
}

body.public-shell--metier .feature-tile__link {
    color: #c7e7ff;
    font-weight: 700;
}

body.public-shell--metier .feature-tile__link:hover {
    color: #f5f9ff;
}

body.public-shell--metier .alumni-portal-avatar {
    border: 1px solid rgba(216, 190, 135, 0.42);
    background: linear-gradient(145deg, rgba(43, 79, 150, 0.45), rgba(14, 22, 36, 0.86));
    color: #f5deaf;
}

body.public-shell--metier .jobboard-flow-step {
    border-bottom-color: rgba(255, 255, 255, 0.11);
}

body.public-shell--metier .jbs-row strong {
    color: #8bd5ff;
}

body.public-shell--metier .testimony-card blockquote {
    color: rgba(233, 240, 252, 0.9);
}

body.public-shell--metier .site-footer {
    background: linear-gradient(180deg, #0b111d 0%, #070c15 100%);
    border-top: 1px solid rgba(216, 190, 135, 0.24);
}

body.public-shell--metier .footer-logo strong,
body.public-shell--metier .footer-links-title,
body.public-shell--metier .footer-col a {
    color: #eff4ff;
}

body.public-shell--metier .footer-col a:hover {
    color: #cfeaff;
}

body.public-shell--metier .footer-desc,
body.public-shell--metier .footer-rights p {
    color: rgba(226, 233, 247, 0.66);
}

@keyframes metier-fade-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body.public-shell--metier .portal-identity,
body.public-shell--metier .portal-auth-panel {
    animation: metier-fade-up 0.75s ease both;
}

body.public-shell--metier .portal-auth-panel {
    animation-delay: 0.1s;
}

body.public-shell--metier .feature-tile,
body.public-shell--metier .benefit-item,
body.public-shell--metier .process-step,
body.public-shell--metier .alumni-portal-card,
body.public-shell--metier .jobboard-col,
body.public-shell--metier .jobboard-stat-card,
body.public-shell--metier .testimony-card {
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

body.public-shell--metier .feature-tile:hover,
body.public-shell--metier .benefit-item:hover,
body.public-shell--metier .process-step:hover,
body.public-shell--metier .alumni-portal-card:hover,
body.public-shell--metier .jobboard-col:hover,
body.public-shell--metier .jobboard-stat-card:hover,
body.public-shell--metier .testimony-card:hover {
    transform: translateY(-4px);
    border-color: rgba(130, 201, 243, 0.45);
    box-shadow: 0 18px 32px rgba(2, 4, 9, 0.4);
}

@media (max-width: 1000px) {
    body.public-shell--metier .portal-hero__inner {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    body.public-shell--metier .portal-auth-panel {
        padding-top: 1.25rem;
    }
}

@media (max-width: 800px) {
    body.public-shell--metier header.site-header .hdr-menu-toggle__line {
        background: #eff4ff;
    }

    body.public-shell--metier header.site-header .hdr-nav {
        background: linear-gradient(180deg, rgba(9, 15, 26, 0.98), rgba(10, 17, 30, 0.95)) !important;
        border-bottom: 1px solid rgba(130, 201, 243, 0.28) !important;
        box-shadow: 0 22px 36px rgba(2, 4, 9, 0.54);
    }

    body.public-shell--metier header.site-header .hdr-nav a {
        color: #edf3ff !important;
        border-radius: 10px;
        border-bottom: none !important;
    }

    body.public-shell--metier header.site-header .hdr-nav a:hover {
        background: rgba(130, 201, 243, 0.13);
    }

    body.public-shell--metier .hdr-mobile-actions .hdr-link,
    body.public-shell--metier .hdr-mobile-actions .hdr-btn {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(130, 201, 243, 0.32);
        color: #edf2ff;
    }

    body.public-shell--metier .portal-headline {
        font-size: clamp(2.05rem, 12vw, 3.8rem);
    }

    body.public-shell--metier .portal-hero-actions {
        gap: 0.65rem;
    }

    body.public-shell--metier .portal-hero-btn {
        flex: 1 1 100%;
    }

    body.public-shell--metier .feature-section__header h2,
    body.public-shell--metier .testimonials-header h2 {
        letter-spacing: 0.02em;
    }
}

@media (max-width: 480px) {
    body.public-shell--metier .institution-strip__inner span {
        font-size: 0.69rem;
        letter-spacing: 0.07em;
    }

    body.public-shell--metier .portal-institution {
        border-radius: 14px;
        padding: 0.55rem 0.72rem;
    }

    body.public-shell--metier .portal-crest {
        width: 42px;
        height: 42px;
    }

    body.public-shell--metier .portal-headline {
        font-size: clamp(1.85rem, 13vw, 2.75rem);
    }

    body.public-shell--metier .portal-headline__outline {
        -webkit-text-stroke-width: 0.8px;
    }
}

/* ---- UACM-INSPIRED SOBER THEME ---- */
:root {
    --uacm-red-700: #990000;
    --uacm-red-800: #7d0000;
    --uacm-blue-600: #0056b3;
    --uacm-ink-900: #1a1a1a;
    --uacm-ink-700: #4d4d4d;
    --uacm-line-300: #d7d7d7;
    --uacm-surface-100: #f3f3f3;
    --uacm-surface-0: #ffffff;
}

body.public-shell--uacm {
    background: var(--uacm-surface-100);
    color: var(--uacm-ink-900);
    font-family: 'Source Sans 3', Arial, Helvetica, sans-serif;
}

body.public-shell--uacm .institution-strip,
body.public-shell--uacm header.site-header,
body.public-shell--uacm main,
body.public-shell--uacm footer.site-footer {
    position: relative;
    z-index: 1;
}

body.public-shell--uacm .institution-strip {
    background: var(--uacm-red-800);
    border-bottom: 1px solid #660000;
}

body.public-shell--uacm .institution-strip__inner span {
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

body.public-shell--uacm header.site-header {
    position: sticky;
    top: 0;
    z-index: 35;
    background: var(--uacm-red-700) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 1px solid #6f0000 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15) !important;
}

body.public-shell--uacm header.site-header .hdr-inner {
    height: 74px !important;
    padding: 0 1.2rem !important;
}

body.public-shell--uacm header.site-header .brand__seal {
    background: #ffffff;
    color: var(--uacm-red-700);
    border: 2px solid #ffffff;
    border-radius: 8px;
    box-shadow: none;
}

body.public-shell--uacm header.site-header .hdr-brand-name {
    color: #ffffff;
    font-size: 1.03rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    font-family: 'Merriweather', Georgia, serif;
}

body.public-shell--uacm header.site-header .hdr-nav > a,
body.public-shell--uacm header.site-header .hdr-link {
    color: #ffffff !important;
    font-weight: 600;
}

body.public-shell--uacm header.site-header .hdr-nav > a:hover,
body.public-shell--uacm header.site-header .hdr-link:hover {
    color: #ffe7e7 !important;
    border-bottom-color: #ffffff;
}

body.public-shell--uacm header.site-header .hdr-btn--primary {
    background: #ffffff;
    color: var(--uacm-red-700);
    border-color: #ffffff;
    box-shadow: none;
}

body.public-shell--uacm header.site-header .hdr-btn--ghost {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.75);
}

body.public-shell--uacm header.site-header .hdr-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
}

body.public-shell--uacm .portal-hero {
    background: #eeeeee;
    min-height: auto;
    border-top: 1px solid var(--uacm-line-300);
    border-bottom: 1px solid var(--uacm-line-300);
}

body.public-shell--uacm .portal-hero::before,
body.public-shell--uacm .portal-hero::after {
    display: none;
}

body.public-shell--uacm .portal-hero__inner {
    max-width: 1240px;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 2rem;
    padding: 0 1.25rem;
}

body.public-shell--uacm .portal-identity {
    padding: 2.5rem 0 2.2rem;
    color: var(--uacm-ink-900);
    gap: 1.35rem;
}

body.public-shell--uacm .portal-institution {
    width: fit-content;
    padding: 0.45rem 0.72rem;
    border-left: 4px solid var(--uacm-red-700);
    border-radius: 2px;
    background: var(--uacm-surface-0);
    box-shadow: none;
}

body.public-shell--uacm .portal-crest {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    border: 1px solid var(--uacm-red-700);
    background: var(--uacm-red-700);
    color: #ffffff;
    font-family: 'Merriweather', Georgia, serif;
}

body.public-shell--uacm .portal-institution-name {
    color: var(--uacm-red-700);
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

body.public-shell--uacm .portal-headline {
    margin: 0;
    color: #121212;
    font-family: 'Merriweather', Georgia, serif;
    font-size: clamp(1.95rem, 3.8vw, 2.85rem);
    font-weight: 700;
    line-height: 1.23;
    max-width: 26ch;
}

body.public-shell--uacm .portal-headline__outline {
    display: inline;
    color: inherit;
    -webkit-text-stroke: 0;
    text-shadow: none;
}

body.public-shell--uacm .portal-subtitle {
    margin: 0;
    max-width: 64ch;
    color: var(--uacm-ink-700);
    font-size: 1.02rem;
    line-height: 1.7;
}

body.public-shell--uacm .portal-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 0.1rem 0;
}

body.public-shell--uacm .portal-hero-btn {
    min-height: 42px;
    padding: 0.56rem 1rem;
    border-radius: 4px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: background-color 0.15s ease, color 0.15s ease;
}

body.public-shell--uacm .portal-hero-btn--primary {
    background: var(--uacm-red-700);
    color: #ffffff;
    border-color: var(--uacm-red-700);
}

body.public-shell--uacm .portal-hero-btn--primary:hover {
    background: var(--uacm-red-800);
}

body.public-shell--uacm .portal-hero-btn--ghost {
    background: #ffffff;
    color: var(--uacm-red-700);
    border-color: var(--uacm-red-700);
}

body.public-shell--uacm .portal-hero-btn--ghost:hover {
    background: #f8f8f8;
}

body.public-shell--uacm .portal-pillars {
    gap: 0.55rem;
}

body.public-shell--uacm .portal-pillar {
    border: 1px solid var(--uacm-line-300);
    border-left: 4px solid var(--uacm-red-700);
    border-radius: 4px;
    background: #ffffff;
    padding: 0.75rem 0.85rem;
    box-shadow: none;
}

body.public-shell--uacm .portal-pillar:hover {
    background: #fafafa;
    transform: none;
}

body.public-shell--uacm .portal-pillar__icon,
body.public-shell--uacm .pillar--networking .portal-pillar__icon,
body.public-shell--uacm .pillar--bolsa .portal-pillar__icon,
body.public-shell--uacm .pillar--cred .portal-pillar__icon {
    background: #f1f1f1;
    color: var(--uacm-red-700);
    border-radius: 5px;
    border: 1px solid #dfdfdf;
}

body.public-shell--uacm .portal-pillar__text strong {
    color: #1f1f1f;
    font-family: 'Merriweather', Georgia, serif;
    font-size: 0.9rem;
}

body.public-shell--uacm .portal-pillar__text span {
    color: #5d5d5d;
    font-size: 0.82rem;
}

body.public-shell--uacm .portal-stats {
    gap: 0.6rem;
    border-top: 1px solid var(--uacm-line-300);
    margin-top: 0.25rem;
    padding-top: 0.95rem;
    flex-wrap: wrap;
}

body.public-shell--uacm .portal-stat {
    min-width: 170px;
    padding: 0.5rem 0.7rem;
    border: 1px solid var(--uacm-line-300);
    border-radius: 4px;
    background: #ffffff;
}

body.public-shell--uacm .portal-stat strong {
    color: var(--uacm-red-700);
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.6rem;
}

body.public-shell--uacm .portal-stat span {
    color: #5f5f5f;
}

body.public-shell--uacm .portal-auth-panel {
    padding: 2.5rem 0 2.3rem 2rem;
    border-left: 1px solid var(--uacm-line-300);
}

body.public-shell--uacm .portal-auth-card {
    background: #ffffff;
    border: 1px solid var(--uacm-line-300);
    border-radius: 6px;
    box-shadow: none;
}

body.public-shell--uacm .portal-auth-card h2 {
    font-family: 'Merriweather', Georgia, serif;
    color: #1d1d1d;
}

body.public-shell--uacm .auth-tagline,
body.public-shell--uacm .auth-field label,
body.public-shell--uacm .auth-divider,
body.public-shell--uacm .rl-label {
    color: #5b5b5b;
}

body.public-shell--uacm .auth-input {
    background: #ffffff;
    border: 1px solid #cfcfcf;
    color: #1d1d1d;
}

body.public-shell--uacm .auth-input:focus {
    border-color: var(--uacm-red-700);
    box-shadow: 0 0 0 3px rgba(153, 0, 0, 0.08);
}

body.public-shell--uacm .auth-submit {
    background: var(--uacm-red-700);
    color: #ffffff;
    border-radius: 4px;
}

body.public-shell--uacm .auth-submit:hover {
    background: var(--uacm-red-800);
    opacity: 1;
}

body.public-shell--uacm .auth-register-link {
    border: 1px solid var(--uacm-line-300);
    border-radius: 4px;
    background: #ffffff;
}

body.public-shell--uacm .auth-register-link:hover {
    border-color: #bcbcbc;
    background: #fafafa;
}

body.public-shell--uacm .rl-action {
    color: var(--uacm-blue-600);
}

body.public-shell--uacm .feature-section,
body.public-shell--uacm .process-section,
body.public-shell--uacm .jobboard-section,
body.public-shell--uacm .testimonials-section {
    background: #ffffff;
    border-bottom: 1px solid var(--uacm-line-300);
    padding: 3.25rem 1.5rem;
}

body.public-shell--uacm .benefits-strip,
body.public-shell--uacm .networking-section {
    background: #f4f4f4;
    border-bottom: 1px solid var(--uacm-line-300);
    padding: 3.25rem 1.5rem;
}

body.public-shell--uacm .feature-section__header {
    text-align: left;
    margin-bottom: 1.8rem;
}

body.public-shell--uacm .section-kicker {
    color: var(--uacm-red-700);
    font-size: 0.76rem;
    letter-spacing: 0.11em;
}

body.public-shell--uacm .feature-section__header h2,
body.public-shell--uacm .testimonials-header h2 {
    color: #1f1f1f;
    font-family: 'Merriweather', Georgia, serif;
    font-size: clamp(1.55rem, 3.2vw, 2.25rem);
    line-height: 1.3;
    text-transform: none;
    letter-spacing: 0;
}

body.public-shell--uacm .feature-section__header p {
    color: #595959;
    font-size: 0.98rem;
    max-width: 70ch;
    margin: 0;
}

body.public-shell--uacm .feature-tile,
body.public-shell--uacm .benefit-item,
body.public-shell--uacm .process-step,
body.public-shell--uacm .alumni-portal-card,
body.public-shell--uacm .jobboard-col,
body.public-shell--uacm .jobboard-stat-card,
body.public-shell--uacm .testimony-card {
    border: 1px solid var(--uacm-line-300);
    border-radius: 4px;
    background: #ffffff;
    box-shadow: none;
    transition: border-color 0.15s ease;
}

body.public-shell--uacm .feature-tile:hover,
body.public-shell--uacm .benefit-item:hover,
body.public-shell--uacm .process-step:hover,
body.public-shell--uacm .alumni-portal-card:hover,
body.public-shell--uacm .jobboard-col:hover,
body.public-shell--uacm .jobboard-stat-card:hover,
body.public-shell--uacm .testimony-card:hover {
    transform: none;
    box-shadow: none;
    border-color: #bdbdbd;
}

body.public-shell--uacm .feature-tile h3,
body.public-shell--uacm .benefit-item h4,
body.public-shell--uacm .process-step h4,
body.public-shell--uacm .jobboard-col h3,
body.public-shell--uacm .jobboard-stat-card h3,
body.public-shell--uacm .alumni-portal-card h4 {
    color: #1f1f1f;
    font-family: 'Merriweather', Georgia, serif;
}

body.public-shell--uacm .feature-tile p,
body.public-shell--uacm .benefit-item p,
body.public-shell--uacm .process-step p,
body.public-shell--uacm .alumni-portal-card p,
body.public-shell--uacm .jobboard-flow-step span:last-child,
body.public-shell--uacm .jbs-row span,
body.public-shell--uacm .testimony-card blockquote {
    color: #585858;
}

body.public-shell--uacm .feature-tile__icon,
body.public-shell--uacm .process-step__num,
body.public-shell--uacm .jfs-num,
body.public-shell--uacm .testimony-avatar {
    background: var(--uacm-red-700);
    color: #ffffff;
    border: none;
}

body.public-shell--uacm .feature-tile__link {
    color: var(--uacm-blue-600);
}

body.public-shell--uacm .feature-tile__link:hover {
    text-decoration: underline;
    gap: 0.3rem;
}

body.public-shell--uacm .alumni-portal-avatar {
    background: var(--uacm-red-700);
    color: #ffffff;
    border: 1px solid #830000;
}

body.public-shell--uacm .alumni-portal-avatar--anon {
    background: #cdcdcd;
    border-color: #bbbbbb;
}

body.public-shell--uacm .jobboard-col,
body.public-shell--uacm .jobboard-stat-card {
    background: #fbfbfb;
}

body.public-shell--uacm .jobboard-flow-step {
    border-bottom-color: #e1e1e1;
}

body.public-shell--uacm .jobboard-stat-card h3,
body.public-shell--uacm .jbs-row strong {
    color: var(--uacm-red-700);
}

body.public-shell--uacm .site-footer {
    background: #e8e8e8;
    border-top: 4px solid var(--uacm-red-700);
}

body.public-shell--uacm .footer-logo .brand__seal {
    background: var(--uacm-red-700);
    color: #ffffff;
}

body.public-shell--uacm .footer-logo strong,
body.public-shell--uacm .footer-links-title {
    color: #242424;
}

body.public-shell--uacm .footer-desc,
body.public-shell--uacm .footer-rights p {
    color: #555555;
}

body.public-shell--uacm .footer-col a {
    color: var(--uacm-blue-600);
}

body.public-shell--uacm .footer-col a:hover {
    text-decoration: underline;
}

body.public-shell--uacm .footer-rights {
    border-top: 1px solid #d3d3d3;
    background: #dfdfdf;
}

body.public-shell--uacm .hdr-overlay {
    background: rgba(0, 0, 0, 0.42);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

@media (max-width: 1000px) {
    body.public-shell--uacm .portal-hero__inner {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    body.public-shell--uacm .portal-auth-panel {
        border-left: none;
        padding: 0 0 2.1rem;
    }

    body.public-shell--uacm .jobboard-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 800px) {
    body.public-shell--uacm header.site-header .hdr-menu-toggle__line {
        background: #ffffff;
    }

    body.public-shell--uacm header.site-header .hdr-nav {
        background: var(--uacm-red-700) !important;
        border-bottom: 1px solid #6b0000 !important;
    }

    body.public-shell--uacm header.site-header .hdr-nav > a {
        color: #ffffff !important;
        border-bottom: none !important;
    }

    body.public-shell--uacm header.site-header .hdr-nav > a:hover {
        background: rgba(255, 255, 255, 0.14);
    }

    body.public-shell--uacm .hdr-mobile-actions .hdr-link,
    body.public-shell--uacm .hdr-mobile-actions .hdr-btn {
        border-color: rgba(255, 255, 255, 0.7);
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
    }

    body.public-shell--uacm .hdr-mobile-actions .hdr-btn--primary {
        background: #ffffff !important;
        border-color: #ffffff !important;
        color: #990000 !important;
    }

    body.public-shell--uacm .hdr-mobile-actions .hdr-btn--ghost {
        background: transparent !important;
        border-color: rgba(255, 255, 255, 0.75) !important;
        color: #ffffff !important;
    }

    body.public-shell--uacm .portal-headline {
        font-size: clamp(1.75rem, 9vw, 2.25rem);
    }

    body.public-shell--uacm .portal-hero-btn {
        flex: 1 1 100%;
        justify-content: center;
    }

    body.public-shell--uacm .feature-section__header {
        text-align: left;
    }
}

@media (max-width: 480px) {
    body.public-shell--uacm .institution-strip__inner {
        gap: 0.35rem;
    }

    body.public-shell--uacm .institution-strip__inner span {
        font-size: 0.67rem;
    }

    body.public-shell--uacm header.site-header .hdr-inner {
        height: 68px !important;
        padding: 0 0.85rem !important;
    }

    body.public-shell--uacm .portal-institution {
        padding: 0.42rem 0.55rem;
    }

    body.public-shell--uacm .portal-headline {
        font-size: clamp(1.55rem, 11vw, 2rem);
    }

    body.public-shell--uacm .portal-subtitle {
        font-size: 0.95rem;
    }

    body.public-shell--uacm .portal-stat {
        min-width: 100%;
    }
}

/* ---- PREMIUM BOOTSTRAP 5 THEME ---- */
:root {
    --premium-bg: #f6f7fb;
    --premium-surface: #ffffff;
    --premium-navy-900: #0f172a;
    --premium-navy-800: #172554;
    --premium-ink-900: #1e293b;
    --premium-ink-700: #475569;
    --premium-line: #dce2ee;
    --premium-gold: #b08a4b;
}

body.public-shell--premium-bs5 {
    background: var(--premium-bg);
    color: var(--premium-ink-900);
    font-family: 'Source Sans 3', sans-serif;
}

body.public-shell--premium-bs5 h1,
body.public-shell--premium-bs5 h2,
body.public-shell--premium-bs5 h3,
body.public-shell--premium-bs5 h4,
body.public-shell--premium-bs5 h5 {
    font-family: 'Merriweather', serif;
    color: var(--premium-navy-900);
}

body.public-shell--premium-bs5 .institution-strip,
body.public-shell--premium-bs5 header.site-header,
body.public-shell--premium-bs5 main,
body.public-shell--premium-bs5 footer.site-footer {
    position: relative;
    z-index: 1;
}

body.public-shell--premium-bs5 .institution-strip {
    background: linear-gradient(100deg, #0f172a 0%, #1e293b 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.public-shell--premium-bs5 .institution-strip__inner span {
    color: rgba(241, 245, 249, 0.88);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.7rem;
    font-weight: 700;
}

body.public-shell--premium-bs5 header.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.92) !important;
    border-bottom: 1px solid var(--premium-line) !important;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
}

body.public-shell--premium-bs5 header.site-header .hdr-inner {
    max-width: 1320px;
    height: 72px !important;
    padding: 0 1.25rem !important;
}

body.public-shell--premium-bs5 header.site-header .brand__seal {
    background: linear-gradient(135deg, #1e3a8a, #0f172a);
    color: #f8fafc;
    border: 1px solid rgba(176, 138, 75, 0.55);
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.2);
}

body.public-shell--premium-bs5 header.site-header .hdr-brand-name {
    color: var(--premium-navy-900);
    font-family: 'Merriweather', serif;
    font-size: 1.16rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

body.public-shell--premium-bs5 header.site-header .hdr-nav > a,
body.public-shell--premium-bs5 header.site-header .hdr-link {
    color: var(--premium-ink-900) !important;
    text-transform: none;
    letter-spacing: 0.02em;
    font-size: 0.86rem;
    font-weight: 700;
}

body.public-shell--premium-bs5 header.site-header .hdr-nav > a:hover,
body.public-shell--premium-bs5 header.site-header .hdr-link:hover {
    color: var(--premium-navy-800) !important;
    border-bottom-color: var(--premium-gold);
}

body.public-shell--premium-bs5 header.site-header .hdr-btn {
    border-radius: 999px;
}

body.public-shell--premium-bs5 header.site-header .hdr-btn--primary {
    background: linear-gradient(135deg, #1e3a8a, #172554);
    color: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.25);
}

body.public-shell--premium-bs5 header.site-header .hdr-btn--ghost {
    background: #ffffff;
    color: var(--premium-navy-900);
    border: 1px solid #cbd5e1;
}

body.public-shell--premium-bs5 .portal-hero {
    background: radial-gradient(circle at 100% 0%, rgba(30, 58, 138, 0.12), transparent 38%),
                radial-gradient(circle at 0% 100%, rgba(176, 138, 75, 0.13), transparent 36%),
                linear-gradient(180deg, #f8fafc 0%, #eef2f8 100%);
    min-height: auto;
    border-bottom: 1px solid var(--premium-line);
    padding: 2.25rem 0 2.4rem;
}

body.public-shell--premium-bs5 .portal-hero::before,
body.public-shell--premium-bs5 .portal-hero::after {
    display: none;
}

body.public-shell--premium-bs5 .portal-hero__inner {
    max-width: 1240px;
    margin: 0 auto;
}

body.public-shell--premium-bs5 .portal-identity {
    color: var(--premium-ink-900);
    padding: 0.2rem 0.25rem 0.45rem;
    gap: 1rem;
}

body.public-shell--premium-bs5 .portal-institution {
    width: fit-content;
    padding: 0.48rem 0.68rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid #d8e0ec;
}

body.public-shell--premium-bs5 .portal-crest {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, #1e3a8a, #172554);
    color: #ffffff;
    border: 1px solid rgba(176, 138, 75, 0.6);
    font-family: 'Playfair Display', serif;
}

body.public-shell--premium-bs5 .portal-institution-name {
    color: #334155;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
}

body.public-shell--premium-bs5 .portal-headline {
    color: #0f172a;
    font-size: clamp(1.95rem, 3.8vw, 3.05rem);
    line-height: 1.18;
    max-width: 24ch;
    margin: 0;
}

body.public-shell--premium-bs5 .portal-subtitle {
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.72;
    max-width: 62ch;
    margin: 0;
}

body.public-shell--premium-bs5 .portal-hero-actions {
    gap: 0.7rem;
    margin: 0.1rem 0;
}

body.public-shell--premium-bs5 .portal-hero-btn {
    border-radius: 999px;
    min-height: 42px;
    padding: 0.56rem 1.05rem;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.public-shell--premium-bs5 .portal-hero-btn:hover {
    transform: translateY(-1px);
}

body.public-shell--premium-bs5 .portal-hero-btn--primary {
    background: linear-gradient(135deg, #1e3a8a, #172554);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.22);
}

body.public-shell--premium-bs5 .portal-hero-btn--ghost {
    background: #ffffff;
    color: #1e293b;
    border: 1px solid #cbd5e1;
}

body.public-shell--premium-bs5 .portal-pillars {
    gap: 0.65rem;
}

body.public-shell--premium-bs5 .portal-pillar {
    border-radius: 14px;
    border: 1px solid #dde4ef;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

body.public-shell--premium-bs5 .portal-pillar:hover {
    background: #ffffff;
    transform: translateY(-1px);
}

body.public-shell--premium-bs5 .portal-pillar__icon {
    border-radius: 10px;
    border: 1px solid #d9e2f0;
}

body.public-shell--premium-bs5 .portal-pillar__text strong {
    color: #0f172a;
    font-family: 'Merriweather', serif;
    font-size: 0.92rem;
}

body.public-shell--premium-bs5 .portal-pillar__text span {
    color: #5b6b80;
}

body.public-shell--premium-bs5 .portal-stats {
    gap: 0.65rem;
    border-top: 1px solid #d9e2ef;
    padding-top: 1rem;
    flex-wrap: wrap;
}

body.public-shell--premium-bs5 .portal-stat {
    min-width: 180px;
    padding: 0.58rem 0.78rem;
    border: 1px solid #d9e2ef;
    border-radius: 12px;
    background: #ffffff;
}

body.public-shell--premium-bs5 .portal-stat strong {
    color: #172554;
    font-family: 'Merriweather', serif;
    font-size: 1.42rem;
}

body.public-shell--premium-bs5 .portal-stat span {
    color: #5e6b80;
}

body.public-shell--premium-bs5 .portal-auth-panel {
    border-left: none;
    padding: 0;
}

body.public-shell--premium-bs5 .portal-auth-card {
    border: 1px solid #d9e2ef;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

body.public-shell--premium-bs5 .portal-auth-card h2 {
    font-family: 'Merriweather', serif;
    color: #0f172a;
    font-size: 1.45rem;
}

body.public-shell--premium-bs5 .auth-tagline,
body.public-shell--premium-bs5 .auth-field label,
body.public-shell--premium-bs5 .auth-divider,
body.public-shell--premium-bs5 .rl-label {
    color: #5d6d82;
}

body.public-shell--premium-bs5 .auth-input {
    background: #f8fafc;
    border: 1px solid #d5deea;
    color: #1e293b;
}

body.public-shell--premium-bs5 .auth-input:focus {
    border-color: #1e3a8a;
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
}

body.public-shell--premium-bs5 .auth-submit {
    background: linear-gradient(135deg, #1e3a8a, #172554);
    border-radius: 999px;
    color: #ffffff;
}

body.public-shell--premium-bs5 .auth-register-link {
    background: #f8fafc;
    border: 1px solid #d7e0ec;
    border-radius: 12px;
}

body.public-shell--premium-bs5 .auth-register-link:hover {
    background: #ffffff;
    border-color: #c3d0e2;
}

body.public-shell--premium-bs5 .rl-action {
    color: #1e3a8a;
}

body.public-shell--premium-bs5 .feature-section,
body.public-shell--premium-bs5 .process-section,
body.public-shell--premium-bs5 .jobboard-section {
    background: #ffffff;
    border-bottom: 1px solid #e1e8f2;
    padding: 3.25rem 1.25rem;
}

body.public-shell--premium-bs5 .benefits-strip,
body.public-shell--premium-bs5 .networking-section {
    background: #f8fafd;
    border-bottom: 1px solid #e1e8f2;
    padding: 3.25rem 1.25rem;
}

body.public-shell--premium-bs5 .testimonials-section {
    background: linear-gradient(180deg, #0f172a 0%, #111b35 100%);
    padding: 3.25rem 1.25rem;
}

body.public-shell--premium-bs5 .feature-section__header {
    text-align: left;
    margin-bottom: 1.6rem;
}

body.public-shell--premium-bs5 .section-kicker {
    color: var(--premium-gold);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

body.public-shell--premium-bs5 .feature-section__header h2 {
    font-size: clamp(1.55rem, 2.6vw, 2.2rem);
    color: #0f172a;
}

body.public-shell--premium-bs5 .feature-section__header p {
    color: #55657a;
    font-size: 0.96rem;
    max-width: 66ch;
    margin: 0;
}

body.public-shell--premium-bs5 .feature-tiles,
body.public-shell--premium-bs5 .benefits-list,
body.public-shell--premium-bs5 .process-steps,
body.public-shell--premium-bs5 .networking-grid,
body.public-shell--premium-bs5 .jobboard-columns,
body.public-shell--premium-bs5 .testimonials-grid {
    display: flex !important;
}

body.public-shell--premium-bs5 .feature-tile,
body.public-shell--premium-bs5 .benefit-item,
body.public-shell--premium-bs5 .process-step,
body.public-shell--premium-bs5 .alumni-portal-card,
body.public-shell--premium-bs5 .jobboard-col,
body.public-shell--premium-bs5 .jobboard-stat-card,
body.public-shell--premium-bs5 .testimony-card {
    border: 1px solid #dce4ef;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

body.public-shell--premium-bs5 .feature-tile:hover,
body.public-shell--premium-bs5 .benefit-item:hover,
body.public-shell--premium-bs5 .process-step:hover,
body.public-shell--premium-bs5 .alumni-portal-card:hover,
body.public-shell--premium-bs5 .jobboard-col:hover,
body.public-shell--premium-bs5 .jobboard-stat-card:hover,
body.public-shell--premium-bs5 .testimony-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.09);
    border-color: #cdd9e8;
}

body.public-shell--premium-bs5 .feature-tile h3,
body.public-shell--premium-bs5 .benefit-item h4,
body.public-shell--premium-bs5 .process-step h4,
body.public-shell--premium-bs5 .jobboard-col h3,
body.public-shell--premium-bs5 .jobboard-stat-card h3,
body.public-shell--premium-bs5 .alumni-portal-card h4 {
    color: #0f172a;
    font-size: 1.25rem;
}

body.public-shell--premium-bs5 .feature-tile p,
body.public-shell--premium-bs5 .benefit-item p,
body.public-shell--premium-bs5 .process-step p,
body.public-shell--premium-bs5 .alumni-portal-card p,
body.public-shell--premium-bs5 .jobboard-flow-step span:last-child,
body.public-shell--premium-bs5 .jbs-row span {
    color: #5b6a80;
}

body.public-shell--premium-bs5 .feature-tile__icon,
body.public-shell--premium-bs5 .process-step__num,
body.public-shell--premium-bs5 .jfs-num,
body.public-shell--premium-bs5 .testimony-avatar {
    background: linear-gradient(135deg, #1e3a8a, #172554);
    color: #ffffff;
    border: 1px solid rgba(176, 138, 75, 0.35);
}

body.public-shell--premium-bs5 .feature-tile__link {
    color: #1e3a8a;
}

body.public-shell--premium-bs5 .feature-tile__link:hover {
    color: #0f172a;
}

body.public-shell--premium-bs5 .alumni-portal-avatar {
    background: linear-gradient(135deg, #1e3a8a, #172554);
    color: #ffffff;
    border: 1px solid rgba(176, 138, 75, 0.45);
}

body.public-shell--premium-bs5 .jobboard-flow-step {
    border-bottom-color: #e3e8f1;
}

body.public-shell--premium-bs5 .jobboard-stat-card {
    background: linear-gradient(180deg, #0f172a 0%, #172554 100%);
    border-color: rgba(255, 255, 255, 0.08);
}

body.public-shell--premium-bs5 .jobboard-stat-card h3 {
    color: rgba(255, 255, 255, 0.84);
}

body.public-shell--premium-bs5 .jbs-row strong {
    color: #e9d2a5;
}

body.public-shell--premium-bs5 .testimonials-header .section-kicker,
body.public-shell--premium-bs5 .testimonials-header h2,
body.public-shell--premium-bs5 .testimony-card blockquote,
body.public-shell--premium-bs5 .testimony-author-name,
body.public-shell--premium-bs5 .testimony-author-role {
    color: #f8fafc !important;
}

body.public-shell--premium-bs5 .testimony-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
}

body.public-shell--premium-bs5 .site-footer {
    background: #0f172a;
    border-top: 1px solid rgba(176, 138, 75, 0.34);
}

body.public-shell--premium-bs5 .footer-logo .brand__seal {
    background: linear-gradient(135deg, #1e3a8a, #172554);
    color: #ffffff;
}

body.public-shell--premium-bs5 .footer-logo strong,
body.public-shell--premium-bs5 .footer-links-title,
body.public-shell--premium-bs5 .footer-col a {
    color: #f8fafc;
}

body.public-shell--premium-bs5 .footer-col a:hover {
    color: #e9d2a5;
}

body.public-shell--premium-bs5 .footer-desc,
body.public-shell--premium-bs5 .footer-rights p {
    color: rgba(241, 245, 249, 0.7);
}

body.public-shell--premium-bs5 .footer-rights {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body.public-shell--premium-bs5 .hdr-overlay {
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

@media (max-width: 1000px) {
    body.public-shell--premium-bs5 .portal-hero {
        padding-top: 2rem;
    }

    body.public-shell--premium-bs5 .portal-hero__inner {
        gap: 1rem;
    }

    body.public-shell--premium-bs5 .portal-auth-panel {
        padding-bottom: 0.5rem;
    }
}

@media (max-width: 800px) {
    body.public-shell--premium-bs5 header.site-header .hdr-menu-toggle__line {
        background: #0f172a;
    }

    body.public-shell--premium-bs5 header.site-header .hdr-nav {
        background: #ffffff !important;
        border-bottom: 1px solid #d6dfec !important;
        box-shadow: 0 20px 34px rgba(15, 23, 42, 0.16);
    }

    body.public-shell--premium-bs5 header.site-header .hdr-nav > a {
        color: #1e293b !important;
        border-bottom: none !important;
        border-radius: 10px;
    }

    body.public-shell--premium-bs5 header.site-header .hdr-nav > a:hover {
        background: #f1f5fb;
    }

    body.public-shell--premium-bs5 .hdr-mobile-actions .hdr-link,
    body.public-shell--premium-bs5 .hdr-mobile-actions .hdr-btn {
        border-color: #d4deea;
        background: #f8fbff;
        color: #1e293b;
    }

    body.public-shell--premium-bs5 .hdr-mobile-actions .hdr-btn--primary {
        background: linear-gradient(135deg, #1e3a8a, #172554) !important;
        border-color: transparent !important;
        color: #ffffff !important;
    }

    body.public-shell--premium-bs5 .hdr-mobile-actions .hdr-btn--ghost {
        background: #ffffff !important;
        color: #0f172a !important;
        border-color: #d4deea !important;
    }

    body.public-shell--premium-bs5 .portal-headline {
        font-size: clamp(1.72rem, 8vw, 2.22rem);
    }

    body.public-shell--premium-bs5 .portal-hero-btn {
        flex: 1 1 100%;
        justify-content: center;
    }

    body.public-shell--premium-bs5 .feature-section__header {
        text-align: left;
    }
}

@media (max-width: 480px) {
    body.public-shell--premium-bs5 .institution-strip__inner {
        gap: 0.35rem;
    }

    body.public-shell--premium-bs5 .institution-strip__inner span {
        font-size: 0.67rem;
        letter-spacing: 0.06em;
    }

    body.public-shell--premium-bs5 header.site-header .hdr-inner {
        height: 70px !important;
        padding: 0 0.8rem !important;
    }

    body.public-shell--premium-bs5 .portal-institution {
        border-radius: 14px;
    }

    body.public-shell--premium-bs5 .portal-headline {
        font-size: clamp(1.5rem, 9.8vw, 1.95rem);
    }

    body.public-shell--premium-bs5 .portal-subtitle {
        font-size: 0.96rem;
    }

    body.public-shell--premium-bs5 .portal-stat {
        min-width: 100%;
    }
}

/* ---- PREMIUM ACADEMIC REFINEMENT ---- */
body.public-shell--premium-bs5 {
    font-size: 15.5px;
    --mix-fldch-burgundy-700: #820707;
    --mix-fldch-burgundy-600: #a11300;
    --mix-inef-blue-900: #142c54;
    --mix-inef-blue-700: #183761;
    --mix-gold-500: #c58a3a;
    --mix-ink-900: #1f2937;
    --mix-ink-700: #5b6675;
    --mix-line: #d6dde7;
    --mix-paper: #f8f9fb;
}

body.public-shell--premium-bs5 h1,
body.public-shell--premium-bs5 h2,
body.public-shell--premium-bs5 h3,
body.public-shell--premium-bs5 h4,
body.public-shell--premium-bs5 h5 {
    font-family: 'Merriweather', serif;
}

body.public-shell--premium-bs5 .institution-strip {
    background: linear-gradient(106deg, var(--mix-inef-blue-900) 0%, var(--mix-inef-blue-700) 46%, var(--mix-fldch-burgundy-700) 100%);
    border-bottom-color: rgba(197, 138, 58, 0.42);
}

body.public-shell--premium-bs5 .institution-strip__inner span {
    color: rgba(248, 250, 252, 0.9);
}

body.public-shell--premium-bs5 header.site-header {
    background: rgba(248, 249, 252, 0.94) !important;
    border-bottom: 1px solid var(--mix-line) !important;
}

body.public-shell--premium-bs5 header.site-header .brand__seal,
body.public-shell--premium-bs5 .portal-crest,
body.public-shell--premium-bs5 .footer-logo .brand__seal,
body.public-shell--premium-bs5 .alumni-portal-avatar,
body.public-shell--premium-bs5 .feature-tile__icon,
body.public-shell--premium-bs5 .process-step__num,
body.public-shell--premium-bs5 .jfs-num,
body.public-shell--premium-bs5 .testimony-avatar {
    background: linear-gradient(135deg, var(--mix-fldch-burgundy-700), var(--mix-inef-blue-900));
    border-color: rgba(197, 138, 58, 0.52);
}

body.public-shell--premium-bs5 header.site-header .hdr-brand-name,
body.public-shell--premium-bs5 .portal-headline,
body.public-shell--premium-bs5 .portal-auth-card h2,
body.public-shell--premium-bs5 .feature-section__header h2,
body.public-shell--premium-bs5 .feature-tile h3,
body.public-shell--premium-bs5 .benefit-item h4,
body.public-shell--premium-bs5 .process-step h4,
body.public-shell--premium-bs5 .jobboard-col h3,
body.public-shell--premium-bs5 .jobboard-stat-card h3,
body.public-shell--premium-bs5 .alumni-portal-card h4 {
    color: var(--mix-inef-blue-900);
}

body.public-shell--premium-bs5 .portal-subtitle,
body.public-shell--premium-bs5 .auth-tagline,
body.public-shell--premium-bs5 .auth-field label,
body.public-shell--premium-bs5 .auth-divider,
body.public-shell--premium-bs5 .rl-label,
body.public-shell--premium-bs5 .feature-section__header p,
body.public-shell--premium-bs5 .feature-tile p,
body.public-shell--premium-bs5 .benefit-item p,
body.public-shell--premium-bs5 .process-step p,
body.public-shell--premium-bs5 .alumni-portal-card p,
body.public-shell--premium-bs5 .jobboard-flow-step span:last-child,
body.public-shell--premium-bs5 .jbs-row span,
body.public-shell--premium-bs5 .portal-pillar__text span,
body.public-shell--premium-bs5 .portal-stat span {
    color: var(--mix-ink-700);
}

body.public-shell--premium-bs5 header.site-header .hdr-nav > a,
body.public-shell--premium-bs5 header.site-header .hdr-link {
    color: var(--mix-inef-blue-900) !important;
}

body.public-shell--premium-bs5 header.site-header .hdr-nav > a:hover,
body.public-shell--premium-bs5 header.site-header .hdr-link:hover {
    color: var(--mix-fldch-burgundy-700) !important;
    border-bottom-color: var(--mix-gold-500);
}

body.public-shell--premium-bs5 header.site-header .hdr-btn--primary,
body.public-shell--premium-bs5 .portal-hero-btn--primary,
body.public-shell--premium-bs5 .auth-submit {
    background: linear-gradient(135deg, var(--mix-fldch-burgundy-700), var(--mix-inef-blue-900));
}

body.public-shell--premium-bs5 header.site-header .hdr-btn--ghost,
body.public-shell--premium-bs5 .portal-hero-btn--ghost {
    color: var(--mix-inef-blue-900);
    border-color: #c7d2e2;
}

body.public-shell--premium-bs5 .portal-hero {
    background: radial-gradient(circle at 10% 8%, rgba(130, 7, 7, 0.11), transparent 42%),
                radial-gradient(circle at 92% 4%, rgba(24, 55, 97, 0.14), transparent 44%),
                linear-gradient(180deg, #fafbfd 0%, #eef2f7 100%);
}

body.public-shell--premium-bs5 .portal-institution {
    background: rgba(255, 255, 255, 0.92);
    border-color: #d4dce7;
}

body.public-shell--premium-bs5 .portal-auth-card {
    border: 1px solid var(--mix-line);
    border-top: 3px solid var(--mix-gold-500);
    background: linear-gradient(180deg, #ffffff 0%, #f9fbfe 100%);
}

body.public-shell--premium-bs5 .portal-pillar,
body.public-shell--premium-bs5 .portal-stat,
body.public-shell--premium-bs5 .feature-tile,
body.public-shell--premium-bs5 .benefit-item,
body.public-shell--premium-bs5 .process-step,
body.public-shell--premium-bs5 .alumni-portal-card,
body.public-shell--premium-bs5 .jobboard-col,
body.public-shell--premium-bs5 .jobboard-stat-card,
body.public-shell--premium-bs5 .testimony-card {
    border-color: var(--mix-line);
}

body.public-shell--premium-bs5 .section-kicker,
body.public-shell--premium-bs5 .feature-tile__link,
body.public-shell--premium-bs5 .rl-action {
    color: var(--mix-fldch-burgundy-700);
}

body.public-shell--premium-bs5 .feature-tile__link:hover {
    color: var(--mix-inef-blue-900);
}

body.public-shell--premium-bs5 .auth-input {
    background: var(--mix-paper);
    border-color: #d3dbe7;
    color: var(--mix-ink-900);
}

body.public-shell--premium-bs5 .auth-input:focus {
    border-color: var(--mix-inef-blue-700);
    box-shadow: 0 0 0 4px rgba(24, 55, 97, 0.11);
}

body.public-shell--premium-bs5 .site-footer {
    background: linear-gradient(136deg, #102447 0%, var(--mix-inef-blue-900) 58%, #0e1f3c 100%);
    border-top: 1px solid rgba(197, 138, 58, 0.44);
}

body.public-shell--premium-bs5 .footer-col a:hover {
    color: #efc98f;
}

body.public-shell--premium-bs5 .institution-strip__inner span {
    font-size: 0.68rem;
    letter-spacing: 0.05em;
}

body.public-shell--premium-bs5 header.site-header .hdr-inner {
    height: 70px !important;
}

body.public-shell--premium-bs5 header.site-header .brand__seal {
    width: 38px;
    height: 38px;
    border-radius: 9px;
}

body.public-shell--premium-bs5 header.site-header .hdr-brand-name {
    font-size: 1.08rem;
}

body.public-shell--premium-bs5 header.site-header .hdr-nav > a,
body.public-shell--premium-bs5 header.site-header .hdr-link {
    font-size: 0.82rem;
    letter-spacing: 0.015em;
}

body.public-shell--premium-bs5 .portal-hero {
    padding: 1.9rem 0 2.1rem;
}

body.public-shell--premium-bs5 .portal-hero__inner {
    max-width: 1180px;
    display: flex !important;
    flex-wrap: wrap;
    align-items: stretch;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.public-shell--premium-bs5 .portal-identity {
    gap: 0.82rem;
}

body.public-shell--premium-bs5 .portal-headline {
    font-size: clamp(1.82rem, 3.1vw, 2.65rem);
    line-height: 1.2;
    max-width: 20ch;
}

body.public-shell--premium-bs5 .portal-subtitle {
    font-size: 0.94rem;
    line-height: 1.66;
    max-width: 58ch;
}

body.public-shell--premium-bs5 .portal-hero-actions {
    gap: 0.6rem;
}

body.public-shell--premium-bs5 .portal-hero-btn {
    min-height: 40px;
    padding: 0.52rem 0.95rem;
    font-size: 0.9rem;
}

body.public-shell--premium-bs5 .portal-pillar {
    border-radius: 12px;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.05);
}

body.public-shell--premium-bs5 .portal-pillar__text strong {
    font-size: 0.88rem;
}

body.public-shell--premium-bs5 .portal-pillar__text span {
    font-size: 0.82rem;
}

body.public-shell--premium-bs5 .portal-stat {
    min-width: 160px;
}

body.public-shell--premium-bs5 .portal-stat strong {
    font-size: 1.28rem;
}

body.public-shell--premium-bs5 .portal-stat span {
    font-size: 0.72rem;
}

body.public-shell--premium-bs5 .portal-auth-panel {
    display: flex;
    align-items: flex-start;
}

body.public-shell--premium-bs5 .portal-auth-card {
    width: 100%;
    max-width: 470px;
    margin-left: auto;
    border-radius: 12px;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
    padding: 1.35rem 1.15rem 1.1rem;
}

body.public-shell--premium-bs5 .portal-auth-card h2 {
    font-size: 1.32rem;
}

body.public-shell--premium-bs5 .auth-tagline {
    font-size: 0.9rem;
    line-height: 1.45;
    margin-bottom: 1rem;
}

body.public-shell--premium-bs5 .auth-form {
    gap: 0.66rem;
}

body.public-shell--premium-bs5 .auth-field {
    gap: 0.25rem;
}

body.public-shell--premium-bs5 .auth-field label {
    font-size: 0.8rem;
    font-weight: 700;
}

body.public-shell--premium-bs5 .auth-input {
    height: 40px;
    font-size: 0.89rem;
}

body.public-shell--premium-bs5 .auth-submit {
    height: 42px;
    font-size: 0.92rem;
}

body.public-shell--premium-bs5 .auth-divider {
    margin: 0.95rem 0 0.7rem;
    font-size: 0.72rem;
    letter-spacing: 0.075em;
}

body.public-shell--premium-bs5 .auth-register-links {
    gap: 0.42rem;
}

body.public-shell--premium-bs5 .auth-register-link {
    padding: 0.56rem 0.72rem;
}

body.public-shell--premium-bs5 .auth-register-link .rl-label {
    font-size: 0.84rem;
    line-height: 1.35;
}

body.public-shell--premium-bs5 .auth-register-link .rl-action {
    font-size: 0.8rem;
    white-space: nowrap;
}

body.public-shell--premium-bs5 .feature-section,
body.public-shell--premium-bs5 .process-section,
body.public-shell--premium-bs5 .jobboard-section,
body.public-shell--premium-bs5 .benefits-strip,
body.public-shell--premium-bs5 .networking-section,
body.public-shell--premium-bs5 .testimonials-section {
    padding-top: 2.7rem;
    padding-bottom: 2.7rem;
}

body.public-shell--premium-bs5 .section-kicker {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}

body.public-shell--premium-bs5 .feature-section__header h2 {
    font-size: clamp(1.42rem, 2.05vw, 1.92rem);
}

body.public-shell--premium-bs5 .feature-section__header p {
    font-size: 0.93rem;
}

body.public-shell--premium-bs5 .feature-tile,
body.public-shell--premium-bs5 .benefit-item,
body.public-shell--premium-bs5 .process-step,
body.public-shell--premium-bs5 .alumni-portal-card,
body.public-shell--premium-bs5 .jobboard-col,
body.public-shell--premium-bs5 .jobboard-stat-card,
body.public-shell--premium-bs5 .testimony-card {
    border-radius: 10px;
    box-shadow: 0 7px 16px rgba(15, 23, 42, 0.06);
}

body.public-shell--premium-bs5 .feature-tile h3,
body.public-shell--premium-bs5 .benefit-item h4,
body.public-shell--premium-bs5 .process-step h4,
body.public-shell--premium-bs5 .jobboard-col h3,
body.public-shell--premium-bs5 .jobboard-stat-card h3,
body.public-shell--premium-bs5 .alumni-portal-card h4 {
    font-size: 1.08rem;
}

body.public-shell--premium-bs5 .feature-tile p,
body.public-shell--premium-bs5 .benefit-item p,
body.public-shell--premium-bs5 .process-step p,
body.public-shell--premium-bs5 .jobboard-flow-step span:last-child,
body.public-shell--premium-bs5 .alumni-portal-card p,
body.public-shell--premium-bs5 .jbs-row span {
    font-size: 0.88rem;
}

@media (max-width: 1000px) {
    body.public-shell--premium-bs5 .portal-hero {
        padding-top: 1.35rem;
        padding-bottom: 1.7rem;
    }

    body.public-shell--premium-bs5 .portal-auth-card {
        max-width: none;
        margin-left: 0;
    }
}

@media (max-width: 800px) {
    body.public-shell--premium-bs5 .portal-headline {
        font-size: clamp(1.62rem, 7.5vw, 2.05rem);
    }

    body.public-shell--premium-bs5 .portal-subtitle {
        font-size: 0.9rem;
    }

    body.public-shell--premium-bs5 header.site-header .hdr-menu-toggle__line {
        background: var(--mix-inef-blue-700);
    }

    body.public-shell--premium-bs5 header.site-header .hdr-nav {
        background: #fcfdff !important;
        border-bottom: 1px solid #cfd8e5 !important;
    }

    body.public-shell--premium-bs5 header.site-header .hdr-nav > a {
        color: var(--mix-inef-blue-900) !important;
    }

    body.public-shell--premium-bs5 header.site-header .hdr-nav > a:hover {
        background: #eef2f8;
        color: var(--mix-fldch-burgundy-700) !important;
    }

    body.public-shell--premium-bs5 .hdr-mobile-actions .hdr-link,
    body.public-shell--premium-bs5 .hdr-mobile-actions .hdr-btn {
        border-color: #d2dbe8;
        background: #f6f8fc;
        color: var(--mix-inef-blue-900);
    }

    body.public-shell--premium-bs5 .hdr-mobile-actions .hdr-btn--primary {
        background: linear-gradient(135deg, var(--mix-fldch-burgundy-700), var(--mix-inef-blue-900)) !important;
        border-color: transparent !important;
        color: #ffffff !important;
    }

    body.public-shell--premium-bs5 .hdr-mobile-actions .hdr-btn--ghost {
        background: #ffffff !important;
        color: var(--mix-inef-blue-900) !important;
        border-color: #d2dbe8 !important;
    }
}

@media (max-width: 480px) {
    body.public-shell--premium-bs5 .institution-strip__inner span {
        font-size: 0.64rem;
    }

    body.public-shell--premium-bs5 header.site-header .hdr-inner {
        height: 66px !important;
    }

    body.public-shell--premium-bs5 .portal-headline {
        font-size: clamp(1.38rem, 8.8vw, 1.8rem);
    }

    body.public-shell--premium-bs5 .portal-auth-card {
        padding: 1.1rem 0.9rem 0.95rem;
    }
}

/* ---- ADMIN DASHBOARD METRO-INSPIRED ---- */
.admin-sidebar-backdrop { display: none; }

/* Dark sidebar menu button — white on navy */
.admin-topbar__menu-btn { display: none; }

.admin-shell--dashboard .admin-topbar__menu-btn {
    color: rgba(255, 255, 255, 0.7);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    transition: all 0.15s ease;
}

.admin-shell--dashboard .admin-topbar__menu-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

/* White ghost button on dark topbar */
.admin-shell--dashboard .admin-topbar .button--ghost {
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.2);
    background: transparent;
}

.admin-shell--dashboard .admin-topbar .button--ghost:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
}

.admin-shell--dashboard {
    --metro-sidebar: #2b3243;
    --metro-sidebar-text: rgba(255, 255, 255, 0.82);
    --metro-active: #536dfe;
    --metro-bg: #eceef4;
    --metro-surface: #ffffff;
    --metro-ink: #2b3243;
    --metro-muted: #8b94a7;
    --metro-line: #d9deea;
    --metro-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    --metro-shadow-soft: 0 10px 24px rgba(20, 28, 44, 0.08);
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    min-height: 100vh;
    background: var(--metro-bg);
    color: var(--metro-ink);
    font-family: 'Josefin Sans', 'Source Sans 3', sans-serif;
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.admin-shell--dashboard .admin-sidebar {
    position: sticky;
    top: 0;
    min-height: 100vh;
    height: 100vh;
    padding: 0;
    display: flex;
    flex-direction: column;
    background: var(--metro-sidebar);
    box-shadow: 10px 0 40px -4px rgba(0, 0, 0, 0.3);
}

.admin-shell--dashboard .admin-mark {
    height: 86px;
    display: grid;
    place-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-shell--dashboard .admin-mark__glyph {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 0.84rem;
    letter-spacing: 0.09em;
    color: #24304a;
    background: linear-gradient(135deg, #f2f5fb, #dce4f3);
}

.admin-shell--dashboard .admin-nav--metro {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
}

.admin-shell--dashboard .admin-nav--metro .admin-nav__item {
    min-height: 72px;
    padding: 0.75rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-left: 3px solid transparent;
    border-radius: 0;
    color: rgba(255, 255, 255, 0.72);
    background: transparent;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: all 0.24s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.admin-shell--dashboard .admin-nav--metro .admin-nav__item.is-active {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-left-color: #771d1d;
    box-shadow: inset 4px 0 0 #771d1d;
}

/* Estilos para admin-nav--metro en página pública */
.admin-nav--metro .admin-nav__item {
    min-height: 72px;
    padding: 0.75rem 0.5rem;
    border-left: 3px solid transparent;
    transition: all 0.24s cubic-bezier(0.4, 0, 0.2, 1);
    color: rgba(255, 255, 255, 0.72);
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.admin-nav--metro .admin-nav__item i {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.72);
}

.admin-nav--metro .admin-nav__item.is-active {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-left-color: #771d1d;
    box-shadow: inset 4px 0 0 #771d1d;
}

.admin-nav--metro .admin-nav__item.is-active i {
    color: #b79252;
}

.admin-shell--dashboard .admin-nav--metro .admin-nav__item:not(.is-active):hover {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.88);
}

.admin-shell--dashboard .admin-nav__item--muted {
    cursor: default;
    opacity: 0.62;
}

.admin-shell--dashboard .admin-nav__item > i {
    font-size: 1.2rem;
}

.admin-shell--dashboard .admin-sidebar__meta {
    margin-top: auto;
    padding: 1rem 0.6rem 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.76);
    display: grid;
    gap: 0.35rem;
    text-align: center;
}

.admin-shell--dashboard .admin-sidebar__meta-kicker {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #b79252;
    font-weight: 700;
}

.admin-shell--dashboard .admin-sidebar__meta strong {
    font-size: 0.84rem;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.admin-shell--dashboard .admin-sidebar__meta small {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.64);
    line-height: 1.35;
}

.admin-shell--dashboard .admin-main {
    padding: 0 1.2rem 1.2rem;
}

.admin-shell--dashboard .admin-topbar {
    margin: 0 -1.2rem 1rem;
    padding: 0 1.2rem;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: var(--metro-sidebar);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.admin-shell--dashboard .admin-topbar__left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.admin-shell--dashboard .admin-topbar__brand {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.02em;
}

.admin-shell--dashboard .admin-topbar__search-wrap {
    display: none;
}

.admin-shell--dashboard .admin-search-input {
    display: none;
}

.admin-shell--dashboard .admin-topbar__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
}

.admin-shell--dashboard .admin-topbar__logout {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.admin-shell--dashboard .admin-topbar__logout:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.25);
}

.admin-shell--dashboard .admin-topbar__logout:active {
    transform: scale(0.96);
}

.admin-shell--dashboard .admin-topbar__logout svg {
    flex-shrink: 0;
}

.admin-shell--dashboard .admin-page-pill {
    display: inline-flex;
    align-items: center;
    height: 40px;
    padding: 0 0.72rem;
    border: 1px solid var(--metro-line);
    border-radius: 2px;
    background: #ffffff;
    color: #4c5b79;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 700;
}

.admin-shell--dashboard .admin-topbar__icon {
    width: 42px;
    height: 42px;
    border: 1px solid var(--metro-line);
    border-radius: 2px;
    background: #f9fbff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: default;
}

.admin-shell--dashboard .admin-topbar__icon span {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    background: linear-gradient(135deg, #7e8aa4, #5f6a85);
}

.admin-shell--dashboard .admin-cutoff {
    display: inline-flex;
    align-items: center;
    height: 40px;
    padding: 0 0.7rem;
    border: 1px solid var(--metro-line);
    border-radius: 2px;
    background: #f9fbff;
    color: #6f7b92;
    font-size: 0.76rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 700;
}

.admin-shell--dashboard .admin-user-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.85rem;
    border: 1px solid rgba(119, 29, 29, 0.12);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(119, 29, 29, 0.04) 0%, rgba(183, 146, 82, 0.04) 100%);
    min-width: auto;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.admin-shell--dashboard .admin-user-pill:hover {
    background: linear-gradient(135deg, rgba(119, 29, 29, 0.08) 0%, rgba(183, 146, 82, 0.08) 100%);
    border-color: rgba(119, 29, 29, 0.2);
}

.admin-shell--dashboard .admin-user-pill strong {
    font-size: 0.88rem;
    color: #2a3a52;
    font-weight: 600;
    line-height: 1;
}

.admin-shell--dashboard .admin-user-pill small {
    font-size: 0.75rem;
    color: rgba(119, 29, 29, 0.6);
    line-height: 1;
    display: none;
}

.admin-shell--dashboard .button {
    min-height: 40px;
    border-radius: 8px;
    box-shadow: none;
    border: 1px solid rgba(119, 29, 29, 0.2);
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.admin-shell--dashboard .button--ghost {
    background: linear-gradient(135deg, rgba(119, 29, 29, 0.06) 0%, rgba(183, 146, 82, 0.04) 100%);
    border-color: rgba(119, 29, 29, 0.15);
    color: #771d1d;
}

.admin-shell--dashboard .button--ghost:hover {
    background: linear-gradient(135deg, rgba(119, 29, 29, 0.12) 0%, rgba(183, 146, 82, 0.08) 100%);
    border-color: rgba(119, 29, 29, 0.25);
    box-shadow: 0 2px 8px rgba(119, 29, 29, 0.1);
}

.admin-shell--dashboard .button--ghost:active {
    transform: scale(0.98);
}

.metro-board {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
}

.metro-board > * {
    min-width: 0;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.metro-board > *:nth-child(1) {
    animation-delay: 0.1s;
}

.metro-board > *:nth-child(2) {
    animation-delay: 0.2s;
}

.metro-board > *:nth-child(3) {
    animation-delay: 0.3s;
}

.metro-board > *:nth-child(4) {
    animation-delay: 0.4s;
}

.metro-board > *:nth-child(5) {
    animation-delay: 0.5s;
}

.metro-board__intro {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.6fr);
    gap: 1rem;
}

@media (max-width: 640px) {
    .metro-board__intro {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.metro-board__copy,
.metro-board__identity {
    padding: 2rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 100%);
    box-shadow: 0 2px 8px rgba(119, 29, 29, 0.04), 0 4px 16px rgba(119, 29, 29, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(119, 29, 29, 0.08);
    position: relative;
    overflow: hidden;
}

.metro-board__copy::before,
.metro-board__identity::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(183, 146, 82, 0.4), transparent);
}

.metro-board__copy:hover,
.metro-board__identity:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(119, 29, 29, 0.12), 0 8px 24px rgba(119, 29, 29, 0.06);
    border-color: rgba(119, 29, 29, 0.15);
}

.metro-board__copy .eyebrow {
    margin-bottom: 0.5rem;
    color: #b79252;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    font-weight: 700;
    text-transform: uppercase;
}

.metro-board__copy h2 {
    margin: 0;
    font-family: 'Source Sans 3', sans-serif;
    color: #771d1d;
    font-size: clamp(1.35rem, 2.15vw, 1.85rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.metro-board__copy p {
    margin: 0.75rem 0 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.65;
    font-weight: 400;
}

.metro-board__identity {
    display: grid;
    align-content: start;
    gap: 0.35rem;
}

.metro-chip {
    display: inline-flex;
    width: fit-content;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(183, 146, 82, 0.15) 0%, rgba(119, 29, 29, 0.08) 100%);
    color: #b79252;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(183, 146, 82, 0.15);
    border: 1px solid rgba(183, 146, 82, 0.2);
}

.metro-chip:hover {
    background: linear-gradient(135deg, rgba(183, 146, 82, 0.25) 0%, rgba(119, 29, 29, 0.15) 100%);
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(183, 146, 82, 0.25);
    border-color: rgba(183, 146, 82, 0.4);
}

.metro-board__identity strong {
    color: #771d1d;
    font-size: 1.15rem;
    font-weight: 700;
}

.metro-board__identity small {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.metro-board__identity .button {
    justify-self: start;
    background: linear-gradient(135deg, #b79252 0%, #9d7a3f 100%);
    border-color: transparent;
    color: #0d1828;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(183, 146, 82, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.metro-board__identity .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(183, 146, 82, 0.4);
}

.metro-kpis {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

@media (max-width: 1200px) {
    .metro-kpis {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .metro-kpis {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .metro-kpis {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.metro-kpi {
    position: relative;
    display: grid;
    gap: 0.6rem;
    padding: 2rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 100%);
    box-shadow: 0 2px 8px rgba(119, 29, 29, 0.04), 0 4px 16px rgba(119, 29, 29, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(119, 29, 29, 0.08);
    overflow: hidden;
}

.metro-kpi::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(183, 146, 82, 0.4), transparent);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.metro-kpi:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(119, 29, 29, 0.12), 0 8px 24px rgba(119, 29, 29, 0.06);
    border-color: rgba(119, 29, 29, 0.15);
}

.metro-kpi__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.metro-kpi .metric-card__label {
    margin: 0;
    color: #b79252;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
}

.metro-kpi__delta {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.18rem 0.45rem;
    font-size: 0.72rem;
    font-weight: 700;
}

.metro-kpi__delta--up {
    background: rgba(46, 170, 135, 0.15);
    color: #1c8c6d;
}

.metro-kpi strong {
    font-size: clamp(1.7rem, 2.6vw, 2.4rem);
    line-height: 1;
    color: #771d1d;
    font-weight: 800;
}

.metro-kpi__context {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 400;
}

.metro-kpi .metric-card__trend {
    color: #95a0b4;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
}

.metro-kpi__spark {
    margin-top: 0.15rem;
    width: 100%;
    height: 5px;
    border-radius: 999px;
    background: #ecf0f8;
    overflow: hidden;
}

.metro-kpi__spark > span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #5a74ff, #6f89ff);
}

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

.metro-grid > * {
    min-width: 0;
}

.metro-grid--jobboard {
    grid-template-columns: 1fr;
}

.metro-card {
    position: relative;
    padding: 2rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 100%);
    box-shadow: 0 2px 8px rgba(119, 29, 29, 0.04), 0 4px 16px rgba(119, 29, 29, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(119, 29, 29, 0.08);
    overflow: hidden;
}

.metro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(183, 146, 82, 0.4), transparent);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.metro-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(119, 29, 29, 0.12), 0 8px 24px rgba(119, 29, 29, 0.06);
    border-color: rgba(119, 29, 29, 0.15);
}

.metro-card--wide {
    grid-column: 1 / -1;
}

.metro-card .card-heading {
    margin-bottom: 0.8rem;
}

.metro-card .eyebrow {
    color: #b79252;
    font-size: 0.75rem;
    margin-bottom: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.metro-card .card-heading h2 {
    color: #771d1d;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.admin-shell--dashboard .status-pill {
    border-radius: 999px;
    background: rgba(83, 109, 254, 0.12);
    color: #445dd6;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.34rem 0.62rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(68, 93, 214, 0.1);
}

.admin-shell--dashboard .status-pill:hover {
    background: rgba(83, 109, 254, 0.18);
    transform: scale(1.04);
    box-shadow: 0 4px 8px rgba(68, 93, 214, 0.15);
}

.admin-shell--dashboard .status-pill--warning {
    background: rgba(209, 124, 42, 0.18);
    color: #9f5d18;
}

.admin-shell--dashboard .status-pill--success {
    background: rgba(49, 161, 119, 0.16);
    color: #267f5f;
}

.admin-shell--dashboard .status-pill--soft {
    background: rgba(69, 84, 117, 0.12);
    color: #4a5a7d;
    font-size: 0.67rem;
    padding: 0.32rem 0.55rem;
}

.metro-table {
    width: 100%;
    border-collapse: collapse;
}

.metro-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.metro-table-wrap .metro-table {
    min-width: 680px;
}

.metro-table th,
.metro-table td {
    padding: 0.78rem 0.44rem;
    border-bottom: 1px solid #e7ecf4;
    vertical-align: top;
    text-align: left;
}

.metro-table th {
    color: #8b94a7;
    font-size: 0.71rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.metro-table td {
    font-size: 0.89rem;
    color: #55607a;
}

.metro-table td strong {
    color: #2b3243;
}

.table-empty {
    text-align: center !important;
    color: #8b94a7;
    padding: 1rem 0.2rem !important;
}

.cta-row--end {
    margin-top: 0.85rem;
    justify-content: flex-end;
}

.metro-list {
    display: grid;
    gap: 0.62rem;
}

.metro-list--tight {
    gap: 0.5rem;
}

.metro-list--jobboard {
    gap: 0.75rem;
}

.metro-list__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    padding: 0.85rem 1rem;
    border: 1px solid #e4e9f2;
    border-radius: 10px;
    background: #fbfcff;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.metro-list__item:hover {
    border-color: rgba(83, 109, 254, 0.3);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(83, 109, 254, 0.08);
    transform: translateX(3px);
}

.metro-list__item--column {
    align-items: flex-start;
    flex-direction: column;
}

.metro-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.metro-actions form {
    margin: 0;
}

.metro-actions .button {
    min-height: 34px;
    padding: 0 0.75rem;
    font-size: 0.8rem;
}

.metro-list__item strong {
    color: #2b3243;
    font-size: 0.94rem;
}

.metro-list__item p,
.metro-list__item span {
    margin: 0;
    color: #8b94a7;
    font-size: 0.84rem;
    line-height: 1.45;
}

.metro-timeline {
    display: grid;
    gap: 0.62rem;
}

.metro-timeline__item {
    padding: 0.72rem 0.82rem;
    border-left: 2px solid #5c75ff;
    border-radius: 0 2px 2px 0;
    background: #f9fbff;
}

.metro-timeline__kicker {
    margin: 0;
    color: #5a74ff;
    font-size: 0.66rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
}

.metro-timeline__item h3 {
    margin: 0.2rem 0 0;
    color: #2b3243;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.metro-timeline__item span {
    color: #8b94a7;
    font-size: 0.83rem;
}

.metro-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.6rem;
}

.metro-steps li {
    position: relative;
    padding-left: 1.2rem;
    color: #69738a;
    font-size: 0.9rem;
    line-height: 1.46;
}

.metro-steps li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.46rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: #536dfe;
}

.admin-alert--metro {
    margin-bottom: 0;
    border-radius: 8px;
    background: rgba(49, 161, 119, 0.12);
    color: #1e7a59;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.2rem;
    border: 1px solid rgba(49, 161, 119, 0.2);
    font-weight: 500;
    font-size: 0.92rem;
}

.admin-alert--metro i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Status pill variants for approval workflow */
.status-pill--approved {
    background: rgba(49, 161, 119, 0.16) !important;
    color: #1e7a59 !important;
}

.status-pill--rejected {
    background: rgba(199, 56, 79, 0.14) !important;
    color: #b02a37 !important;
}

.status-pill--pending {
    background: rgba(209, 124, 42, 0.18) !important;
    color: #9f5d18 !important;
}

.status-pill--draft {
    background: rgba(105, 115, 138, 0.14) !important;
    color: #5c657a !important;
}

.status-pill--info {
    background: rgba(68, 93, 214, 0.14) !important;
    color: #3b4eb4 !important;
}

.status-pill--danger {
    background: rgba(199, 56, 79, 0.14) !important;
    color: #b02a37 !important;
}

/* Approve / Reject buttons */
.button--approve {
    background: rgba(49, 161, 119, 0.12) !important;
    border-color: rgba(49, 161, 119, 0.3) !important;
    color: #1e7a59 !important;
}

.button--approve:hover {
    background: rgba(49, 161, 119, 0.22) !important;
    border-color: rgba(49, 161, 119, 0.45) !important;
    box-shadow: 0 2px 8px rgba(49, 161, 119, 0.2) !important;
}

.button--reject {
    background: rgba(199, 56, 79, 0.1) !important;
    border-color: rgba(199, 56, 79, 0.2) !important;
    color: #b02a37 !important;
}

.button--reject:hover {
    background: rgba(199, 56, 79, 0.18) !important;
    border-color: rgba(199, 56, 79, 0.35) !important;
    box-shadow: 0 2px 8px rgba(199, 56, 79, 0.15) !important;
}

.button--approve i,
.button--reject i {
    font-size: 0.85rem;
    vertical-align: middle;
    margin-right: 0.15rem;
}

/* Empty state for metro list */
.metro-list__item--empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2.5rem 1rem;
    gap: 0.5rem;
    border: 1px dashed rgba(105, 115, 138, 0.25);
    background: rgba(105, 115, 138, 0.04);
    cursor: default;
}

.metro-list__item--empty i {
    font-size: 1.6rem;
    color: rgba(105, 115, 138, 0.35);
    margin-bottom: 0.25rem;
}

.metro-list__item--empty strong {
    color: #69738a;
    font-size: 0.95rem;
}

.metro-list__item--empty span {
    color: #8b94a7;
    font-size: 0.84rem;
    max-width: 280px;
}

.metro-list__item--empty:hover {
    transform: none !important;
    border-color: rgba(105, 115, 138, 0.25) !important;
    box-shadow: none !important;
    background: rgba(105, 115, 138, 0.04) !important;
}

/* List item body */
.metro-list__item-body {
    flex: 1;
    min-width: 0;
}

.metro-list__item-body p {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.metro-list__item-body p i {
    font-size: 0.78rem;
    color: #8b94a7;
}

.metro-list__item-body .report-reason {
    margin-top: 0.3rem;
    color: #b02a37;
    font-size: 0.82rem;
}

.metro-list__item-body small {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #8b94a7;
    font-size: 0.78rem;
    margin-top: 0.2rem;
}

/* Employer directory card */
.employer-card--empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 1rem;
    gap: 0.5rem;
    border: 1px dashed rgba(105, 115, 138, 0.25);
    background: rgba(105, 115, 138, 0.04);
}

.employer-card--empty i {
    font-size: 1.8rem;
    color: rgba(105, 115, 138, 0.3);
}

.employer-card--empty strong {
    color: #69738a;
    font-size: 0.95rem;
}

.employer-card--empty span {
    color: #8b94a7;
    font-size: 0.84rem;
}

/* Stat variants */
.stat--vacancies strong {
    color: #3b4eb4;
}

.stat--applications strong {
    color: #1e7a59;
}

/* Vacancy item empty */
.vacancy-item--empty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    color: #8b94a7;
}

.vacancy-item--empty i {
    font-size: 1rem;
    color: rgba(105, 115, 138, 0.35);
}

@media (max-width: 1280px) {
    .metro-kpis {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .metro-board__intro {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1080px) {
    .admin-shell--dashboard {
        grid-template-columns: 88px minmax(0, 1fr);
    }

    .admin-shell--dashboard .admin-nav__text,
    .admin-shell--dashboard .admin-sidebar__meta {
        display: none;
    }

    .admin-shell--dashboard .admin-nav--metro .admin-nav__item {
        min-height: 74px;
    }

    .admin-shell--dashboard .admin-main {
        padding: 0 0.95rem 0.95rem;
    }

    .admin-shell--dashboard .admin-topbar {
        margin-left: -0.95rem;
        margin-right: -0.95rem;
        padding-left: 0.95rem;
        padding-right: 0.95rem;
    }

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

    .metro-card--wide {
        grid-column: span 1;
    }
}

@media (max-width: 860px) {
    .admin-shell--dashboard .admin-topbar {
        flex-direction: row;
        min-height: auto;
        gap: 0.65rem;
    }

    .admin-shell--dashboard .admin-topbar--guest {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .admin-shell--dashboard .admin-topbar--guest .admin-topbar__actions {
        margin-left: auto;
        flex: 0 0 auto;
        flex-wrap: nowrap;
        justify-content: flex-end;
    }

    .admin-shell--dashboard .admin-topbar__actions {
        flex-wrap: wrap;
    }

    .admin-shell--dashboard .admin-page-pill {
        order: -1;
    }

    .admin-shell--dashboard .admin-user-pill {
        min-width: 0;
        flex: 1 1 220px;
    }
}

@media (max-width: 980px) {
    .admin-auth {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .admin-shell--dashboard {
        display: block;
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .admin-shell--dashboard .admin-sidebar-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 99;
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s ease;
    }

    .admin-shell--dashboard.is-drawer-open .admin-sidebar-backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    .admin-shell--dashboard .admin-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        height: 100vh;
        width: 280px;
        min-width: 280px;
        z-index: 100;
        transform: translateX(-100%);
        transition: opacity 0.3s ease;
        flex-direction: column;
        box-shadow: 2px 0 10px rgba(0,0,0,0.2);
    }

    .admin-shell--dashboard.is-drawer-open .admin-sidebar {
        transform: translateX(0);
    }

    .admin-shell--dashboard .admin-mark {
        height: 60px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.09);
        border-right: none;
    }

    .admin-shell--dashboard .admin-nav--metro {
        display: block;
    }

    .admin-shell--dashboard .admin-nav--metro .admin-nav__item {
        width: 100%;
        min-height: auto;
        padding: 1rem;
        flex-direction: row;
        justify-content: flex-start;
    }

    .admin-shell--dashboard .admin-nav__text,
    .admin-shell--dashboard .admin-sidebar__meta {
        display: block;
    }

    .admin-topbar {
        display: flex;
        align-items: center;
        gap: 0.8rem;
    }

    .admin-topbar__menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        color: rgba(255, 255, 255, 0.75);
        font-size: 1.3rem;
        cursor: pointer;
        padding: 0;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .admin-topbar__menu-btn:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
    }

    .admin-topbar__menu-btn:active {
        transform: scale(0.95);
    }

    .admin-shell--dashboard .admin-main {
        min-width: 0;
        padding: 0.8rem;
    }

    .admin-shell--dashboard .admin-topbar {
        margin: 0 0 0.8rem;
        padding: 0 0.75rem;
        min-height: 56px;
        border: none;
        border-radius: 0;
    }

    .metro-kpis {
        grid-template-columns: 1fr;
    }

    .admin-auth {
        padding: 1rem 0.8rem;
        gap: 0.8rem;
    }

    .admin-auth__brand,
    .admin-auth__card {
        padding: 1rem;
    }
}

    /* DIGITAL CREDENTIAL */
    .credential-page {
        margin-bottom: 1.5rem;
    }

    .credential-layout {
        align-items: stretch;
        grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    }

    .credential-card {
        position: relative;
        overflow: hidden;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: linear-gradient(160deg, #0f1729 0%, #1a2440 40%, #1e2a4a 65%, #2a3855 100%);
        color: rgba(255, 255, 255, 0.92);
        box-shadow:
            0 4px 24px rgba(0, 0, 0, 0.3),
            0 1px 2px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.06);
        padding: 0;
    }

    /* Subtle background pattern */
    .credential-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image:
            radial-gradient(circle at 20% 30%, rgba(183, 146, 82, 0.04), transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(183, 146, 82, 0.03), transparent 40%),
            repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,0.01) 40px, rgba(255,255,255,0.01) 41px);
        pointer-events: none;
    }

    /* Shiny holographic strip */
    .credential-card__strip {
        position: relative;
        height: 6px;
        background: linear-gradient(90deg,
            rgba(183, 146, 82, 0.3),
            rgba(183, 146, 82, 0.6) 20%,
            rgba(255, 215, 0, 0.4) 40%,
            rgba(255, 255, 255, 0.5) 50%,
            rgba(255, 215, 0, 0.4) 60%,
            rgba(183, 146, 82, 0.6) 80%,
            rgba(183, 146, 82, 0.3)
        );
        box-shadow: 0 1px 4px rgba(183, 146, 82, 0.2);
    }

    .credential-card__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.7rem;
        padding: 1.25rem 1.5rem 0;
    }

    .credential-card .card-kicker {
        color: rgba(255, 255, 255, 0.6);
        margin-bottom: 0;
        font-size: 0.72rem;
        letter-spacing: 0.12em;
    }

    .credential-card__identity {
        padding: 0 1.5rem;
        margin-top: 1.25rem;
        display: flex;
        align-items: center;
        gap: 1.15rem;
    }

    .credential-card__photo,
    .credential-card__avatar {
        width: 80px;
        height: 80px;
        border-radius: 16px;
        flex: 0 0 80px;
        position: relative;
    }

    .credential-card__photo {
        object-fit: cover;
        border: 2px solid rgba(255, 255, 255, 0.2);
        box-shadow:
            0 8px 24px rgba(0, 0, 0, 0.3),
            0 2px 4px rgba(0, 0, 0, 0.1);
    }

    /* Photo frame glow */
    .credential-card__photo::after {
        content: '';
        position: absolute;
        inset: -4px;
        border-radius: 20px;
        background: linear-gradient(135deg, rgba(183, 146, 82, 0.2), transparent, rgba(183, 146, 82, 0.1));
        pointer-events: none;
    }

    .credential-card__avatar {
        display: grid;
        place-items: center;
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.8rem;
        font-weight: 700;
        color: #0e1627;
        background: linear-gradient(135deg, #f5eed6, #e8d6a0);
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .credential-card__identity h3 {
        margin: 0;
        color: #ffffff;
        font-size: 1.3rem;
        font-weight: 700;
        letter-spacing: 0.02em;
        line-height: 1.25;
    }

    .credential-card__identity p {
        margin: 0.25rem 0 0;
        color: rgba(255, 255, 255, 0.85);
        font-weight: 600;
        font-size: 0.92rem;
    }

    .credential-card__identity small {
        display: block;
        margin-top: 0.15rem;
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.82rem;
    }

    /* Folio with decorative left border */
    .credential-card__folio {
        margin: 1rem 1.5rem 0;
        padding: 0.65rem 0.85rem;
        border-left: 3px solid rgba(183, 146, 82, 0.4);
        background: rgba(255, 255, 255, 0.04);
        border-radius: 0 8px 8px 0;
        color: rgba(255, 255, 255, 0.75);
        font-size: 0.82rem;
        letter-spacing: 0.04em;
    }

    .credential-card__folio strong {
        font-weight: 700;
        letter-spacing: 0.06em;
        color: rgba(255, 255, 255, 0.95);
    }

    .credential-card__grid {
        padding: 0.25rem 1.5rem 1.5rem;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.65rem;
    }

    .credential-card__grid div {
        padding: 0.65rem 0.75rem;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.06);
        backdrop-filter: blur(4px);
        transition: background 0.15s ease;
    }

    .credential-card__grid div:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .credential-card__grid dt {
        margin: 0;
        color: rgba(255, 255, 255, 0.55);
        font-size: 0.68rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: 600;
    }

    .credential-card__grid dd {
        margin: 0.25rem 0 0;
        color: rgba(255, 255, 255, 0.95);
        font-size: 0.88rem;
        font-weight: 600;
        line-height: 1.4;
    }

    .credential-meta-card {
        display: grid;
        gap: 1rem;
        align-content: start;
    }

    .credential-meta {
        display: grid;
        gap: 0.7rem;
    }

    .credential-meta div {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 0.8rem;
        padding-bottom: 0.65rem;
        border-bottom: 1px solid rgba(31, 45, 75, 0.08);
    }

    .credential-meta div:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .credential-meta span {
        color: var(--ink-700);
        font-size: 0.9rem;
    }

    .credential-meta strong {
        color: var(--ink-900);
    }

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

    @media (max-width: 640px) {
        .credential-card__identity {
            flex-direction: column;
            align-items: flex-start;
        }

        .credential-card__grid {
            grid-template-columns: 1fr;
        }

        .credential-meta div {
            flex-direction: column;
            align-items: flex-start;
        }
    }

/* ---- EMPLOYER DASHBOARD SHARED STYLES ---- */
.employer-dash-welcome {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 1.75rem 1.5rem;
    background: linear-gradient(135deg, #1f2d4b, #2a3d63);
    border-radius: 12px;
    color: #fff;
    margin-bottom: 1.5rem;
}
.employer-dash-welcome__text h3 {
    margin: 0 0 0.25rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}
.employer-dash-welcome__text p {
    margin: 0;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}
.employer-dash-welcome__actions { display: flex; gap: 0.65rem; }
.employer-dash-welcome__actions .button {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    font-size: 0.85rem;
    min-height: 40px;
    white-space: nowrap;
}
.employer-dash-welcome__actions .button:hover { background: rgba(255,255,255,0.25); }
.employer-dash-welcome__actions .button--ghost { background: transparent; }
.employer-dash-welcome__actions .button--ghost:hover { background: rgba(255,255,255,0.1); }

.employer-dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.employer-dash-stat {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.25rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eef1f5;
    box-shadow: 0 2px 8px rgba(24,32,51,0.04);
    position: relative;
}
.employer-dash-stat:hover {
    border-color: #d0d7e3;
    box-shadow: 0 4px 16px rgba(24,32,51,0.08);
}
.employer-dash-stat > div { flex: 1; min-width: 0; }
.employer-dash-stat strong { display: block; font-size: 0.92rem; color: #182033; margin-bottom: 0.15rem; }
.employer-dash-stat > div > span { font-size: 0.8rem; color: #8494ae; }
.employer-dash-stat__icon {
    width: 42px; height: 42px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.employer-dash-stat__icon--profile { background: rgba(31,45,75,0.08); color: #1f2d4b; }
.employer-dash-stat__icon--vacancy { background: rgba(183,146,82,0.12); color: #b79252; }
.employer-dash-stat__icon--app { background: rgba(39,174,96,0.1); color: #27ae60; }
.employer-dash-stat__icon--following { background: rgba(83,109,254,0.1); color: #536dfe; }
.employer-dash-stat__status {
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.06em; padding: 0.2rem 0.55rem; border-radius: 4px;
}
.employer-dash-stat__status--ok { background: rgba(39,174,96,0.1); color: #1e8a4c; }
.employer-dash-stat__status--pending { background: rgba(183,146,82,0.12); color: #9a7a3a; }
.employer-dash-stat__status--warn { background: rgba(220,53,69,0.08); color: #b02a37; }
.employer-dash-stat__link { position: absolute; inset: 0; border-radius: 12px; opacity: 0; font-size: 0; }

.employer-dash-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.employer-dash-action {
    display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.4rem;
    padding: 1.5rem 0.75rem; background: #fff; border-radius: 12px;
    border: 1px solid #eef1f5; text-decoration: none; transition: all 0.2s ease;
}
.employer-dash-action:hover {
    border-color: #d0d7e3; box-shadow: 0 4px 16px rgba(24,32,51,0.06); transform: translateY(-2px);
}
.employer-dash-action__icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(31,45,75,0.06); color: #1f2d4b;
    display: flex; align-items: center; justify-content: center; margin-bottom: 0.25rem;
}
.employer-dash-action strong { font-size: 0.88rem; color: #182033; }
.employer-dash-action span { font-size: 0.78rem; color: #8494ae; line-height: 1.3; }

.employer-dash-recent {
    background: #fff; border-radius: 12px; border: 1px solid #eef1f5; padding: 1.25rem 1.5rem;
}
.employer-dash-vacancy {
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
    padding: 0.85rem 0; border-bottom: 1px solid #f0f2f5;
}
.employer-dash-vacancy:last-child { border-bottom: none; }
.employer-dash-vacancy__info strong { display: block; font-size: 0.9rem; color: #182033; margin-bottom: 0.2rem; }
.employer-dash-vacancy__info span { font-size: 0.8rem; color: #8494ae; }
.employer-dash-vacancy__meta { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.employer-dash-vacancy__status {
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.06em; padding: 0.25rem 0.55rem; border-radius: 4px;
}
.employer-dash-vacancy__status--published { background: rgba(39,174,96,0.1); color: #1e8a4c; }
.employer-dash-vacancy__status--pending_review { background: rgba(183,146,82,0.12); color: #9a7a3a; }
.employer-dash-vacancy__status--draft { background: rgba(108,117,125,0.1); color: #5c636a; }
.employer-dash-vacancy__status--blocked { background: rgba(220,53,69,0.08); color: #b02a37; }
.employer-dash-vacancy__status--closed { background: rgba(108,117,125,0.1); color: #5c636a; }
.employer-dash-vacancy__status--submitted { background: rgba(108,117,125,0.1); color: #5c636a; }
.employer-dash-vacancy__status--reviewing { background: rgba(52,144,220,0.1); color: #2b7ec0; }
.employer-dash-vacancy__status--interview { background: rgba(183,146,82,0.12); color: #9a7a3a; }
.employer-dash-vacancy__status--offered { background: rgba(39,174,96,0.1); color: #1e8a4c; }
.employer-dash-vacancy__status--hired { background: rgba(31,45,75,0.1); color: #1f2d4b; }
.employer-dash-vacancy__status--rejected { background: rgba(220,53,69,0.08); color: #b02a37; }

@media (max-width: 768px) {
    .employer-dash-welcome { flex-direction: column; text-align: center; }
    .employer-dash-stats { grid-template-columns: 1fr; }
    .employer-dash-actions { grid-template-columns: repeat(2, 1fr); }
    .employer-dash-vacancy { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
    .employer-dash-actions { grid-template-columns: 1fr; }
}

/* ---- NETWORKING PROFILE CARDS ---- */
.network-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: 100%;
}

@media (max-width: 1000px) {
    .network-cards { grid-template-columns: repeat(2, 1fr); }
}

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

.network-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem;
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
}

.network-card:hover {
    border-color: #d0d7e3;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.network-card--empty {
    align-items: center;
    text-align: center;
    padding: 2.5rem 1.5rem;
    grid-column: 1 / -1;
}

.network-card--empty strong {
    font-size: 1rem;
    color: #2d3748;
}

.network-card--empty span {
    color: #8494ae;
    font-size: 0.88rem;
}

.network-card__head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.network-card__photo {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #edf2f7;
}

.network-card__avatar {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2d4b;
    background: linear-gradient(135deg, #eef2f7, #dce3ed);
    border: 2px solid #edf2f7;
}

.network-card__role {
    flex: 1;
    min-width: 0;
}

.network-card__role strong {
    display: block;
    font-size: 0.95rem;
    color: #1a202c;
    line-height: 1.3;
}

.network-card__role span {
    display: block;
    font-size: 0.8rem;
    color: #4a5568;
    margin-top: 0.15rem;
}

.network-card__role small {
    display: block;
    font-size: 0.75rem;
    color: #a0aec0;
    margin-top: 0.1rem;
}

.network-card__blurb {
    margin: 0;
    font-size: 0.85rem;
    color: #4a5568;
    line-height: 1.55;
}

.network-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.network-card__tag {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    background: #edf2f7;
    color: #2d3748;
    letter-spacing: 0.02em;
}

.network-card__tag--avail {
    background: rgba(72, 187, 120, 0.1);
    color: #276749;
}

.network-card__topics {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.3rem;
}

.network-card__topics-label {
    font-size: 0.75rem;
    color: #a0aec0;
    margin-right: 0.2rem;
}

.network-card__topic {
    font-size: 0.72rem;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    background: rgba(31, 45, 75, 0.06);
    color: #1f2d4b;
}

.network-card__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: #8494ae;
}

.network-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.network-card__actions {
    display: flex;
    gap: 0.5rem;
    padding-top: 0.6rem;
    border-top: 1px solid #edf2f7;
    margin-top: auto;
}

.network-card__self {
    font-size: 0.78rem;
    font-weight: 600;
    color: #a0aec0;
    padding: 0.25rem 0;
}

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

/* Employer Directory Styles */
.employers-directory {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.employer-card {
    border: 1px solid rgba(119, 29, 29, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.employer-card:hover {
    border-color: rgba(119, 29, 29, 0.2);
    box-shadow: 0 4px 12px rgba(119, 29, 29, 0.08);
}

.employer-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(119, 29, 29, 0.08);
}

.employer-info h3 {
    color: #771d1d;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.employer-location {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.employer-contact {
    color: #555;
    font-size: 0.85rem;
}

.employer-contact span {
    color: #771d1d;
    font-weight: 600;
}

.employer-stats {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.employer-stats .stat {
    text-align: center;
}

.employer-stats .stat strong {
    display: block;
    font-size: 1.8rem;
    color: #771d1d;
    margin-bottom: 0.25rem;
}

.employer-stats .stat small {
    font-size: 0.8rem;
    color: #888;
    font-weight: 500;
}

.vacancies-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vacancy-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(247, 243, 236, 0.4);
    border-radius: 8px;
    border-left: 3px solid #b79252;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.vacancy-item:hover {
    background: rgba(247, 243, 236, 0.7);
    transform: translateX(4px);
}

.vacancy-info {
    flex: 1;
}

.vacancy-info strong {
    display: block;
    color: #771d1d;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.vacancy-meta {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.vacancy-meta span {
    font-weight: 600;
    color: #555;
}

.vacancy-status {
    font-size: 0.8rem;
    color: #888;
}

.vacancy-status .status-pill--small {
    font-size: 0.7rem !important;
    padding: 0.25rem 0.5rem !important;
}

.vacancy-applications {
    text-align: center;
    padding-left: 2rem;
    min-width: 100px;
}

.vacancy-applications strong {
    display: block;
    font-size: 1.5rem;
    color: #771d1d;
    margin-bottom: 0.25rem;
}

.vacancy-applications small {
    font-size: 0.8rem;
    color: #888;
    font-weight: 500;
}

.metro-card--full {
    grid-column: 1 / -1;
}

@media (max-width: 768px) {
    .employer-header {
        flex-direction: column;
    }

    .employer-stats {
        width: 100%;
        justify-content: flex-start;
    }

    .vacancy-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .vacancy-applications {
        padding-left: 0;
        padding-top: 1rem;
        min-width: unset;
    }
}
