:root {
  --green-950: #092d26;
  --green-900: #0d3b31;
  --green-800: #135143;
  --green-700: #087b50;
  --brand: #00a64f;
  --brand-dark: #008c42;
  --lime: #c9dc00;
  --gold: #c3a45d;
  --gold-light: #e4d4a8;
  --ivory: #f5f2ea;
  --paper: #fffefa;
  --white: #ffffff;
  --ink: #16211d;
  --muted: #66736d;
  --line: #dfe4df;
  --soft-line: rgba(255,255,255,.16);
  --danger: #9c3f35;
  --shadow: 0 20px 55px rgba(9,45,38,.09);
  --radius: 3px;
  --shell: 1200px;
  --font: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--font); line-height: 1.7; -webkit-font-smoothing: antialiased; }
body, button, input, select, textarea { font: inherit; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.2; font-weight: 650; letter-spacing: -.03em; }
h1 { font-size: clamp(2.7rem, 6vw, 5.7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: 1.18rem; }
button, a, input, select, textarea { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.shell { width: min(var(--shell), calc(100% - 48px)); margin-inline: auto; }
.section { padding: 110px 0; }
.ivory { background: var(--ivory); }
.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; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 999; padding: 10px 18px; background: var(--white); color: var(--green-950); }
.skip-link:focus { top: 12px; }
.eyebrow { margin: 0 0 18px; color: var(--brand-dark); font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow.light { color: var(--gold-light); }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 12px 25px; border: 1px solid transparent; border-radius: var(--radius); font-size: .92rem; font-weight: 750; letter-spacing: .02em; cursor: pointer; transition: transform .2s, background .2s, color .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button.gold { color: var(--green-950); background: var(--gold-light); }
.button.gold:hover { background: #f0e3bd; }
.button.ghost { color: var(--white); border-color: rgba(255,255,255,.48); background: transparent; }
.button.ghost:hover { background: rgba(255,255,255,.09); }
.button.dark { color: var(--white); background: var(--green-950); }
.button.dark:hover { background: var(--green-800); }
.button.primary { color: var(--white); background: var(--brand-dark); }
.button.primary:hover { background: var(--green-800); }
.button.full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--green-800); font-weight: 750; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }
.text-link.center { display: flex; justify-content: center; margin-top: 18px; font-size: .85rem; }

/* Header */
.site-header { position: relative; z-index: 30; background: var(--paper); }
.top-note { padding: 7px 20px; color: rgba(255,255,255,.78); background: var(--green-950); text-align: center; font-size: .72rem; letter-spacing: .06em; }
.top-note span { margin: 0 10px; color: var(--gold); }
.nav-wrap { display: flex; min-height: 88px; align-items: center; gap: 36px; }
.brand { display: block; width: 215px; margin-right: auto; overflow: hidden; }
.brand img { width: 100%; height: 54px; object-fit: contain; object-position: left center; }
.site-nav { display: flex; align-items: stretch; gap: 30px; }
.site-nav a { position: relative; display: flex; min-height: 88px; align-items: center; color: #34413c; font-size: .91rem; font-weight: 650; }
.site-nav a::after { position: absolute; right: 0; bottom: 0; left: 0; height: 3px; background: var(--brand); content: ""; transform: scaleX(0); transition: transform .2s; }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav-cta { padding: 10px 19px; border: 1px solid var(--green-900); color: var(--green-900); font-size: .86rem; font-weight: 750; }
.menu-toggle { display: none; border: 0; background: none; cursor: pointer; }

/* Hero */
.hero { position: relative; min-height: 700px; overflow: hidden; color: var(--white); background: var(--green-950); }
.hero::before { position: absolute; top: -260px; right: -220px; width: 660px; height: 660px; border: 1px solid rgba(228,212,168,.24); border-radius: 50%; content: ""; }
.hero::after { position: absolute; right: 80px; bottom: -280px; width: 520px; height: 520px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; content: ""; }
.hero-lines { position: absolute; inset: 0; opacity: .11; background-image: linear-gradient(90deg, transparent 49.8%, rgba(255,255,255,.35) 50%, transparent 50.2%); background-size: 160px 100%; }
.hero-grid { position: relative; z-index: 1; display: grid; min-height: 700px; grid-template-columns: 1.13fr .87fr; align-items: center; gap: 80px; padding-block: 70px; }
.hero-copy { padding: 20px 0; }
.hero-copy h1 { margin-bottom: 28px; font-weight: 500; letter-spacing: -.055em; }
.hero-copy h1 em { color: var(--gold-light); font-style: normal; }
.hero-lead { max-width: 650px; margin-bottom: 36px; color: rgba(255,255,255,.73); font-size: 1.08rem; line-height: 1.9; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-secondary { display: inline-flex; margin-top: 28px; gap: 10px; color: rgba(255,255,255,.68); border-bottom: 1px solid rgba(255,255,255,.22); font-size: .84rem; }
.hero-secondary:hover { color: var(--white); }
.hero-opportunity { position: relative; padding: 36px 38px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.065); backdrop-filter: blur(8px); }
.hero-opportunity > .entry-kicker { margin-bottom: 7px; color: var(--gold-light); font-size: .7rem; font-weight: 800; letter-spacing: .16em; }
.hero-opportunity h2 { margin-bottom: 23px; font-size: clamp(1.45rem, 2.4vw, 2rem); font-weight: 520; line-height: 1.45; }
.entry-guide { margin-bottom: 24px; border-top: 1px solid rgba(255,255,255,.16); }
.entry-guide a { position: relative; display: grid; padding: 14px 96px 14px 0; border-bottom: 1px solid rgba(255,255,255,.16); gap: 1px; transition: padding-left .2s, background .2s; }
.entry-guide a:hover { padding-left: 10px; background: rgba(255,255,255,.04); }
.entry-guide b { color: var(--white); font-size: .86rem; }
.entry-guide span { color: rgba(255,255,255,.58); font-size: .68rem; line-height: 1.55; }
.entry-guide i { position: absolute; top: 50%; right: 0; color: var(--gold-light); font-size: .68rem; font-style: normal; font-weight: 750; transform: translateY(-50%); }
.hero-opportunity > .search-label { margin-bottom: 8px; color: rgba(255,255,255,.57); font-size: .7rem; }
.hero-search { display: grid; grid-template-columns: 1.2fr 1fr 62px; background: var(--white); }
.hero-search label { display: block; padding: 11px 14px 10px; border-right: 1px solid var(--line); }
.hero-search label span { display: block; color: var(--muted); font-size: .65rem; }
.hero-search input, .hero-search select { width: 100%; padding: 3px 0 0; border: 0; outline: 0; color: var(--ink); background: transparent; font-size: .82rem; }
.hero-search button { border: 0; color: var(--white); background: var(--brand-dark); font-size: .78rem; font-weight: 750; cursor: pointer; }
.hero-trust { display: flex; margin-top: 22px; flex-wrap: wrap; gap: 18px; color: rgba(255,255,255,.58); font-size: .7rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust span::before { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); content: ""; }

/* General sections */
.section-heading { margin-bottom: 52px; }
.section-heading h2 { margin: 0; color: var(--green-950); }
.section-heading.split { display: flex; align-items: flex-end; justify-content: space-between; gap: 60px; }
.section-heading.split > p { max-width: 500px; margin: 0 0 7px; color: var(--muted); }
.shortcut-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.shortcut-grid button { display: flex; min-height: 225px; flex-direction: column; align-items: flex-start; padding: 34px 28px; border: 0; border-right: 1px solid var(--line); background: transparent; text-align: left; cursor: pointer; transition: background .2s, color .2s; }
.shortcut-grid button:last-child { border-right: 0; }
.shortcut-grid button:hover { color: var(--white); background: var(--green-900); }
.shortcut-grid span { margin-bottom: auto; color: var(--gold); font-family: Georgia, serif; font-size: 1.4rem; }
.shortcut-grid b { margin-bottom: 10px; font-size: 1.18rem; }
.shortcut-grid small { color: var(--muted); line-height: 1.65; }
.shortcut-grid button:hover small { color: rgba(255,255,255,.65); }
.department-row { display: flex; margin-top: 28px; align-items: center; flex-wrap: wrap; gap: 12px; }
.department-row > span { margin-right: 8px; color: var(--muted); font-size: .78rem; }
.department-row button { padding: 8px 14px; border: 1px solid var(--line); background: var(--white); font-size: .78rem; cursor: pointer; }
.department-row button:hover { color: var(--white); border-color: var(--green-900); background: var(--green-900); }
.department-row a { margin-left: auto; color: var(--green-800); font-size: .8rem; font-weight: 750; }

/* Job cards */
.job-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.job-card { position: relative; display: flex; min-height: 360px; flex-direction: column; padding: 30px; border: 1px solid #d8ddd7; background: var(--paper); transition: transform .22s, box-shadow .22s, border-color .22s; }
.job-card:hover { z-index: 2; border-color: #a9b7ad; box-shadow: var(--shadow); transform: translateY(-4px); }
.job-card.is-closed { opacity: .7; }
.job-card-top { display: flex; margin-bottom: 24px; align-items: center; justify-content: space-between; }
.job-status { display: inline-flex; padding: 4px 9px; align-items: center; color: var(--green-900); background: #e6eee9; font-size: .66rem; font-weight: 800; letter-spacing: .06em; }
.status-urgent { color: #7b352f; background: #f4dfd9; }
.status-featured { color: #6e5620; background: #efe6c8; }
.status-new { color: #245c7d; background: #deedf5; }
.status-closed { color: #5e6662; background: #e7e9e8; }
.job-code { color: #8a9690; font-family: Consolas, monospace; font-size: .66rem; }
.job-card h3 { margin: 0 0 8px; color: var(--green-950); font-size: 1.5rem; }
.job-card h3 a::after { position: absolute; inset: 0; content: ""; }
.job-org { margin-bottom: 17px; color: var(--muted); font-size: .78rem; }
.job-meta, .job-requirements { display: flex; flex-wrap: wrap; gap: 8px; }
.job-meta span { padding-right: 9px; border-right: 1px solid #cfd6d1; color: var(--green-800); font-size: .72rem; font-weight: 750; }
.job-meta span:last-child { border-right: 0; }
.job-summary { margin: 22px 0; color: #53605a; font-size: .88rem; }
.job-requirements span { padding: 4px 8px; background: var(--ivory); color: #59655f; font-size: .66rem; }
.job-card-bottom { display: flex; margin-top: auto; padding-top: 23px; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); font-size: .7rem; }
.job-card-bottom > span { color: #969f9a; }
.job-card-bottom a { position: relative; z-index: 3; color: var(--green-800); font-weight: 800; }
.job-card-bottom i { margin-left: 6px; font-style: normal; }
.prototype-disclaimer { margin: 28px 0 0; color: #838c87; font-size: .72rem; text-align: center; }

/* Candidate support */
.support-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; }
.support-intro h2 { margin-bottom: 28px; color: var(--green-950); }
.support-intro > p:not(.eyebrow) { margin-bottom: 34px; color: var(--muted); }
.support-list { border-top: 1px solid var(--line); }
.support-list article { display: grid; grid-template-columns: 70px 1fr; gap: 18px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.support-list article > span { color: var(--gold); font-family: Georgia, serif; font-size: 1.2rem; }
.support-list h3 { margin-bottom: 8px; color: var(--green-950); }
.support-list p { margin: 0; color: var(--muted); font-size: .86rem; }
.dark-section { color: var(--white); background: var(--green-950); }
.light-heading h2 { color: var(--white); }
.light-heading.split > p { color: rgba(255,255,255,.62); }
.flow-grid { display: grid; margin: 0; padding: 0; grid-template-columns: repeat(5, 1fr); list-style: none; border-top: 1px solid var(--soft-line); }
.flow-grid li { position: relative; min-height: 225px; padding: 28px 24px; border-right: 1px solid var(--soft-line); }
.flow-grid li:last-child { border-right: 0; }
.flow-grid li::after { position: absolute; top: -4px; left: 24px; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); content: ""; }
.flow-grid span { display: block; margin-bottom: 55px; color: var(--gold-light); font-family: Georgia, serif; }
.flow-grid h3 { margin-bottom: 12px; }
.flow-grid p { margin: 0; color: rgba(255,255,255,.55); font-size: .78rem; }

/* Case and hospital */
.case-layout { display: grid; grid-template-columns: .55fr 1.15fr .8fr; gap: 60px; align-items: stretch; }
.case-index { display: flex; min-height: 390px; flex-direction: column; justify-content: space-between; padding: 26px; color: var(--white); background: var(--green-900); }
.case-index span { font-size: .62rem; letter-spacing: .17em; }
.case-index b { font-family: Georgia, "Songti SC", serif; font-size: 2.1rem; font-weight: 400; writing-mode: vertical-rl; }
.case-story { align-self: center; }
.case-story h2 { font-size: clamp(2rem, 3.4vw, 3rem); }
.case-story > p:not(.eyebrow) { color: var(--muted); }
.case-steps { display: flex; margin: 32px 0; align-items: center; flex-wrap: wrap; gap: 10px; color: var(--green-800); font-size: .72rem; font-weight: 750; }
.case-steps i { width: 20px; height: 1px; background: var(--gold); }
.case-layout blockquote { display: flex; margin: 0; flex-direction: column; justify-content: flex-end; padding: 40px; border-left: 1px solid #cbc5b6; }
.case-layout blockquote p { color: var(--green-900); font-family: Georgia, "Songti SC", serif; font-size: 1.35rem; line-height: 1.7; }
.case-layout cite { color: var(--muted); font-size: .72rem; font-style: normal; }
.hospital-head { display: grid; margin-bottom: 54px; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.hospital-head h2 { margin: 0; color: var(--green-950); }
.hospital-head > p { margin: 0; color: var(--muted); }
.method-grid { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--line); }
.method-grid article { min-height: 260px; padding: 28px 24px; border-right: 1px solid var(--line); }
.method-grid article:last-child { border-right: 0; }
.method-grid span { display: block; margin-bottom: 60px; color: var(--gold); font-family: Georgia, serif; }
.method-grid h3 { color: var(--green-950); }
.method-grid p { color: var(--muted); font-size: .8rem; }
.hospital-cta { display: flex; margin-top: 22px; padding: 30px 34px; align-items: center; justify-content: space-between; color: var(--white); background: var(--green-800); }
.hospital-cta span { color: var(--gold-light); font-size: .7rem; letter-spacing: .1em; }
.hospital-cta h3 { margin: 7px 0 0; }
.hospital-cta .button { color: var(--green-950); background: var(--white); }
.credentials-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 100px; align-items: center; }
.credentials-grid h2 { color: var(--green-950); font-size: 2.3rem; }
.credentials-grid p { color: var(--muted); }
.credential-items { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid #d7d3c7; }
.credential-items span { display: flex; min-height: 160px; flex-direction: column; justify-content: flex-end; padding: 23px; border-right: 1px solid #d7d3c7; }
.credential-items span:last-child { border-right: 0; }
.credential-items span::before { width: 34px; height: 44px; margin-bottom: auto; border: 1px solid var(--gold); content: ""; }
.credential-items b { margin-bottom: 5px; color: var(--green-900); font-size: .88rem; }
.credential-items small { color: var(--muted); font-size: .68rem; }
.final-cta { padding: 95px 0; color: var(--white); background: var(--green-900); text-align: center; }
.final-cta p { color: var(--gold-light); font-size: .78rem; letter-spacing: .08em; }
.final-cta h2 { margin-bottom: 35px; color: var(--white); }
.final-cta .button { margin: 6px; }

/* Page heroes */
.page-hero { color: var(--white); background: var(--green-950); }
.page-hero .shell { display: grid; min-height: 410px; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 90px; padding-block: 70px; }
.page-hero h1 { margin: 0; font-size: clamp(2.7rem, 5vw, 4.8rem); font-weight: 520; }
.page-hero .shell > p { margin-bottom: 18px; color: rgba(255,255,255,.66); font-size: 1rem; }
.jobs-hero { background-color: var(--green-950); background-image: linear-gradient(90deg, transparent 74%, rgba(255,255,255,.05) 74%); background-size: 190px 100%; }
.register-hero { background: var(--green-900); }
.about-hero { background: #173a32; }

/* Jobs page */
.jobs-layout { display: grid; grid-template-columns: 280px 1fr; gap: 44px; align-items: start; }
.filter-panel { position: sticky; top: 20px; padding: 25px; border: 1px solid var(--line); background: var(--white); }
.filter-title { display: flex; margin-bottom: 22px; align-items: center; justify-content: space-between; }
.filter-title span { font-weight: 800; }
.filter-title button, [data-reset-filters] { padding: 0; border: 0; color: var(--green-700); background: none; font-size: .72rem; cursor: pointer; }
.filter-panel form { display: grid; gap: 15px; }
.filter-panel label, .results-toolbar label { display: block; }
.filter-panel label span, .results-toolbar label span { display: block; margin-bottom: 5px; color: var(--muted); font-size: .69rem; font-weight: 650; }
.filter-panel input, .filter-panel select, .results-toolbar select { width: 100%; height: 43px; padding: 0 10px; border: 1px solid var(--line); border-radius: 0; outline: none; background: var(--paper); font-size: .78rem; }
.filter-panel input:focus, .filter-panel select:focus { border-color: var(--brand-dark); }
.filter-note { margin: 25px -25px -25px; padding: 24px; color: var(--white); background: var(--green-900); }
.filter-note b { font-size: .85rem; }
.filter-note p { margin: 9px 0 13px; color: rgba(255,255,255,.62); font-size: .72rem; }
.filter-note a { color: var(--gold-light); font-size: .73rem; font-weight: 750; }
.results-toolbar { display: flex; margin-bottom: 24px; align-items: end; justify-content: space-between; }
.results-toolbar p { margin: 0; color: var(--muted); font-size: .78rem; }
.results-toolbar label { display: flex; align-items: center; gap: 10px; }
.results-toolbar label span { margin: 0; }
.results-toolbar select { width: 118px; }
.job-grid-list { grid-template-columns: repeat(2, 1fr); }
.job-grid-list .job-card { min-height: 375px; }
.empty-state { padding: 100px 40px; border: 1px solid var(--line); background: var(--ivory); text-align: center; }
.empty-state > span { color: var(--brand-dark); font-size: .72rem; font-weight: 800; letter-spacing: .08em; }
.empty-state h2 { margin: 15px 0; font-size: 2rem; }
.empty-state p { color: var(--muted); }
.channel-demo { padding: 28px 0; color: rgba(255,255,255,.7); background: var(--green-950); }
.channel-demo .shell { display: flex; align-items: center; gap: 25px; }
.channel-demo span { color: var(--gold-light); font-size: .7rem; letter-spacing: .1em; }
.channel-demo p { margin: 0; font-size: .76rem; }
.channel-demo small { margin-left: auto; font-size: .65rem; }

/* Detail page */
.detail-hero { color: var(--white); background: var(--green-950); }
.detail-hero-inner { padding-top: 40px; padding-bottom: 78px; }
.breadcrumbs { display: flex; margin-bottom: 60px; flex-wrap: wrap; gap: 10px; color: rgba(255,255,255,.48); font-size: .7rem; }
.breadcrumbs strong { color: rgba(255,255,255,.78); }
.detail-kicker { display: flex; margin-bottom: 22px; align-items: center; gap: 16px; color: rgba(255,255,255,.56); font-size: .7rem; }
.detail-hero h1 { margin-bottom: 17px; font-size: clamp(2.8rem, 5.7vw, 5rem); font-weight: 520; }
.detail-hero-inner > p { max-width: 740px; margin-bottom: 30px; color: rgba(255,255,255,.67); font-size: 1rem; }
.detail-meta { display: flex; flex-wrap: wrap; gap: 10px; }
.detail-meta span { padding: 7px 12px; border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.77); font-size: .7rem; }
.detail-layout { display: grid; grid-template-columns: 1fr 350px; gap: 70px; padding-top: 75px; padding-bottom: 100px; align-items: start; }
.detail-content section { padding: 0 0 50px; margin-bottom: 50px; border-bottom: 1px solid var(--line); }
.detail-content section:last-child { margin-bottom: 0; }
.detail-content .section-tag { color: var(--brand-dark); font-size: .7rem; font-weight: 800; letter-spacing: .12em; }
.detail-content h2 { margin: 14px 0 24px; color: var(--green-950); font-size: 2rem; }
.detail-content p { color: var(--muted); }
.privacy-callout { display: grid; margin-top: 28px; grid-template-columns: 120px 1fr; gap: 20px; padding: 22px; background: var(--ivory); font-size: .78rem; }
.privacy-callout b { color: var(--green-900); }
.privacy-callout span { color: var(--muted); }
.detail-list { margin: 0; padding: 0; list-style: none; }
.detail-list li { position: relative; padding: 13px 0 13px 27px; border-bottom: 1px solid #edf0ed; color: #4d5953; font-size: .88rem; }
.detail-list li::before { position: absolute; top: 24px; left: 2px; width: 10px; height: 1px; background: var(--gold); content: ""; }
.detail-note { margin-top: 20px; padding-left: 16px; border-left: 2px solid var(--gold); font-size: .72rem; }
.process-strip { display: grid; margin: 0; padding: 0; grid-template-columns: repeat(5, 1fr); list-style: none; }
.process-strip li { padding: 17px 12px; border-left: 1px solid var(--line); }
.process-strip span { display: block; margin-bottom: 22px; color: var(--gold); font-family: Georgia, serif; }
.process-strip b { font-size: .72rem; font-weight: 650; }
.detail-content .confidentiality { padding: 34px; border: 1px solid #cbd7cf; background: #f5faf7; }
.detail-content .confidentiality h2 { margin-top: 0; }
.detail-content .confidentiality p { margin: 0; }
.apply-panel { position: sticky; top: 20px; }
.apply-panel-inner { padding: 31px; border-top: 4px solid var(--gold); box-shadow: var(--shadow); background: var(--white); }
.apply-panel h2 { margin-bottom: 17px; color: var(--green-950); font-size: 1.75rem; }
.apply-panel p { color: var(--muted); font-size: .8rem; }
.source-box { margin-top: 28px; padding: 20px; background: var(--ivory); }
.source-box span, .source-box b, .source-box small { display: block; }
.source-box span { color: var(--muted); font-size: .65rem; }
.source-box b { margin: 4px 0 8px; color: var(--green-900); font-size: .78rem; }
.source-box small { color: #89918d; font-size: .62rem; }

/* Registration */
.registration-layout { display: grid; grid-template-columns: 330px 1fr; gap: 55px; align-items: start; }
.registration-aside { position: sticky; top: 20px; }
.application-context { padding: 28px; color: var(--white); background: var(--green-900); }
.application-context span, .application-context strong, .application-context small { display: block; }
.application-context span { margin-bottom: 20px; color: var(--gold-light); font-size: .67rem; letter-spacing: .1em; }
.application-context strong { margin-bottom: 7px; font-size: 1.22rem; }
.application-context small { color: rgba(255,255,255,.56); font-size: .68rem; }
.aside-promise, .aside-flow { padding: 28px; border: 1px solid var(--line); border-top: 0; background: var(--white); }
.aside-promise > span, .aside-flow > span { display: block; margin-bottom: 17px; color: var(--green-900); font-size: .72rem; font-weight: 800; }
.aside-promise ul, .aside-flow ol { margin: 0; padding: 0; list-style: none; }
.aside-promise li { position: relative; padding: 8px 0 8px 18px; color: var(--muted); font-size: .75rem; }
.aside-promise li::before { position: absolute; top: 18px; left: 0; width: 7px; height: 1px; background: var(--gold); content: ""; }
.aside-flow li { display: flex; padding: 8px 0; align-items: center; gap: 12px; color: var(--muted); font-size: .74rem; }
.aside-flow b { color: var(--gold); font-family: Georgia, serif; font-weight: 400; }
.form-panel { max-width: 800px; }
.form-heading { margin-bottom: 40px; }
.form-heading h2 { margin-bottom: 14px; color: var(--green-950); }
.form-heading > p:last-child { color: var(--muted); font-size: .75rem; }
.form-heading b, .registration-form label b { color: var(--danger); }
.registration-form fieldset { margin: 0 0 42px; padding: 0; border: 0; }
.registration-form legend { width: 100%; margin-bottom: 22px; padding-bottom: 11px; border-bottom: 1px solid var(--line); color: var(--green-900); font-size: .82rem; font-weight: 800; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid label { display: block; }
.form-grid label.full { grid-column: 1 / -1; }
.form-grid label > span { display: block; margin-bottom: 7px; color: #4e5b55; font-size: .72rem; font-weight: 700; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; padding: 12px 14px; border: 1px solid #ccd3ce; border-radius: 0; outline: none; background: var(--white); font-size: .82rem; }
.form-grid input, .form-grid select { height: 48px; }
.form-grid textarea { min-height: 126px; resize: vertical; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--brand-dark); box-shadow: 0 0 0 2px rgba(0,140,66,.08); }
.consent { display: flex; align-items: flex-start; gap: 12px; padding: 20px; background: var(--ivory); color: var(--muted); font-size: .72rem; }
.consent input { width: 17px; height: 17px; margin-top: 3px; flex: 0 0 auto; accent-color: var(--brand-dark); }
.consent a { color: var(--brand-dark); text-decoration: underline; }
.form-error { min-height: 24px; margin: 12px 0; color: var(--danger); font-size: .72rem; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.submit-button { min-width: 230px; }
.submit-button:disabled { cursor: wait; opacity: .65; }
.form-success { padding: 48px; border: 1px solid #b7c9bd; background: #f2f8f4; text-align: center; }
.form-success span { color: var(--brand-dark); font-size: .7rem; font-weight: 800; letter-spacing: .1em; }
.form-success h2 { margin: 12px 0; font-size: 2rem; }
.form-success p { color: var(--muted); }

/* About */
.two-col { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; }
.two-col h2 { color: var(--green-950); }
.two-col > div:last-child { padding-top: 45px; color: var(--muted); }
.method-detailed { border-top: 1px solid #d8d5cb; }
.method-detailed article { display: grid; grid-template-columns: 100px 1fr; gap: 30px; padding: 30px 0; border-bottom: 1px solid #d8d5cb; }
.method-detailed article > span { color: var(--gold); font-family: Georgia, serif; font-size: 1.6rem; }
.method-detailed h3 { margin-bottom: 8px; color: var(--green-950); font-size: 1.35rem; }
.method-detailed p { margin-bottom: 8px; color: var(--muted); }
.method-detailed small { color: var(--green-700); font-size: .69rem; font-weight: 750; }
.case-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.case-card-grid article { display: flex; min-height: 360px; flex-direction: column; padding: 30px; border: 1px solid var(--line); }
.case-card-grid article > span { color: var(--gold); font-size: .67rem; letter-spacing: .12em; }
.case-card-grid h3 { margin: 38px 0 18px; color: var(--green-950); font-size: 1.35rem; }
.case-card-grid p { color: var(--muted); font-size: .8rem; }
.case-card-grid article > div { display: flex; margin-top: auto; flex-wrap: wrap; gap: 7px; }
.case-card-grid b { padding: 4px 7px; background: var(--ivory); color: var(--green-800); font-size: .65rem; }
.certificate-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.certificate-card { display: flex; min-width: 0; flex-direction: column; border: 1px solid #d7d3c7; background: var(--paper); transition: transform .2s, box-shadow .2s; }
.certificate-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.certificate-card figure { display: flex; aspect-ratio: 4 / 3; margin: 0; align-items: center; justify-content: center; overflow: hidden; border-bottom: 1px solid #d7d3c7; background: #ece9df; }
.certificate-card img { width: 100%; height: 100%; object-fit: contain; }
.certificate-card > div { padding: 24px; }
.certificate-card span { color: var(--gold); font-size: .67rem; font-weight: 800; letter-spacing: .12em; }
.certificate-card h3 { margin: 8px 0 7px; color: var(--green-950); }
.certificate-card p { margin-bottom: 18px; color: var(--muted); font-size: .72rem; }
.certificate-card b { color: var(--green-800); font-size: .72rem; }
.privacy-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; }
.privacy-layout h2 { color: var(--white); }
.privacy-layout > div:first-child > p:last-child { color: rgba(255,255,255,.62); }
.privacy-rules { border-top: 1px solid var(--soft-line); }
.privacy-rules article { display: grid; grid-template-columns: 110px 1fr; padding: 22px 0; border-bottom: 1px solid var(--soft-line); gap: 24px; }
.privacy-rules span { color: var(--gold-light); font-size: .74rem; font-weight: 750; }
.privacy-rules p { margin: 0; color: rgba(255,255,255,.6); font-size: .78rem; }
.contact-layout { display: grid; grid-template-columns: 1fr .85fr; gap: 110px; align-items: center; }
.contact-layout h2 { color: var(--green-950); }
.contact-layout > div:first-child > p:last-child { color: var(--muted); }
.contact-card { padding: 40px; color: var(--white); background: var(--green-900); }
.contact-card > span { color: var(--gold-light); font-size: .78rem; }
.contact-card > a { display: block; margin: 24px 0 5px; font-family: Georgia, serif; font-size: 2.35rem; letter-spacing: .02em; }
.contact-card > p { color: rgba(255,255,255,.61); }
.contact-card > div { display: flex; margin: 30px 0 20px; flex-wrap: wrap; gap: 8px; }
.contact-card b { padding: 7px 10px; border: 1px solid rgba(255,255,255,.22); font-size: .67rem; }
.contact-card small { color: rgba(255,255,255,.45); font-size: .64rem; }

/* Footer */
.site-footer { color: rgba(255,255,255,.62); background: #061e19; }
.footer-main { display: grid; padding-block: 70px 55px; grid-template-columns: 1.5fr .65fr .65fr 1fr; gap: 50px; }
.footer-logo { display: block; width: 260px; max-width: 100%; }
.footer-logo img { width: 100%; height: auto; }
.footer-brand p { max-width: 340px; margin: 20px 0 0; font-size: .75rem; }
.footer-brand .footer-vision { margin-top: 24px; padding-left: 15px; border-left: 2px solid var(--gold); color: rgba(255,255,255,.82); line-height: 1.8; }
.footer-vision span { display: block; margin-bottom: 3px; color: var(--gold-light); font-size: .62rem; font-weight: 800; letter-spacing: .14em; }
.footer-brand .footer-prototype { color: var(--gold-light); font-size: .65rem; }
.footer-main h2 { margin-bottom: 20px; color: var(--white); font-size: .78rem; letter-spacing: .06em; }
.footer-main > div:not(.footer-brand) a, .footer-main > div:not(.footer-brand) p { display: block; margin: 0 0 10px; font-size: .7rem; }
.footer-main a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; padding-block: 20px; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.1); font-size: .62rem; }
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); text-decoration: underline; }

/* Responsive */
@media (max-width: 1020px) {
  .site-nav { gap: 17px; }
  .nav-cta { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; padding-block: 80px; }
  .hero-opportunity { max-width: 700px; }
  .shortcut-grid { grid-template-columns: repeat(2, 1fr); }
  .shortcut-grid button:nth-child(2) { border-right: 0; }
  .shortcut-grid button:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .support-grid, .credentials-grid, .two-col, .privacy-layout { gap: 55px; }
  .flow-grid { grid-template-columns: repeat(3, 1fr); }
  .flow-grid li:nth-child(3) { border-right: 0; }
  .case-layout { grid-template-columns: .4fr 1.2fr; }
  .case-layout blockquote { grid-column: 1 / -1; min-height: 220px; }
  .method-grid { grid-template-columns: repeat(3, 1fr); }
  .method-grid article:nth-child(3) { border-right: 0; }
  .method-grid article:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .jobs-layout { grid-template-columns: 240px 1fr; gap: 28px; }
  .job-grid-list { grid-template-columns: 1fr; }
  .detail-layout { grid-template-columns: 1fr 300px; gap: 42px; }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 30px, var(--shell)); }
  .section { padding: 76px 0; }
  .top-note { font-size: .62rem; }
  .nav-wrap { min-height: 72px; gap: 15px; }
  .brand { width: 166px; }
  .brand img { height: 44px; }
  .menu-toggle { display: flex; width: 40px; height: 40px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
  .menu-toggle span { width: 22px; height: 2px; background: var(--green-900); }
  .site-nav { position: absolute; top: 100%; right: 0; left: 0; display: none; padding: 15px; flex-direction: column; gap: 0; box-shadow: var(--shadow); background: var(--paper); }
  .site-nav.open { display: flex; }
  .site-nav a { min-height: 48px; padding: 0 12px; border-bottom: 1px solid var(--line); }
  .site-nav a::after { display: none; }
  .hero, .hero-grid { min-height: auto; }
  .hero-grid { padding-block: 72px; }
  .hero-copy h1 { font-size: 3rem; }
  .hero-lead { font-size: .92rem; }
  .hero-actions .button { width: 100%; }
  .hero-opportunity { padding: 28px 22px; }
  .entry-guide a { padding-right: 82px; }
  .hero-search { grid-template-columns: 1fr; }
  .hero-search label { border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-search button { min-height: 48px; }
  .section-heading.split, .hospital-head { display: block; }
  .section-heading.split > p, .section-heading.split > a, .hospital-head > p { margin-top: 22px; }
  .shortcut-grid { grid-template-columns: 1fr; }
  .shortcut-grid button { min-height: 180px; border-right: 0; border-bottom: 1px solid var(--line); }
  .department-row a { width: 100%; margin: 8px 0 0; }
  .job-grid { grid-template-columns: 1fr; }
  .support-grid, .credentials-grid, .two-col, .privacy-layout, .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .flow-grid { grid-template-columns: 1fr; }
  .flow-grid li { min-height: 150px; border-right: 0; border-bottom: 1px solid var(--soft-line); }
  .flow-grid span { margin-bottom: 25px; }
  .case-layout { grid-template-columns: 80px 1fr; gap: 24px; }
  .case-index { min-height: 360px; padding: 18px; }
  .case-index b { font-size: 1.45rem; }
  .case-layout blockquote { padding: 28px 0; }
  .method-grid { grid-template-columns: 1fr; }
  .method-grid article { min-height: 185px; border-right: 0; border-bottom: 1px solid var(--line); }
  .method-grid article:last-child { border-bottom: 0; }
  .method-grid span { margin-bottom: 30px; }
  .hospital-cta { align-items: flex-start; flex-direction: column; gap: 22px; }
  .credential-items { grid-template-columns: 1fr; }
  .credential-items span { min-height: 140px; border-right: 0; border-bottom: 1px solid #d7d3c7; }
  .credential-items span:last-child { border-bottom: 0; }
  .page-hero .shell { min-height: 360px; grid-template-columns: 1fr; gap: 30px; align-content: end; }
  .page-hero h1 { font-size: 2.7rem; }
  .jobs-layout { grid-template-columns: 1fr; }
  .filter-panel { position: static; }
  .results-toolbar { align-items: flex-start; flex-direction: column; gap: 14px; }
  .channel-demo .shell { align-items: flex-start; flex-direction: column; gap: 5px; }
  .channel-demo small { margin-left: 0; }
  .detail-hero-inner { padding-bottom: 55px; }
  .breadcrumbs { margin-bottom: 40px; }
  .detail-layout { grid-template-columns: 1fr; }
  .apply-panel { position: static; order: -1; }
  .process-strip { grid-template-columns: 1fr; }
  .process-strip li { display: flex; align-items: center; gap: 20px; border-bottom: 1px solid var(--line); }
  .process-strip span { margin-bottom: 0; }
  .registration-layout { grid-template-columns: 1fr; }
  .registration-aside { position: static; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid label.full { grid-column: auto; }
  .submit-button { width: 100%; }
  .case-card-grid { grid-template-columns: 1fr; }
  .certificate-grid { grid-template-columns: 1fr; }
  .privacy-rules article { grid-template-columns: 1fr; gap: 8px; }
  .contact-card > a { font-size: 1.9rem; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .footer-brand, .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 420px) {
  .hero-copy h1 { font-size: 2.6rem; }
  .case-layout { display: block; }
  .case-index { min-height: 120px; margin-bottom: 32px; flex-direction: row; align-items: center; }
  .case-index b { writing-mode: horizontal-tb; }
  .case-steps { gap: 7px; }
  .case-steps i { width: 10px; }
  .detail-meta { gap: 6px; }
  .privacy-callout { grid-template-columns: 1fr; }
  .form-panel { min-width: 0; }
}

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