@font-face {
  font-family: "Shuei KakuGo Gin B Local";
  src:
    local("A-OTF Shuei KakuGo Gin Std B"),
    local("ShueiGoGinStd-B"),
    local("秀英角ゴシック銀 Std B"),
    local("秀英角ゴシック銀B");
  font-display: swap;
  font-style: normal;
  font-weight: 400 700;
}

:root {
  /* Brand system v3: dark green / vivid green / white / black */
  --green-950: #006956;
  --green-900: #006956;
  --green-800: #006956;
  --green-700: #00896b;
  --green-600: #00896b;
  --green-100: #edf4f1;
  --green-050: #edf4f1;
  --cream: #edf4f1;
  --white: #fff;
  --ink: #111;
  --muted: #111;
  --line: rgba(0, 105, 86, .2);
  --accent: #00896b;
  --danger: #006956;
  --shadow: 0 18px 48px rgba(0, 105, 86, .11);
  --frame-border: 1px solid rgba(0, 105, 86, .2);
  --frame-radius: 0;
  --frame-padding: clamp(20px, 2.6vw, 32px);
  --photo-ratio: 3 / 2;
  --brand-font: "Poppins", "Shuei KakuGo Gin B Local", "A-OTF Shuei KakuGo Gin Std B", sans-serif;
  --serif: var(--brand-font);
  --sans: var(--brand-font);
  --latin: "Poppins", sans-serif;
  --header-height: 68px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: .02em;
  overflow-wrap: normal;
  word-break: normal;
  line-break: strict;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
summary,
select,
label,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p,
figure,
dl,
dd,
ol,
ul {
  margin: 0;
}

ol,
ul {
  padding: 0;
}

li {
  list-style: none;
}

address {
  font-style: normal;
}

.container {
  width: min(calc(100% - 40px), 1180px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--green-900);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(18, 59, 51, .12);
  backdrop-filter: blur(12px);
  transition: box-shadow .25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(18, 59, 51, .09);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand img,
.brand__logo,
.footer-brand img {
  width: 118px;
}

.brand span,
.brand__recruit,
.footer-brand span {
  padding-left: 10px;
  color: var(--green-800);
  border-left: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .12em;
  white-space: nowrap;
}

.desktop-nav,
.header-cta {
  display: none;
}

.menu-button {
  display: grid;
  grid-template-columns: auto 25px;
  align-items: center;
  gap: 9px;
  min-width: 78px;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button__label {
  color: var(--green-900);
  font-family: var(--latin);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
}

.menu-button__lines {
  position: relative;
  display: block;
  width: 25px;
  height: 16px;
}

.menu-button__lines i {
  position: absolute;
  left: 0;
  display: block;
  width: 25px;
  height: 1px;
  background: var(--green-900);
  transition: top .25s ease, transform .25s ease;
}

.menu-button__lines i:first-child {
  top: 4px;
}

.menu-button__lines i:last-child {
  top: 12px;
}

.menu-button[aria-expanded="true"] .menu-button__lines i:first-child {
  top: 8px;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-button__lines i:last-child {
  top: 8px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  z-index: 1;
  top: 100%;
  right: 0;
  bottom: auto;
  left: 0;
  height: calc(100dvh - var(--header-height));
  overflow-y: auto;
  background: var(--cream);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu__nav {
  display: grid;
  padding-block: 20px 40px;
}

.mobile-menu__nav > a:not(.button) {
  min-height: 54px;
  padding: 14px 4px;
  color: var(--green-900);
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
}

.mobile-menu__nav .button {
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .05em;
  text-align: center;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.button--primary,
.button--submit {
  color: var(--white);
  background: var(--green-700);
}

.button--ghost {
  color: var(--green-900);
  background: rgba(255, 255, 255, .82);
  border-color: rgba(18, 59, 51, .28);
}

.button--light {
  color: var(--green-950);
  background: var(--white);
}

.button--outline-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, .5);
}

.no-break,
[data-job-condition="fulltime-salary"],
[data-job-condition="parttime-hourly"],
[data-job-condition="fulltime-days"],
[data-job-condition="parttime-days"],
[data-job-condition="work-hours"],
[data-job-condition="oncall"] {
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 980px;
  padding-top: var(--header-height);
  overflow: hidden;
  color: var(--green-950);
  background: var(--cream);
}

.hero__visual,
.hero__visual img,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__visual img {
  object-fit: cover;
  object-position: 60% top;
}

.hero__shade {
  background:
    linear-gradient(180deg, rgba(237, 244, 241, 0) 4%, rgba(237, 244, 241, .08) 24%, rgba(237, 244, 241, .96) 47%, var(--cream) 66%),
    linear-gradient(90deg, rgba(237, 244, 241, .42), rgba(237, 244, 241, 0) 70%);
}

.hero__inner {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 862px;
}

.hero__content {
  width: 100%;
  padding-block: 166px 176px;
}

.hero__eyebrow {
  margin-bottom: 6px;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .08em;
}

.hero h1 {
  max-width: 680px;
  color: var(--green-950);
  font-family: var(--serif);
  font-size: clamp(38px, 10.5vw, 42px);
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.hero-title__quiet,
.hero-title__main {
  display: block;
}

.hero-title__lead-in {
  display: block;
}

.hero-title__resolve {
  display: inline-block;
  font-size: clamp(32px, 9.7vw, 38px);
  white-space: nowrap;
}

.hero-title__quiet {
  margin-bottom: 3px;
  color: var(--green-700);
  font-size: clamp(32px, 8.8vw, 35px);
  font-weight: 500;
  letter-spacing: .02em;
}

.hero-title__main em {
  position: relative;
  display: inline-block;
  padding-inline: .04em;
  font-style: normal;
  white-space: nowrap;
}

.hero-title__main em::after {
  position: absolute;
  right: 0;
  bottom: .02em;
  left: 0;
  height: 5px;
  content: "";
  background: currentColor;
  transform: rotate(-1deg);
}

.hero-title__final {
  white-space: nowrap;
}

.hero-proof {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-top: 8px;
  color: var(--green-800);
}

.hero-proof > span {
  margin-right: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
}

.hero-proof strong {
  font-family: var(--latin);
  font-size: 50px;
  font-weight: 500;
  line-height: .85;
}

.hero-proof em {
  font-family: var(--serif);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}

.hero__emphasis {
  margin-top: 9px;
  color: var(--green-800);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.65;
}

.hero__lead {
  max-width: 680px;
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.78;
}

.hero__supplement {
  max-width: 680px;
  margin-top: 10px;
  color: var(--green-800);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.75;
}

.hero__actions {
  display: grid;
  grid-template-columns: 1.4fr .7fr;
  gap: 8px;
  margin-top: 16px;
}

.hero__actions .button {
  min-width: 0;
  min-height: 52px;
  padding-inline: 8px;
  font-size: 13px;
}

.hero__requirements-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 4px;
  color: var(--green-800);
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero-conditions-band {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding-block: 18px;
  background: rgba(255, 255, 255, .93);
  border-top: 1px solid rgba(18, 59, 51, .12);
  backdrop-filter: blur(10px);
}

.hero-conditions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.hero-conditions > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 9px 12px;
  background: transparent;
  border: 1px solid rgba(18, 59, 51, .13);
}

.hero-conditions > div:nth-child(-n+2) {
  grid-column: 1 / -1;
}

.hero-conditions dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.hero-conditions dd {
  color: var(--green-900);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}

.hero__note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.section {
  padding-block: 78px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

.section-index {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--green-700);
  font-family: var(--latin);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .14em;
}

.section-index strong {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: 0;
}

.section-index i {
  width: 48px;
  height: 1px;
  background: currentColor;
  opacity: .45;
}

.section-heading h2,
.entry__intro h2,
.legal-title h1,
.thanks-main h1 {
  color: var(--green-950);
  font-family: var(--serif);
  font-size: clamp(28px, 7.5vw, 32px);
  font-weight: 600;
  line-height: 1.48;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.section-heading h2 br {
  display: none;
}

.section-heading > p:last-child {
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.work-style {
  padding-block: 24px;
  background: var(--green-050);
}

.work-style .section-heading {
  margin-bottom: 8px;
}

.workstyle-paths {
  border-top: 1px solid rgba(18, 59, 51, .18);
}

.workstyle-paths li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(18, 59, 51, .18);
}

.workstyle-paths > li > span {
  color: var(--green-600);
  font-family: var(--latin);
  font-size: 16px;
}

.workstyle-paths h3 {
  color: var(--green-950);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
}

.workstyle-paths p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.workstyle-system {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 9px;
  margin-top: 18px;
  padding: 6px 10px;
  color: var(--muted);
  background: rgba(255, 255, 255, .65);
  border-left: 2px solid var(--green-600);
  font-size: 12px;
  line-height: 1.4;
}

.workstyle-system > span:first-child {
  color: var(--green-800);
  font-family: var(--latin);
  font-size: 17px;
  font-weight: 600;
  white-space: nowrap;
}

.benefits {
  padding-block: 40px;
  background: var(--white);
}

.benefits .section-heading {
  margin-bottom: 28px;
}

.benefit-layout {
  display: grid;
  gap: 16px;
}

.benefit-card {
  overflow: hidden;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.benefit-card--02 {
  display: flex;
  flex-direction: column;
}

.benefit-card--02 .benefit-card__body {
  order: 1;
}

.benefit-card--02 .benefit-card__image {
  order: 2;
}

.benefit-card__image {
  position: relative;
  aspect-ratio: 2.15 / 1;
  overflow: hidden;
  background: var(--green-100);
}

.benefit-card__image figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 4px 9px;
  color: var(--white);
  background: rgba(18, 59, 51, .72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
}

.benefit-card__image img,
.requirements__visual img,
.support-detail figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-card__body {
  padding: 21px 18px 22px;
}

.benefit-card__number {
  margin-bottom: 8px;
  color: var(--accent);
  font-family: var(--latin);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: .08em;
}

.benefit-card h3,
.phase-list h3,
.career-steps h3,
.hybrid-diagram h3,
.handover-note strong,
.job-comparison strong {
  color: var(--green-950);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: -.015em;
}

.benefit-card__body > p:not(.benefit-card__number) {
  margin-top: 13px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.benefit-card__details {
  margin-top: 16px;
  border-top: 1px solid var(--line);
}

.benefit-card__details summary {
  position: relative;
  padding: 13px 30px 13px 0;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.benefit-card__details summary::-webkit-details-marker {
  display: none;
}

.benefit-card__details summary::after {
  position: absolute;
  top: 50%;
  right: 3px;
  content: "+";
  font-size: 18px;
  font-weight: 400;
  transform: translateY(-52%);
}

.benefit-card__details[open] summary::after {
  content: "−";
}

.benefit-card__details div {
  padding: 0 0 18px;
}

.benefit-card__details p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.benefit-steps {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: var(--green-800);
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
}

.benefit-steps li:not(:last-child)::after {
  margin-left: 7px;
  color: var(--accent);
  content: "|";
}

.content-details,
.career-details,
.hybrid-details details,
.faq-list details {
  border-top: 1px solid var(--line);
}

.content-details {
  margin-top: 22px;
}

.content-details summary,
.career-details summary,
.hybrid-details summary,
.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 14px 48px 14px 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  cursor: pointer;
  list-style: none;
}

.content-details summary::-webkit-details-marker,
.career-details summary::-webkit-details-marker,
.hybrid-details summary::-webkit-details-marker,
.faq-list summary::-webkit-details-marker {
  display: none;
}

.content-details summary::before,
.content-details summary::after,
.career-details summary::before,
.career-details summary::after,
.hybrid-details summary::before,
.hybrid-details summary::after,
.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 15px;
  height: 1px;
  content: "";
  background: currentColor;
  transition: transform .2s ease;
}

.content-details summary::after,
.career-details summary::after,
.hybrid-details summary::after,
.faq-list summary::after {
  transform: rotate(90deg);
}

.content-details[open] summary::after,
.career-details[open] summary::after,
.hybrid-details details[open] summary::after,
.faq-list details[open] summary::after {
  transform: rotate(0);
}

.content-details__body {
  padding: 2px 0 4px;
}

.content-details__body > p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.specialty-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.specialty-list li {
  padding: 9px 10px;
  background: var(--green-050);
  font-size: 13px;
  font-weight: 600;
}

.specialty-list--primary {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
}

.specialty-list--primary li {
  padding: 11px 6px;
  color: var(--green-900);
  text-align: center;
}

.culture-band {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  padding: 14px 0;
  color: var(--ink);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.culture-band > div > span {
  color: var(--green-600);
  font-family: var(--latin);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
}

.culture-band h3 {
  margin-top: 5px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.45;
}

.culture-band ul {
  display: grid;
  gap: 0;
}

.culture-band li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 8px;
  padding: 8px 0;
  line-height: 1.5;
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
}

.culture-band li span {
  color: var(--green-600);
  font-family: var(--latin);
  font-weight: 600;
}

.workday {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.workday-layout {
  display: grid;
  gap: 16px;
}

.workday-timeline,
.workday-facts,
.workday-area {
  background: var(--green-050);
  border: var(--frame-border);
}

.workday-timeline {
  min-height: 260px;
  padding: var(--frame-padding);
}

.workday-timeline h3,
.workday-facts dt,
.workday-area dt {
  color: var(--green-900);
  font-family: var(--serif);
  font-weight: 700;
}

.workday-timeline h3 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  font-size: 22px;
}

.workday-timeline h3 span {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
}

.workday-schedule {
  margin-top: 18px;
  background: var(--white);
  border: 1px solid var(--line);
}

.workday-schedule li {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
}

.workday-schedule li:first-child {
  border-top: 0;
}

.workday-schedule li > time,
.workday-schedule li > span {
  color: var(--green-700);
  font-family: var(--latin);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.workday-schedule strong {
  color: var(--green-900);
  font-size: 15px;
}

.workday-schedule p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.workday-facts,
.workday-area {
  padding: 0 var(--frame-padding);
}

.workday-facts > div,
.workday-area > div {
  display: grid;
  gap: 5px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.workday-facts > div:first-child,
.workday-area > div:first-child {
  border-top: 0;
}

.workday-facts dt,
.workday-area dt {
  font-size: 14px;
}

.workday-facts dd,
.workday-area dd {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.workday-facts dd > span {
  display: block;
  margin-top: 3px;
}

.workday-count {
  display: block;
  color: var(--green-800);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.25;
}

.workday-tools {
  display: grid;
  gap: 8px;
}

.workday-tools li {
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.workday-tools li:first-child {
  padding-top: 0;
  border-top: 0;
}

.workday-tools span {
  display: block;
  color: var(--green-800);
  font-size: 12px;
  font-weight: 700;
}

.career {
  background: var(--cream);
}

.career-intro-grid {
  display: grid;
  gap: 26px;
}

.career-proof-number {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 0 18px;
  padding: 24px 0;
  border-top: var(--frame-border);
  border-bottom: var(--frame-border);
}

.career-proof-number > span {
  grid-column: 1 / -1;
  color: var(--green-600);
  font-family: var(--latin);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
}

.career-proof-number p {
  display: flex;
  align-items: baseline;
  color: var(--green-800);
  line-height: 1;
}

.career-proof-number strong {
  font-family: var(--latin);
  font-size: 104px;
  font-weight: 500;
}

.career-proof-number em {
  margin-left: 7px;
  font-family: var(--serif);
  font-size: 17px;
  font-style: normal;
}

.career-proof-number small {
  padding-bottom: 17px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.7;
}

.phase-list {
  position: relative;
  margin-top: 38px;
}

.phase-list::before {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  width: 1px;
  content: "";
  background: rgba(18, 59, 51, .18);
}

.phase-list li {
  position: relative;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  padding: 18px 0 26px;
}

.phase-list li::before {
  display: none;
  position: absolute;
  top: 25px;
  left: 11px;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--cream);
  border: 2px solid var(--green-600);
  border-radius: 50%;
}

.phase-list li > p {
  color: var(--green-700);
  font-family: var(--latin);
  font-size: 13px;
  letter-spacing: .08em;
}

.phase-list li > p strong {
  display: block;
  margin-top: 3px;
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
}

.phase-list h3 {
  font-size: 21px;
}

.phase-list span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
}

.career-details {
  margin-top: 28px;
  border-bottom: var(--frame-border);
}

.career-details summary {
  min-height: 66px;
  color: var(--green-900);
  font-size: 16px;
}

.career-steps {
  padding: 8px 0 28px;
}

.career-steps li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 14px;
  padding: 19px 0;
  border-top: 1px solid var(--line);
}

.career-steps li > span {
  padding-top: 5px;
  color: var(--green-700);
  font-family: var(--latin);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
}

.career-steps h3 {
  font-size: 19px;
}

.career-steps p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
}

.hybrid {
  color: var(--white);
  background: var(--green-950);
}

.section-heading--light h2,
.entry__intro h2 {
  color: var(--white);
}

.section-heading--light > p:last-child,
.entry__intro > p:not(.section-index):not(.entry__privacy) {
  color: rgba(255, 255, 255, .76);
}

.section-index--light,
.section-heading--light .section-index {
  color: rgba(255, 255, 255, .7);
}

.hybrid-diagram {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 12px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, .22);
  border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.hybrid-diagram__center {
  position: relative;
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  gap: 3px;
  width: 144px;
  min-height: 144px;
  margin: 0 auto 26px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 50%;
  text-align: center;
}

.hybrid-diagram__center::after {
  position: absolute;
  bottom: -31px;
  left: 50%;
  color: rgba(255, 255, 255, .7);
  content: "↓";
  font-family: var(--sans);
  font-size: 17px;
  transform: translateX(-50%);
}

.hybrid-diagram__center span,
.hybrid-diagram article > p {
  color: rgba(255, 255, 255, .7);
  font-family: var(--latin);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
}

.hybrid-diagram__center strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
}

.hybrid-diagram__branch,
.hybrid-diagram__support {
  min-height: 0;
  padding: 20px 16px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .18);
}

.hybrid-diagram h3 {
  margin-top: 7px;
  color: var(--white);
  font-size: 18px;
}

.hybrid-diagram article > span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, .69);
  font-size: 12px;
  line-height: 1.75;
}

.hybrid-diagram__plus {
  color: rgba(255, 255, 255, .7);
  font-size: 25px;
  text-align: center;
}

.hybrid-diagram__branch--clinic {
  position: relative;
  margin-bottom: 25px;
}

.hybrid-diagram__branch--clinic::after {
  position: absolute;
  bottom: -31px;
  left: 50%;
  color: rgba(255, 255, 255, .7);
  content: "↓";
  font-size: 17px;
  transform: translateX(-50%);
}

.hybrid-diagram__support {
  grid-column: 1 / -1;
  min-height: 0;
  text-align: center;
}

.hybrid-model-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, .66);
  font-size: 12px;
  line-height: 1.8;
}

