/* ═══════════════════════════════════════════════════════════════
   Saveetha Recruitment — Premium Skeuomorphic Design System
   ═══════════════════════════════════════════════════════════════ */

:root {
    --font: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;

    /* Surfaces */
    --desk-top: #b8c4d4;
    --desk-mid: #9aa8bc;
    --desk-bottom: #8896a8;
    --win-face: linear-gradient(180deg, #fafbfc 0%, #eef1f5 48%, #e4e8ee 100%);
    --win-border: rgba(255, 255, 255, 0.95);
    --win-edge: rgba(0, 0, 0, 0.14);
    --titlebar: linear-gradient(180deg, #f0f2f5 0%, #d8dde5 55%, #c8ced8 100%);

    /* Depth — skeuomorphic shadows */
    --shadow-window:
        0 0 0 1px rgba(0, 0, 0, 0.06),
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 2px 4px rgba(0, 0, 0, 0.06),
        0 12px 40px rgba(15, 23, 42, 0.18),
        0 24px 64px rgba(15, 23, 42, 0.12);
    --shadow-raised:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 -1px 0 rgba(0, 0, 0, 0.04) inset,
        0 2px 6px rgba(0, 0, 0, 0.1),
        0 6px 16px rgba(0, 0, 0, 0.08);
    --shadow-inset:
        inset 0 2px 5px rgba(0, 0, 0, 0.1),
        inset 0 -1px 0 rgba(255, 255, 255, 0.85);
    --shadow-btn:
        0 1px 0 rgba(255, 255, 255, 0.5) inset,
        0 -1px 0 rgba(0, 0, 0, 0.08) inset,
        0 2px 4px rgba(0, 0, 0, 0.12);

    /* Colors */
    --text: #1a2332;
    --text-soft: #4a5568;
    --text-muted: #64748b;
    --accent: #b91c1c;
    --accent-deep: #7f1d1d;
    --blue: #1d4ed8;
    --blue-mid: #2563eb;
    --blue-light: #3b82f6;
    --blue-gloss: linear-gradient(180deg, #4f8ff7 0%, #2563eb 45%, #1d4ed8 100%);
    --green: #059669;
    --green-gloss: linear-gradient(180deg, #34d399 0%, #059669 100%);
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 18px;
    --space: clamp(1rem, 3vw, 1.5rem);
    --max: min(1120px, 100% - 2rem);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    color: var(--text);
    line-height: 1.55;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    background:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E"),
        radial-gradient(ellipse 70% 50% at 10% 0%, #ffe3d3 0%, transparent 55%),
        radial-gradient(ellipse 70% 60% at 95% 5%, #d9eaff 0%, transparent 55%),
        radial-gradient(ellipse 80% 50% at 85% 95%, #ffe1ec 0%, transparent 55%),
        radial-gradient(ellipse 70% 60% at 5% 95%, #d6f4e3 0%, transparent 55%),
        linear-gradient(180deg, #fff7ef 0%, #f4f0ff 100%);
    background-attachment: fixed;
}

/* Apply landing — flat professional background (no pastel gradients) */
body.page-apply,
body.page-apply-landing {
    background: #e8ebf0 !important;
    background-image: none !important;
    background-attachment: scroll !important;
    overflow-x: hidden;
}

body.page-track-lookup {
    background: #e8ebf0 !important;
    background-image: none !important;
    overflow-x: hidden;
}

a {
    color: var(--blue-mid);
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    color: var(--blue);
    text-decoration: underline;
}

/* ─── Site header (skeuomorphic bar) ─── */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    width: var(--max);
    margin: 0.85rem auto 0;
    padding: 0.55rem 0.85rem 0.55rem 0.65rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(235, 239, 245, 0.88) 100%);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: var(--shadow-raised);
    position: sticky;
    top: 0.65rem;
    z-index: 200;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-width: 0;
}

.brand-logo {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-btn);
}

.brand-logo svg {
    display: block;
    width: 100%;
    height: 100%;
}

.brand-text h1 {
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
    line-height: 1.2;
}

.brand-text p {
    font-size: 0.68rem;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    background: linear-gradient(180deg, #fff 0%, #e8ecf0 100%);
    box-shadow: var(--shadow-btn);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
}

/* ─── Buttons ─── */
.mac-btn,
.btn-skeu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.55rem 1rem;
    font-family: inherit;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    border: 1px solid rgba(0, 0, 0, 0.14);
    border-radius: var(--radius-sm);
    background: linear-gradient(180deg, #ffffff 0%, #e8ecf1 55%, #d4dae3 100%);
    box-shadow: var(--shadow-btn);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s;
}

.mac-btn:hover,
.btn-skeu:hover {
    text-decoration: none;
    transform: translateY(-1px);
    filter: brightness(1.02);
}

.mac-btn:active,
.btn-skeu:active {
    transform: translateY(0);
    box-shadow: var(--shadow-inset);
}

.mac-btn.primary,
.btn-skeu--primary {
    color: #fff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    border-color: #1e40af;
    background: var(--blue-gloss);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.35) inset,
        0 -1px 0 rgba(0, 0, 0, 0.15) inset,
        0 3px 10px rgba(37, 99, 235, 0.35);
}

.mac-btn.primary:hover,
.btn-skeu--primary:hover {
    color: #fff;
    filter: brightness(1.06);
}

.mac-btn.ghost {
    background: transparent;
    box-shadow: none;
    border-color: transparent;
}

.mac-btn.ghost:hover {
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

.mac-btn--block {
    width: 100%;
}

.mac-btn--lg {
    padding: 0.75rem 1.35rem;
    font-size: 0.9rem;
    border-radius: 10px;
}

/* ─── App shell & windows ─── */
.app-main {
    width: var(--max);
    margin: 1.25rem auto 1.5rem;
    padding: 0 1rem;
}

.app-main.app-main--narrow {
    max-width: min(520px, 100% - 2rem);
}

.app-main.app-main--wide {
    max-width: min(960px, 100% - 2rem);
}

.skeu-card.campus-visual {
    padding: 0;
    background: linear-gradient(145deg, #1e3a5f, #0f172a);
}

.skeu-window {
    background: var(--win-face);
    border-radius: var(--radius-lg);
    border: 1px solid var(--win-border);
    box-shadow: var(--shadow-window);
    overflow: hidden;
}

.skeu-titlebar {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 1rem;
    background: var(--titlebar);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.skeu-titlebar-text {
    flex: 1;
    text-align: center;
    margin-right: 54px;
}

.skeu-titlebar-text h2 {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-soft);
    letter-spacing: 0.01em;
}

.skeu-titlebar-text p {
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
}

.traffic-lights {
    display: flex;
    gap: 7px;
    flex-shrink: 0;
}

.traffic-lights span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15) inset;
}

.traffic-lights .close { background: linear-gradient(180deg, #ff6b63, #e14640); }
.traffic-lights .min { background: linear-gradient(180deg, #ffcc4d, #e5a820); }
.traffic-lights .max { background: linear-gradient(180deg, #5cd85a, #3cb839); }

.skeu-body {
    padding: var(--space);
}

.app-footer {
    text-align: center;
    padding: 0 1rem 1.5rem;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.75);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.page-wrap {
    width: var(--max);
    margin: 1.25rem auto;
    padding: 0 1rem;
}

.mac-window {
    background: var(--win-face);
    border-radius: var(--radius-lg);
    border: 1px solid var(--win-border);
    box-shadow: var(--shadow-window);
    overflow: hidden;
}

.mac-titlebar {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 1rem;
    background: var(--titlebar);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mac-titlebar h2 {
    flex: 1;
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-soft);
    margin-right: 54px;
}

.mac-body {
    padding: var(--space);
}

/* ─── Typography helpers ─── */
.step-heading {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 0.35rem;
}

.step-lead {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.1rem;
    line-height: 1.55;
}

.section-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.35rem;
}

/* ─── Forms ─── */
label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-soft);
    margin-bottom: 0.35rem;
}

.mac-input,
.mac-select,
.mac-textarea {
    width: 100%;
    padding: 0.65rem 0.8rem;
    font: inherit;
    font-size: 0.9rem;
    color: var(--text);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: var(--radius-sm);
    background: linear-gradient(180deg, #f4f6f9 0%, #ffffff 12%);
    box-shadow: var(--shadow-inset);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.mac-input:focus,
.mac-select:focus,
.mac-textarea:focus {
    outline: none;
    border-color: var(--blue-light);
    box-shadow:
        var(--shadow-inset),
        0 0 0 3px rgba(59, 130, 246, 0.22);
}

.mac-input[readonly] {
    background: linear-gradient(180deg, #e8ebf0 0%, #f0f2f5 100%);
    color: var(--text-soft);
    cursor: not-allowed;
}

.mac-textarea {
    min-height: 96px;
    resize: vertical;
}

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

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

.form-field {
    min-width: 0;
}

/* ─── Stepper (wizard) ─── */
.stepper-wrap {
    margin-bottom: 1.25rem;
    padding: 0.65rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, rgba(255, 255, 255, 0.5) 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    box-shadow: var(--shadow-inset);
}

.stepper {
    display: flex;
    gap: 0.35rem;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.stepper::-webkit-scrollbar {
    display: none;
}

.step-pill {
    flex: 0 0 auto;
    padding: 0.4rem 0.7rem;
    font-size: 0.68rem;
    font-weight: 600;
    border-radius: 100px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.06);
    white-space: nowrap;
    transition: all 0.25s ease;
}

.step-pill.active {
    color: #fff;
    background: var(--blue-gloss);
    border-color: #1e40af;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
}

.step-pill.done {
    color: #fff;
    background: var(--green-gloss);
    border-color: #047857;
}

.wizard-step {
    display: none;
    animation: fadeUp 0.35s ease;
}

.wizard-step.active {
    display: block;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: none; }
}

.wizard-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Channel toggle */
.channel-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin: 0.85rem 0;
}

.channel-toggle label {
    margin: 0;
    cursor: pointer;
}

.channel-toggle input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.channel-toggle span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.65rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: linear-gradient(180deg, #fff 0%, #e8ecf0 100%);
    box-shadow: var(--shadow-btn);
    transition: all 0.2s;
}

.channel-toggle input:checked + span {
    color: #fff;
    border-color: #1e40af;
    background: var(--blue-gloss);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.otp-row .mac-input {
    letter-spacing: 0.35em;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 0.85rem;
}

.mobile-display {
    display: inline-block;
    padding: 0.5rem 0.85rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--blue);
    background: linear-gradient(180deg, #eef4ff 0%, #dbeafe 100%);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-inset);
}

/* Timeline blocks */
.timeline-block {
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(180deg, #fff 0%, #f5f7fa 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius);
    box-shadow: var(--shadow-raised);
}

.timeline-block h4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-soft);
}

/* Alerts */
.alert {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    box-shadow: var(--shadow-inset);
}

.alert.info {
    background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
    color: #1e40af;
    border-color: rgba(59, 130, 246, 0.25);
}

.alert.success {
    background: linear-gradient(180deg, #ecfdf5 0%, #d1fae5 100%);
    color: #065f46;
    border-color: rgba(16, 185, 129, 0.3);
}

.alert.error {
    background: linear-gradient(180deg, #fef2f2 0%, #fee2e2 100%);
    color: #991b1b;
    border-color: rgba(239, 68, 68, 0.3);
}

.hidden {
    display: none !important;
}

/* ─── Dashboard ─── */
.dash-intro {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding: 0.85rem 1rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(185, 28, 28, 0.06) 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    box-shadow: var(--shadow-inset);
}

.dash-intro p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.dash-intro strong {
    color: var(--text);
}

.dashboard-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 140px), 1fr));
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.meta-card {
    padding: 1rem;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f0f3f7 100%);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--radius);
    box-shadow: var(--shadow-raised);
    transition: transform 0.2s;
}

.meta-card:hover {
    transform: translateY(-2px);
}

.meta-card span {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.meta-card strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    word-break: break-word;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--blue);
    background: linear-gradient(180deg, #eff6ff, #dbeafe);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 6px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.status-timeline {
    position: relative;
    padding-left: 1.75rem;
    margin-top: 0.5rem;
}

.status-timeline::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 8px;
    width: 3px;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--blue-light), var(--green));
    opacity: 0.35;
}

.status-item {
    position: relative;
    padding: 0 0 1.25rem 0.5rem;
}

.status-item::before {
    content: "";
    position: absolute;
    left: -1.75rem;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--blue-mid);
    box-shadow: var(--shadow-btn);
}

.status-item.current::before {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.25);
}

.status-item strong {
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.2rem;
}

.status-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.status-item time {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* ─── Auth / success panels ─── */
.panel-center {
    text-align: center;
    padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 3vw, 1.5rem);
}

.success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1rem;
    display: grid;
    place-items: center;
    font-size: 2rem;
    color: #fff;
    background: var(--green-gloss);
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        0 4px 16px rgba(5, 150, 105, 0.4),
        var(--shadow-btn);
}

.ref-badge {
    display: inline-block;
    padding: 0.65rem 1.25rem;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--accent-deep);
    background: linear-gradient(180deg, #fff 0%, #fef2f2 100%);
    border: 1px solid rgba(185, 28, 28, 0.2);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-raised);
    margin: 0.75rem 0 1.25rem;
}

