@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --purple: #8b459b;
    --purple-dark: #642d70;
    --navy: #4b2454;
    --ink: #1f2430;
    --muted: #626978;
    --aqua: #d9b8e0;
    --surface: #f5f7fa;
    --white: #ffffff;
    --border: #dfe3ea;
    --shadow: 0 12px 32px rgba(31, 36, 48, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: 'Inter', Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

.site-header { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 12px clamp(20px, 5vw, 80px); border-bottom: 1px solid var(--border); background: rgba(255,255,255,.97); position: sticky; top: 0; z-index: 20; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--navy); font-weight: 800; font-size: 20px; }
.brand img { width: 112px; height: 48px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 24px; color: var(--navy); font-size: 14px; font-weight: 600; }
.main-nav > a:not(.button):hover, .text-link:hover { color: var(--purple); }

.button { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid transparent; padding: 0 20px; font-weight: 700; font-size: 14px; cursor: pointer; transition: transform .2s, background .2s, border-color .2s; }
.button:hover { transform: translateY(-1px); }
.button-primary { color: var(--white); background: var(--purple); }
.button-primary:hover { background: var(--purple-dark); }
.button-light, .button-outline { color: var(--navy); border-color: var(--navy); background: var(--white); }
.button-outline { width: 100%; margin-top: auto; }
.button-light:hover, .button-outline:hover { color: var(--white); background: var(--navy); }
.button-dark { color: var(--white); background: var(--ink); }
.text-link { color: var(--navy); font-weight: 700; font-size: 14px; text-decoration: underline; text-underline-offset: 4px; }