.handover-note {
  display: grid;
  gap: 9px;
  margin-top: 30px;
  padding: 23px 0;
  border-top: 1px solid rgba(255, 255, 255, .25);
  border-bottom: 1px solid rgba(255, 255, 255, .25);
}

.handover-note > p {
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
}

.handover-note strong {
  color: var(--white);
  font-size: 20px;
}

.handover-note span {
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

.hybrid-cta {
  margin-top: 24px;
}

.hybrid-cta .button {
  width: 100%;
}

.hybrid-details {
  margin-top: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, .23);
}

.hybrid-details details {
  border-color: rgba(255, 255, 255, .23);
}

.hybrid-details summary {
  min-height: 66px;
  color: var(--white);
  font-size: 16px;
}

.hybrid-details__body {
  padding: 4px 0 28px;
}

.support-detail {
  display: grid;
  gap: 20px;
}

.support-detail figure {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.support-list {
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.support-list li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.support-list strong {
  color: var(--white);
  font-size: 14px;
}

.support-list span {
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
}

.detail-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
}

.organization-map {
  display: grid;
  gap: 10px;
}

.organization-parent,
.organization-group article,
.organization-clinic {
  border: 1px solid rgba(255, 255, 255, .24);
}

.organization-parent {
  display: grid;
  gap: 16px;
  padding: 18px 20px;
  background: #123b33;
}

.organization-parent img {
  width: min(100%, 300px);
  max-height: 80px;
  object-fit: contain;
  object-position: left center;
}

.organization-parent p,
.organization-group p {
  display: grid;
  gap: 5px;
}

.organization-parent strong,
.organization-group strong,
.organization-clinic strong {
  color: var(--white);
  font-size: 16px;
}

.organization-parent span,
.organization-group span,
.organization-clinic span,
.organization-clinic p {
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  line-height: 1.75;
}

.organization-connector {
  position: relative;
  width: 100%;
  height: 22px;
}

.organization-connector::before {
  position: absolute;
  top: -10px;
  bottom: 10px;
  left: 50%;
  width: 1px;
  content: "";
  background: rgba(255, 255, 255, .38);
}

.organization-connector::after {
  position: absolute;
  bottom: 3px;
  left: 50%;
  width: 7px;
  height: 7px;
  content: "";
  border-right: 1px solid rgba(255, 255, 255, .7);
  border-bottom: 1px solid rgba(255, 255, 255, .7);
  transform: translateX(-50%) rotate(45deg);
}

.organization-group {
  display: grid;
  gap: 10px;
}

.organization-group article {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 108px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, .055);
}

.organization-group img {
  width: 120px;
  max-height: 62px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 1;
}

.organization-cooperation {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-align: center;
}

.organization-cooperation::before,
.organization-cooperation::after {
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, .24);
}

.organization-clinic {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  text-align: center;
  background: rgba(255, 255, 255, .1);
}