.google-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    max-width: 320px;
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    color: var(--text);
    background: linear-gradient(180deg, #fff 0%, #f1f3f5 100%);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-raised);
    transition: transform 0.15s;
}

.google-btn:hover {
    text-decoration: none;
    transform: translateY(-2px);
    color: var(--text);
}

.google-btn svg {
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   PREMIUM LANDING PAGE — light pastels + macOS skeu
   ═══════════════════════════════════════════════════════════════ */

body.landing-page {
    background:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E"),
        radial-gradient(ellipse 65% 45% at 8% -5%, #ffe3d3 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 95% 5%, #d9eaff 0%, transparent 55%),
        radial-gradient(ellipse 70% 45% at 90% 92%, #ffe1ec 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 5% 95%, #d6f4e3 0%, transparent 55%),
        linear-gradient(180deg, #fff7ef 0%, #f4f0ff 100%) !important;
    background-attachment: fixed !important;
}

body.landing-page .site-header {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 247, 239, 0.85) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-color: rgba(255, 255, 255, 0.9);
}

.landing {
    width: var(--max);
    margin: 0 auto;
    padding: 0 1rem 2rem;
}

/* ─── HERO ─── */
.hero-pro {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
    padding: clamp(1.75rem, 5vw, 3rem) 0 clamp(1.5rem, 4vw, 2.5rem);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.9rem 0.4rem 0.55rem;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #be185d;
    background: linear-gradient(180deg, #fff 0%, #fdf2f8 100%);
    border: 1px solid rgba(190, 24, 93, 0.18);
    border-radius: 100px;
    box-shadow: var(--shadow-raised);
    margin-bottom: 1.1rem;
}

.hero-eyebrow .pulse-dot {
    width: 7px;
    height: 7px;
    background: #ec4899;
    border-radius: 50%;
    animation: pulseBlush 2s ease infinite;
}

@keyframes pulseBlush {
    0%, 100% { box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.5); }
    70% { box-shadow: 0 0 0 8px rgba(236, 72, 153, 0); }
}

.hero-pro h1 {
    font-size: clamp(2rem, 5.4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--text);
    margin-bottom: 1rem;
}

.hero-pro h1 .accent {
    background: linear-gradient(135deg, #dc2626 0%, #db2777 50%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-pro h1 .underline {
    position: relative;
    white-space: nowrap;
}

.hero-pro h1 .underline::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.05em;
    height: 0.3em;
    background: linear-gradient(90deg, #fde68a 0%, #fca5a5 100%);
    border-radius: 6px;
    z-index: -1;
    opacity: 0.7;
}

.hero-pro p.lead {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--text-soft);
    max-width: 32rem;
    margin-bottom: 1.6rem;
    line-height: 1.65;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.85rem 1.5rem;
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.18);
    background: linear-gradient(180deg, #f87171 0%, #dc2626 55%, #991b1b 100%);
    border: 1px solid #991b1b;
    border-radius: 12px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.4) inset,
        0 -1px 0 rgba(0, 0, 0, 0.18) inset,
        0 6px 18px rgba(220, 38, 38, 0.4);
    transition: transform 0.18s, filter 0.18s, box-shadow 0.18s;
}

.cta-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    filter: brightness(1.06);
    text-decoration: none;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.4) inset,
        0 -1px 0 rgba(0, 0, 0, 0.18) inset,
        0 10px 26px rgba(220, 38, 38, 0.5);
}

.cta-primary:active {
    transform: translateY(0);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.85rem 1.35rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text);
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    box-shadow: var(--shadow-raised);
    transition: transform 0.18s;
}

.cta-secondary:hover {
    text-decoration: none;
    color: var(--text);
    transform: translateY(-2px);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    padding-top: 0.5rem;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.trust-mini {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-mini svg {
    width: 28px;
    height: 28px;
    padding: 5px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    box-shadow: var(--shadow-btn);
    color: #dc2626;
}

.trust-mini strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}

.trust-mini span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* HERO COLLAGE */
.hero-collage {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 480px;
    margin: 0 auto;
}

.collage-tile {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-window);
    border: 1px solid rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: flex-end;
    padding: 0.85rem 1rem;
    color: #fff;
    font-weight: 700;
    font-size: 0.78rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.collage-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.55) 100%);
}

.collage-tile span {
    position: relative;
    z-index: 1;
}

