:root {
  --ink: #15231f;
  --green: #123c32;
  --green-2: #1e5749;
  --cream: #f3f0e7;
  --paper: #fbfaf6;
  --white: #fff;
  --coral: #ff735f;
  --lime: #d8f06a;
  --line: #d7d9d1;
  --muted: #66726d;
  --shadow: 0 20px 50px rgba(18, 60, 50, .12);
  --serif: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --sans: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 17px; line-height: 1.65; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; left: 20px; top: -100px; background: var(--white); padding: 10px 16px; z-index: 100; border-radius: 0 0 8px 8px; }
.skip-link:focus { top: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.demo-ribbon { min-height: 32px; display: flex; justify-content: center; gap: 12px; align-items: center; padding: 5px 24px; background: var(--ink); color: #fff; font-size: 11px; letter-spacing: .02em; }
.demo-ribbon span { padding: 1px 7px; border: 1px solid rgba(255,255,255,.35); border-radius: 99px; text-transform: uppercase; font-size: 9px; letter-spacing: .12em; }
.demo-ribbon p { margin: 0; opacity: .74; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(251,250,246,.92); border-bottom: 1px solid rgba(18,60,50,.1); backdrop-filter: blur(16px); }
.nav-wrap { height: 76px; display: flex; align-items: center; gap: 38px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; font-size: 19px; letter-spacing: -.7px; white-space: nowrap; }
.brand > span:last-child > span { color: var(--green-2); }
.brand-mark { width: 30px; height: 30px; display: inline-flex; align-items: end; justify-content: center; gap: 2px; padding: 6px 5px; background: var(--green); border-radius: 50% 50% 48% 48%; }
.brand-mark i { width: 4px; height: 10px; background: var(--lime); border-radius: 4px; transform: rotate(-12deg); }
.brand-mark i:nth-child(2) { height: 17px; transform: rotate(0); }
.brand-mark i:nth-child(3) { height: 12px; transform: rotate(12deg); }
.main-nav { display: flex; align-items: center; gap: 22px; margin-right: auto; }
.main-nav a { font-size: 13px; font-weight: 700; color: #44514c; position: relative; }
.main-nav a::after { content: ""; height: 2px; background: var(--coral); position: absolute; left: 0; bottom: -8px; width: 0; transition: .25s; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { width: 100%; }
.main-nav a.button-dark { color: #fff; }
.main-nav a.button-dark::after { display: none; }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.text-button { border: 0; background: none; cursor: pointer; font-size: 13px; font-weight: 700; }
.menu-toggle { display: none; border: 0; background: none; padding: 8px; margin-left: auto; cursor: pointer; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px; transition: .2s; }

.button { border: 0; display: inline-flex; align-items: center; justify-content: center; gap: 14px; padding: 14px 21px; border-radius: 3px; font-weight: 800; font-size: 13px; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); box-shadow: 0 9px 25px rgba(16,37,31,.15); }
.button-small { padding: 10px 16px; }
.button-dark { background: var(--green); color: #fff; }
.button-coral { background: var(--coral); color: #18231f; }
.button-outline { border: 1px solid var(--green); background: transparent; color: var(--green); }

.hero { background: var(--cream); overflow: hidden; position: relative; }
.hero::before { content: ""; position: absolute; width: 500px; height: 500px; border: 1px solid rgba(18,60,50,.1); border-radius: 50%; left: -360px; top: 100px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; min-height: 650px; align-items: center; padding-top: 54px; padding-bottom: 48px; }
.hero-copy { position: relative; z-index: 3; }
.eyebrow, .kicker { color: var(--green-2); text-transform: uppercase; letter-spacing: .16em; font-size: 11px; font-weight: 800; margin: 0 0 17px; }
.eyebrow { display: flex; align-items: center; gap: 9px; }
.eyebrow span { width: 24px; height: 2px; background: var(--coral); }
h1, h2, h3, p { margin-top: 0; }
h1 { font-family: var(--serif); font-size: clamp(50px, 5.4vw, 72px); line-height: 1.02; letter-spacing: -.04em; margin-bottom: 27px; font-weight: 700; }
h1 em { color: var(--green-2); font-style: normal; font-weight: inherit; }
.hero-intro { max-width: 620px; font-size: 17px; color: #4e5d57; margin-bottom: 30px; }
.job-search { width: 100%; max-width: calc(100vw - 48px); display: grid; grid-template-columns: 1fr .82fr auto; background: var(--white); padding: 8px; box-shadow: var(--shadow); position: relative; z-index: 4; }
.job-search label { padding: 8px 16px; border-right: 1px solid #e4e6df; }
.job-search label > span:first-child { display: block; text-transform: uppercase; letter-spacing: .12em; font-size: 9px; font-weight: 800; color: #819089; margin-left: 25px; }
.field-row { display: flex; align-items: center; gap: 8px; }
.field-row b { color: var(--coral); font-size: 21px; line-height: 1; }
.job-search input, .job-search select { border: 0; outline: 0; background: transparent; color: var(--ink); width: 100%; min-width: 0; font-weight: 700; font-size: 13px; }
.job-search select { cursor: pointer; }
.search-button { min-width: 152px; }
.popular-searches { display: flex; align-items: center; gap: 13px; flex-wrap: wrap; margin-top: 20px; font-size: 11px; }
.popular-searches span { font-weight: 800; }
.popular-searches button, .popular-searches a { border: 0; border-bottom: 1px solid #aab0aa; background: none; padding: 0 0 2px; color: #5f6d67; cursor: pointer; font-size: 11px; }
.popular-searches a:hover, .popular-searches a:focus-visible { color: var(--green); border-color: var(--coral); }

.hero-visual { height: 510px; position: relative; margin: 0; isolation: isolate; }
.hero-visual picture { display: block; width: 100%; height: 100%; overflow: hidden; border-radius: 8px 8px 88px 8px; box-shadow: 0 30px 60px rgba(18,60,50,.18); }
.hero-visual img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 54% center; }
.hero-visual::after { content: ""; position: absolute; inset: 0; z-index: 1; border-radius: 8px 8px 88px 8px; background: linear-gradient(180deg, rgba(10,35,29,0) 50%, rgba(10,35,29,.5) 100%); pointer-events: none; }
.hero-visual figcaption { position: absolute; z-index: 3; right: 18px; top: 18px; background: rgba(255,255,255,.92); color: var(--green); padding: 8px 12px; border-radius: 99px; font-size: 9px; font-weight: 800; letter-spacing: .04em; backdrop-filter: blur(8px); }
.opportunity-card { position: absolute; background: var(--white); z-index: 3; box-shadow: 0 18px 40px rgba(0,0,0,.18); }
.card-main { left: -26px; bottom: 26px; width: 265px; padding: 17px; display: flex; align-items: center; gap: 13px; transform: rotate(-1deg); z-index: 4; }
.mini-logo { flex: 0 0 48px; height: 48px; display: grid; place-items: center; font-weight: 800; border-radius: 50%; font-size: 13px; }
.lime { background: var(--lime); color: var(--green); }
.opportunity-card small, .opportunity-card span { display: block; color: #7e8a85; font-size: 9px; }
.opportunity-card strong { display: block; line-height: 1.3; font-size: 14px; }
.photo-badge { position: absolute; z-index: 4; right: 18px; bottom: 18px; display: grid; grid-template-columns: 28px auto; column-gap: 9px; align-items: center; padding: 10px 13px; color: #fff; background: rgba(12,46,38,.88); border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(8px); }
.photo-badge > span { grid-row: 1 / 3; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--lime); color: var(--green); font-weight: 800; }
.photo-badge strong, .photo-badge small { display: block; line-height: 1.2; }
.photo-badge strong { font-size: 10px; }.photo-badge small { color: rgba(255,255,255,.65); font-size: 8px; }
.proof-strip { min-height: 68px; border-top: 1px solid rgba(18,60,50,.15); display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.proof-strip p { margin: 0; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; color: #78847f; }
.proof-strip div { display: flex; align-items: center; gap: 22px; font-family: var(--serif); color: var(--green); font-size: 18px; }
.proof-strip i { width: 3px; height: 3px; border-radius: 50%; background: var(--coral); }

.section { padding: 100px 0; }
.section-heading { margin-bottom: 42px; }
.split-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 90px; align-items: end; }
.section-heading h2, .resources-copy h2, .newsletter-grid h2, .global-alert h2 { font-family: var(--serif); font-size: clamp(36px, 3.8vw, 52px); font-weight: 700; letter-spacing: -.03em; line-height: 1.08; margin-bottom: 0; }
.section-heading > p { margin: 0 0 5px; color: var(--muted); font-size: 14px; max-width: 430px; }
.jobs-section { background: var(--paper); }
.filter-row { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 14px; scrollbar-width: none; }
.filter-pill { border: 1px solid #ced3cd; background: transparent; border-radius: 99px; padding: 8px 15px; white-space: nowrap; cursor: pointer; font-size: 11px; font-weight: 700; transition: .2s; }
.filter-pill:hover, .filter-pill.active { background: var(--green); border-color: var(--green); color: #fff; }
.jobs-layout { display: grid; grid-template-columns: 1fr 315px; gap: 25px; margin-top: 18px; }
.job-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.job-card { position: relative; background: #fff; border: 1px solid #e0e2dc; padding: 23px;  display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s, border-color .25s; }
.job-card:hover { transform: translateY(-4px); box-shadow: 0 20px 45px rgba(19,51,43,.09); border-color: transparent; }
.job-top { display: flex; align-items: center; gap: 13px; }
.company-logo { width: 44px; height: 44px; display: grid; place-items: center; font-weight: 800; border-radius: 8px; font-size: 12px; }
.company-meta { display: flex; flex-direction: column; line-height: 1.35; }
.company-meta strong { font-size: 12px; }
.company-meta span { font-size: 9px; text-transform: uppercase; color: #829089; letter-spacing: .08em; }
.save-job { width: 35px; height: 35px; border: 1px solid #dde0da; border-radius: 50%; background: transparent; margin-left: auto; cursor: pointer; display: grid; place-items: center; font-size: 17px; }
.save-job.saved { background: var(--lime); border-color: var(--lime); }
.job-card h3 { font-family: var(--serif); font-size: 23px; font-weight: 400; line-height: 1.2; margin: 24px 0 10px; }
.job-meta { display: flex; flex-wrap: wrap; gap: 7px 13px; color: #67736e; font-size: 10px; }
.job-meta span::before { content: "•"; color: var(--coral); margin-right: 6px; }
.job-bottom { display: flex; justify-content: space-between; align-items: end; margin-top: auto; padding-top: 22px; }
.salary { display: flex; flex-direction: column; }
.salary strong { font-size: 13px; color: var(--green); }
.salary small { color: #8b9692; font-size: 9px; }
.view-job { border: 0; background: transparent; color: var(--green); font-weight: 800; font-size: 11px; cursor: pointer; padding: 5px 0; border-bottom: 1px solid var(--green); }
.career-aside { display: grid; grid-template-rows: 1fr 1fr; gap: 14px; }
.aside-card { padding: 30px; position: relative; overflow: hidden; }
.aside-card p { text-transform: uppercase; letter-spacing: .14em; font-size: 9px; font-weight: 800; margin-bottom: 12px; }
.aside-card h3 { font-family: var(--serif); font-size: 28px; line-height: 1.08; font-weight: 400; }
.dark-card { background: var(--green); color: white; }
.dark-card::after { content: ""; width: 160px; height: 160px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; position: absolute; right: -70px; bottom: -60px; }
.aside-number { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); color: var(--lime); margin-bottom: 32px; font-size: 10px; }
.dark-card a { font-size: 10px; color: var(--lime); font-weight: 800; border-bottom: 1px solid rgba(216,240,106,.5); padding-bottom: 5px; }
.dark-card a span { margin-left: 9px; }
.tip-card { background: var(--lime); }
.tip-icon { font-size: 34px; color: var(--green); display: block; margin-bottom: 16px; }
.tip-card > span:last-child { font-size: 11px; line-height: 1.5; display: block; }
.center-action { display: flex; justify-content: center; margin-top: 38px; }
.empty-state { text-align: center; padding: 60px 20px; background: #fff; border: 1px solid var(--line); margin-top: 20px; }
.empty-state > span { font-size: 35px; color: var(--coral); }
.empty-state h3 { font-family: var(--serif); font-size: 28px; margin: 9px 0; }
.empty-state p { color: var(--muted); }

.locations-section { background: #e9e4d9; }
.location-directory { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; padding: 1px; background: rgba(18,60,50,.16); }
.location-region { min-height: 220px; display: flex; flex-direction: column; align-items: flex-start; padding: 27px 29px; background: var(--paper); }
.location-region > span { margin-bottom: 16px; color: #7b8782; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.location-region a { position: relative; margin: 2px 0; color: var(--green); font-family: var(--serif); font-size: 22px; line-height: 1.35; }
.location-region a::after { content: "→"; display: inline-block; margin-left: 8px; color: var(--coral); font-family: var(--sans); font-size: 12px; opacity: 0; transform: translateX(-5px); transition: .2s; }
.location-region a:hover::after, .location-region a:focus-visible::after { opacity: 1; transform: translateX(0); }
.location-remote { justify-content: center; background: var(--green); color: #fff; }
.location-remote > span { color: var(--lime); }
.location-remote a { color: #fff; font-size: 28px; line-height: 1.1; }
.location-remote small { margin-top: 12px; color: rgba(255,255,255,.6); font-size: 10px; }

.categories-section { background: var(--cream); }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: #ccd0c9; border: 1px solid #ccd0c9; }
.category-card { border: 0; background: var(--paper); padding: 34px 28px; min-height: 235px; text-align: left; display: flex; flex-direction: column; cursor: pointer; transition: .25s; }
.category-card:hover { background: var(--green); color: #fff; transform: translateY(-5px); }
.category-icon { font-family: var(--serif); font-size: 24px; color: var(--coral); height: 55px; }
.category-card strong { font-family: var(--serif); font-size: 25px; font-weight: 400; }
.category-card small { color: #7c8983; margin-top: 5px; }
.category-card:hover small { color: rgba(255,255,255,.7); }
.category-card i { margin-top: auto; font-style: normal; font-size: 21px; color: var(--green); }
.category-card:hover i { color: var(--lime); }

.resources-section { background: #dedbd0; }
.resources-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 95px; align-items: center; }
.resources-copy > p:not(.kicker) { color: #5c6964; max-width: 520px; margin: 22px 0 28px; }
.resource-feature { display: flex; gap: 20px; padding: 19px 0; margin-bottom: 24px; border-top: 1px solid #bfc3bb; border-bottom: 1px solid #bfc3bb; }
.resource-feature > span { flex: 0 0 52px; height: 52px; display: grid; place-items: center; background: var(--coral); border-radius: 50%; font-family: var(--serif); }
.resource-feature small, .resource-feature strong { display: block; }
.resource-feature small { color: #68746f; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.resource-feature strong { font-family: var(--serif); color: var(--green); font-size: 24px; font-weight: 400; }
.resource-feature p { margin: 2px 0 0; font-size: 10px; color: #68746f; }
.resource-links { background: var(--paper); padding: 8px 35px 18px; box-shadow: 20px 20px 0 rgba(18,60,50,.08); }
.resource-links a { display: grid; grid-template-columns: 42px 1fr auto; gap: 15px; align-items: center; padding: 25px 0; border-bottom: 1px solid #d9dcd5; }
.resource-links a:hover strong { color: var(--coral); }
.resource-index { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid #cbd0ca; border-radius: 50%; font-size: 9px; }
.resource-links small, .resource-links strong { display: block; }
.resource-links small { text-transform: uppercase; letter-spacing: .1em; font-size: 8px; color: #81908a; }
.resource-links strong { font-family: var(--serif); font-weight: 400; font-size: 19px; transition: .2s; }
.resource-links i { color: var(--green); font-style: normal; }
.resource-disclaimer { margin: 16px 0 0; color: #7b8782; font-size: 9px; }

.employer-section { background: var(--paper); padding: 90px 0; }
.employer-panel { min-height: 460px; background: var(--green); color: #fff; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; }
.employer-art { position: relative; min-height: 460px; background: #0d332a; overflow: hidden; }
.employer-art::before { content: ""; position: absolute; width: 180px; height: 180px; border-radius: 50%; background: var(--coral); left: 50%; top: 50%; transform: translate(-50%,-50%); }
.orbit { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; transform: translate(-50%,-50%) rotate(-17deg); }
.orbit-one { width: 360px; height: 180px; }
.orbit-two { width: 460px; height: 280px; transform: translate(-50%,-50%) rotate(30deg); }
.candidate-dot { position: absolute; width: 46px; height: 46px; display: grid; place-items: center; background: var(--lime); color: var(--green); border: 5px solid #0d332a; border-radius: 50%; font-weight: 800; font-size: 11px; z-index: 2; }
.dot-one { left: 17%; top: 33%; }.dot-two { right: 15%; top: 20%; background: #fff; }.dot-three { right: 22%; bottom: 15%; background: #9ac7ff; }
.match-badge { position: absolute; z-index: 2; left: 50%; top: 50%; transform: translate(-50%,-50%) rotate(-3deg); color: var(--ink); background: #fff; padding: 13px 20px; font-size: 10px; box-shadow: var(--shadow); }
.match-badge b { display: block; color: var(--green); font-family: var(--serif); font-size: 24px; line-height: 1; }
.employer-copy { padding: 68px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.kicker.light { color: var(--lime); }
.employer-copy h2 { max-width: 490px; color: #fff; }
.employer-copy > p:not(.kicker) { max-width: 480px; color: rgba(255,255,255,.7); margin: 24px 0 30px; font-size: 14px; }

.newsletter-section { padding: 70px 0; background: var(--coral); }
.newsletter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.newsletter-grid .kicker { color: #673e35; }
.newsletter-grid h2 { font-size: 43px; }
.newsletter-grid > div:first-child > p:last-child { max-width: 570px; margin: 18px 0 0; color: rgba(21,35,31,.75); }
.newsletter-form { display: grid; grid-template-columns: 1fr auto; }
.newsletter-form input { min-width: 0; border: 0; padding: 15px 18px; outline: 0; background: rgba(255,255,255,.92); }
.newsletter-form small { grid-column: 1 / -1; margin-top: 8px; color: rgba(21,35,31,.65); font-size: 9px; }
.newsletter-form small a { color: var(--ink); font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }
.alert-consent { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: 8px; margin-top: 11px; color: rgba(21,35,31,.78); font-size: 10px; }
.alert-consent input { flex: 0 0 auto; width: 16px; height: 16px; margin: 0; padding: 0; accent-color: var(--green); }
.alert-status { grid-column: 1 / -1; min-height: 18px; margin: 7px 0 0; color: var(--green); font-size: 11px; font-weight: 800; }
.newsletter-form button:disabled, .global-alert-form button:disabled { cursor: wait; opacity: .7; transform: none; }
.google-form-result { position: absolute; width: 1px; height: 1px; border: 0; clip: rect(0 0 0 0); clip-path: inset(50%); overflow: hidden; white-space: nowrap; }

.global-alert { padding: 72px 0; background: var(--coral); }
.global-alert-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.global-alert .kicker { color: #673e35; }
.global-alert-grid > div:first-child > p:last-child { max-width: 520px; margin: 18px 0 0; color: rgba(21,35,31,.75); }
.global-alert-form { display: grid; gap: 10px; }
.global-alert-form > label:first-child { color: rgba(21,35,31,.78); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.global-alert-form > div { display: grid; grid-template-columns: 1fr auto; }
.global-alert-form input[type="email"] { min-width: 0; border: 0; padding: 15px 18px; outline: 0; background: rgba(255,255,255,.92); }
.global-alert-form small { color: rgba(21,35,31,.65); font-size: 9px; }
.global-alert-form small a { color: var(--ink); font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }

.faq-section { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; align-items: start; }
.faq-grid h2 { font-family: var(--serif); font-size: clamp(38px, 4vw, 54px); font-weight: 400; letter-spacing: -1.5px; line-height: 1.03; margin-bottom: 18px; }
.faq-grid > div:first-child > p:last-child { color: var(--muted); font-size: 13px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 0; font-weight: 800; font-size: 14px; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 27px; height: 27px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--green); border-radius: 50%; color: var(--green); transition: .2s; }
.faq-list details[open] summary span { transform: rotate(45deg); background: var(--green); color: #fff; }
.faq-list details p { max-width: 630px; margin: -5px 45px 22px 0; color: var(--muted); font-size: 12px; }

.site-footer { background: #102a24; color: #fff; padding: 65px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.55fr .8fr .8fr .9fr; gap: 55px; padding-bottom: 55px; }
.footer-brand .brand-mark { background: var(--lime); }
.footer-brand .brand-mark i { background: var(--green); }
.footer-brand > span:last-child > span { color: var(--lime); }
.footer-grid > div:first-child p { color: rgba(255,255,255,.55); font-size: 12px; margin: 18px 0; }
.location-stamp { font-size: 9px; text-transform: uppercase; letter-spacing: .14em; color: var(--lime); }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-links strong { font-size: 10px; text-transform: uppercase; letter-spacing: .13em; color: var(--lime); margin-bottom: 8px; }
.footer-links a, .footer-links button { border: 0; background: none; padding: 0; color: rgba(255,255,255,.6); font-size: 11px; cursor: pointer; }
.footer-links a:hover, .footer-links button:hover { color: #fff; }
.saved-link span { display: inline-grid; place-items: center; min-width: 18px; height: 18px; padding: 0 5px; margin-left: 5px; background: var(--coral); color: var(--ink); border-radius: 99px; font-size: 9px; font-weight: 800; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.4); font-size: 9px; }

dialog { width: min(590px, calc(100% - 32px)); max-height: min(760px, calc(100vh - 40px)); border: 0; padding: 0; color: var(--ink); background: var(--paper); box-shadow: 0 30px 90px rgba(0,0,0,.35); }
dialog::backdrop { background: rgba(5,24,19,.68); backdrop-filter: blur(5px); }
.modal-close { position: absolute; z-index: 2; right: 16px; top: 14px; width: 36px; height: 36px; border: 1px solid #d7dad4; border-radius: 50%; background: var(--paper); cursor: pointer; font-size: 24px; line-height: 1; }
.modal-hero { background: var(--green); color: #fff; padding: 45px 42px 35px; }
.modal-hero .company-logo { margin-bottom: 18px; }
.modal-hero h2 { font-family: var(--serif); font-size: 37px; line-height: 1; font-weight: 400; margin: 12px 0; padding-right: 30px; }
.modal-hero p { color: rgba(255,255,255,.68); font-size: 12px; margin: 0; }
.modal-body { padding: 34px 42px 42px; }
.modal-body h3 { font-family: var(--serif); font-weight: 400; font-size: 22px; margin: 18px 0 8px; }
.modal-body p, .modal-body li { color: #64706b; font-size: 12px; }
.modal-body ul { padding-left: 18px; }
.modal-actions { display: flex; gap: 10px; margin-top: 28px; }
.contact-modal { padding: 46px; }
.contact-modal h2 { font-family: var(--serif); font-size: 38px; font-weight: 400; margin-bottom: 12px; }
.contact-modal > p:not(.kicker) { font-size: 13px; color: var(--muted); }
.contact-modal form { display: grid; gap: 14px; margin-top: 26px; }
.contact-modal label { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.contact-modal input { display: block; width: 100%; border: 1px solid var(--line); background: #fff; padding: 13px; margin-top: 5px; outline: 0; text-transform: none; letter-spacing: 0; font-weight: 500; }
.contact-modal input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(18,60,50,.08); }
.toast { position: fixed; left: 50%; bottom: 25px; z-index: 100; transform: translate(-50%, 30px); background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 4px; box-shadow: var(--shadow); font-size: 11px; opacity: 0; pointer-events: none; transition: .25s; }
.toast.show { transform: translate(-50%, 0); opacity: 1; }

/* Clear, professional type scale used throughout the site. */
.demo-ribbon { font-size: 12px; }
.demo-ribbon span { font-size: 10px; letter-spacing: .08em; }
.brand { font-size: 20px; letter-spacing: -.02em; }
.main-nav a, .button { font-size: 14px; }
.eyebrow, .kicker { font-size: 12px; letter-spacing: .1em; }
.hero-intro { font-size: 18px; line-height: 1.65; }
.job-search label > span:first-child { font-size: 11px; letter-spacing: .08em; }
.job-search input, .job-search select { font-size: 15px; }
.popular-searches, .popular-searches button, .popular-searches a { font-size: 13px; }
.hero-visual figcaption { font-size: 11px; }
.opportunity-card small, .opportunity-card span { font-size: 11px; }
.opportunity-card strong { font-size: 15px; }
.photo-badge strong { font-size: 12px; }
.photo-badge small { font-size: 10px; }
.proof-strip p { font-size: 12px; letter-spacing: .08em; }
.proof-strip div { font-family: var(--sans); font-size: 18px; font-weight: 600; }
.section-heading > p { font-size: 16px; line-height: 1.65; }
.filter-pill { font-size: 13px; }
.company-meta strong { font-size: 14px; }
.company-meta span { font-size: 12px; letter-spacing: .05em; }
.job-card h3 { font-size: 24px; font-weight: 700; line-height: 1.2; }
.job-meta { font-size: 13px; }
.salary strong { font-size: 15px; }
.salary small { font-size: 12px; }
.view-job { font-size: 13px; }
.aside-card p { font-size: 11px; letter-spacing: .09em; }
.aside-card h3 { font-size: 28px; font-weight: 700; line-height: 1.15; }
.dark-card a { font-size: 13px; }
.tip-card > span:last-child { font-size: 14px; line-height: 1.6; }
.location-region > span { font-size: 11px; letter-spacing: .09em; }
.location-region a, .category-card strong, .resource-feature strong, .resource-links strong { font-family: var(--sans); font-weight: 700; }
.location-remote small { font-size: 13px; }
.category-card small { font-size: 14px; }
.resource-feature small { font-size: 11px; letter-spacing: .07em; }
.resource-feature p { font-size: 13px; }
.resource-links small { font-size: 11px; letter-spacing: .07em; }
.resource-links strong { font-size: 19px; }
.resource-disclaimer { font-size: 12px; }
.newsletter-grid h2 { font-size: clamp(35px, 3.5vw, 46px); }
.newsletter-grid > div:first-child > p:last-child, .global-alert-grid > div:first-child > p:last-child { font-size: 16px; line-height: 1.65; }
.newsletter-form input, .global-alert-form input[type="email"] { font-size: 16px; }
.newsletter-form small, .global-alert-form small { font-size: 12px; line-height: 1.5; }
.alert-consent, .alert-status { font-size: 13px; }
.global-alert-form > label:first-child { font-size: 12px; letter-spacing: .07em; }
.faq-grid h2 { font-size: clamp(36px, 3.8vw, 50px); font-weight: 700; letter-spacing: -.03em; line-height: 1.08; }
.faq-grid > div:first-child > p:last-child { font-size: 15px; }
.faq-list summary { font-size: 16px; }
.faq-list details p { font-size: 15px; line-height: 1.65; }
.footer-grid > div:first-child p, .footer-links a, .footer-links button { font-size: 13px; }
.location-stamp, .footer-links strong { font-size: 11px; letter-spacing: .08em; }
.footer-bottom { font-size: 12px; }
.modal-hero h2, .modal-body h3 { font-weight: 700; }
.modal-hero p, .modal-body p, .modal-body li { font-size: 14px; }
.toast { font-size: 13px; }

@media (max-width: 980px) {
  .main-nav { gap: 15px; }
  .main-nav a { font-size: 13px; }
  .sign-in { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 45px; min-height: auto; padding-top: 75px; }
  .hero-visual { width: min(100%, 720px); height: 440px; margin-inline: auto; }
  .job-search { width: 100%; }
  .jobs-layout { grid-template-columns: 1fr; }
  .career-aside { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .aside-card { min-height: 270px; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .location-directory { grid-template-columns: 1fr 1fr; }
  .faq-grid { gap: 50px; }
  .resources-grid { gap: 50px; }
  .employer-copy { padding: 45px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { display: none; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 32px, 1180px); }
  .demo-ribbon { align-items: flex-start; padding: 7px 16px; }
  .demo-ribbon p { line-height: 1.35; }
  .nav-wrap { height: 66px; }
  .menu-toggle { display: block; }
  .main-nav { display: none; position: absolute; top: 66px; left: 0; right: 0; background: var(--paper); padding: 22px 24px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); flex-direction: column; align-items: flex-start; gap: 18px; }
  .main-nav.open { display: flex; }
  .main-nav a { font-size: 14px; }
  .nav-actions { display: none; }
  .hero-grid { padding: 64px 0 34px; }
  h1 { font-size: clamp(44px, 13vw, 60px); letter-spacing: -.035em; }
  .hero-intro { font-size: 17px; }
  .job-search { grid-template-columns: 1fr; max-width: 100%; }
  .job-search label { border-right: 0; border-bottom: 1px solid #e4e6df; }
  .search-button { margin-top: 6px; }
  .proof-strip { padding: 20px 0; align-items: flex-start; }
  .proof-strip div { flex-wrap: wrap; gap: 8px 12px; justify-content: flex-end; font-size: 13px; }
  .hero-visual { height: 320px; }
  .hero-visual picture, .hero-visual::after { border-radius: 6px 6px 48px 6px; }
  .hero-visual img { object-position: center; }
  .hero-visual figcaption { top: 12px; right: 12px; }
  .card-main { left: 12px; bottom: 12px; width: 230px; padding: 12px; }
  .card-main .mini-logo { flex-basis: 40px; height: 40px; }
  .photo-badge { display: none; }
  .section { padding: 72px 0; }
  .split-heading { grid-template-columns: 1fr; gap: 18px; }
  .section-heading { margin-bottom: 30px; }
  .job-list { grid-template-columns: 1fr; }
  .career-aside { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .location-directory { grid-template-columns: 1fr; }
  .location-region { min-height: auto; }
  .category-card { min-height: 190px; }
  .resources-grid { grid-template-columns: 1fr; gap: 45px; }
  .resource-links { padding-inline: 22px; }
  .employer-panel { grid-template-columns: 1fr; }
  .employer-art { min-height: 300px; }
  .employer-copy { padding: 42px 28px; }
  .newsletter-grid { grid-template-columns: 1fr; gap: 30px; }
  .newsletter-form { grid-template-columns: 1fr; gap: 8px; }
  .newsletter-form small { grid-column: auto; }
  .global-alert-grid { grid-template-columns: 1fr; gap: 30px; }
  .global-alert-form > div { grid-template-columns: 1fr; gap: 8px; }
  .faq-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 7px; }
  .modal-hero, .modal-body, .contact-modal { padding-left: 25px; padding-right: 25px; }
  .modal-actions { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}


/* --- Malaysia Style & Email Capture Enhancements --- */
.hero {
  background-color: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.83-54.627 54.627-.83-.83L54.627 0zM29.172 0l.829.83-29.172 29.172-.829-.83L29.172 0zM0 31.657l.83.829L0 33.314v-1.657zm60 27.514l-.83-.829L60 57.514v.829zM0 60l.83-.83L0 58.343V60h0zm60-31.657l-.83-.829L60 26.686v1.657h0zm0-27.514l-.83.829L60 2.486v-.829h0z' fill='%23123c32' fill-opacity='0.04' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.hero-email-capture {
  margin-top: 36px;
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-radius: 12px;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(18, 60, 50, 0.1);
  border: 1px solid var(--lime);
  position: relative;
  z-index: 10;
}
.hero-email-capture p {
  font-size: 14px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.email-input-group {
  display: flex;
  gap: 12px;
}
.email-input-group input {
  padding: 12px 16px;
  border: 2px solid #e4e6df;
  border-radius: 8px;
  outline: none;
  font-size: 14px;
  min-width: 240px;
  font-weight: 600;
  color: var(--green);
}
.email-input-group input:focus {
  border-color: var(--green);
}
.email-input-group button {
  padding: 12px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(255, 115, 95, 0.3);
}

@media (max-width: 760px) {
  .email-input-group {
    flex-direction: column;
  }
  .email-input-group input {
    min-width: 100%;
  }
}