.organization-clinic__logo {
  width: min(100%, 260px);
  max-height: 96px;
  margin-inline: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.organization-clinic > div {
  display: grid;
  gap: 4px;
}

.requirements {
  background: var(--white);
}

.requirements__visual {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
  margin-bottom: 24px;
  overflow: hidden;
}

.requirements__visual img {
  object-position: center 48%;
}

.jobs-desktop {
  display: none;
}

.job-comparison {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.job-comparison th,
.job-comparison td {
  padding: 16px 18px;
  border: 1px solid var(--line);
  line-height: 1.65;
  text-align: left;
  vertical-align: middle;
}

.job-comparison thead th {
  color: var(--green-950);
  background: var(--green-050);
}

.job-comparison thead th:first-child,
.job-comparison tbody th {
  width: 17%;
  color: var(--muted);
  background: var(--cream);
  font-size: 12px;
}

.job-comparison thead small,
.job-comparison thead strong {
  display: block;
}

.job-comparison thead small {
  color: var(--green-600);
  font-family: var(--latin);
  font-size: 11px;
  letter-spacing: .12em;
}

.job-comparison thead strong {
  margin-top: 4px;
  font-size: 19px;
}

.job-comparison td {
  font-size: 14px;
  font-weight: 600;
}

.job-comparison tr:nth-child(3) td {
  color: var(--green-800);
  font-family: var(--serif);
  font-size: 16px;
}

.jobs-mobile {
  display: grid;
  gap: 20px;
}

.job-panel {
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--line);
}

.job-panel header {
  display: grid;
  gap: 8px;
  padding: 20px;
  background: var(--green-050);
}

.job-panel header > span {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.job-panel header small {
  color: var(--green-700);
  font-family: var(--latin);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
}

.job-panel header strong {
  color: var(--green-950);
  font-family: var(--serif);
  font-size: 21px;
}

.job-panel header em {
  color: var(--green-800);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}

.job-specs {
  padding: 0 20px 20px;
}

.job-specs > div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.job-specs dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.job-specs dd {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
}

.requirements__note {
  margin-top: 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.faq {
  background: var(--green-050);
}

.faq-list {
  border-bottom: var(--frame-border);
}

.faq-list details {
  border-color: rgba(18, 59, 51, .18);
}

.faq-list summary {
  min-height: 74px;
  padding-block: 17px;
  padding-left: 40px;
  color: var(--green-950);
  font-family: var(--serif);
  font-size: 16px;
}

.faq-list summary span {
  position: absolute;
  top: 17px;
  left: 0;
  color: var(--green-600);
  font-family: var(--latin);
  font-size: 21px;
}

.faq-list details > p {
  padding: 0 4px 22px 40px;
  color: var(--muted);
  font-size: 14px;
}

.entry {
  position: relative;
  padding-block: 44px 48px;
  color: var(--white);
  background: var(--green-950);
}

.entry__background {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 59, 51, .89), rgba(18, 59, 51, .98)),
    url("assets/images/lounge.webp") center / cover no-repeat;
}

.entry__inner {
  position: relative;
  display: grid;
  gap: 22px;
}

.entry__intro > p:not(.section-index):not(.entry__privacy) {
  margin-top: 17px;
  font-size: 15px;
}

.entry-actions {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.selection-flows {
  display: grid;
  gap: 20px;
  margin-top: 26px;
}

.selection-details {
  margin-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .28);
  border-bottom: 1px solid rgba(255, 255, 255, .28);
}

.selection-details > summary {
  position: relative;
  min-height: 56px;
  padding: 13px 34px 13px 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.selection-details > summary::-webkit-details-marker {
  display: none;
}

.selection-details > summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  content: "+";
  font-size: 20px;
  transform: translateY(-50%);
}

.selection-details[open] > summary::after {
  content: "−";
}

.selection-details .selection-flows {
  margin-top: 0;
  padding: 6px 0 22px;
}

.selection-flows h3 {
  color: var(--white);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
}

.contact-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 9px;
}

.contact-flow--application {
  grid-template-columns: repeat(2, 1fr);
}

.contact-flow li {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, .32);
  color: rgba(255, 255, 255, .8);
  font-size: 12px;
  line-height: 1.55;
}

.contact-flow span {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, .7);
  font-family: var(--latin);
  font-size: 14px;
  letter-spacing: .08em;
}

.entry__privacy {
  margin-top: 14px;
  color: rgba(255, 255, 255, .6);
  font-size: 12px;
}

.entry-form {
  display: grid;
  gap: 15px;
  padding: 24px 20px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
}

.form-field {
  min-width: 0;
}

.form-field label,
.form-field legend {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 700;
}

.form-field label span,
.form-field legend span {
  margin-left: 5px;
  color: var(--danger);
  font-size: 11px;
}

.form-field label small {
  margin-left: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  background: var(--white);
  border: var(--frame-border);
  border-radius: 0;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-field textarea {
  min-height: 104px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(18, 59, 51, .12);
}

.form-field [aria-invalid="true"] {
  border-color: var(--danger);
}

fieldset.form-field {
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-grid {
  display: grid;
  gap: 7px;
}

.choice-grid label {
  position: relative;
  margin: 0;
}

.choice-grid input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  opacity: 0;
}

.choice-grid label span {
  display: flex;
  align-items: center;
  min-height: 46px;
  margin: 0;
  padding: 9px 11px 9px 38px;
  color: var(--ink);
  background: var(--green-050);
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 600;
}

.choice-grid label span::before {
  position: absolute;
  top: 50%;
  left: 13px;
  width: 15px;
  height: 15px;
  content: "";
  background: var(--white);
  border: var(--frame-border);
  border-radius: 2px;
  transform: translateY(-50%);
}

.choice-grid input:checked + span {
  color: var(--green-900);
  background: var(--green-050);
  border-color: var(--green-600);
}

.choice-grid input:checked + span::before {
  border: 4px solid var(--green-700);
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 12px;
  line-height: 1.6;
}

.privacy-check input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--green-700);
}

.privacy-check a {
  color: var(--green-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-error {
  min-height: 0;
  margin-top: 4px;
  color: var(--danger);
  font-size: 12px;
  line-height: 1.5;
}

.form-error:empty {
  display: none;
}

.button--submit {
  width: 100%;
  border: 0;
}

.form-note {
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.mobile-sticky {
  position: fixed;
  z-index: 90;
  right: 10px;
  bottom: max(10px, env(safe-area-inset-bottom));
  left: 10px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(18px);
  transition: visibility .25s, opacity .25s ease, transform .25s ease;
}

.mobile-sticky.is-visible {
  visibility: visible;
  opacity: 1;
  transform: none;
}

.mobile-sticky a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 9px 18px;
  color: var(--white);
  background: var(--green-700);
  box-shadow: 0 12px 30px rgba(18, 59, 51, .27);
}

.mobile-sticky span {
  font-size: 11px;
  line-height: 1.4;
}

.mobile-sticky strong {
  font-size: 15px;
  white-space: nowrap;
}

.site-footer {
  padding-block: 42px calc(92px + env(safe-area-inset-bottom));
  color: rgba(255, 255, 255, .76);
  background: var(--green-950);
}

.site-footer__main {
  display: grid;
  gap: 28px;
}

.footer-brand img {
  filter: brightness(0) invert(1);
}

.footer-brand span {
  color: rgba(255, 255, 255, .78);
  border-color: rgba(255, 255, 255, .22);
}

.footer-organization > p {
  margin-bottom: 14px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
}

.footer-organization dl {
  display: grid;
  gap: 10px;
}

.footer-organization dl > div {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
}

.footer-organization dt {
  color: rgba(255, 255, 255, .54);
  font-size: 13px;
  font-weight: 600;
}

.footer-organization dd {
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  line-height: 1.75;
}

.footer-organization__link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 16px;
  padding-inline: 16px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .4);
  font-size: 13px;
  font-weight: 700;
}

.site-footer nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
}

.site-footer nav a,
.site-footer__bottom a {
  min-height: 34px;
  font-size: 12px;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.site-footer__bottom small {
  font-family: var(--latin);
  font-size: 12px;
  letter-spacing: .06em;
}

.legal-page,
.thanks-page {
  min-height: 100vh;
  background: var(--cream);
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 40px), 980px);
  min-height: 74px;
  margin-inline: auto;
  border-bottom: 1px solid var(--line);
}

.legal-header__back {
  color: var(--green-700);
  font-size: 12px;
  font-weight: 700;
}

.legal-main {
  width: min(calc(100% - 40px), 880px);
  margin-inline: auto;
  padding-block: 58px 80px;
}

.section-kicker {
  margin-bottom: 8px;
  color: var(--green-700);
  font-family: var(--latin);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
}

