﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* ─── Header ─── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

    .header.transparent {
        background: rgba(15, 23, 42, 0.6);
        backdrop-filter: blur(12px);
        box-shadow: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

        .header.transparent .nav-link {
            color: rgba(255,255,255,0.8);
        }

            .header.transparent .nav-link:hover {
                color: #fff;
            }

            .header.transparent .nav-link::after {
                background: #fff;
            }

        .header.transparent .logo-title {
            color: white;
        }

        .header.transparent .logo-subtitle {
            color: rgba(255,255,255,0.6);
        }

        .header.transparent .menu-toggle {
            color: white;
        }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 54px;
    width: auto;
}

.logo-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1e40af;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.72rem;
    color: #64748b;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #334155;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

    .nav-link:hover {
        color: #1e40af;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: #1e40af;
        transition: width 0.3s ease;
    }

    .nav-link:hover::after {
        width: 100%;
    }

/* Applicant nav button — amber/gold pill */
.nav-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg,#0891b2,#0e7490);
    color: #fff;
    border: none;
    padding: .6rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: .85rem;
    transition: all .3s ease;
    box-shadow: 0 6px 18px rgba(8,145,178,.35);
    animation: admissionPulse 2s infinite;
}

@keyframes admissionPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(8,145,178,.6);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(8,145,178,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(8,145,178,0);
    }
}

.nav-apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(8,145,178,.45);
}

.header.transparent .nav-apply-btn {
    background: linear-gradient(135deg,#0891b2,#0e7490);
    color: #fff;
}

.nav-apply-btn svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

/* Admin login pill */
.login-btn {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 0.6rem 1.6rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.2);
    white-space: nowrap;
}

    .login-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(30, 64, 175, 0.3);
    }

/* ─── Hero ─── */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(147, 51, 234, 0.12) 0%, transparent 50%), radial-gradient(circle at 60% 20%, rgba(251, 191, 36, 0.08) 0%, transparent 40%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1.4rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #94a3b8;
    margin-bottom: 2rem;
    max-width: 520px;
}

/* Two audience CTAs */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-admin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

    .btn-admin:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
    }

    .btn-admin svg {
        width: 18px;
        height: 18px;
    }

.btn-applicant {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg,#0891b2,#0e7490);
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: .95rem;
    border: none;
    box-shadow: 0 10px 30px rgba(8,145,178,.35);
}

    .btn-applicant:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(8,145,178,.45);
    }

    .btn-applicant svg {
        width: 18px;
        height: 18px;
    }

/* Audience label hint below buttons */
.btn-labels {
    display: flex;
    gap: 1rem;
    margin-top: 0.6rem;
    flex-wrap: wrap;
}

.btn-label {
    font-size: 0.72rem;
    color: #64748b;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 0 0.3rem;
}

.btn-label-admin {
    min-width: 140px;
    text-align: center;
}

.btn-label-apply {
    min-width: 160px;
    text-align: center;
}

/* Right side: applicant portal card + leaders */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* ── Applicant portal card ── */
.applicant-card {
    background: rgba(8,145,178,.08);
    border: 1.5px solid rgba(8,145,178,.25);
    border-radius: 20px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

    .applicant-card::before {
        content: '';
        position: absolute;
        top: -30px;
        right: -30px;
        width: 120px;
        height: 120px;
        background: rgba(251, 191, 36, 0.06);
        border-radius: 50%;
    }

.applicant-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.applicant-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(8,145,178,.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .applicant-card-icon svg {
        width: 22px;
        height: 22px;
        color: #67e8f9;
    }

.applicant-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #67e8f9;
}

.applicant-card-sub {
    font-size: 0.78rem;
    color: rgba(103,232,249,.75);
    margin-top: 2px;
}

.applicant-new-badge {
    margin-left: auto;
    background: rgba(8,145,178,.18);
    color: #67e8f9;
    border: 1px solid rgba(8,145,178,.35);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
}

.applicant-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.applicant-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #cbd5e1;
}

    .applicant-feature svg {
        width: 14px;
        height: 14px;
        color: #86efac;
        flex-shrink: 0;
    }

.applicant-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(8,145,178,.18);
    color: #67e8f9;
    border: 1.5px solid rgba(8,145,178,.4);
    padding: 0.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

    .applicant-card-cta:hover {
        background: rgba(8,145,178,.28);
        transform: translateY(-2px);
    }

    .applicant-card-cta svg {
        width: 16px;
        height: 16px;
    }