.hero { min-height: 610px; display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr); align-items: stretch; background: var(--surface); }
.hero-content { padding: clamp(72px, 8vw, 118px) clamp(24px, 6vw, 96px); }
.eyebrow { margin: 0 0 14px; color: var(--purple); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.hero h1 { max-width: 720px; margin: 0; color: var(--navy); font-size: clamp(42px, 5vw, 68px); line-height: 1.05; letter-spacing: 0; }
.hero-copy { max-width: 650px; margin: 24px 0 32px; color: var(--muted); font-size: 18px; line-height: 1.65; }
.hero-media { position: relative; min-height: 500px; display: flex; align-items: center; justify-content: center; padding: clamp(34px, 5vw, 72px); color: var(--ink); background: #eee4f0; }
.hero-media::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,.65), transparent 58%); pointer-events:none; }
.company-visual { position: relative; width: min(100%, 470px); padding: 34px; border-left: 5px solid var(--purple); background: var(--white); box-shadow: 0 18px 45px rgba(75,36,84,.14); }
.company-visual-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 22px; border-bottom: 1px solid var(--border); }
.company-visual-top img { width: 112px; height: 48px; object-fit: contain; }
.company-visual-top span { color: var(--purple); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.hero-media-label { margin: 28px 0 8px; color: var(--purple); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.hero-media h2 { margin: 0; color: var(--navy); font-size: clamp(30px, 3.4vw, 46px); letter-spacing: 0; }
.company-period { margin: 12px 0 0; color: var(--muted); font-size: 14px; }
.company-summary { display: grid; grid-template-columns: 1fr 1fr; margin: 28px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.company-summary > div { display: grid; gap: 4px; padding: 18px 0; }
.company-summary > div + div { padding-left: 20px; border-left: 1px solid var(--border); }
.company-summary strong { color: var(--purple); font-size: 28px; }
.company-summary span { color: var(--muted); font-size: 11px; font-weight: 700; }
.company-action { width: 100%; }
.hero-stat { position: absolute; left: 24px; bottom: 24px; display: flex; align-items: center; gap: 12px; padding: 16px 20px; color: var(--navy); background: var(--white); box-shadow: var(--shadow); }
.hero-stat strong { color: var(--purple); font-size: 30px; }
.hero-stat span { max-width: 100px; font-size: 13px; font-weight: 700; }
.hero-actions { display: flex; gap: 24px; margin-top: 24px; }

.job-search { max-width: 760px; display: grid; grid-template-columns: 1.3fr .9fr auto; align-items: end; gap: 10px; padding: 12px; background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow); }
.job-search label { display: grid; gap: 7px; color: var(--navy); font-size: 12px; font-weight: 700; }
.job-search input, .job-search select { width: 100%; height: 46px; padding: 0 12px; color: var(--ink); border: 1px solid var(--border); background: var(--white); outline: none; }
.job-search input:focus, .job-search select:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(139,69,155,.12); }
.search-button { height: 46px; white-space: nowrap; }

.jobs-section, .process-section { padding: 88px clamp(20px, 6vw, 96px); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 34px; }
.section-heading h2, .employer-banner h2 { margin: 0; color: var(--navy); font-size: clamp(30px, 3.5vw, 44px); letter-spacing: 0; }
.section-heading.compact { margin-bottom: 28px; }
.jobs-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.job-card { min-height: 300px; display: flex; flex-direction: column; padding: 24px; border: 1px solid var(--border); border-top: 4px solid var(--purple); background: var(--white); box-shadow: 0 4px 18px rgba(31,36,48,.06); }
.job-card[hidden] { display: none; }
.job-card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.job-type { padding: 6px 9px; color: var(--navy); background: rgba(132,220,212,.35); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.job-date { color: var(--muted); font-size: 12px; }
.job-card h3 { margin: 22px 0 8px; color: var(--navy); font-size: 21px; }
.job-area { margin: 0 0 14px; color: var(--purple); font-size: 13px; font-weight: 700; }
.job-description { display: -webkit-box; overflow: hidden; margin: 0 0 24px; color: var(--muted); line-height: 1.55; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
.empty-state { grid-column: 1 / -1; padding: 32px; color: var(--muted); text-align: center; border: 1px solid var(--border); background: var(--surface); }

.process-section { background: var(--surface); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--border); }
.step { padding: 30px 30px 10px 0; }
.step span { width: 38px; height: 38px; display: grid; place-items: center; color: var(--white); background: var(--purple); font-weight: 800; }
.step h3 { margin: 20px 0 8px; color: var(--navy); }
.step p { max-width: 360px; margin: 0; color: var(--muted); line-height: 1.6; }
.employer-banner { margin: 0; padding: 54px clamp(20px, 6vw, 96px); display: flex; align-items: center; justify-content: space-between; gap: 32px; color: var(--white); background: var(--purple); }
.employer-banner .eyebrow, .employer-banner h2 { color: var(--white); }

.site-footer { padding: 40px clamp(20px, 6vw, 96px); display: flex; align-items: center; justify-content: space-between; gap: 32px; color: var(--muted); border-top: 1px solid var(--border); }
.footer-brand { display: flex; align-items: center; gap: 18px; }
.footer-brand img { width: 104px; height: 50px; object-fit: contain; }
.footer-brand p { margin: 0; font-size: 13px; }
.footer-links { display: flex; align-items: center; gap: 20px; font-size: 12px; }
.footer-links a { color: var(--navy); font-weight: 700; }

@media (max-width: 980px) {
    .main-nav > a:not(.button) { display: none; }
    .hero { grid-template-columns: 1fr; }
    .hero-media { min-height: 360px; }
    .jobs-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .job-search { grid-template-columns: 1fr 1fr; }
    .search-button { grid-column: 1 / -1; }
}

@media (max-width: 660px) {
    .site-header { min-height: 68px; padding: 10px 16px; }
    .brand span, .main-nav .button-light { display: none; }
    .brand img { width: 90px; height: 42px; }
    .main-nav { gap: 8px; }
    .main-nav .button { padding: 0 12px; font-size: 12px; }
    .hero-content { padding: 54px 20px; }
    .hero h1 { font-size: 40px; }
    .hero-copy { font-size: 16px; }
    .job-search { grid-template-columns: 1fr; }
    .search-button { grid-column: auto; }
    .hero-actions, .section-heading, .employer-banner, .site-footer, .footer-links { align-items: flex-start; flex-direction: column; }
    .jobs-section, .process-section { padding: 62px 20px; }
    .jobs-grid, .steps { grid-template-columns: 1fr; }
    .job-card { min-height: 280px; }
    .site-footer { padding: 36px 20px; }
}