.legal-title > p:last-child {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.legal-content {
  margin-top: 42px;
  padding: 26px 20px;
  background: var(--white);
  border: 1px solid var(--line);
}

.legal-content section + section {
  margin-top: 34px;
}

.legal-content h2 {
  margin-bottom: 9px;
  color: var(--green-900);
  font-family: var(--serif);
  font-size: 19px;
}

.legal-content p,
.legal-content li,
.legal-content address {
  color: var(--muted);
  font-size: 14px;
}

.legal-content ul {
  padding-left: 1.3em;
}

.legal-content li {
  list-style: disc;
}

.legal-content a {
  color: var(--green-700);
  text-decoration: underline;
}

.legal-content__date {
  margin-top: 36px;
  text-align: right;
}

.thanks-page {
  display: grid;
  place-items: center;
  padding: 20px;
}

.thanks-main {
  width: min(100%, 680px);
  padding: 44px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
}

.thanks-main > img {
  width: 148px;
  margin: 0 auto 28px;
}

.thanks-main > p:not(.section-kicker) {
  margin: 18px auto 28px;
  color: var(--muted);
  font-size: 14px;
}

@media (min-width: 700px) {
  :root {
    --header-height: 76px;
  }

  .container {
    width: min(calc(100% - 72px), 1180px);
  }

  .brand img,
  .brand__logo,
  .footer-brand img {
    width: 136px;
  }

  .hero {
    min-height: 890px;
  }

  .hero__visual img {
    object-position: 64% center;
  }

  .hero__shade {
    background: linear-gradient(90deg, rgba(237, 244, 241, .98) 0%, rgba(237, 244, 241, .92) 40%, rgba(237, 244, 241, .2) 72%, rgba(237, 244, 241, 0) 100%);
  }

  .hero__inner {
    align-items: center;
    min-height: 814px;
  }

  .hero__content {
    width: 55%;
    padding-block: 48px 128px;
  }

  .hero h1 {
    width: max-content;
    max-width: calc(100vw - 72px);
    font-size: clamp(46px, 6.4vw, 52px);
    line-height: 1.3;
  }

  .hero-title__quiet {
    font-size: clamp(38px, 5.5vw, 44px);
  }

  .hero-title__lead-in,
  .hero-title__resolve {
    display: inline;
    font-size: inherit;
    white-space: normal;
  }

  .hero__emphasis {
    margin-top: 14px;
    font-size: 19px;
  }

  .hero__lead {
    margin-top: 14px;
    font-size: 15px;
  }

  .hero__supplement {
    margin-top: 12px;
    font-size: 14px;
  }

  .hero__actions {
    display: flex;
    gap: 10px;
    margin-top: 22px;
  }

  .hero__actions .button {
    min-width: 180px;
    padding-inline: 18px;
  }

  .hero__actions .button:first-child {
    min-width: 230px;
  }

  .hero-conditions {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .hero-conditions > div {
    display: block;
    min-height: 68px;
    padding: 10px 18px;
    border-width: 0 0 0 1px;
  }

  .hero-conditions > div:nth-child(-n+2) {
    grid-column: auto;
  }

  .hero-conditions > div:last-child {
    border-right: 1px solid rgba(18, 59, 51, .13);
  }

  .hero-conditions dd {
    margin-top: 3px;
  }

  .hero__note {
    max-width: 520px;
  }

  .section {
    padding-block: 108px;
  }

  .section-heading {
    margin-bottom: 48px;
  }

  .section-heading h2,
  .entry__intro h2,
  .legal-title h1,
  .thanks-main h1 {
    font-size: clamp(37px, 4.2vw, 44px);
    line-height: 1.45;
  }

  .section-heading h2 br {
    display: initial;
  }

  .section-heading > p:last-child {
    margin-top: 20px;
    font-size: 16px;
  }

  .work-style .container {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 54px;
  }

  .work-style .section-heading {
    margin-bottom: 0;
  }

  .workstyle-system {
    grid-column: 1 / -1;
    margin-top: -12px;
  }

  .benefit-layout {
    grid-template-columns: 1fr 1fr;
    gap: 42px 24px;
  }

  .benefit-card--01 {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    border: 0;
    background: var(--green-050);
  }

  .benefit-card--01 .benefit-card__image {
    aspect-ratio: auto;
    min-height: 470px;
  }

  .benefit-card--01 .benefit-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .benefit-card--02 {
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    grid-column: 1 / -1;
    border: 0;
    border-top: 1px solid var(--line);
  }

  .benefit-card--02 .benefit-card__body {
    grid-row: 1;
    grid-column: 1;
    padding-inline: 0 28px;
  }

  .benefit-card--02 .benefit-card__image {
    grid-row: 1;
    grid-column: 2;
    aspect-ratio: auto;
  }

  .benefit-card--03 {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    grid-column: 1 / -1;
    align-items: stretch;
    border: 0;
    border-top: 1px solid var(--line);
  }

  .benefit-card--03 .benefit-card__image {
    grid-column: 2;
    aspect-ratio: auto;
  }

  .benefit-card--03 .benefit-card__body {
    grid-row: 1;
    grid-column: 1;
    padding-left: 0;
  }

  .benefit-card__image {
    aspect-ratio: 16 / 11;
  }

  .benefit-card__body {
    padding: 30px 28px 34px;
  }

  .benefit-card__details summary {
    display: none;
  }

  .benefit-card__details:not([open]) > div {
    display: block;
  }

  .benefit-card__details div {
    padding-block: 14px 0;
  }

  .culture-band {
    grid-template-columns: .72fr 1.28fr;
    align-items: center;
    gap: 34px;
    margin-top: 36px;
    padding: 34px 0;
  }

  .culture-band h3 {
    font-size: 24px;
  }

  .culture-band ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .culture-band li {
    min-height: 100px;
    grid-template-columns: 1fr;
    padding: 16px 0 10px;
  }

  .benefit-card h3,
  .phase-list h3,
  .career-steps h3,
  .hybrid-diagram h3,
  .handover-note strong,
  .job-comparison strong {
    font-size: 24px;
  }

  .career-intro-grid {
    grid-template-columns: 1.28fr .72fr;
    align-items: center;
    gap: 64px;
  }

  .career-intro-grid .section-heading {
    margin-bottom: 0;
  }

  .career-proof-number {
    padding: 34px 0;
  }

  .career-proof-number strong {
    font-size: 150px;
  }

  .phase-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
    border-top: var(--frame-border);
  }

  .phase-list::before {
    display: none;
  }

  .phase-list li {
    grid-template-columns: 1fr;
    align-content: start;
    min-height: 260px;
    padding: 28px 24px;
    border: 0;
  }

  .phase-list li::before {
    display: none;
  }

  .phase-list li:first-child {
    padding-left: 0;
  }

  .phase-list li:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .phase-list li > p strong {
    font-size: 52px;
  }

  .phase-list h3 {
    font-size: 23px;
  }

  .career-details {
    margin-top: 34px;
  }

  .career-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 28px;
  }

  .career-steps li {
    grid-template-columns: 76px 1fr;
  }

  .hybrid-diagram {
    grid-template-columns: 1fr 90px 1fr;
    gap: 20px;
    padding: 50px 4%;
  }

  .hybrid-diagram__center {
    position: relative;
    z-index: 1;
    width: 170px;
    min-height: 170px;
    margin-bottom: 24px;
  }

  .hybrid-diagram__center::before,
  .hybrid-diagram__center::after {
    position: absolute;
    top: calc(100% + 13px);
    bottom: auto;
    width: 160px;
    height: 1px;
    content: "";
    background: rgba(255, 255, 255, .24);
  }

  .hybrid-diagram__center::before {
    right: 50%;
    transform: rotate(-13deg);
    transform-origin: right;
  }

  .hybrid-diagram__center::after {
    left: 50%;
    transform: rotate(13deg);
    transform-origin: left;
  }

  .hybrid-diagram__branch {
    min-height: 192px;
    padding: 26px 24px;
  }

  .hybrid-diagram__branch--clinic {
    margin-bottom: 0;
  }

  .hybrid-diagram__branch--clinic::after {
    display: none;
  }

  .hybrid-diagram__support {
    max-width: 720px;
    width: 100%;
    margin: 6px auto 0;
    padding: 22px 28px;
  }

  .handover-note {
    grid-template-columns: 170px 1fr;
    gap: 8px 26px;
    padding-block: 28px;
  }

  .handover-note > p {
    grid-row: 1 / 3;
    padding-top: 6px;
  }

  .handover-note strong {
    font-size: 23px;
  }

  .hybrid-cta .button {
    width: auto;
    min-width: 300px;
  }

  .support-detail {
    grid-template-columns: .8fr 1.2fr;
    gap: 28px;
  }

  .workday-layout {
    grid-template-columns: 3fr 2fr;
    align-items: stretch;
  }

  .workday-timeline {
    grid-row: 1;
    grid-column: 1;
    min-height: 360px;
  }

  .workday-facts {
    grid-row: 1;
    grid-column: 2;
  }

  .workday-area {
    grid-column: 1 / -1;
  }

  .organization-parent {
    grid-template-columns: minmax(250px, 300px) 1fr;
    align-items: center;
    gap: 28px;
    padding: 18px 26px;
  }

  .organization-group {
    grid-template-columns: 1fr 1fr;
  }

  .organization-group article {
    grid-template-columns: 150px 1fr;
    min-height: 116px;
    padding: 16px 20px;
  }

  .organization-group img {
    width: 150px;
    max-height: 68px;
  }

  .organization-clinic {
    grid-template-columns: minmax(220px, 280px) 1fr;
    align-items: center;
    gap: 28px;
    padding: 18px 26px;
    text-align: left;
  }

  .organization-clinic__logo {
    width: 280px;
    margin-inline: 0;
  }

  .requirements-intro-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 46px;
    margin-bottom: 42px;
  }

  .requirements-intro-grid .section-heading {
    margin-bottom: 0;
  }

  .requirements__visual {
    aspect-ratio: 3 / 2;
    height: auto;
    margin-bottom: 0;
  }

  .jobs-mobile {
    display: none;
  }

  .jobs-desktop {
    display: block;
  }

  .faq-list summary {
    min-height: 82px;
    padding-left: 52px;
    font-size: 18px;
  }

  .faq-list summary span {
    top: 18px;
    font-size: 25px;
  }

  .faq-list details > p {
    max-width: 880px;
    padding: 0 52px 26px;
    font-size: 15px;
  }

  .entry {
    padding-block: 108px;
  }

  .entry__inner {
    grid-template-columns: .76fr 1.24fr;
    align-items: start;
    gap: 44px;
  }

  .entry__intro {
    position: sticky;
    top: calc(var(--header-height) + 32px);
  }

  .selection-details {
    margin-top: 24px;
    border: 0;
  }

  .selection-details > summary {
    display: none;
  }

  .selection-details:not([open]) > .selection-flows {
    display: grid;
  }

  .selection-details .selection-flows {
    padding: 0;
  }

  .entry-actions {
    max-width: 360px;
  }

  .entry-form {
    grid-template-columns: 1fr 1fr;
    gap: 18px 16px;
    padding: 32px;
  }

  .form-field--wide {
    grid-column: 1 / -1;
  }

  .choice-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .mobile-sticky {
    display: none;
  }

  .site-footer {
    padding-block: 52px;
  }

  .site-footer__main {
    grid-template-columns: minmax(180px, .7fr) minmax(360px, 1.4fr) minmax(210px, .9fr);
    align-items: start;
    gap: 40px 54px;
  }

  .site-footer nav {
    grid-template-columns: 1fr 1fr;
    justify-content: stretch;
  }

  .site-footer__bottom {
    margin-top: 36px;
  }

  .legal-header {
    width: min(calc(100% - 72px), 980px);
  }

  .legal-main {
    width: min(calc(100% - 72px), 880px);
    padding-block: 80px 112px;
  }

  .legal-content {
    padding: 44px 48px;
  }

  .thanks-main {
    padding: 64px 56px;
  }
}

@media (min-width: 700px) and (max-width: 899px) {
  .site-footer__main {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 34px 40px;
  }

  .site-footer nav {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 700px) and (max-width: 1039px) {
  .hero__content {
    width: 55%;
    max-width: 500px;
  }

  .hero h1 {
    width: auto;
    max-width: 500px;
    font-size: clamp(44px, 5.5vw, 50px);
    line-height: 1.3;
    text-wrap: balance;
  }

  .hero__visual img {
    object-position: 68% center;
  }
}

@media (min-width: 1180px) {
  .menu-button {
    display: none;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(12px, 1.35vw, 20px);
    margin-left: auto;
  }

  .desktop-nav a {
    position: relative;
    padding-block: 10px;
    color: var(--green-900);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
  }

  .header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    margin-left: clamp(14px, 1.5vw, 24px);
    padding: 12px 18px;
    color: var(--white);
    background: var(--green-700);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
  }

  .mobile-menu {
    display: none;
  }
}