/* Leaders card */
.hero-leaders {
    display: flex;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.leader-card {
    text-align: center;
    flex: 1;
}

.leader-img {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 0.75rem;
    border: 2px solid rgba(255,255,255,0.15);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.leader-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.2rem;
}

.leader-title {
    font-size: 0.78rem;
    color: #94a3b8;
}

/* ─── Audience Split Banner ─── */
.audience-section {
    background: white;
    padding: 0;
    border-bottom: 1px solid #e2e8f0;
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.audience-panel {
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: background 0.3s ease;
    text-decoration: none;
    color: inherit;
}

    .audience-panel:first-child {
        border-right: 1px solid #e2e8f0;
        background: #f8fafc;
    }

    .audience-panel:last-child {
        background: #f0fdfa;
    }

    .audience-panel:hover {
        filter: brightness(0.97);
    }

.audience-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .audience-icon.blue {
        background: #dbeafe;
    }

    .audience-icon.amber {
        background: #cffafe;
    }

    .audience-icon svg {
        width: 26px;
        height: 26px;
    }

    .audience-icon.blue svg {
        color: #1d4ed8;
    }

    .audience-icon.amber svg {
        color: #0891b2;
    }

.audience-info {
}

.audience-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #94a3b8;
    margin-bottom: 0.25rem;
}

.audience-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.3rem;
}

.audience-desc {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.5;
}

