html { scroll-behavior: smooth; margin: 0; padding: 0; }
body { font-family:'Plus Jakarta Sans',system-ui,sans-serif; color:#1A1A1A; background:#FFFFFF; margin: 0; padding: 0; -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; font-feature-settings:'kern' 1,'liga' 1; }
.font-serif { font-family:'Playfair Display',Georgia,serif; }

h1,h2,h3,h4 { letter-spacing:-0.01em; }
.font-serif { font-optical-sizing: auto; }

.eyebrow { font-size:0.7rem; letter-spacing:0.18em; text-transform:uppercase; color:#8E6A3A; font-weight:600; font-family:'Plus Jakarta Sans',system-ui,sans-serif; }

@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.ticker-track { animation: ticker 90s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }

/* ---------- HEADER NAV ---------- */
.nav-link {
    color:rgba(255,255,255,0.82); font-size:13.5px; font-weight:500;
    transition: color 180ms ease; padding: 6px 0;
    position: relative; letter-spacing: 0.01em;
}
.nav-link::before {
    content:''; position:absolute; bottom:-2px; left:0; right:0; height:2px;
    background:#E87722; border-radius:2px;
    transform:scaleX(0); transform-origin:center;
    transition:transform 220ms cubic-bezier(0.34,1.56,0.64,1);
}
.nav-link:hover, .nav-link.is-active { color:#fff; }
.nav-link:hover::before, .nav-link.is-active::before { transform:scaleX(1); }

.nav-item { position: relative; }
.nav-item > .nav-link.has-arrow { display: inline-flex; align-items: center; gap: 4px; }
.nav-item > .nav-link.has-arrow::after {
    content: ''; width: 0; height: 0; flex-shrink:0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    transition: transform 200ms ease;
    margin-top: 1px;
}
.nav-item:hover > .nav-link.has-arrow::after,
.nav-item:focus-within > .nav-link.has-arrow::after { transform: rotate(180deg); }

@keyframes apply-glow { 0%,100%{box-shadow:0 0 0 0 rgba(232,119,34,0.0)} 50%{box-shadow:0 0 18px 5px rgba(232,119,34,0.45)} }
.apply-btn { animation: apply-glow 3.5s ease-in-out infinite; }

.ribbon-link { transition: color 150ms ease, background 150ms ease; border-radius:4px; padding:2px 6px; }
.ribbon-link:hover { color:#0c3c78 !important; background:rgba(12,60,120,0.07); }

.dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 240px;
    background: #fff;
    border: 1px solid #E5E7EC;
    border-top: 2px solid #E87722;
    padding: 0.5rem 0;
    box-shadow: 0 8px 24px rgba(11, 31, 63, 0.06);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
    z-index: 9999;
}
.nav-item:hover > .dropdown,
.nav-item:focus-within > .dropdown { opacity:1; visibility:visible; transform:translateY(0); }
.dropdown.right-aligned { left: auto; right: 0; }
.dropdown a {
    display: block;
    padding: 0.5rem 1.25rem;
    font-size: 13.5px;
    color: #525C6B;
    transition: background 150ms ease, color 150ms ease;
    line-height: 1.4;
}
.dropdown a:hover { background: #F8F7F4; color: #1B3A6B; }
.dropdown a .ext { font-size: 10px; color: #8E6A3A; margin-left: 6px; vertical-align: middle; }

/* ---------- MOBILE DRAWER ---------- */
.mobile-overlay {
    position: fixed; inset: 0;
    background: rgba(11, 31, 63, 0.55);
    z-index: 55;
    opacity: 0; visibility: hidden;
    transition: opacity 250ms ease, visibility 250ms;
}
.mobile-overlay.is-open { opacity: 1; visibility: visible; }

.mobile-drawer {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 320px; max-width: 88%;
    background: #fff;
    z-index: 60;
    transform: translateX(100%);
    transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateX(0); }

.m-section { border-bottom: 1px solid #E5E7EC; }
.m-toggle {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%;
    padding: 14px 20px;
    text-align: left;
    color: #1A1A1A;
    font-size: 15px;
    font-weight: 500;
    background: transparent;
    border: 0;
}
.m-toggle .chev { transition: transform 200ms ease; color: #8E6A3A; }
.m-section.is-open .m-toggle .chev { transform: rotate(180deg); }
.m-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease;
    background: #F8F7F4;
}
.m-section.is-open .m-submenu { max-height: 800px; }
.m-submenu a {
    display: block;
    padding: 10px 20px 10px 32px;
    font-size: 13.5px;
    color: #525C6B;
    border-top: 1px solid #E5E7EC;
}
.m-submenu a:hover { background: #fff; color: #1B3A6B; }
.m-direct {
    display: block;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #1A1A1A;
}

/* ---------- SLIDER ---------- */
.slider { position:relative; overflow:hidden; }
.slide { position:absolute; inset:0; opacity:0; transition: opacity 800ms ease-in-out; pointer-events:none; }
.slide.is-active { opacity:1; pointer-events:auto; z-index:2; }
.slider-arrow { width:44px; height:44px; border-radius:50%; background:rgba(255,255,255,0.12); border:1px solid rgba(255,255,255,0.25); color:#fff; transition: background 200ms ease; }
.slider-arrow:hover { background:rgba(255,255,255,0.22); }
.slider-dot { width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,0.4); transition: background 200ms ease, width 200ms ease; border:0; cursor:pointer; padding:0; }
.slider-dot.is-active { background:#fff; width:28px; border-radius:4px; }

*:focus-visible { outline:2px solid #1B3A6B; outline-offset:2px; }

/* Notice tabs */
.notice-tab { position:relative; padding-bottom:12px; color:#525C6B; font-weight:500; white-space:nowrap; transition: color 150ms ease; }
.notice-tab.is-active { color:#1A1A1A; font-weight:600; }
.notice-tab.is-active::after { content:''; position:absolute; bottom:-1px; left:0; right:0; height:2px; background:#E87722; }
.notice-tab:hover:not(.is-active) { color:#1A1A1A; }
.notice-panel { display:none; }
.notice-panel.is-active { display:block; }

.qa-tile {
    background: #fff;
    border-radius: 14px;
    padding: 1.75rem 1rem 1.5rem;
    display: flex; flex-direction: column; align-items: center; text-align: center;
    min-height: 148px; justify-content: center;
    box-shadow: 0 2px 8px rgba(12,60,120,0.06), 0 1px 2px rgba(0,0,0,0.04);
    transition: transform 280ms cubic-bezier(0.34,1.56,0.64,1), box-shadow 280ms ease;
    position: relative; overflow: hidden;
}
.qa-tile::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #0c3c78, #E87722);
    transform: scaleX(0); transform-origin: left;
    transition: transform 300ms ease;
}
.qa-tile:hover { transform: translateY(-7px); box-shadow: 0 16px 36px rgba(12,60,120,0.14), 0 4px 12px rgba(12,60,120,0.08); }
.qa-tile:hover::after { transform: scaleX(1); }

.qa-ic-wrap {
    width: 58px; height: 58px; border-radius: 50%;
    background: #eef2f9;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 0.875rem;
    transition: background 280ms ease, transform 280ms cubic-bezier(0.34,1.56,0.64,1);
}
.qa-tile:hover .qa-ic-wrap { background: #0c3c78; transform: scale(1.15) rotate(-8deg); }
.qa-ic { font-size: 1.4rem; color: #0c3c78; transition: color 280ms ease; }
.qa-tile:hover .qa-ic { color: #fff; }
.qa-label { font-size: 0.8125rem; font-weight: 600; color: #1A1A1A; line-height: 1.3; transition: color 250ms ease; }
.qa-tile:hover .qa-label { color: #0c3c78; }

/* Shared lift card */
.lift-card {
    background:#fff; border-radius:14px;
    box-shadow:0 2px 8px rgba(12,60,120,0.06),0 1px 2px rgba(0,0,0,0.04);
    transition:transform 280ms cubic-bezier(0.34,1.56,0.64,1),box-shadow 280ms ease;
    overflow:hidden;
}
.lift-card:hover {
    transform:translateY(-5px);
    box-shadow:0 14px 32px rgba(12,60,120,0.12),0 4px 10px rgba(12,60,120,0.06);
}

/* Notice tabs → pill style */
.notice-tab { padding:6px 18px; border-radius:100px; color:#525C6B; font-weight:500; white-space:nowrap; transition:all 180ms ease; position:relative; }
.notice-tab.is-active { color:#fff; background:#0c3c78; font-weight:600; }
.notice-tab.is-active::after { display:none; }
.notice-tab:hover:not(.is-active) { color:#0c3c78; background:#eef2f9; }

/* Affiliations */
.affil-cell { background:#fff; border-radius:14px; padding:1.25rem 1rem; min-height:96px; display:flex; align-items:center; justify-content:center; text-align:center; box-shadow:0 2px 8px rgba(12,60,120,0.06),0 1px 2px rgba(0,0,0,0.04); transition:transform 280ms cubic-bezier(0.34,1.56,0.64,1),box-shadow 280ms ease,background 200ms ease; }
.affil-cell:hover { transform:translateY(-5px); box-shadow:0 14px 32px rgba(12,60,120,0.12); background:#eef2f9; }

/* Recruiter cards */
.rc { background:#fff; border-radius:16px; padding:1.1rem 0.75rem 0.75rem; display:flex; flex-direction:column; align-items:center; gap:0.5rem; box-shadow:0 2px 12px rgba(12,60,120,0.1),0 1px 3px rgba(0,0,0,0.06); transition:transform 280ms cubic-bezier(0.34,1.56,0.64,1),box-shadow 280ms ease; }
.rc:hover { transform:translateY(-7px) scale(1.03); box-shadow:0 16px 36px rgba(12,60,120,0.18); }
.rc-logo { width:100%; height:44px; display:flex; align-items:center; justify-content:center; }
.rc-logo img { max-width:100%; max-height:44px; object-fit:contain; filter:grayscale(25%); transition:filter 250ms ease; }
.rc:hover .rc-logo img { filter:grayscale(0%); }
.rc-name { font-size:9px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:#9ca3af; border-top:1px solid #f0f0f5; width:100%; text-align:center; padding-top:0.5rem; }
.rc-badge { padding:5px 12px; border-radius:7px; font-weight:800; font-size:12px; letter-spacing:-0.02em; }

/* ---------- SUB-PAGE HERO ---------- */
.page-hero { background:linear-gradient(135deg,#0d0a1e 0%,#16123e 35%,#1d1952 65%,#0d0a1e 100%); border-bottom:3px solid #E87722; position:relative; overflow:hidden; }
.ph-badge { display:inline-flex; align-items:center; gap:7px; padding:5px 13px; border-radius:999px; margin-bottom:18px; background:rgba(232,119,34,0.15); border:1px solid rgba(232,119,34,0.28); font-size:10px; font-weight:700; letter-spacing:0.18em; text-transform:uppercase; color:#f0a060; }
.ph-badge-dot { width:5px; height:5px; border-radius:50%; background:#E87722; flex-shrink:0; display:inline-block; }
.ph-bars { display:flex; align-items:center; gap:7px; margin-top:18px; }
.ph-bar1 { width:44px; height:3px; background:#E87722; border-radius:2px; }
.ph-bar2 { width:16px; height:3px; background:rgba(232,119,34,0.4); border-radius:2px; }
.ph-bar3 { width:7px; height:3px; background:rgba(232,119,34,0.18); border-radius:2px; }
.ph-deco { display:none; }
@media (min-width:1024px) { .ph-deco { display:flex; align-items:center; justify-content:flex-end; flex-shrink:0; width:160px; } }