@media (min-width: 1040px) {
  :root {
    --header-height: 88px;
  }

  .brand img,
  .brand__logo {
    width: 148px;
  }

  .hero {
    min-height: 900px;
  }

  .hero__inner {
    min-height: 812px;
  }

  .hero__content {
    width: 58%;
    max-width: 700px;
  }

  .hero h1 {
    font-size: clamp(56px, 4.5vw, 64px);
  }

  .hero-title__quiet {
    font-size: clamp(48px, 3.7vw, 52px);
  }

  .hero__emphasis {
    font-size: 20px;
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero-conditions {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1180px;
  }

  .hero-conditions > div {
    display: block;
    min-height: 70px;
  }

  .hero-conditions dd {
    margin-top: 4px;
  }

  .section {
    padding-block: 120px;
  }

  .section-heading h2,
  .entry__intro h2,
  .legal-title h1,
  .thanks-main h1 {
    font-size: clamp(42px, 3.8vw, 48px);
  }

  .work-style {
    padding-block: 80px;
  }

  .workstyle-paths {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .workstyle-paths li {
    display: block;
    padding: 14px 16px;
    border-bottom: 0;
    border-left: 1px solid rgba(18, 59, 51, .18);
  }

  .workstyle-paths > li > span {
    display: block;
    margin-bottom: 10px;
  }

  .workstyle-paths h3 {
    font-size: 19px;
  }

  .benefit-layout {
    gap: 24px;
  }

  .benefit-card--01 {
    grid-template-columns: 1.1fr .9fr;
  }

  .benefit-card__body {
    padding: 36px 34px 40px;
  }

  .career-intro-grid {
    gap: 96px;
  }

  .phase-list li {
    min-height: 274px;
    padding-inline: 36px;
  }

  .career-steps {
    gap: 0 48px;
  }

  .hybrid-diagram {
    padding-inline: 8%;
  }

  .hybrid-details summary,
  .career-details summary {
    min-height: 72px;
    font-size: 17px;
  }

  .requirements__visual {
    height: auto;
  }

  .entry__inner {
    grid-template-columns: .82fr 1.18fr;
    gap: 72px;
  }

  .entry-form {
    padding: 38px;
  }
}

@media (min-width: 1280px) {
  .hero__visual img {
    object-position: center;
  }

  .section-heading {
    margin-bottom: 54px;
  }

  .benefit-card--01 .benefit-card__image {
    min-height: 560px;
  }

}

@media (hover: hover) {
  .button:hover,
  .header-cta:hover {
    transform: translateY(-2px);
  }

  .button--primary:hover,
  .button--submit:hover,
  .header-cta:hover {
    background: var(--green-800);
  }

  .button--ghost:hover {
    color: var(--white);
    background: var(--green-800);
    border-color: var(--green-800);
  }

  .desktop-nav a:hover,
  .site-footer a:hover,
  .legal-header__back:hover {
    color: var(--green-600);
  }

  summary:hover {
    color: var(--green-600);
  }
}

/* ========================================================================== 
   Visual refinement v10 — title rhythm, FV hierarchy and crisp icon rendering
   ========================================================================== */

.hero h1 {
  color: #111;
}

.hero-title__boxed {
  color: #fff;
  background: linear-gradient(135deg, #006956 0%, #00896b 58%, #00a582 100%);
  border-color: transparent;
}

.hero__supplement {
  max-width: 680px;
  margin-top: 4px;
  color: #747d79;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.7;
}

.section-heading h2 {
  font-weight: 700;
}

.section-index,
.section-index--light,
.section-heading--light .section-index,
.entry__intro .section-index,
.work-style .section-index,
.career .section-index,
.entry__intro .section-index {
  top: clamp(10px, 1.3vw, 18px);
  width: max-content;
  max-width: none;
  padding-right: .08em;
  overflow: visible;
  font-size: clamp(58px, 7.1vw, 102px);
  line-height: .82;
  letter-spacing: .035em;
  opacity: .2;
}

/* Use the alpha channel of the large source sprite as a mask. This removes
   the fuzzy double-shadow edge while preserving the supplied icon shapes. */
.sprite-icon,
.workstyle-paths > li > .sprite-icon {
  background-color: #00896b;
  background-image: none;
  background-repeat: no-repeat;
  background-size: auto;
  filter: none;
  image-rendering: auto;
  -webkit-mask-image: url("assets/images/icon-sprite.png?v=20260818-crisp-icons");
  mask-image: url("assets/images/icon-sprite.png?v=20260818-crisp-icons");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 400% 200%;
  mask-size: 400% 200%;
}

.sprite-icon--learn {
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
}

.sprite-icon--schedule {
  -webkit-mask-position: 33.333% 0;
  mask-position: 33.333% 0;
}

.sprite-icon--independence {
  -webkit-mask-position: 66.667% 0;
  mask-position: 66.667% 0;
}

.sprite-icon--hybrid {
  -webkit-mask-position: 100% 0;
  mask-position: 100% 0;
}

.sprite-icon--self {
  -webkit-mask-position: 0 100%;
  mask-position: 0 100%;
}

.sprite-icon--clinic {
  -webkit-mask-position: 33.333% 100%;
  mask-position: 33.333% 100%;
}

.sprite-icon--support {
  -webkit-mask-position: 66.667% 100%;
  mask-position: 66.667% 100%;
}

.hybrid-diagram__center > .sprite-icon,
.hybrid-diagram article > .sprite-icon {
  background-color: #00896b;
  filter: none;
  opacity: 1;
}

.hybrid {
  background: #006956;
}

.hybrid-diagram__center strong,
.hybrid-diagram h3 {
  color: #006956;
}

.hybrid-cta .button {
  color: #00896b;
  background: #fff;
  border-color: #fff;
}

.career-proof-number strong,
.benefit-card__number,
.phase-list li > p strong {
  font-style: italic;
}

.job-comparison {
  border: 1px solid #006956;
}

.job-comparison th,
.job-comparison td {
  border-color: rgba(0, 105, 86, .38);
}

.job-comparison thead th,
.job-comparison thead th:first-child,
.job-comparison tbody th,
.job-panel header {
  border: 1px solid #006956;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .28);
}

.job-panel {
  border-color: #006956;
}

@media (max-width: 699px) {
  .hero__requirements-link {
    order: 7;
  }

  .hero__supplement {
    order: 8;
    margin-top: 2px;
    font-size: 10.5px;
  }

  .section-index,
  .section-index--light,
  .section-heading--light .section-index,
  .entry__intro .section-index,
  .work-style .section-index,
  .career .section-index,
  .entry__intro .section-index {
    top: 16px;
    font-size: clamp(38px, 11.8vw, 46px);
    letter-spacing: .01em;
  }
}

@media (min-width: 700px) {
  .phase-list li:first-child,
  .phase-list li:last-child {
    padding: 30px 28px;
  }
}

@media (min-width: 1040px) {
  #work-style-title,
  #benefits-title,
  #workday-title,
  #career-title,
  #hybrid-title {
    max-width: none;
    font-size: clamp(32px, 3.05vw, 44px);
    white-space: nowrap;
  }

  .work-style .section-heading,
  .benefits .section-heading,
  .workday .section-heading,
  .career .section-heading,
  .hybrid .section-heading {
    max-width: none;
  }

  .benefits .section-heading > p:last-child,
  .requirements .section-heading > p:last-child {
    max-width: none;
    font-size: clamp(13px, 1.15vw, 16px);
    letter-spacing: -.01em;
    white-space: nowrap;
  }
}

@media (hover: hover) {
  .hybrid-cta .button:hover {
    color: #fff;
    background: #00896b;
    border-color: #fff;
  }
}

/* ========================================================================== 
   Final visual refinement v11 — icon fallback, FV and index colors
   ========================================================================== */

.hero-title__boxed {
  color: #fff;
  background: linear-gradient(135deg, #009d77 0%, #00b98b 52%, #00cc99 100%);
  border-color: transparent;
  box-shadow: none;
  filter: none;
  text-shadow: none;
}

.hero__actions .button,
.hero__actions .button--primary,
.hero__actions .button--ghost {
  color: #00896b;
  background: transparent;
  border: 1.5px solid #00896b;
  box-shadow: none;
}

.section-index,
.section-index--light,
.section-heading--light .section-index,
.entry__intro .section-index,
.work-style .section-index,
.career .section-index,
.workday .section-index,
.hybrid .section-index {
  top: clamp(10px, 1.3vw, 18px);
  width: max-content;
  max-width: none;
  padding-right: .08em;
  overflow: visible;
  font-size: clamp(58px, 7.1vw, 102px);
  line-height: .82;
  letter-spacing: .035em;
  opacity: .2;
}

.benefits .section-index,
.workday .section-index,
.requirements .section-index,
.faq .section-index {
  color: #4f5b57;
  opacity: .2;
}

.hybrid .section-index {
  color: #fff;
  opacity: .2;
}

.sprite-icon,
.workstyle-paths > li > .sprite-icon {
  background-color: transparent;
  background-image: url("assets/images/icon-sprite.png?v=20260818-visible-icons");
  background-repeat: no-repeat;
  background-size: 400% 200%;
  filter: brightness(0) saturate(100%) invert(35%) sepia(82%) saturate(1130%) hue-rotate(126deg) brightness(92%) contrast(101%);
  -webkit-mask-image: none;
  mask-image: none;
}

.sprite-icon--learn {
  background-position: 0 0;
}

.sprite-icon--schedule {
  background-position: 33.333% 0;
}

.sprite-icon--independence {
  background-position: 66.667% 0;
}

.sprite-icon--hybrid {
  background-position: 100% 0;
}

.sprite-icon--self {
  background-position: 0 100%;
}

.sprite-icon--clinic {
  background-position: 33.333% 100%;
}

.sprite-icon--support {
  background-position: 66.667% 100%;
}

.hybrid-diagram__center > .sprite-icon,
.hybrid-diagram article > .sprite-icon {
  filter: brightness(0) saturate(100%) invert(35%) sepia(82%) saturate(1130%) hue-rotate(126deg) brightness(92%) contrast(101%);
  opacity: 1;
}

@media (max-width: 699px) {
  .section-index,
  .section-index--light,
  .section-heading--light .section-index,
  .entry__intro .section-index,
  .work-style .section-index,
  .career .section-index,
  .workday .section-index,
  .hybrid .section-index {
    top: 16px;
    font-size: clamp(38px, 11.8vw, 46px);
    letter-spacing: .01em;
  }
}

@media (hover: hover) {
  .hero__actions .button:hover,
  .hero__actions .button--primary:hover,
  .hero__actions .button--ghost:hover {
    color: #006956;
    background: rgba(255, 255, 255, .34);
    border-color: #006956;
  }
}

/* ========================================================================== 
   Final visual refinement v11 — icon fallback, FV and index colors
   ========================================================================== */

.hero-title__boxed {
  color: #fff;
  background: linear-gradient(135deg, #009d77 0%, #00b98b 52%, #00cc99 100%);
  border-color: transparent;
  box-shadow: none;
  filter: none;
  text-shadow: none;
}

.hero__actions .button,
.hero__actions .button--primary,
.hero__actions .button--ghost {
  color: #00896b;
  background: transparent;
  border: 1.5px solid #00896b;
  box-shadow: none;
}

.section-index,
.section-index--light,
.section-heading--light .section-index,
.entry__intro .section-index,
.work-style .section-index,
.career .section-index,
.workday .section-index,
.hybrid .section-index {
  top: clamp(10px, 1.3vw, 18px);
  width: max-content;
  max-width: none;
  padding-right: .08em;
  overflow: visible;
  font-size: clamp(58px, 7.1vw, 102px);
  line-height: .82;
  letter-spacing: .035em;
  opacity: .2;
}

.benefits .section-index,
.workday .section-index,
.requirements .section-index,
.faq .section-index {
  color: #4f5b57;
  opacity: .2;
}

.hybrid .section-index {
  color: #fff;
  opacity: .2;
}

.sprite-icon,
.workstyle-paths > li > .sprite-icon {
  background-color: transparent;
  background-image: url("assets/images/icon-sprite.png?v=20260818-visible-icons");
  background-repeat: no-repeat;
  background-size: 400% 200%;
  filter: brightness(0) saturate(100%) invert(35%) sepia(82%) saturate(1130%) hue-rotate(126deg) brightness(92%) contrast(101%);
  -webkit-mask-image: none;
  mask-image: none;
}

.sprite-icon--learn {
  background-position: 0 0;
}

.sprite-icon--schedule {
  background-position: 33.333% 0;
}

.sprite-icon--independence {
  background-position: 66.667% 0;
}

.sprite-icon--hybrid {
  background-position: 100% 0;
}

.sprite-icon--self {
  background-position: 0 100%;
}

.sprite-icon--clinic {
  background-position: 33.333% 100%;
}

.sprite-icon--support {
  background-position: 66.667% 100%;
}

.hybrid-diagram__center > .sprite-icon,
.hybrid-diagram article > .sprite-icon {
  filter: brightness(0) saturate(100%) invert(35%) sepia(82%) saturate(1130%) hue-rotate(126deg) brightness(92%) contrast(101%);
  opacity: 1;
}

@media (max-width: 699px) {
  .section-index,
  .section-index--light,
  .section-heading--light .section-index,
  .entry__intro .section-index,
  .work-style .section-index,
  .career .section-index,
  .workday .section-index,
  .hybrid .section-index {
    top: 16px;
    font-size: clamp(38px, 11.8vw, 46px);
    letter-spacing: .01em;
  }
}

@media (hover: hover) {
  .hero__actions .button:hover,
  .hero__actions .button--primary:hover,
  .hero__actions .button--ghost:hover {
    color: #006956;
    background: rgba(255, 255, 255, .34);
    border-color: #006956;
  }
}

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

body.qa-full .mobile-sticky {
  display: none;
}

body.qa-full .site-header {
  position: absolute;
}

html.qa-full {
  scrollbar-width: none;
}

html.qa-full::-webkit-scrollbar {
  display: none;
}

body.qa-full .entry__intro {
  position: static;
}

/* ========================================================================== 
   Visual system v2
   One hierarchy, one frame rule, one photo ratio, three interface colors.
   ========================================================================== */

.section,
.benefits,
.work-style {
  padding-block: clamp(80px, 8vw, 120px);
}

.section-heading,
.entry__intro {
  position: relative;
  padding-top: clamp(52px, 7vw, 78px);
}

.section-heading {
  max-width: 860px;
}

.section-index {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  color: var(--green-900);
  font-family: var(--sans);
  font-size: clamp(46px, 12vw, 78px);
  font-weight: 700;
  line-height: .86;
  letter-spacing: .075em;
  opacity: .08;
  pointer-events: none;
  white-space: nowrap;
}

.section-index span {
  display: block;
}

.section-index .section-index__mobile {
  display: none;
}

.section-index--light,
.section-heading--light .section-index {
  color: var(--white);
  opacity: .11;
}

.section-heading h2,
.section-heading > p:last-child,
.entry__intro h2,
.entry__intro > p:not(.section-index) {
  position: relative;
  z-index: 1;
}

.section-heading h2,
.entry__intro h2 {
  line-height: 1.42;
}

.section-heading > p:last-child,
.entry__intro > p:not(.section-index):not(.entry__privacy) {
  max-width: 760px;
  line-height: 1.9;
}

.sprite-icon {
  display: block;
  flex: 0 0 auto;
  width: 68px;
  height: 68px;
  visibility: visible;
  opacity: 1;
  background-image: url("assets/images/icon-sprite.png?v=20260817-icons");
  background-repeat: no-repeat;
  background-size: 400% 200%;
}

.sprite-icon--learn {
  background-position: 0 0;
}

.sprite-icon--schedule {
  background-position: 33.333% 0;
}

.sprite-icon--independence {
  background-position: 66.667% 0;
}

.sprite-icon--hybrid {
  background-position: 100% 0;
}

.sprite-icon--self {
  background-position: 0 100%;
}

.sprite-icon--clinic {
  background-position: 33.333% 100%;
}

.sprite-icon--support {
  background-position: 66.667% 100%;
}

.work-style .container {
  display: block;
}

.work-style .section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.workstyle-paths {
  display: grid;
  gap: 12px;
  border: 0;
}

.workstyle-paths li {
  display: flex;
  flex-direction: column;
  align-content: start;
  gap: 18px;
  min-height: 214px;
  padding: var(--frame-padding);
  background: var(--white);
  border: var(--frame-border);
}

.workstyle-paths > li > .sprite-icon {
  margin: 0 auto;
  color: inherit;
}

.workstyle-paths li > div {
  width: 100%;
}

.workstyle-paths h3 {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.workstyle-paths p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.8;
}

.workstyle-system {
  display: block;
  margin-top: 16px;
  padding: 15px 18px;
  color: var(--muted);
  background: var(--white);
  border: var(--frame-border);
  font-size: 13px;
  line-height: 1.8;
}

.benefits .section-heading {
  margin-bottom: 40px;
}

.benefit-layout {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 16px;
}

.benefit-card,
.benefit-card--01,
.benefit-card--02,
.benefit-card--03 {
  display: flex;
  grid-column: auto;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: var(--frame-border);
}

.benefit-card--01 .benefit-card__image,
.benefit-card--02 .benefit-card__image,
.benefit-card--03 .benefit-card__image,
.benefit-card__image {
  order: 0;
  grid-row: auto;
  grid-column: auto;
  width: 100%;
  min-height: 0;
  aspect-ratio: var(--photo-ratio);
}

.benefit-card--01 .benefit-card__body,
.benefit-card--02 .benefit-card__body,
.benefit-card--03 .benefit-card__body,
.benefit-card__body {
  display: flex;
  grid-row: auto;
  grid-column: auto;
  flex: 1;
  flex-direction: column;
  order: 1;
  min-height: 416px;
  padding: var(--frame-padding);
}

.benefit-card h3 {
  min-height: calc(1.58em * 3);
  font-size: clamp(20px, 2.1vw, 24px);
  line-height: 1.58;
}

.benefit-card__number {
  color: var(--green-900);
  opacity: .58;
}

.benefit-card__body > p:not(.benefit-card__number) {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.85;
}

.benefit-card__details {
  margin-top: auto;
  padding-top: 14px;
}

.benefit-steps li:not(:last-child)::after {
  color: var(--green-900);
  opacity: .5;
}

.culture-band,
.career-proof-number,
.phase-list,
.career-details,
.requirements__visual,
.job-comparison,
.jobs-mobile,
.faq-list,
.entry-form {
  border-radius: var(--frame-radius);
}

.requirements__visual,
.support-detail figure {
  aspect-ratio: var(--photo-ratio);
}

.hybrid-diagram__center {
  width: 172px;
  min-height: 172px;
  padding: 20px;
}

.hybrid-diagram__center > .sprite-icon {
  width: 48px;
  height: 48px;
  filter: brightness(0) invert(1);
  opacity: .88;
}

.hybrid-diagram__center small,
.hybrid-diagram article > p {
  color: rgba(255, 255, 255, .7);
  font-family: var(--latin);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
}

.hybrid-diagram__branch,
.hybrid-diagram__support {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 238px;
  padding: var(--frame-padding);
}

.hybrid-diagram article > .sprite-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  filter: brightness(0) invert(1);
  opacity: .88;
}

.hybrid-diagram__support article > .sprite-icon,
.hybrid-diagram__support > .sprite-icon {
  margin-inline: auto;
}

.hybrid-diagram h3 {
  margin-top: 8px;
}

.hybrid-diagram article > span:not(.sprite-icon) {
  margin-top: 10px;
}

.handover-note {
  padding: var(--frame-padding) 0;
}

.requirements-intro-grid .section-heading {
  max-width: none;
}

.faq-list summary {
  min-height: 80px;
}

.entry__intro {
  padding-top: clamp(58px, 7vw, 78px);
}

@media (max-width: 699px) {
  .hero {
    min-height: 0;
  }

  .hero__visual {
    inset: 0 0 auto;
    height: clamp(500px, 135vw, 580px);
    background: var(--cream);
  }

  .hero__visual img {
    object-fit: cover;
    object-position: center top;
  }

  .hero__shade {
    inset: 0 0 auto;
    height: clamp(560px, 150vw, 650px);
    background: linear-gradient(180deg, rgba(237, 244, 241, 0) 18%, rgba(237, 244, 241, .12) 40%, rgba(237, 244, 241, .94) 69%, var(--cream) 84%);
  }

  .hero__inner {
    align-items: flex-start;
    min-height: 0;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    padding-block: clamp(284px, 80vw, 330px) 156px;
  }

  .hero__eyebrow { order: 1; }
  .hero h1 { order: 2; }
  .hero-proof { order: 3; }
  .hero__emphasis { order: 4; }
  .hero__actions { order: 5; }
  .hero__lead { order: 6; }
  .hero__supplement { order: 7; }
  .hero__requirements-link { order: 8; }

  .hero h1 {
    max-width: 360px;
    font-size: clamp(34px, 10.4vw, 40px);
    line-height: 1.42;
    letter-spacing: -.045em;
  }

  .hero__emphasis {
    font-size: 16px;
    line-height: 1.8;
  }

  .hero__actions {
    margin-top: 20px;
  }

  .hero-conditions-band {
    padding-block: 16px;
  }

  .section-index {
    font-size: clamp(38px, 10.8vw, 44px);
    letter-spacing: .05em;
  }

  .section-index .section-index__desktop {
    display: none;
  }

  .section-index .section-index__mobile {
    display: block;
  }

  .workstyle-paths li {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: start;
    gap: 16px;
    min-height: 0;
    padding: 28px 20px;
  }

  .workstyle-paths > li > .sprite-icon {
    width: 44px;
    height: 44px;
  }

  .benefit-card h3 {
    min-height: calc(1.58em * 3);
  }

  .hybrid-diagram {
    gap: 20px;
    padding-block: 24px;
  }

  .hybrid-diagram__center {
    width: 156px;
    min-height: 156px;
    margin-bottom: 18px;
    padding: 16px;
  }

  .hybrid-diagram__center::after {
    bottom: -27px;
  }

  .hybrid-diagram__branch,
  .hybrid-diagram__support {
    min-height: 200px;
    padding: 24px 20px;
  }

  .hybrid-diagram__support {
    min-height: 190px;
    text-align: left;
  }

  .hybrid-diagram__branch--clinic {
    margin-bottom: 18px;
  }

  .hybrid-diagram__support > .sprite-icon {
    margin-inline: auto;
  }
}

/* Copy and diagram alignment adjustment v4 */

.hero-proof strong,
.hero-proof em,
.career-proof-number strong,
.career-proof-number em,
.phase-list li > p strong {
  color: var(--green-900);
}

.hybrid-diagram__center,
.hybrid-diagram__branch,
.hybrid-diagram__support {
  align-items: center;
  text-align: center;
}

.hybrid-diagram article > span:not(.sprite-icon) {
  width: 100%;
  text-align: center;
}

.requirements {
  position: relative;
  background:
    linear-gradient(180deg, rgba(237, 244, 241, .84), rgba(255, 255, 255, .94)),
    url("assets/images/reception.webp") center 44% / cover no-repeat;
}

.requirements > .container {
  position: relative;
  z-index: 1;
}

.requirements-intro-grid {
  display: block;
  max-width: 860px;
}

.requirements__visual {
  display: none;
}

.job-comparison,
.jobs-mobile {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(6px);
}

.benefit-card__details {
  margin-top: 20px;
  padding-top: 0;
}

.culture-band {
  margin-top: clamp(22px, 2.4vw, 30px);
}

@media (max-width: 699px) {
  .benefit-card__body,
  .benefit-card--01 .benefit-card__body,
  .benefit-card--02 .benefit-card__body,
  .benefit-card--03 .benefit-card__body {
    min-height: 0;
  }

  .benefit-card h3 {
    min-height: 0;
  }

  .benefit-card__details {
    margin-top: 20px;
  }
}

@media (min-width: 700px) {
  .benefit-card__body,
  .benefit-card--01 .benefit-card__body,
  .benefit-card--02 .benefit-card__body,
  .benefit-card--03 .benefit-card__body {
    min-height: 0;
  }

  .benefit-card h3 {
    min-height: calc(1.55em * 3);
  }

  .benefit-card__details {
    margin-top: 22px;
  }
}

@media (min-width: 700px) {
  .entry__intro {
    position: sticky;
  }

  .section-index {
    font-size: clamp(64px, 7vw, 86px);
  }

  .workday .section-index {
    width: max-content;
    overflow: visible;
    font-size: clamp(52px, 6vw, 78px);
    letter-spacing: .045em;
  }

  .workstyle-paths {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .workstyle-paths li {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 28px 24px;
  }

  .benefit-layout {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .benefit-card__body,
  .benefit-card--01 .benefit-card__body,
  .benefit-card--02 .benefit-card__body,
  .benefit-card--03 .benefit-card__body {
    min-height: 510px;
    padding: 26px 22px 28px;
  }

  .benefit-card h3 {
    min-height: calc(1.55em * 4);
    font-size: clamp(19px, 2vw, 23px);
    line-height: 1.55;
  }

  .benefit-card__details {
    padding-top: 16px;
  }

  .hybrid-diagram__center {
    width: 190px;
    min-height: 190px;
  }

  .hybrid-diagram__branch,
  .hybrid-diagram__support {
    min-height: 269px;
  }

  .hybrid-diagram__support {
    max-width: 760px;
  }
}

@media (min-width: 1040px) {
  .hero__content {
    width: 62%;
    max-width: 760px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(54px, 4.4vw, 64px);
  }

  .hero__emphasis,
  .handover-note strong,
  #requirements-title {
    white-space: nowrap;
  }

  .benefit-card__body,
  .benefit-card--01 .benefit-card__body,
  .benefit-card--02 .benefit-card__body,
  .benefit-card--03 .benefit-card__body {
    min-height: 500px;
    padding: 30px 26px 32px;
  }

  .benefit-card h3 {
    min-height: calc(1.55em * 3);
    font-size: 22px;
  }

  .requirements-intro-grid {
    grid-template-columns: 1.16fr .84fr;
  }

  #requirements-title {
    font-size: clamp(36px, 3.2vw, 46px);
  }

  .handover-note {
    grid-template-columns: 180px 1fr;
  }

  .handover-note strong {
    font-size: 22px;
  }
}

@media (min-width: 1040px) and (max-width: 1199px) {
  .hero__content {
    width: 58%;
    max-width: 650px;
  }

  .hero h1 {
    width: auto;
    max-width: 650px;
    font-size: clamp(50px, 4.8vw, 56px);
  }

  .hero__visual img {
    object-position: 66% center;
  }
}

@media (min-width: 1280px) {
  .benefit-layout {
    gap: 24px;
  }

  .benefit-card h3 {
    min-height: calc(1.55em * 3);
    font-size: 24px;
  }

  .benefit-card__body,
  .benefit-card--01 .benefit-card__body,
  .benefit-card--02 .benefit-card__body,
  .benefit-card--03 .benefit-card__body {
    min-height: 490px;
    padding: 32px 30px 34px;
  }
}

/* Typography and FV framing adjustment v3 */

.hero-proof strong,
.hero-conditions dd,
.benefit-card__number,
.culture-band li span,
.career-proof-number strong,
.career-proof-number em,
.phase-list li > p strong,
.career-steps li > span,
.hybrid-diagram article > p,
.contact-flow span,
.job-comparison td,
.job-panel header em,
.job-specs dd,
[data-job-condition] {
  font-family: var(--serif);
}

.hero-proof strong,
.career-proof-number strong {
  font-weight: 700;
}

.hero h1 {
  color: var(--green-900);
  font-weight: 700;
}

@media (max-width: 699px) {
  .hero__visual img {
    object-position: center top;
    transform: scale(1.06);
    transform-origin: 50% 8%;
  }

  .hero__content {
    padding-top: clamp(284px, 80vw, 330px);
  }
}

/* Benefit card whitespace adjustment v4 */

.benefit-card__body,
.benefit-card--01 .benefit-card__body,
.benefit-card--02 .benefit-card__body,
.benefit-card--03 .benefit-card__body {
  min-height: 0;
}

.benefit-card__details {
  margin-top: 20px;
  padding-top: 0;
}

@media (min-width: 700px) {
  .benefit-card__details summary {
    display: flex;
  }

  .benefit-card__details:not([open]) > div {
    display: none;
  }
}

/* Brand green emphasis and list unification v5 */

.workstyle-paths h3,
.benefit-steps,
.specialty-list--primary,
.culture-band h3 {
  color: var(--green-900);
}

.workstyle-paths > li > .sprite-icon {
  background-color: transparent;
  background-image: url("assets/images/icon-sprite.png?v=20260817-icons");
  background-repeat: no-repeat;
  background-size: 400% 200%;
  -webkit-mask-image: none;
  mask-image: none;
  opacity: 1;
}

.specialty-list--primary {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  background: transparent;
  border: 0;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
}

.specialty-list--primary li {
  padding: 0;
  color: inherit;
  background: transparent;
  font-size: inherit;
  font-weight: inherit;
  text-align: left;
}

.specialty-list--primary li:not(:last-child)::after {
  margin-left: 7px;
  color: var(--green-900);
  content: "|";
  opacity: .5;
}

/* ========================================================================== 
   Brand system v4 — requested typography, color, frame and alignment rules
   ========================================================================== */

body {
  color: #111;
  font-family: var(--brand-font);
}

.hero-title__line {
  display: block;
  white-space: nowrap;
}

.hero-title__boxed {
  display: inline-block;
  margin-right: .08em;
  padding: .02em .16em .05em;
  color: #fff;
  background: #00896b;
  border: 2px solid #00896b;
  line-height: 1.15;
}

.section-heading h2,
.legal-title h1,
.thanks-main h1,
.benefit-card h3,
.culture-band h3,
.workday h3,
.faq-list summary,
.job-comparison strong,
.job-panel header strong {
  color: #006956;
}

.section-heading > p:last-child,
.legal-title > p:last-child,
.requirements__note {
  color: #111;
}

.section-index,
.section-index--light,
.section-heading--light .section-index,
.entry__intro .section-index {
  color: #f8f8f8;
  opacity: 1;
}

.work-style .section-index,
.career .section-index,
.hybrid .section-index,
.entry__intro .section-index {
  top: clamp(28px, 3vw, 42px);
  width: max-content;
  max-width: none;
  padding-right: .08em;
  overflow: visible;
  font-size: clamp(88px, 7.5vw, 112px);
  line-height: .82;
  letter-spacing: .04em;
  opacity: .2;
}

.button--primary,
.button--ghost,
.button--light,
.button--outline-light,
.button--submit,
.header-cta,
.mobile-sticky a {
  color: #fff;
  background: #00896b;
  border: 1px solid #00896b;
}

.sprite-icon {
  width: 76px;
  height: 76px;
  filter: brightness(0) saturate(100%) invert(35%) sepia(82%) saturate(1130%) hue-rotate(126deg) brightness(92%) contrast(101%) drop-shadow(0 0 .65px #00896b) drop-shadow(0 0 .65px #00896b);
}

.work-style,
.career,
.hybrid {
  position: relative;
  isolation: isolate;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.work-style {
  background-image:
    linear-gradient(135deg, rgba(0, 137, 107, .78) 0%, rgba(0, 137, 107, .70) 52%, rgba(0, 137, 107, .62) 100%),
    url("assets/images/reception.webp");
}

.career {
  background-image:
    linear-gradient(135deg, rgba(0, 137, 107, .78) 0%, rgba(0, 137, 107, .70) 52%, rgba(0, 137, 107, .62) 100%),
    url("assets/images/lounge.webp");
  background-position: center 58%;
}

.hybrid {
  background-image:
    linear-gradient(135deg, rgba(0, 137, 107, .78) 0%, rgba(0, 137, 107, .70) 52%, rgba(0, 137, 107, .62) 100%),
    url("assets/images/AdobeStock_748492945.jpeg");
}

.work-style > .container,
.career > .container,
.hybrid > .container {
  position: relative;
  z-index: 1;
}

.work-style .section-heading h2,
.work-style .section-heading > p:last-child,
.career .section-heading h2,
.career .section-heading > p:last-child,
.hybrid .section-heading h2,
.hybrid .section-heading > p:last-child {
  color: #fff;
}

.workstyle-paths li {
  color: #006956;
  background: rgba(255, 255, 255, .96);
  border-color: transparent;
  box-shadow: 0 16px 40px rgba(0, 105, 86, .12);
}

.workstyle-paths h3,
.workstyle-paths > li > span {
  color: #006956;
}

.workstyle-paths p {
  color: #111;
}

.workstyle-paths > li > .sprite-icon {
  width: 84px;
  height: 84px;
  filter: brightness(0) saturate(100%) invert(35%) sepia(82%) saturate(1130%) hue-rotate(126deg) brightness(92%) contrast(101%) drop-shadow(0 0 .65px #00896b) drop-shadow(0 0 .65px #00896b);
}

.workstyle-system {
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.workstyle-system > span:first-child {
  color: #fff;
}

.benefit-card__body,
.benefit-card__body > p:not(.benefit-card__number),
.benefit-card__details summary,
.benefit-card__details p,
.benefit-steps,
.specialty-list--primary,
.culture-band,
.culture-band h3,
.culture-band li,
.culture-band li span,
.workday-timeline,
.workday-timeline h3,
.workday-schedule,
.workday-schedule p,
.workday-facts,
.workday-facts dt,
.workday-facts dd,
.workday-area,
.workday-area dt,
.workday-area dd,
.job-comparison,
.job-comparison th,
.job-comparison td,
.job-panel,
.job-panel header,
.job-panel header small,
.job-panel header em,
.job-specs dt,
.job-specs dd,
.faq-list,
.faq-list summary,
.faq-list summary span,
.faq-list details > p,
.entry-form label,
.entry-form legend {
  color: #006956;
}

.benefit-card__body > p:not(.benefit-card__number),
.benefit-card__details p,
.culture-band li,
.workday-schedule strong,
.workday-schedule p,
.workday-facts dd,
.workday-area dd,
.workday-tools li,
.workday-tools span,
.phase-list span,
.career-steps p,
.faq-list details > p {
  color: #111;
}

.culture-band li span {
  color: #006956;
}

.benefit-card__image figcaption {
  color: #fff;
  background: rgba(0, 137, 107, .84);
}

.entry-form input,
.entry-form select,
.entry-form textarea {
  color: #111;
}

.career-proof-number,
.phase-list,
.career-details {
  color: #006956;
  background: rgba(255, 255, 255, .96);
  border-color: transparent;
  box-shadow: 0 16px 40px rgba(0, 105, 86, .12);
}

.career-proof-number {
  padding-inline: var(--frame-padding);
}

.career-proof-number > span,
.career-proof-number p,
.career-proof-number strong,
.career-proof-number em,
.career-proof-number small,
.phase-list li > p,
.phase-list li > p strong,
.phase-list h3,
.career-details summary,
.career-steps li > span,
.career-steps h3 {
  color: #006956;
}

.phase-list {
  overflow: hidden;
}

.phase-list li + li {
  border-left: 1px solid rgba(0, 105, 86, .14);
}

.career-details {
  padding-inline: var(--frame-padding);
}

.hero-proof strong,
.career-proof-number strong {
  font-weight: 400;
}

.hybrid-diagram__center,
.hybrid-diagram__branch,
.hybrid-diagram__support {
  color: #006956;
  background: #fff;
  border: 0;
  box-shadow: 0 16px 40px rgba(0, 105, 86, .14);
}

.hybrid-diagram__center > .sprite-icon,
.hybrid-diagram article > .sprite-icon {
  filter: brightness(0) saturate(100%) invert(35%) sepia(82%) saturate(1130%) hue-rotate(126deg) brightness(92%) contrast(101%) drop-shadow(0 0 .65px #00896b) drop-shadow(0 0 .65px #00896b);
  opacity: 1;
}

.hybrid-diagram__center > .sprite-icon {
  width: 68px;
  height: 68px;
}

.hybrid-diagram article > .sprite-icon {
  width: 74px;
  height: 74px;
}

.hybrid-diagram__center small,
.hybrid-diagram article > p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 24px;
  padding: 3px 9px;
  color: #f8f8f8;
  background: #00896b;
  border-radius: 999px;
}

.hybrid-diagram__center strong {
  color: #006956;
}

.hybrid-diagram h3,
.hybrid-diagram article > span:not(.sprite-icon) {
  color: #111;
}

.hybrid-diagram__plus {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-inline: auto;
  color: #00896b;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(0, 105, 86, .14);
}

.hybrid-model-note,
.handover-note > p,
.handover-note strong,
.handover-note span,
.hybrid-details summary,
.support-list strong,
.support-list span,
.detail-note {
  color: #fff;
}

.requirements {
  background: #fff;
}

.job-comparison,
.jobs-mobile {
  background: transparent;
  backdrop-filter: none;
}

.jobs-desktop,
.job-panel {
  box-shadow: 0 20px 52px rgba(0, 105, 86, .16);
}

.job-comparison thead th,
.job-comparison thead th:first-child,
.job-comparison tbody th,
.job-panel header {
  color: #fff;
  background: #00896b;
}

.job-comparison thead small,
.job-comparison thead strong,
.job-comparison tbody th,
.job-panel header small,
.job-panel header strong,
.job-panel header em {
  color: #fff;
}

.organization-parent {
  background: rgba(255, 255, 255, .055);
}

.benefit-card__body,
.benefit-card--01 .benefit-card__body,
.benefit-card--02 .benefit-card__body,
.benefit-card--03 .benefit-card__body {
  justify-content: flex-start;
}

.benefit-card__details {
  margin-top: auto;
}

@media (max-width: 699px) {
  .work-style,
  .career,
  .hybrid {
    background-attachment: scroll;
  }

  .workstyle-paths > li > .sprite-icon {
    width: 58px;
    height: 58px;
  }

  .work-style .section-index,
  .career .section-index,
  .hybrid .section-index,
  .entry__intro .section-index {
    top: 30px;
    font-size: clamp(38px, 11.8vw, 46px);
    letter-spacing: .01em;
  }

  .benefit-card h3,
  .benefit-card__body > p:not(.benefit-card__number) {
    min-height: 0;
  }

  .benefit-card__details {
    margin-top: 20px;
  }

  .phase-list {
    padding-inline: 20px;
  }

  .phase-list li + li {
    border-top: 1px solid rgba(0, 105, 86, .14);
    border-left: 0;
  }

  .career-details {
    padding-inline: 20px;
  }

  .hybrid-diagram__center > .sprite-icon {
    width: 60px;
    height: 60px;
  }

  .hybrid-diagram article > .sprite-icon {
    width: 66px;
    height: 66px;
  }
}

@media (min-width: 700px) {
  .phase-list li {
    padding: 30px 28px;
  }

  .benefit-card__body > p:not(.benefit-card__number) {
    min-height: calc(1.85em * 5);
  }

  .benefit-card h3 {
    min-height: calc(1.55em * 5);
  }
}

@media (min-width: 1040px) {
  .benefit-card__body > p:not(.benefit-card__number) {
    min-height: calc(1.85em * 3);
  }

  .benefit-card h3 {
    min-height: calc(1.55em * 3);
  }
}

@media (hover: hover) {
  .button--primary:hover,
  .button--ghost:hover,
  .button--light:hover,
  .button--outline-light:hover,
  .button--submit:hover,
  .header-cta:hover,
  .mobile-sticky a:hover {
    color: #fff;
    background: #006956;
    border-color: #006956;
  }
}

/* ========================================================================== 
   Final visual refinement v10
   ========================================================================== */

.hero h1 {
  color: #111;
}

.hero-title__boxed {
  color: #fff;
  background: linear-gradient(135deg, #006956 0%, #00896b 58%, #00a582 100%);
  border-color: transparent;
}

.hero__supplement {
  max-width: 680px;
  margin-top: 4px;
  color: #747d79;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.7;
}

.section-heading h2 {
  font-weight: 700;
}

.section-index,
.section-index--light,
.section-heading--light .section-index,
.entry__intro .section-index,
.work-style .section-index,
.career .section-index,
.workday .section-index {
  top: clamp(10px, 1.3vw, 18px);
  width: max-content;
  max-width: none;
  padding-right: .08em;
  overflow: visible;
  font-size: clamp(58px, 7.1vw, 102px);
  line-height: .82;
  letter-spacing: .035em;
  opacity: .2;
}

.sprite-icon,
.workstyle-paths > li > .sprite-icon {
  background-color: #00896b;
  background-image: none;
  background-repeat: no-repeat;
  background-size: auto;
  filter: none;
  image-rendering: auto;
  -webkit-mask-image: url("assets/images/icon-sprite.png?v=20260818-crisp-icons");
  mask-image: url("assets/images/icon-sprite.png?v=20260818-crisp-icons");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 400% 200%;
  mask-size: 400% 200%;
}

.sprite-icon--learn {
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
}

.sprite-icon--schedule {
  -webkit-mask-position: 33.333% 0;
  mask-position: 33.333% 0;
}

.sprite-icon--independence {
  -webkit-mask-position: 66.667% 0;
  mask-position: 66.667% 0;
}

.sprite-icon--hybrid {
  -webkit-mask-position: 100% 0;
  mask-position: 100% 0;
}

.sprite-icon--self {
  -webkit-mask-position: 0 100%;
  mask-position: 0 100%;
}

.sprite-icon--clinic {
  -webkit-mask-position: 33.333% 100%;
  mask-position: 33.333% 100%;
}

.sprite-icon--support {
  -webkit-mask-position: 66.667% 100%;
  mask-position: 66.667% 100%;
}

.hybrid-diagram__center > .sprite-icon,
.hybrid-diagram article > .sprite-icon {
  background-color: #00896b;
  filter: none;
  opacity: 1;
}

.hybrid {
  background: #006956;
}

.hybrid-diagram__center strong,
.hybrid-diagram h3 {
  color: #006956;
}

.hybrid-cta .button {
  color: #00896b;
  background: #fff;
  border-color: #fff;
}

.career-proof-number strong,
.benefit-card__number,
.phase-list li > p strong {
  font-style: italic;
}

.job-comparison {
  border: 1px solid #006956;
}

.job-comparison th,
.job-comparison td {
  border-color: rgba(0, 105, 86, .38);
}

.job-comparison thead th,
.job-comparison thead th:first-child,
.job-comparison tbody th,
.job-panel header {
  border: 1px solid #006956;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .28);
}

.job-panel {
  border-color: #006956;
}

@media (max-width: 699px) {
  .hero__requirements-link {
    order: 7;
  }

  .hero__supplement {
    order: 8;
    margin-top: 2px;
    font-size: 10.5px;
  }

  .section-index,
  .section-index--light,
  .section-heading--light .section-index,
  .entry__intro .section-index,
  .work-style .section-index,
  .career .section-index,
  .workday .section-index {
    top: 16px;
    font-size: clamp(38px, 11.8vw, 46px);
    letter-spacing: .01em;
  }
}

@media (min-width: 700px) {
  .phase-list li:first-child,
  .phase-list li:last-child {
    padding: 30px 28px;
  }
}

@media (min-width: 1040px) {
  #work-style-title,
  #benefits-title,
  #workday-title,
  #career-title,
  #hybrid-title {
    max-width: none;
    font-size: clamp(32px, 3.05vw, 44px);
    white-space: nowrap;
  }

  .work-style .section-heading,
  .benefits .section-heading,
  .workday .section-heading,
  .career .section-heading,
  .hybrid .section-heading {
    max-width: none;
  }

  .benefits .section-heading > p:last-child,
  .requirements .section-heading > p:last-child {
    max-width: none;
    font-size: clamp(13px, 1.15vw, 16px);
    letter-spacing: -.01em;
    white-space: nowrap;
  }
}

@media (hover: hover) {
  .hybrid-cta .button:hover {
    color: #fff;
    background: #00896b;
    border-color: #fff;
  }
}