.audience-arrow {
    margin-left: auto;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .audience-arrow.blue {
        background: #dbeafe;
        color: #1d4ed8;
    }

    .audience-arrow.amber {
        background: #cffafe;
        color: #0891b2;
    }

    .audience-arrow svg {
        width: 16px;
        height: 16px;
    }

/* ─── Stats ─── */
.stats-section {
    background: white;
    padding: 5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

    .stat-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    }

.stat-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
    box-shadow: 0 8px 25px rgba(59,130,246,0.25);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.4rem;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ─── About ─── */
.about-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.about-text {
    color: white;
}

.section-badge {
    display: inline-block;
    background: rgba(59,130,246,0.2);
    color: #60a5fa;
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1.4rem;
    border: 1px solid rgba(59,130,246,0.3);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: #e2e8f0;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.65rem 0.9rem;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}

.feature-icon {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* ─── Apply Steps Section ─── */
.apply-section {
    padding: 5rem 0;
    background: #f0fdfa;
}

.apply-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.apply-badge {
    display: inline-block;
    background: rgba(8,145,178,.15);
    color: #0e7490;
    border: 1px solid rgba(8,145,178,.25);
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.apply-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.apply-subtitle {
    font-size: 1rem;
    color: #64748b;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(7,1fr);
    gap: 1rem;
}

@media(max-width:1200px) {
    .steps-grid {
        grid-template-columns: repeat(3,1fr);
    }
}

@media(max-width:768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}



.step-card {
    background: white;
    border: 1px solid #a5f3fc;
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

    .step-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 40px rgba(8,145,178,.18);
    }

.step-number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg,#0891b2,#0e7490);
    color: white;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(8,145,178,.35);
}

.step-icon {
    width: 56px;
    height: 56px;
    background: #cffafe;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

    .step-icon svg {
        width: 26px;
        height: 26px;
        color: #0891b2;
    }

.step-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.4rem;
}

.step-desc {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.55;
}

.apply-cta-row {
    text-align: center;
}

.btn-apply-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg,#0891b2,#0e7490);
    box-shadow: 0 10px 30px rgba(8,145,178,.35);
    color: white;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .btn-apply-large:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(8,145,178,.45);
    }

    .btn-apply-large svg {
        width: 20px;
        height: 20px;
    }

/* ─── Footer ─── */
.footer {
    background: #0f172a;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-title {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #60a5fa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-text {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
}

.footer-link {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

    .footer-link:hover {
        color: #60a5fa;
        padding-left: 0.5rem;
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 2rem;
    text-align: center;
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.8;
}

.visitor-count {
    margin-top: 0.75rem;
    font-size: 0.85rem;
}

/* Mobile toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #1e40af;
    font-size: 1.4rem;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .audience-panel {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        border-top: 1px solid #e2e8f0;
    }

        .nav-menu.active {
            display: flex;
        }

        .nav-menu .nav-link {
            color: #334155 !important;
        }

        .nav-menu .nav-apply-btn {
            width: 100%;
            justify-content: center;
            background: linear-gradient(135deg,#0891b2,#0e7490) !important;
            color: #fff !important;
            box-shadow: none;
        }

        .nav-menu .login-btn {
            margin-top: 0.5rem;
        }

    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-leaders {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .audience-panel:first-child {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .applicant-features {
        grid-template-columns: 1fr;
    }
}

.to-hide-in-small {
    display: none;
}

.to-hide-in-big {
    display: block;
}

@media (min-width: 992px) {
    .to-hide-in-small {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .to-hide-in-big {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 140px;
    }
}

@media (max-width: 768px) {
    .hero-badge {
        margin-top: 0.5rem;
        margin-left: 1.2rem;
    }
}

.admission-announcement {
    background: linear-gradient(135deg,#0891b2,#0e7490);
    color: #fff;
    text-align: center;
    padding: .55rem;
    font-size: .85rem;
    font-weight: 700;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
}

    .admission-announcement.open {
        background: linear-gradient(135deg,#16a34a,#15803d);
        animation: pulseOpen 2s infinite;
    }

@keyframes pulseOpen {
    0% {
        box-shadow: 0 0 0 0 rgba(22,163,74,.5);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(22,163,74,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(22,163,74,0);
    }
}

.header {
    top: 40px;
}

.footer-dev-credit {
    margin-top: 1rem;
    font-size: 0.82rem;
    color: #64748b;
    letter-spacing: 0.02em;
}

.footer-dev-link {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-bottom: 1px solid rgba(96, 165, 250, 0.35);
    padding-bottom: 1px;
    transition: color 0.2s, border-color 0.2s;
}

    .footer-dev-link:hover {
        color: #93c5fd;
        border-color: rgba(147, 197, 253, 0.6);
    }

/* ═══════════════════════════════════════════════════════════════
                           STICKY NOTICE STRIP
                ═══════════════════════════════════════════════════════════════ */
#stickyNoticeStrip {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
    display: flex;
    flex-direction: column;
}

body {
    padding-top: var(--notice-strip-height, 82px);
}

/* ── LIVE NOTICE TICKER ───────────────────────────────────────── */
.live-notice-bar {
    background: linear-gradient(135deg, #0891b2, #0e7490);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    overflow: hidden;
}

.live-notice-wrapper {
    display: flex;
    align-items: stretch;
    min-height: 40px;
}

.live-notice-label {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 16px;
    background: rgba(0,0,0,0.18);
    border-right: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

    .live-notice-label svg {
        width: 15px;
        height: 15px;
        flex-shrink: 0;
        stroke: #fff;
    }

.ticker-track {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.ticker-content {
    display: inline-flex;
    white-space: nowrap;
    animation: ticker-scroll 80s linear infinite;
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
    align-items: center;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ticker-content.paused {
    animation-play-state: paused;
}

.ticker-sep {
    margin: 0 20px;
    opacity: 0.35;
    color: #fff;
}

.ticker-fw {
    font-weight: 600;
    color: #e0f7ff;
}

.ticker-view-link {
    color: #fff;
    text-decoration: underline;
    margin-left: 8px;
    font-weight: 600;
    white-space: nowrap;
}

.ticker-pause-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 11px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    background: rgba(0,0,0,0.25);
    border-radius: 4px;
    padding: 2px 8px;
    white-space: nowrap;
}

/* ── ADMISSION BADGE VARIANTS ─────────────────────────────────── */
.applicant-new-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 700;
    padding: 4px 12px;
    white-space: nowrap;
    flex-shrink: 0;
}

    /* Open — green */
    .applicant-new-badge.badge-open {
        background: #dcfce7;
        color: #15803d;
        border: 1px solid #bbf7d0;
    }

        .applicant-new-badge.badge-open::before {
            content: '';
            display: inline-block;
            width: 6px;
            height: 6px;
            background: #16a34a;
            border-radius: 50%;
            animation: pulse-dot 1.5s ease-in-out infinite;
        }

    /* Coming soon — amber */
    .applicant-new-badge.badge-soon {
        background: #fef9c3;
        color: #a16207;
        border: 1px solid #fde68a;
    }

        .applicant-new-badge.badge-soon::before {
            content: '🕐';
            font-size: 11px;
        }

    /* Closed — slate */
    .applicant-new-badge.badge-closed {
        background: #f1f5f9;
        color: #64748b;
        border: 1px solid #cbd5e1;
    }

        .applicant-new-badge.badge-closed::before {
            content: '';
            display: inline-block;
            width: 6px;
            height: 6px;
            background: #94a3b8;
            border-radius: 50%;
        }

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.35;
    }
}