.collage-tile--1 {
    inset: 0 30% 35% 0;
    background:
        linear-gradient(135deg, rgba(249, 115, 22, 0.55) 0%, rgba(220, 38, 38, 0.75) 100%),
        url("https://images.unsplash.com/photo-1551601651-2a8555f1a136?w=600&q=80&auto=format&fit=crop") center/cover no-repeat,
        linear-gradient(135deg, #f97316, #dc2626);
    transform: rotate(-2deg);
    animation: floatTile 7s ease-in-out infinite;
}

.collage-tile--2 {
    inset: 0 0 50% 50%;
    background:
        linear-gradient(135deg, rgba(96, 165, 250, 0.50) 0%, rgba(37, 99, 235, 0.78) 100%),
        url("https://images.unsplash.com/photo-1581094288338-2314dddb7ece?w=600&q=80&auto=format&fit=crop") center/cover no-repeat,
        linear-gradient(135deg, #60a5fa, #2563eb);
    transform: rotate(3deg);
    animation: floatTile 8s ease-in-out infinite 1s;
}

.collage-tile--3 {
    inset: 50% 50% 0 0;
    background:
        linear-gradient(135deg, rgba(52, 211, 153, 0.50) 0%, rgba(5, 150, 105, 0.78) 100%),
        url("https://images.unsplash.com/photo-1589994965851-a8f479c573a9?w=600&q=80&auto=format&fit=crop") center/cover no-repeat,
        linear-gradient(135deg, #34d399, #059669);
    transform: rotate(2deg);
    animation: floatTile 7.5s ease-in-out infinite 0.5s;
}

.collage-tile--4 {
    inset: 45% 0 0 55%;
    background:
        linear-gradient(135deg, rgba(192, 132, 252, 0.50) 0%, rgba(124, 58, 237, 0.80) 100%),
        url("https://images.unsplash.com/photo-1532094349884-543bc11b234d?w=600&q=80&auto=format&fit=crop") center/cover no-repeat,
        linear-gradient(135deg, #c084fc, #7c3aed);
    transform: rotate(-3deg);
    animation: floatTile 8.5s ease-in-out infinite 1.5s;
}

.collage-tile span:not(.tile-icon) {
    position: absolute;
    bottom: 0.85rem;
    left: 0.85rem;
    right: 0.85rem;
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.collage-tile .tile-icon {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.collage-tile .tile-icon {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    font-size: 1.5rem;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes floatTile {
    0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
    50% { transform: translateY(-6px) rotate(var(--r, 0deg)); }
}

.collage-badge {
    position: absolute;
    z-index: 2;
    padding: 0.5rem 0.85rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text);
    background: linear-gradient(180deg, #fff 0%, #fef9f3 100%);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 100px;
    box-shadow: var(--shadow-window);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.collage-badge--top {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.collage-badge--bottom {
    bottom: -12px;
    right: 8%;
}

.collage-badge .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
}

/* ─── METRIC BAR ─── */
.metric-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
    padding: 1rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 247, 239, 0.7) 100%);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-window);
    margin-bottom: 2.5rem;
}

.metric-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.85rem;
}

.metric-cell + .metric-cell {
    border-left: 1px dashed rgba(0, 0, 0, 0.1);
}

.metric-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(180deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-btn);
    font-size: 1.3rem;
}

.metric-cell:nth-child(2) .metric-icon { background: linear-gradient(180deg, #dbeafe 0%, #bfdbfe 100%); }
.metric-cell:nth-child(3) .metric-icon { background: linear-gradient(180deg, #d1fae5 0%, #a7f3d0 100%); }
.metric-cell:nth-child(4) .metric-icon { background: linear-gradient(180deg, #ede9fe 0%, #ddd6fe 100%); }

.metric-text strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.metric-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ─── SECTION HEAD ─── */
.section-pro {
    padding: 2rem 0;
}

.section-head-pro {
    text-align: center;
    max-width: 38rem;
    margin: 0 auto 2rem;
}

.section-eyebrow-pro {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #be185d;
    background: linear-gradient(180deg, #fff 0%, #fdf2f8 100%);
    border: 1px solid rgba(190, 24, 93, 0.15);
    border-radius: 100px;
    box-shadow: var(--shadow-btn);
    margin-bottom: 0.85rem;
}

.section-head-pro h2 {
    font-size: clamp(1.5rem, 3.2vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.section-head-pro p {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 32rem;
    margin: 0 auto;
}

/* ─── WHY CARDS ─── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.why-card {
    padding: 1.35rem 1.2rem;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    box-shadow: var(--shadow-raised);
    transition: transform 0.22s ease, box-shadow 0.22s, border-color 0.22s;
}

.why-card:hover {
    transform: translateY(-4px);
    border-color: rgba(220, 38, 38, 0.15);
    box-shadow: var(--shadow-raised), 0 16px 32px rgba(0, 0, 0, 0.08);
}

.why-card-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 0.85rem;
    border-radius: 12px;
    font-size: 1.4rem;
    box-shadow: var(--shadow-btn);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.why-card:nth-child(1) .why-card-icon { background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%); }
.why-card:nth-child(2) .why-card-icon { background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%); }
.why-card:nth-child(3) .why-card-icon { background: linear-gradient(180deg, #ecfdf5 0%, #d1fae5 100%); }
.why-card:nth-child(4) .why-card-icon { background: linear-gradient(180deg, #faf5ff 0%, #ede9fe 100%); }

.why-card h3 {
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--text);
}

.why-card p {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ─── OPEN ROLES ─── */
.roles-window {
    background: var(--win-face);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-window);
    overflow: hidden;
}

.roles-tabs {
    display: flex;
    gap: 0.4rem;
    padding: 0.85rem 1rem;
    background: linear-gradient(180deg, #faf6ee 0%, #f3edE3 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    overflow-x: auto;
    scrollbar-width: none;
}

.roles-tabs::-webkit-scrollbar { display: none; }

.role-tab {
    flex: 0 0 auto;
    padding: 0.4rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-soft);
    background: linear-gradient(180deg, #fff 0%, #f1f5f9 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 100px;
    box-shadow: var(--shadow-btn);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.role-tab.active {
    color: #fff;
    background: linear-gradient(180deg, #f87171 0%, #dc2626 100%);
    border-color: #991b1b;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.35);
}

.roles-list {
    padding: 0.85rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.role-card {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: var(--radius);
    box-shadow: var(--shadow-raised);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
}

.role-card:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-2px);
    box-shadow: var(--shadow-raised), 0 10px 22px rgba(0, 0, 0, 0.08);
}

.role-card-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 11px;
    font-size: 1.15rem;
    box-shadow: var(--shadow-btn);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.role-card-icon.t-medical { background: linear-gradient(180deg, #fee2e2 0%, #fecaca 100%); }
.role-card-icon.t-tech    { background: linear-gradient(180deg, #dbeafe 0%, #bfdbfe 100%); }
.role-card-icon.t-arts    { background: linear-gradient(180deg, #fef3c7 0%, #fde68a 100%); }
.role-card-icon.t-science { background: linear-gradient(180deg, #d1fae5 0%, #a7f3d0 100%); }
.role-card-icon.t-admin   { background: linear-gradient(180deg, #ede9fe 0%, #ddd6fe 100%); }
.role-card-icon.t-research{ background: linear-gradient(180deg, #fce7f3 0%, #fbcfe8 100%); }

.role-card-body {
    flex: 1;
    min-width: 0;
}

.role-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.role-card p.role-dept {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.45rem;
}

.role-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.role-chip {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-soft);
    padding: 0.2rem 0.55rem;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.role-chip.full-time { color: #047857; background: #ecfdf5; border-color: rgba(16, 185, 129, 0.25); }
.role-chip.part-time { color: #1d4ed8; background: #eff6ff; border-color: rgba(59, 130, 246, 0.25); }

.role-arrow {
    align-self: center;
    color: var(--text-muted);
    transition: transform 0.2s, color 0.2s;
}

.role-card:hover .role-arrow {
    transform: translateX(3px);
    color: #dc2626;
}

.roles-footer {
    padding: 0.85rem 1rem;
    text-align: center;
    background: linear-gradient(180deg, #faf6ee 0%, #f3ede3 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ─── LIFE GALLERY ─── */
.life-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.85rem;
    aspect-ratio: 16 / 8;
}

.life-tile {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-window);
    color: #fff;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.22s;
}

.life-tile:hover {
    transform: translateY(-3px);
}

.life-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.6) 100%);
}

.life-tile > * {
    position: relative;
    z-index: 1;
}

.life-tile .life-icon {
    align-self: flex-start;
    font-size: 1.8rem;
    margin-bottom: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.life-tile h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.life-tile p {
    font-size: 0.78rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.life-tile--1 {
    grid-row: 1 / 3;
    background: linear-gradient(135deg, #fb923c 0%, #dc2626 100%);
}

.life-tile--2 {
    background: linear-gradient(135deg, #60a5fa 0%, #1d4ed8 100%);
}

.life-tile--3 {
    background: linear-gradient(135deg, #c084fc 0%, #7c3aed 100%);
}

.life-tile--4 {
    background: linear-gradient(135deg, #34d399 0%, #059669 100%);
}

.life-tile--5 {
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
}

/* ─── PERKS ─── */
.perks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
}

.perk-tile {
    text-align: center;
    padding: 1.25rem 0.85rem;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    box-shadow: var(--shadow-raised);
    transition: transform 0.22s;
}

.perk-tile:hover {
    transform: translateY(-3px);
}

.perk-tile .perk-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 0.65rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 1.3rem;
    box-shadow: var(--shadow-btn);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.perk-tile:nth-child(1) .perk-icon { background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%); }
.perk-tile:nth-child(2) .perk-icon { background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%); }
.perk-tile:nth-child(3) .perk-icon { background: linear-gradient(180deg, #ecfdf5 0%, #d1fae5 100%); }
.perk-tile:nth-child(4) .perk-icon { background: linear-gradient(180deg, #faf5ff 0%, #ede9fe 100%); }
.perk-tile:nth-child(5) .perk-icon { background: linear-gradient(180deg, #fdf2f8 0%, #fce7f3 100%); }
.perk-tile:nth-child(6) .perk-icon { background: linear-gradient(180deg, #fefce8 0%, #fef9c3 100%); }
.perk-tile:nth-child(7) .perk-icon { background: linear-gradient(180deg, #f0fdfa 0%, #ccfbf1 100%); }
.perk-tile:nth-child(8) .perk-icon { background: linear-gradient(180deg, #fff1f2 0%, #ffe4e6 100%); }

.perk-tile h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text);
}

.perk-tile p {
    font-size: 0.74rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ─── LEADERSHIP QUOTE ─── */
.quote-window {
    display: grid;
    grid-template-columns: 0.4fr 0.6fr;
    background: linear-gradient(135deg, #fff1f2 0%, #fef3c7 60%, #dbeafe 100%);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-window);
    overflow: hidden;
    align-items: stretch;
}

.quote-portrait {
    position: relative;
    min-height: 260px;
    background:
        radial-gradient(circle at 30% 35%, rgba(255, 255, 255, 0.55) 0%, transparent 55%),
        linear-gradient(135deg, #fde68a 0%, #fb7185 60%, #f43f5e 100%);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.quote-portrait .avatar-mono {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: linear-gradient(145deg, #fff 0%, #fef3c7 100%);
    border: 4px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    display: grid;
    place-items: center;
    font-size: 3rem;
    font-weight: 800;
    color: #be123c;
    letter-spacing: -0.02em;
}

.quote-body {
    padding: 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-body .quote-mark {
    font-family: Georgia, serif;
    font-size: 3.5rem;
    line-height: 0.6;
    color: rgba(220, 38, 38, 0.35);
    margin-bottom: 0.5rem;
}

.quote-body blockquote {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 500;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 1rem;
    font-style: italic;
}

.quote-body cite {
    display: block;
    font-style: normal;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
}

.quote-body cite span {
    display: block;
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-top: 0.15rem;
}

/* ─── HOW IT WORKS — premium ─── */
.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.9rem;
    position: relative;
}

.how-step {
    position: relative;
    padding: 1.35rem 1.15rem;
    background: linear-gradient(180deg, #ffffff 0%, #faf6ee 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    box-shadow: var(--shadow-raised);
    transition: transform 0.22s;
}

.how-step:hover {
    transform: translateY(-3px);
}

.how-step-num {
    position: absolute;
    top: -14px;
    left: 16px;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 0.82rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(180deg, #f87171 0%, #dc2626 100%);
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.35);
}

.how-step h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-top: 0.5rem;
    margin-bottom: 0.35rem;
    color: var(--text);
}

.how-step p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.how-step-icon {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
}

/* ─── FAQ ─── */
.faq-wrap {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    box-shadow: var(--shadow-raised);
    margin-bottom: 0.65rem;
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 0.95rem 1.1rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: "+";
    font-size: 1.3rem;
    font-weight: 400;
    color: #dc2626;
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-answer {
    padding: 0 1.1rem 1rem;
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ─── FINAL CTA ─── */
.cta-pro {
    text-align: center;
    padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 4vw, 2.5rem);
    background:
        radial-gradient(circle at 80% 20%, rgba(220, 38, 38, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, #fff7ef 0%, #fdf2f8 100%);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-window);
}

.cta-pro h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 0.6rem;
    color: var(--text);
}

.cta-pro p {
    font-size: 1rem;
    color: var(--text-soft);
    max-width: 30rem;
    margin: 0 auto 1.5rem;
}

.cta-pro .hero-cta-row {
    justify-content: center;
    margin-bottom: 0;
}

/* ─── PRO FOOTER ─── */
.pro-footer {
    margin-top: 2rem;
    padding: 2rem 0 1rem;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.6) 60%);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.pro-footer-inner {
    width: var(--max);
    margin: 0 auto;
    padding: 0 1rem;
}

.pro-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.pro-footer-grid h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.pro-footer-grid ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pro-footer-grid a {
    font-size: 0.85rem;
    color: var(--text-soft);
}

.pro-footer-grid a:hover {
    color: #dc2626;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
}

.footer-brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-btn);
}

.footer-brand h3 {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.footer-brand p {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.footer-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 18rem;
}

.pro-footer-bottom {
    padding-top: 1.25rem;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.pro-footer-bottom .socials {
    display: flex;
    gap: 0.5rem;
}

.pro-footer-bottom .socials a {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #fff 0%, #f1f5f9 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    box-shadow: var(--shadow-btn);
    color: var(--text-muted);
    transition: transform 0.2s, color 0.2s;
}

.pro-footer-bottom .socials a:hover {
    color: #dc2626;
    transform: translateY(-2px);
}

/* Hide old landing helpers no longer used */
.landing-bg { display: none; }

/* ═══════════════════════════════════════════════════════════════
   PREMIUM LANDING — v2 (image-rich, varied layouts)
   ═══════════════════════════════════════════════════════════════ */

/* Reusable photo block with skeu frame */
.photo-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-window);
    background: #e8ecf3 center/cover no-repeat;
    isolation: isolate;
}

.photo-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(15, 23, 42, 0.6) 100%);
    pointer-events: none;
}

.photo-caption {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.9rem;
    z-index: 2;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.photo-caption strong {
    display: block;
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.photo-caption span {
    font-size: 0.78rem;
    opacity: 0.88;
}

.photo-corner-badge {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    z-index: 2;
    padding: 0.35rem 0.7rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text);
    background: linear-gradient(180deg, #fff 0%, #fef9f3 100%);
    border-radius: 100px;
    box-shadow: var(--shadow-raised);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

/* ─── SECTION 1 · Accreditation strip ─── */
.trust-strip {
    margin: 1.25rem 0 2rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 247, 239, 0.55) 100%);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-raised);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-strip > span {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.trust-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-soft);
    padding: 0.4rem 0.85rem;
    background: linear-gradient(180deg, #fff 0%, #faf6ee 100%);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    box-shadow: var(--shadow-btn);
}

.trust-logo .logo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dc2626;
}

.trust-logo:nth-child(3) .logo-dot { background: #2563eb; }
.trust-logo:nth-child(4) .logo-dot { background: #059669; }
.trust-logo:nth-child(5) .logo-dot { background: #d97706; }
.trust-logo:nth-child(6) .logo-dot { background: #7c3aed; }

/* ─── SECTION 2 · Stats spotlight (asymmetric, not 4-equal-cards) ─── */
.stats-spotlight {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.stat-feature {
    position: relative;
    padding: 1.6rem 1.75rem;
    background:
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.45), transparent 50%),
        linear-gradient(135deg, #fde68a 0%, #fb923c 60%, #dc2626 100%);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-window);
    color: #fff;
    overflow: hidden;
}

.stat-feature::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25), transparent 70%);
}

.stat-feature .stat-eyebrow {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 100px;
    margin-bottom: 1rem;
    backdrop-filter: blur(4px);
}

.stat-feature strong {
    display: block;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.stat-feature p {
    font-size: 0.95rem;
    margin-top: 0.5rem;
    max-width: 22rem;
    line-height: 1.55;
    opacity: 0.95;
}

.stat-mini-list {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 0.75rem;
}

.stat-mini {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    box-shadow: var(--shadow-raised);
}

.stat-mini-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-btn);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-mini:nth-child(1) .stat-mini-icon { background: linear-gradient(180deg, #dbeafe 0%, #bfdbfe 100%); }
.stat-mini:nth-child(2) .stat-mini-icon { background: linear-gradient(180deg, #d1fae5 0%, #a7f3d0 100%); }
.stat-mini:nth-child(3) .stat-mini-icon { background: linear-gradient(180deg, #ede9fe 0%, #ddd6fe 100%); }

.stat-mini-text strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.stat-mini-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ─── SECTION 3 · About Saveetha (split with image) ─── */
.about-pro {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.75rem;
    align-items: center;
}

.about-pro-media {
    position: relative;
    aspect-ratio: 4 / 5;
    background-image:
        linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(190, 24, 93, 0.05)),
        url("https://images.unsplash.com/photo-1562774053-701939374585?w=900&q=80&auto=format&fit=crop");
}

.about-pro-media .est-stamp {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), #fef3c7 70%);
    border: 4px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    display: grid;
    place-items: center;
    text-align: center;
    transform: rotate(-8deg);
    font-weight: 800;
    color: var(--accent-deep);
    line-height: 1.05;
}

.about-pro-media .est-stamp span {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.1rem;
}

.about-pro-media .est-stamp strong {
    font-size: 1.5rem;
    display: block;
}

.about-pro-media .est-stamp small {
    font-size: 0.6rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.about-pro-content .section-eyebrow-pro {
    margin-bottom: 0.85rem;
}

.about-pro-content h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 0.85rem;
    line-height: 1.15;
}

.about-pro-content > p {
    font-size: 0.95rem;
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.about-point {
    display: flex;
    gap: 0.65rem;
    padding: 0.65rem 0.85rem;
    background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    box-shadow: var(--shadow-btn);
}

.about-point .check {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(180deg, #34d399, #059669);
    color: #fff;
    font-size: 0.75rem;
}

.about-point strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text);
}

.about-point span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ─── SECTION 4 · Why us — bento (mixed sizes) ─── */
.bento-why {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 0.9rem;
}

.bento-cell {
    position: relative;
    padding: 1.35rem 1.25rem;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    box-shadow: var(--shadow-raised);
    overflow: hidden;
    transition: transform 0.22s, box-shadow 0.22s;
}

.bento-cell:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-raised), 0 14px 28px rgba(0, 0, 0, 0.08);
}

.bento-cell h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--text);
}

.bento-cell p {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.bento-cell .cell-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 0.85rem;
    border-radius: 12px;
    font-size: 1.4rem;
    box-shadow: var(--shadow-btn);
    border: 1px solid rgba(0, 0, 0, 0.04);
    background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
}

/* Bento sizes */
.bento-cell.span-2 { grid-column: span 2; }
.bento-cell.tall { grid-row: span 2; }

.bento-cell.feature {
    color: #fff;
    background:
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.3), transparent 55%),
        linear-gradient(135deg, #7c3aed 0%, #db2777 60%, #dc2626 100%);
    border-color: rgba(255, 255, 255, 0.2);
    grid-column: span 2;
    grid-row: span 2;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.bento-cell.feature h3 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.bento-cell.feature p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.9rem;
    line-height: 1.65;
    max-width: 28rem;
}

.bento-cell.feature .cell-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    font-size: 1.65rem;
}

.bento-cell.feature .feature-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 1rem;
    padding: 0.55rem 0.95rem;
    align-self: flex-start;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 100px;
    backdrop-filter: blur(8px);
    transition: background 0.2s;
}

.bento-cell.feature .feature-cta:hover {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.bento-cell .cell-photo {
    position: absolute;
    inset: 0;
    background: #1e293b center/cover no-repeat;
    z-index: 0;
}

.bento-cell .cell-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(160deg, rgba(15, 23, 42, 0.45) 0%, rgba(15, 23, 42, 0.85) 100%);
    z-index: 1;
}

.bento-cell.has-photo > *:not(.cell-photo):not(.cell-overlay) {
    position: relative;
    z-index: 2;
}

.bento-cell.has-photo {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.95);
    background-color: #0f172a;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.bento-cell.has-photo h3 {
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    font-size: 1.15rem;
    font-weight: 800;
}

.bento-cell.has-photo p {
    color: rgba(255, 255, 255, 0.96);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
    font-size: 0.85rem;
}

.bento-cell.has-photo .cell-icon {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    backdrop-filter: blur(10px);
    margin-bottom: 0.6rem;
    align-self: flex-start;
}

/* Per-cell icon palette */
.bento-cell.tint-blue   .cell-icon { background: linear-gradient(180deg, #dbeafe 0%, #bfdbfe 100%); }
.bento-cell.tint-green  .cell-icon { background: linear-gradient(180deg, #d1fae5 0%, #a7f3d0 100%); }
.bento-cell.tint-purple .cell-icon { background: linear-gradient(180deg, #ede9fe 0%, #ddd6fe 100%); }
.bento-cell.tint-pink   .cell-icon { background: linear-gradient(180deg, #fce7f3 0%, #fbcfe8 100%); }

/* ─── SECTION 5 · Open positions (image-backed dept cards) ─── */
.roles-window-pro {
    background: var(--win-face);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-window);
    overflow: hidden;
}

.roles-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(180deg, #faf6ee 0%, #f3ede3 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    flex-wrap: wrap;
}

.roles-header strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
}

.roles-header strong span {
    color: var(--text-muted);
    font-weight: 500;
    margin-left: 0.4rem;
}

.roles-header .role-search {
    flex: 1;
    min-width: 200px;
    max-width: 320px;
    position: relative;
}

.roles-header .role-search input {
    width: 100%;
    padding: 0.55rem 0.85rem 0.55rem 2.25rem;
    font: inherit;
    font-size: 0.85rem;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    box-shadow: var(--shadow-inset);
}

.roles-header .role-search input:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: var(--shadow-inset), 0 0 0 3px rgba(220, 38, 38, 0.18);
}

.roles-header .role-search svg {
    position: absolute;
    left: 0.7rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.role-feature {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 0;
    background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.role-feature-photo {
    min-height: 220px;
    background:
        linear-gradient(135deg, rgba(220, 38, 38, 0.15), transparent 50%),
        url("https://images.unsplash.com/photo-1582719508461-905c673771fd?w=800&q=80&auto=format&fit=crop") center/cover no-repeat;
    position: relative;
}

.role-feature-photo::after {
    content: "Featured opening";
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    padding: 0.35rem 0.7rem;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent-deep);
    background: linear-gradient(180deg, #fff 0%, #fef3c7 100%);
    border-radius: 100px;
    box-shadow: var(--shadow-raised);
}

.role-feature-content {
    padding: 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.role-feature-content .role-dept-tag {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1d4ed8;
    background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 6px;
    margin-bottom: 0.65rem;
    width: fit-content;
}

.role-feature-content h3 {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.role-feature-content p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0.85rem;
}

.role-feature-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.roles-tabs {
    display: flex;
    gap: 0.4rem;
    padding: 0.85rem 1.25rem;
    background: linear-gradient(180deg, #faf6ee 0%, #f3ede3 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    overflow-x: auto;
    scrollbar-width: none;
}

.roles-tabs::-webkit-scrollbar { display: none; }

.roles-list-pro {
    padding: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.role-card-pro {
    display: flex;
    align-items: stretch;
    gap: 0;
    padding: 0;
    background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: var(--radius);
    box-shadow: var(--shadow-raised);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
}

.role-card-pro:hover {
    transform: translateY(-2px);
    color: inherit;
    text-decoration: none;
    box-shadow: var(--shadow-raised), 0 10px 22px rgba(0, 0, 0, 0.08);
}

.role-card-photo {
    width: 96px;
    flex-shrink: 0;
    background: center/cover no-repeat;
    position: relative;
}

.role-card-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.25) 100%);
}

.role-card-pro .role-card-body {
    flex: 1;
    padding: 0.85rem 1rem;
    min-width: 0;
}

.role-card-pro .role-card-body h3 {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.role-card-pro .role-card-body p {
    font-size: 0.76rem;
    color: var(--text-muted);
    margin-bottom: 0.45rem;
}

/* ─── SECTION 6 · Life gallery — real photos ─── */
.life-photos {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 200px);
    gap: 0.85rem;
}

.life-photo {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-window);
    background: center/cover no-repeat;
    transition: transform 0.25s ease;
}

.life-photo:hover {
    transform: translateY(-3px) scale(1.01);
}

.life-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(15, 23, 42, 0.68) 100%);
}

.life-photo .life-cap {
    position: absolute;
    inset: auto 1rem 0.85rem 1rem;
    z-index: 1;
    color: #fff;
}

.life-photo .life-cap strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.life-photo .life-cap span {
    font-size: 0.78rem;
    opacity: 0.92;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.life-photo .life-icon-pill {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    z-index: 2;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-btn);
}

.life-photo--big {
    grid-row: 1 / 3;
    background-image: url("https://images.unsplash.com/photo-1562774053-701939374585?w=1000&q=80&auto=format&fit=crop");
}
.life-photo--lab {
    background-image: url("https://images.unsplash.com/photo-1532094349884-543bc11b234d?w=800&q=80&auto=format&fit=crop");
}
.life-photo--library {
    background-image: url("https://images.unsplash.com/photo-1481627834876-b7833e8f5570?w=800&q=80&auto=format&fit=crop");
}
.life-photo--sports {
    background-image: url("https://images.unsplash.com/photo-1517649763962-0c623066013b?w=800&q=80&auto=format&fit=crop");
}
.life-photo--events {
    background-image: url("https://images.unsplash.com/photo-1523580494863-6f3031224c94?w=800&q=80&auto=format&fit=crop");
}

/* ─── SECTION 7 · Perks bento ─── */
.bento-perks {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.85rem;
}

.perk-cell {
    padding: 1.1rem 1rem;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    box-shadow: var(--shadow-raised);
    grid-column: span 2;
    transition: transform 0.22s;
}

.perk-cell:hover {
    transform: translateY(-3px);
}

.perk-cell.wide { grid-column: span 3; }
.perk-cell.lead { grid-column: span 3; grid-row: span 2; }

.perk-cell .perk-icon-sq {
    width: 42px;
    height: 42px;
    margin-bottom: 0.65rem;
    display: grid;
    place-items: center;
    border-radius: 11px;
    font-size: 1.3rem;
    box-shadow: var(--shadow-btn);
    border: 1px solid rgba(0, 0, 0, 0.04);
    background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
}

.perk-cell:nth-child(2) .perk-icon-sq { background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%); }
.perk-cell:nth-child(3) .perk-icon-sq { background: linear-gradient(180deg, #ecfdf5 0%, #d1fae5 100%); }
.perk-cell:nth-child(4) .perk-icon-sq { background: linear-gradient(180deg, #faf5ff 0%, #ede9fe 100%); }
.perk-cell:nth-child(5) .perk-icon-sq { background: linear-gradient(180deg, #fdf2f8 0%, #fce7f3 100%); }
.perk-cell:nth-child(6) .perk-icon-sq { background: linear-gradient(180deg, #f0fdfa 0%, #ccfbf1 100%); }
.perk-cell:nth-child(7) .perk-icon-sq { background: linear-gradient(180deg, #fefce8 0%, #fef9c3 100%); }

.perk-cell h4 {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.perk-cell p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.perk-cell.lead {
    background:
        radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.4), transparent 55%),
        linear-gradient(135deg, #fde68a 0%, #fb923c 100%);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    min-height: 220px;
}

.perk-cell.lead h4 {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.perk-cell.lead p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.88rem;
    max-width: 18rem;
}

.perk-cell.lead .perk-icon-sq {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
    width: 52px;
    height: 52px;
    font-size: 1.6rem;
}

.perk-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.85rem;
}

.perk-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.65rem;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #fff;
}

/* ─── SECTION 8 · Testimonials ─── */
.testimonials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.testimonial {
    padding: 1.5rem;
    background: linear-gradient(180deg, #ffffff 0%, #faf6ee 100%);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-window);
    display: flex;
    flex-direction: column;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
    margin-bottom: 0.85rem;
}

.testimonial blockquote {
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--text);
    margin-bottom: 1.25rem;
    flex: 1;
}

.testimonial-person {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    background: center/cover no-repeat #e2e8f0;
    border: 3px solid rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-btn);
}

.testimonial-info strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
}

.testimonial-info span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ─── SECTION 9 · How it works — horizontal timeline ─── */
.timeline-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding-top: 1.5rem;
}

.timeline-flow::before {
    content: "";
    position: absolute;
    top: calc(1.5rem + 22px);
    left: 12%;
    right: 12%;
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        rgba(220, 38, 38, 0.35) 0,
        rgba(220, 38, 38, 0.35) 6px,
        transparent 6px,
        transparent 12px
    );
    z-index: 0;
}

.timeline-step {
    position: relative;
    text-align: center;
    padding: 0 0.5rem;
}

.timeline-step .step-bubble {
    position: relative;
    z-index: 2;
    width: 56px;
    height: 56px;
    margin: 0 auto 0.85rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 1.5rem;
    background: linear-gradient(180deg, #fff 0%, #faf6ee 100%);
    border: 3px solid #fff;
    box-shadow:
        0 4px 12px rgba(220, 38, 38, 0.2),
        var(--shadow-raised);
}

.timeline-step .step-num {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(180deg, #f87171, #dc2626);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    border: 2px solid #fff;
}

.timeline-step h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--text);
}

.timeline-step p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.55;
    max-width: 14rem;
    margin: 0 auto;
}

/* Update leadership quote portrait to use real image */
.quote-portrait-photo {
    position: relative;
    min-height: 280px;
    background:
        linear-gradient(135deg, rgba(244, 63, 94, 0.35), rgba(217, 119, 6, 0.2)),
        url("https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=800&q=80&auto=format&fit=crop") center/cover no-repeat;
    overflow: hidden;
}

/* ───────── RESPONSIVE v2 ───────── */
@media (max-width: 960px) {
    .stats-spotlight,
    .about-pro,
    .testimonials {
        grid-template-columns: 1fr;
    }

    .about-pro-media { aspect-ratio: 5 / 3; }
    .about-points { grid-template-columns: 1fr 1fr; }

    .bento-why {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-cell.span-2,
    .bento-cell.feature,
    .bento-cell.tall {
        grid-column: span 2;
        grid-row: auto;
    }
    .bento-cell.feature { min-height: 240px; }

    .bento-perks { grid-template-columns: repeat(4, 1fr); }
    .perk-cell { grid-column: span 2; }
    .perk-cell.lead { grid-column: span 4; grid-row: auto; min-height: 180px; }
    .perk-cell.wide { grid-column: span 4; }

    .roles-list-pro { grid-template-columns: 1fr; }
    .role-feature { grid-template-columns: 1fr; }
    .role-feature-photo { min-height: 180px; }

    .life-photos {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 180px);
    }
    .life-photo--big { grid-row: 1 / 2; grid-column: 1 / 3; }

    .timeline-flow {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 1rem;
    }
    .timeline-flow::before { display: none; }
}

@media (max-width: 640px) {
    .trust-strip { gap: 0.75rem; padding: 0.85rem 1rem; }
    .trust-logo { font-size: 0.78rem; padding: 0.35rem 0.7rem; }
    .stat-feature { padding: 1.25rem; }
    .stat-feature strong { font-size: 2.25rem; }
    .about-points { grid-template-columns: 1fr; }
    .bento-why { grid-template-columns: 1fr; }
    .bento-cell.span-2, .bento-cell.feature, .bento-cell.tall { grid-column: span 1; }
    .bento-perks { grid-template-columns: 1fr 1fr; }
    .perk-cell, .perk-cell.wide, .perk-cell.lead { grid-column: span 2; }
    .life-photos {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 160px);
    }
    .life-photo--big { grid-row: 1; grid-column: 1; }
    .timeline-flow { grid-template-columns: 1fr; }
    .testimonial { padding: 1.25rem; }
    .role-card-photo { width: 80px; }
}

.landing-hero,
.hero-badge-legacy {
    display: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem 0.35rem 0.55rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-deep);
    background: linear-gradient(180deg, #fff 0%, #fef2f2 100%);
    border: 1px solid rgba(185, 28, 28, 0.15);
    border-radius: 100px;
    box-shadow: var(--shadow-raised);
    margin-bottom: 1rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.5); }
    70% { box-shadow: 0 0 0 8px rgba(5, 150, 105, 0); }
}

.hero-title {
    font-size: clamp(1.85rem, 5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 0.85rem;
}

.hero-title .accent {
    background: linear-gradient(135deg, var(--accent) 0%, #dc2626 50%, var(--accent-deep) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-lead {
    font-size: clamp(0.9rem, 2.5vw, 1.05rem);
    color: var(--text-muted);
    max-width: 32rem;
    margin-bottom: 1.5rem;
    line-height: 1.65;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.7rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-soft);
    background: linear-gradient(180deg, #fff 0%, #f1f5f9 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-btn);
}

.trust-chip svg {
    color: var(--blue-mid);
    flex-shrink: 0;
}

/* Hero preview window */
.hero-preview {
    position: relative;
}

.preview-window {
    background: var(--win-face);
    border-radius: var(--radius-lg);
    border: 1px solid var(--win-border);
    box-shadow: var(--shadow-window);
    overflow: hidden;
}

.preview-body {
    padding: 1.15rem;
}

.preview-progress label {
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.progress-track {
    height: 8px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-inset);
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: var(--blue-gloss);
    border-radius: 4px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4) inset;
}

.step-list {
    list-style: none;
    margin-bottom: 1rem;
}

.step-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.step-list li span {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    font-size: 0.65rem;
    font-weight: 800;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-inset);
}

.step-list li.done {
    color: var(--text);
}

.step-list li.done span {
    background: var(--green-gloss);
    color: #fff;
    box-shadow: var(--shadow-btn);
}

.step-list li.active {
    color: var(--text);
    font-weight: 600;
}

.step-list li.active span {
    background: var(--blue-gloss);
    color: #fff;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.35);
}

.float-pill {
    position: absolute;
    padding: 0.4rem 0.75rem;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text);
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 100px;
    box-shadow: var(--shadow-raised);
    white-space: nowrap;
    animation: floatY 4s ease-in-out infinite;
}

.float-pill--1 { top: -10px; right: -8px; }
.float-pill--2 { bottom: 20px; left: -16px; animation-delay: 1s; }

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Stats */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.stat-tile {
    text-align: center;
    padding: 1.1rem 0.75rem;
    background: linear-gradient(180deg, #ffffff 0%, #eef2f6 100%);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: var(--radius);
    box-shadow: var(--shadow-raised);
}

.stat-tile strong {
    display: block;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
}

.stat-tile span {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Sections */
.landing-section {
    padding: 2rem 0;
}

.landing-section-head {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto 1.75rem;
}

.landing-section-head h2 {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.4rem;
}

.landing-section-head p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cards-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
}

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

.skeu-card {
    padding: 1.25rem;
    background: linear-gradient(180deg, #ffffff 0%, #f4f6f9 100%);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: var(--radius);
    box-shadow: var(--shadow-raised);
    transition: transform 0.22s ease, box-shadow 0.22s;
}

.skeu-card:hover {
    transform: translateY(-3px);
    box-shadow:
        var(--shadow-raised),
        0 12px 28px rgba(0, 0, 0, 0.08);
}

.skeu-card-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 11px;
    box-shadow: var(--shadow-btn);
}

.skeu-card h3 {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--text);
}

.skeu-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.about-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1rem;
    align-items: stretch;
}

.about-panel {
    padding: 1.5rem;
}

.about-list {
    list-style: none;
    margin-top: 1rem;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.45rem 0;
    font-size: 0.88rem;
    color: var(--text-soft);
}

.about-list svg {
    flex-shrink: 0;
    color: var(--green);
    margin-top: 2px;
}

.campus-visual {
    min-height: 260px;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.campus-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(160deg, rgba(37, 99, 235, 0.35), transparent 50%),
        linear-gradient(220deg, rgba(185, 28, 28, 0.25), transparent 45%),
        linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.5) 100%);
}

.campus-visual-content {
    position: relative;
    height: 100%;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: #fff;
}

.campus-tag {
    display: inline-block;
    width: fit-content;
    padding: 0.3rem 0.65rem;
    font-size: 0.68rem;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 6px;
    margin-bottom: 0.5rem;
    backdrop-filter: blur(8px);
}

.campus-visual h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.campus-visual p {
    font-size: 0.82rem;
    opacity: 0.9;
}

.cta-panel {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(185, 28, 28, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-window);
}

.cta-panel h2 {
    font-size: clamp(1.25rem, 3vw, 1.6rem);
    font-weight: 800;
    margin-bottom: 0.4rem;
}

.cta-panel > p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

.cta-panel .hero-cta {
    justify-content: center;
}

/* (legacy dark landing overrides removed — premium light theme above) */

/* Review box */
.review-box {
    padding: 1rem;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    box-shadow: var(--shadow-inset);
    font-size: 0.88rem;
    line-height: 1.7;
}

.review-box p {
    margin-bottom: 0.35rem;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 960px) {
    .hero-pro {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-pro p.lead { margin-left: auto; margin-right: auto; }
    .hero-cta-row, .hero-trust { justify-content: center; }
    .hero-collage { max-width: 360px; }
    .metric-bar { grid-template-columns: repeat(2, 1fr); }
    .metric-cell:nth-child(2n) { border-left: 0; }
    .why-grid, .perks-grid, .how-grid { grid-template-columns: repeat(2, 1fr); }
    .roles-list { grid-template-columns: 1fr; }
    .life-gallery {
        grid-template-columns: 1fr 1fr;
        aspect-ratio: 1 / 1.1;
    }
    .life-tile--1 { grid-column: 1 / 3; grid-row: auto; }
    .quote-window { grid-template-columns: 1fr; }
    .quote-portrait { min-height: 200px; }
    .pro-footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

    /* legacy fallbacks still in use elsewhere */
    .hero-lead { margin-left: auto; margin-right: auto; }
    .hero-cta, .trust-row { justify-content: center; }
    .hero-preview { max-width: 400px; margin: 0 auto; }
    .stats-strip { grid-template-columns: repeat(2, 1fr); }
    .cards-4 { grid-template-columns: repeat(2, 1fr); }
    .cards-3 { grid-template-columns: 1fr; }
    .about-split { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .site-header {
        top: 0.5rem;
        margin-top: 0.5rem;
        padding: 0.5rem 0.65rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-actions {
        display: none;
        width: 100%;
        flex-direction: column;
        padding-top: 0.65rem;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .site-header.nav-open .nav-actions {
        display: flex;
    }

    .nav-actions .mac-btn {
        width: 100%;
        justify-content: center;
    }

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

    .stats-strip {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .cards-4 {
        grid-template-columns: 1fr;
    }

    .metric-bar { grid-template-columns: 1fr 1fr; padding: 0.75rem; gap: 0.5rem; }
    .metric-cell { padding: 0.4rem 0.5rem; }
    .metric-text strong { font-size: 1rem; }
    .why-grid, .perks-grid, .how-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
    .why-card, .perk-tile, .how-step { padding: 1rem 0.85rem; }
    .life-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 130px;
        aspect-ratio: auto;
    }
    .life-tile--1 { grid-column: 1; grid-row: span 2; }
    .quote-body { padding: 1.25rem; }
    .quote-portrait .avatar-mono { width: 100px; height: 100px; font-size: 2.3rem; }
    .pro-footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .pro-footer-bottom { flex-direction: column; align-items: center; text-align: center; }
    .hero-pro h1 { font-size: clamp(1.75rem, 7vw, 2.25rem); }
    .collage-tile { font-size: 0.7rem; padding: 0.65rem 0.75rem; }
    .collage-tile .tile-icon { font-size: 1.2rem; top: 0.6rem; left: 0.6rem; }

    .wizard-actions {
        flex-direction: column-reverse;
    }

    .wizard-actions .mac-btn {
        width: 100%;
    }

    .skeu-titlebar-text {
        margin-right: 0;
    }

    .mac-titlebar h2 {
        margin-right: 0;
        font-size: 0.75rem;
    }

    .float-pill--2 {
        left: 0;
    }

    .channel-toggle {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 380px) {
    .step-pill {
        font-size: 0.62rem;
        padding: 0.35rem 0.5rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   PREMIUM LANDING — v3 (Colleges, Tech Centres, Awards, Jobs)
   ═══════════════════════════════════════════════════════════════ */

/* ─── Our Colleges showcase ─── */
.colleges-section {
    padding: 2rem 0;
}

.colleges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.9rem;
}

.college-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-window);
    background: #1e293b;
    min-height: 240px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.1rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
    isolation: isolate;
}

.college-card:hover {
    transform: translateY(-4px);
    text-decoration: none;
    color: #fff;
    box-shadow: var(--shadow-window), 0 16px 32px rgba(0, 0, 0, 0.15);
}

.college-card .college-bg {
    position: absolute;
    inset: 0;
    background: center/cover no-repeat;
    z-index: 0;
    transition: transform 0.6s ease;
}

.college-card:hover .college-bg {
    transform: scale(1.06);
}

.college-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(170deg, rgba(15, 23, 42, 0.35) 0%, rgba(15, 23, 42, 0.85) 70%, rgba(15, 23, 42, 0.95) 100%);
}

.college-card > * {
    position: relative;
    z-index: 2;
}

.college-card .college-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.7rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 100px;
    margin-bottom: 0.6rem;
    width: fit-content;
}

.college-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.35rem;
    line-height: 1.25;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}

.college-card .college-meta {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
}

.college-card .college-meta strong {
    color: #fde68a;
}

.college-card .college-arrow {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    z-index: 3;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--accent-deep);
    box-shadow: var(--shadow-raised);
    transform: rotate(-45deg);
    transition: transform 0.25s ease;
}

.college-card:hover .college-arrow {
    transform: rotate(0deg);
}

.college-card.featured {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 500px;
}

.college-card.featured h3 {
    font-size: 1.65rem;
}

.college-card.featured p.lead-text {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    margin: 0.5rem 0 0.9rem;
    max-width: 28rem;
    line-height: 1.55;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.college-card.featured .college-stats-row {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.college-card.featured .college-stat strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
}

.college-card.featured .college-stat span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.78);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ─── Advanced Tech Centres ─── */
.tech-section {
    padding: 2rem 0;
}

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

.tech-card {
    background: linear-gradient(180deg, #ffffff 0%, #faf6ee 100%);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-window);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease;
}

.tech-card:hover {
    transform: translateY(-4px);
}

.tech-card-photo {
    aspect-ratio: 16 / 10;
    background: #1e293b center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.tech-card-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(15, 23, 42, 0.4) 100%);
}

.tech-badge {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.7rem;
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 100px;
    box-shadow: var(--shadow-raised);
    backdrop-filter: blur(8px);
}

.tech-badge .badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.28);
}

.tech-card-body {
    padding: 1.1rem 1.15rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tech-card-body h3 {
    font-size: 1.08rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
    letter-spacing: -0.015em;
    color: var(--text);
}

.tech-card-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0.85rem;
    flex: 1;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.tech-tag {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-deep);
    background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
    border: 1px solid rgba(190, 24, 93, 0.16);
    border-radius: 6px;
}

.tech-tag.blue   { color: #1d4ed8; background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%); border-color: rgba(59, 130, 246, 0.2); }
.tech-tag.green  { color: #047857; background: linear-gradient(180deg, #ecfdf5 0%, #d1fae5 100%); border-color: rgba(16, 185, 129, 0.2); }
.tech-tag.purple { color: #6d28d9; background: linear-gradient(180deg, #faf5ff 0%, #ede9fe 100%); border-color: rgba(124, 58, 237, 0.2); }

/* ─── Awards & Rankings ribbon ─── */
.awards-ribbon {
    margin: 2rem 0 1rem;
    padding: 1.5rem 1.75rem;
    background:
        radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.4), transparent 50%),
        linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fcd34d 100%);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-window);
    display: grid;
    grid-template-columns: 1.1fr 2.4fr;
    gap: 1.5rem;
    align-items: center;
}

.awards-ribbon-title {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.awards-ribbon-title .ribbon-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #92400e;
}

.awards-ribbon-title h3 {
    font-size: clamp(1.25rem, 2.2vw, 1.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #422006;
    line-height: 1.2;
}

.awards-ribbon-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.65rem;
}

.award-pill {
    padding: 0.85rem 0.85rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(146, 64, 14, 0.18);
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(146, 64, 14, 0.12);
}

.award-pill strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    color: #92400e;
    margin-bottom: 0.2rem;
}

.award-pill span {
    font-size: 0.7rem;
    color: #78350f;
}

/* ─── 'Explore all jobs' button row ─── */
.roles-footer-cta {
    padding: 1rem 1.25rem 1.25rem;
    background: linear-gradient(180deg, #faf6ee 0%, #f3ede3 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.roles-footer-cta .left-note {
    font-size: 0.85rem;
    color: var(--text-soft);
}

.roles-footer-cta .left-note strong {
    color: var(--text);
    font-weight: 700;
}

.roles-footer-cta .explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    background:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.25), transparent 60%),
        linear-gradient(180deg, #f87171 0%, #dc2626 60%, #991b1b 100%);
    border: 1px solid rgba(120, 30, 30, 0.45);
    border-radius: 100px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.45),
        var(--shadow-raised);
    transition: transform 0.18s, box-shadow 0.18s;
}

.roles-footer-cta .explore-btn:hover {
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.45),
        var(--shadow-raised),
        0 12px 24px rgba(220, 38, 38, 0.25);
}

/* ═══════════════════════════════════════════════════════════════
   JOBS PAGE — Indeed-style
   ═══════════════════════════════════════════════════════════════ */

body.jobs-page {
    background:
        radial-gradient(circle at 92% 0%, rgba(255, 237, 213, 0.55), transparent 45%),
        radial-gradient(circle at 0% 30%, rgba(219, 234, 254, 0.45), transparent 40%),
        linear-gradient(180deg, #f5f1ea 0%, #ece8df 100%);
}

.jobs-shell {
    max-width: 1280px;
    margin: 1.5rem auto 3rem;
    padding: 0 1.25rem;
}

.jobs-hero {
    padding: 1.75rem 1.75rem 1.5rem;
    background:
        radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.45), transparent 55%),
        linear-gradient(135deg, #fff 0%, #fef9f3 100%);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-window);
    margin-bottom: 1.5rem;
}

.jobs-hero h1 {
    font-size: clamp(1.5rem, 3.5vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 0.4rem;
    color: var(--text);
}

.jobs-hero p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    max-width: 42rem;
}

.jobs-search-bar {
    display: grid;
    grid-template-columns: 1.4fr 1fr auto;
    gap: 0.65rem;
    align-items: stretch;
    padding: 0.6rem;
    background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        var(--shadow-inset);
}

.jobs-search-field {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    padding: 0 0.75rem;
}

.jobs-search-field svg {
    color: var(--text-muted);
    flex-shrink: 0;
    margin-right: 0.5rem;
}

.jobs-search-field input {
    flex: 1;
    border: 0;
    padding: 0.85rem 0;
    font: inherit;
    font-size: 0.95rem;
    background: transparent;
    color: var(--text);
    outline: none;
}

.jobs-search-field input::placeholder {
    color: var(--text-muted);
}

.jobs-search-bar .search-btn {
    padding: 0 1.5rem;
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    border: 0;
    border-radius: 10px;
    background:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.25), transparent 60%),
        linear-gradient(180deg, #f87171 0%, #dc2626 60%, #991b1b 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.45),
        var(--shadow-raised);
    cursor: pointer;
    transition: transform 0.18s;
}

.jobs-search-bar .search-btn:hover {
    transform: translateY(-1px);
}

.jobs-quick-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
    align-items: center;
}

.jobs-quick-tags .ql-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-right: 0.25rem;
}

.jobs-quick-tags a {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-soft);
    text-decoration: none;
    background: linear-gradient(180deg, #fff 0%, #faf6ee 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 100px;
    box-shadow: var(--shadow-btn);
    transition: transform 0.15s;
}

.jobs-quick-tags a:hover {
    transform: translateY(-1px);
    color: var(--accent-deep);
    text-decoration: none;
}

.jobs-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 1.25rem;
    align-items: flex-start;
}

/* Sidebar filters */
.jobs-filters {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-window);
    overflow: hidden;
    position: sticky;
    top: 1rem;
}

.jobs-filters-head {
    padding: 1rem 1.1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: linear-gradient(180deg, #faf6ee 0%, #f3ede3 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.jobs-filters-head h3 {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.01em;
}

.jobs-filters-head button {
    border: 0;
    background: transparent;
    color: #be185d;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
}

.filter-block {
    padding: 1rem 1.1rem;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.filter-block:last-child {
    border-bottom: 0;
}

.filter-block h4 {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.65rem;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.32rem 0;
    font-size: 0.86rem;
    color: var(--text-soft);
    cursor: pointer;
}

.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: #dc2626;
}

.filter-option .filter-count {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Job results */
.jobs-results {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.jobs-results-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1.1rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 247, 239, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: var(--radius);
    box-shadow: var(--shadow-raised);
    flex-wrap: wrap;
    gap: 0.5rem;
}

.jobs-results-bar strong {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text);
}

.jobs-results-bar strong span {
    color: var(--text-muted);
    font-weight: 500;
}

.sort-select {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.85rem;
    color: var(--text-soft);
}

.sort-select select {
    padding: 0.45rem 0.7rem;
    font: inherit;
    font-size: 0.85rem;
    background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    color: var(--text);
    box-shadow: var(--shadow-btn);
    cursor: pointer;
}

/* Job card */
.job-card {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-raised);
    transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
    position: relative;
}

.job-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-raised), 0 14px 26px rgba(0, 0, 0, 0.08);
    border-color: rgba(220, 38, 38, 0.2);
}

.job-card.featured {
    background:
        radial-gradient(circle at 95% 5%, rgba(254, 243, 199, 0.7), transparent 45%),
        linear-gradient(180deg, #ffffff 0%, #fffbeb 100%);
    border-color: rgba(217, 119, 6, 0.32);
}

.job-card.featured::before {
    content: "FEATURED";
    position: absolute;
    top: -8px;
    left: 1.25rem;
    padding: 0.22rem 0.6rem;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #fff;
    background: linear-gradient(180deg, #f59e0b, #d97706);
    border-radius: 100px;
    box-shadow: 0 2px 6px rgba(217, 119, 6, 0.4);
}

.job-card-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 14px;
    font-size: 1.85rem;
    background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-btn);
}

.job-card.tint-blue   .job-card-icon { background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%); }
.job-card.tint-green  .job-card-icon { background: linear-gradient(180deg, #ecfdf5 0%, #d1fae5 100%); }
.job-card.tint-purple .job-card-icon { background: linear-gradient(180deg, #faf5ff 0%, #ede9fe 100%); }
.job-card.tint-pink   .job-card-icon { background: linear-gradient(180deg, #fdf2f8 0%, #fce7f3 100%); }
.job-card.tint-cyan   .job-card-icon { background: linear-gradient(180deg, #ecfeff 0%, #cffafe 100%); }
.job-card.tint-amber  .job-card-icon { background: linear-gradient(180deg, #fefce8 0%, #fef9c3 100%); }

.job-card-info h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.25rem;
    letter-spacing: -0.015em;
}

.job-card-info h3 a {
    color: inherit;
    text-decoration: none;
}

.job-card-info h3 a:hover {
    color: var(--accent-deep);
    text-decoration: underline;
}

.job-dept {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0.55rem;
}

.job-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.6rem;
}

.job-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.22rem 0.6rem;
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--text-soft);
    background: linear-gradient(180deg, #fff 0%, #faf6ee 100%);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 6px;
}

.job-meta-pill svg { color: var(--text-muted); }

.job-meta-pill.salary {
    color: #047857;
    background: linear-gradient(180deg, #ecfdf5 0%, #d1fae5 100%);
    border-color: rgba(16, 185, 129, 0.22);
}

.job-meta-pill.urgent {
    color: #b91c1c;
    background: linear-gradient(180deg, #fef2f2 0%, #fee2e2 100%);
    border-color: rgba(220, 38, 38, 0.22);
}

.job-card-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 0.65rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.job-tag {
    display: inline-block;
    padding: 0.22rem 0.55rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: #1d4ed8;
    background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid rgba(59, 130, 246, 0.18);
    border-radius: 5px;
}

.job-card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    justify-content: space-between;
    align-items: flex-end;
    min-width: 130px;
}

.job-card-actions .posted {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
}

.job-card-actions .posted.new {
    color: #047857;
}

.job-card-actions .apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.55rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    background:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.25), transparent 60%),
        linear-gradient(180deg, #f87171 0%, #dc2626 60%, #991b1b 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        var(--shadow-btn);
    transition: transform 0.18s;
}

.job-card-actions .apply-btn:hover {
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

.job-card-actions .save-btn {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(180deg, #fff 0%, #faf6ee 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow-btn);
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.15s, transform 0.15s;
}

.job-card-actions .save-btn:hover {
    color: #dc2626;
    transform: scale(1.05);
}

/* Pagination */
.jobs-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 1rem;
}

.page-btn {
    min-width: 38px;
    height: 38px;
    padding: 0 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-soft);
    background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow-btn);
    cursor: pointer;
    text-decoration: none;
}

.page-btn:hover {
    color: var(--accent-deep);
    text-decoration: none;
}

.page-btn.active {
    color: #fff;
    background:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.25), transparent 60%),
        linear-gradient(180deg, #f87171 0%, #dc2626 60%, #991b1b 100%);
    border-color: rgba(120, 30, 30, 0.45);
}

/* Responsive v3 */
@media (max-width: 1100px) {
    .colleges-grid { grid-template-columns: repeat(3, 1fr); }
    .college-card.featured { grid-column: span 3; grid-row: auto; min-height: 320px; }
    .tech-grid { grid-template-columns: repeat(2, 1fr); }
    .awards-ribbon { grid-template-columns: 1fr; }
    .awards-ribbon-list { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
    .colleges-grid { grid-template-columns: repeat(2, 1fr); }
    .college-card.featured { grid-column: span 2; }
    .jobs-layout { grid-template-columns: 1fr; }
    .jobs-filters { position: static; }
    .jobs-search-bar { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .colleges-grid { grid-template-columns: 1fr; }
    .college-card, .college-card.featured { grid-column: span 1; min-height: 220px; }
    .tech-grid { grid-template-columns: 1fr; }
    .awards-ribbon { padding: 1.15rem 1.15rem; }
    .awards-ribbon-list { grid-template-columns: repeat(2, 1fr); }
    .job-card { grid-template-columns: 1fr; }
    .job-card-icon { width: 56px; height: 56px; font-size: 1.5rem; }
    .job-card-actions { flex-direction: row; align-items: center; justify-content: space-between; min-width: 0; }
    .roles-footer-cta { flex-direction: column; align-items: stretch; text-align: center; }
}