:root {
  --bg: #f4f3ef;
  --paper: #fffefa;
  --paper-soft: #fbfaf5;
  --ink: #0c0c0c;
  --muted: #77756e;
  --faint: #aaa79d;
  --line: #e3e1da;
  --accent: #21d37d;
  --accent-dark: #08613a;
  --accent-soft: rgba(33, 211, 125, 0.12);
  --field-bg: rgba(255, 254, 250, 0.82);
  --field-bg-active: rgba(255, 255, 252, 0.96);
  --warning: #b24528;
  --shadow: 0 20px 70px rgba(25, 23, 18, 0.09);
  --shadow-soft: 0 16px 44px rgba(25, 23, 18, 0.07);
  --ease-apple: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "PingFang SC", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(78% 42% at 86% 0%, rgba(18, 204, 116, 0.13) 0%, rgba(18, 204, 116, 0) 62%),
    radial-gradient(58% 36% at 7% 8%, rgba(218, 238, 104, 0.14) 0%, rgba(218, 238, 104, 0) 64%),
    linear-gradient(180deg, #fdfcf8 0%, var(--bg) 48%, #eef4ec 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.page-shell {
  min-height: 100vh;
  overflow-x: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(253, 252, 248, 0.55);
  border-bottom: 1px solid rgba(227, 225, 218, 0.35);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  line-height: 1;
  transition: opacity 0.22s var(--ease-apple), transform 0.22s var(--ease-apple);
}

.brand:hover {
  opacity: 0.86;
  transform: translateY(-1px);
}

.brand-logo {
  display: inline-block;
  width: clamp(128px, 13vw, 178px);
  max-width: 44vw;
  height: auto;
  object-fit: contain;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 8px;
}

.btn {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  min-height: 42px;
  padding: 0 18px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 0.24s var(--ease-apple),
    box-shadow 0.24s var(--ease-apple),
    background 0.24s var(--ease-apple),
    border-color 0.24s var(--ease-apple),
    opacity 0.24s var(--ease-apple);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(25, 23, 18, 0.12);
}

.btn:active {
  transform: translateY(0) scale(0.985);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.64;
  transform: none;
  box-shadow: none;
}

.btn.is-loading::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 999px;
  animation: spin 0.8s linear infinite;
}

.btn:focus-visible,
.nav-link:focus-visible,
.job-card:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(18, 204, 116, 0.34);
  outline-offset: 3px;
}

.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #05361f;
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 42px 22px 22px;
  min-height: calc(100vh - 138px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 40px;
  align-items: center;
}

.home-hero {
  position: relative;
  min-height: auto;
  display: block;
  padding-top: 34px;
  padding-bottom: 34px;
  overflow: visible;
  background:
    radial-gradient(64% 68% at 78% 12%, rgba(18, 204, 116, 0.13) 0%, rgba(18, 204, 116, 0) 62%),
    linear-gradient(132deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0) 52%);
}

.home-hero::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -30%;
  width: 66%;
  height: 78%;
  pointer-events: none;
  background:
    radial-gradient(circle at 60% 44%, rgba(18, 204, 116, 0.12), rgba(18, 204, 116, 0) 64%);
  filter: blur(52px);
}

.home-hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -48px;
  height: 96px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(244, 243, 239, 0), rgba(244, 243, 239, 0.82) 70%, rgba(244, 243, 239, 0));
  z-index: 0;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.bird-mark {
  position: absolute;
  pointer-events: none;
  color: rgba(12, 12, 12, 0.72);
  opacity: 0.82;
  z-index: 0;
}

.bird-hero {
  top: 38px;
  right: max(22px, calc((100vw - var(--max)) / 2 + 28px));
  width: min(260px, 28vw);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--accent);
}

h1 {
  margin: 22px 0 20px;
  font-size: clamp(48px, 7.1vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

.home-hero h1 {
  font-size: clamp(62px, 9vw, 112px);
  line-height: 0.9;
  margin-top: 14px;
  margin-bottom: 18px;
}

.hero-lead {
  margin: 0;
  max-width: 760px;
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.65;
  color: #2d2d2a;
  font-weight: 650;
}

.hero-lead b {
  box-shadow: inset 0 -0.42em 0 rgba(18, 204, 116, 0.28);
}

.hero-meta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.meta-pill {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.38);
  color: var(--muted);
  font-weight: 750;
  font-size: 14px;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 30px 22px 58px;
}

.section::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 0;
  width: 36%;
  height: 260px;
  pointer-events: none;
  background:
    linear-gradient(146deg, rgba(18, 204, 116, 0.12), rgba(18, 204, 116, 0) 68%);
  filter: blur(36px);
  opacity: 0.9;
}

.bird-section {
  top: 30px;
  right: 22px;
  width: 180px;
  opacity: 0.42;
}

.section-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.section h2 {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-note {
  margin: 0;
  max-width: 460px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.direction {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  padding: 34px 0;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 32px;
}

.direction-title {
  position: sticky;
  top: 96px;
  align-self: start;
}

.direction-title h3 {
  margin: 0;
  font-size: 24px;
}

.direction-title p {
  margin: 8px 0 0;
  color: var(--faint);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.job-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.job-card {
  min-height: 82px;
  border-bottom: 1px solid var(--line);
  padding: 17px 4px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  transition: color 0.18s ease, background 0.18s ease, padding 0.18s ease;
}

.job-card:hover {
  background: rgba(255, 255, 255, 0.44);
  color: var(--accent-dark);
  padding-left: 12px;
  padding-right: 12px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.tag {
  min-height: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.tag.hot {
  border-color: rgba(18, 204, 116, 0.45);
  background: rgba(18, 204, 116, 0.12);
  color: var(--accent-dark);
}

.job-card h4 {
  margin: 0;
  font-size: 23px;
  line-height: 1.18;
  letter-spacing: 0;
}

.job-main {
  min-width: 0;
}

.job-meta {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.hot-text {
  color: var(--accent-dark);
}

.job-card.is-assistant {
  background: linear-gradient(90deg, rgba(33, 211, 125, 0.16) 0%, rgba(33, 211, 125, 0.05) 46%, rgba(33, 211, 125, 0) 78%);
  border-left: 3px solid rgba(33, 211, 125, 0.65);
  padding-left: 14px;
}

.job-card.is-assistant:hover {
  background: linear-gradient(90deg, rgba(33, 211, 125, 0.22) 0%, rgba(33, 211, 125, 0.07) 50%, rgba(33, 211, 125, 0) 82%);
  padding-left: 18px;
}

.assistant-badge {
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
  border-radius: 999px;
  padding: 3px 10px;
  background: rgba(33, 211, 125, 0.14);
  border: 1px solid rgba(33, 211, 125, 0.42);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.tag.assistant {
  border-color: rgba(33, 211, 125, 0.5);
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.card-foot {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  white-space: nowrap;
}

.salary {
  font-weight: 900;
  color: var(--accent-dark);
}

.arrow {
  font-weight: 950;
  color: var(--ink);
}

.apply-band {
  background: var(--ink);
  color: #fff;
  margin-top: 28px;
}

.apply-band-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 46px 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.apply-band h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 52px);
}

.apply-band p {
  margin: 12px 0 0;
  color: #c9c9c0;
  line-height: 1.8;
}

.detail-main,
.form-main,
.success-main {
  max-width: 930px;
  margin: 0 auto;
  padding: 58px 22px 88px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 850;
  margin-bottom: 28px;
}

.job-detail-hero {
  border-bottom: 1px solid var(--line);
  padding-bottom: 34px;
}

.job-detail-hero h1 {
  font-size: clamp(44px, 7vw, 88px);
  margin-bottom: 22px;
}

.detail-lead {
  color: #30302d;
  font-size: 22px;
  line-height: 1.75;
  margin: 22px 0 0;
}

.jd-section.mission-block {
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  padding: 26px 28px;
  margin: 28px 0;
}

.mission-block h2 {
  margin: 0 0 14px;
  font-size: 22px;
  color: var(--ink);
}

.mission-block p {
  margin: 0 0 12px;
  color: #30302d;
  line-height: 1.85;
}

.mission-block p:last-child {
  margin-bottom: 0;
}

.jd-section {
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
}

.jd-section h2 {
  margin: 0 0 18px;
  font-size: 28px;
}

.jd-section ul {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 13px;
  color: #30302d;
  line-height: 1.8;
}

.jd-note {
  border: 1px solid rgba(178, 69, 40, 0.26);
  background: rgba(178, 69, 40, 0.06);
  border-radius: var(--radius);
  padding: 16px 18px;
  color: #6f2e1f;
  line-height: 1.7;
}

.form-title {
  border-bottom: 1px solid rgba(227, 225, 218, 0.72);
  padding-bottom: 30px;
  margin-bottom: 28px;
}

.form-title h1 {
  margin-bottom: 16px;
}

.form-title p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  max-width: 760px;
}

.form-main > .back-link,
.form-title .eyebrow,
.form-title h1,
.form-title p,
.form-main > .apply-note,
.application-form > .fieldset,
.application-form > .form-actions {
  animation: contentFloatIn 0.42s var(--ease-apple) backwards;
}

.form-main > .back-link {
  animation-delay: 0.01s;
}

.form-title .eyebrow {
  animation-delay: 0.03s;
}

.form-title h1 {
  animation-delay: 0.05s;
}

.form-title p {
  animation-delay: 0.07s;
}

.form-main > .apply-note {
  animation-delay: 0.1s;
}

.application-form > .fieldset:nth-of-type(1) {
  animation-delay: 0.14s;
}

.application-form > .fieldset:nth-of-type(2) {
  animation-delay: 0.17s;
}

.application-form > .fieldset:nth-of-type(3) {
  animation-delay: 0.2s;
}

.application-form > .fieldset:nth-of-type(4) {
  animation-delay: 0.23s;
}

.application-form > .fieldset:nth-of-type(5) {
  animation-delay: 0.26s;
}

.application-form > .fieldset:nth-of-type(6),
.application-form > .form-actions {
  animation-delay: 0.29s;
}

.apply-note {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(227, 225, 218, 0.76);
  border-radius: 14px;
  background:
    linear-gradient(132deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.48)),
    radial-gradient(80% 110% at 92% 0%, rgba(18, 204, 116, 0.14), rgba(18, 204, 116, 0) 60%);
  box-shadow: var(--shadow-soft);
  padding: 24px;
  margin-bottom: 30px;
}

.apply-note h2,
.apply-note p {
  position: relative;
  z-index: 1;
}

.bird-apply {
  top: 18px;
  right: 18px;
  width: 132px;
  opacity: 0.28;
}

.apply-note h2 {
  margin: 0 0 12px;
  font-size: 23px;
}

.apply-note p {
  margin: 0;
  color: #3a3a36;
  line-height: 1.85;
}

.apply-note p + p {
  margin-top: 10px;
}

.application-form {
  display: grid;
  gap: 22px;
}

/* 蜜罐字段：真人不可见、不占位、不进入 Tab 顺序；机器人盲填后由服务端静默丢弃 */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.fieldset {
  position: relative;
  border: 1px solid rgba(227, 225, 218, 0.78);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.42)),
    rgba(255, 255, 255, 0.44);
  box-shadow: 0 12px 36px rgba(25, 23, 18, 0.045);
  padding: 27px;
  transition:
    border-color 0.28s var(--ease-apple),
    box-shadow 0.28s var(--ease-apple),
    transform 0.28s var(--ease-apple),
    background 0.28s var(--ease-apple);
}

.fieldset:hover {
  border-color: rgba(18, 204, 116, 0.18);
  box-shadow: 0 18px 48px rgba(25, 23, 18, 0.065);
  transform: translateY(-1px);
}

.fieldset.has-open-control {
  z-index: 70;
}

.fieldset legend {
  float: left;
  width: fit-content;
  margin: 0 0 20px;
  padding: 7px 12px;
  border: 1px solid rgba(227, 225, 218, 0.86);
  border-radius: 999px;
  background: rgba(255, 254, 250, 0.92);
  font-weight: 950;
  font-size: 17px;
  line-height: 1.2;
  box-shadow: 0 8px 20px rgba(25, 23, 18, 0.04);
}

.fieldset legend + .field-grid,
.fieldset legend + .declaration-check {
  clear: both;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 18px;
  align-items: start;
}

.field {
  position: relative;
  z-index: 0;
  display: grid;
  gap: 9px;
  align-content: start;
}

.field.has-open-control {
  z-index: 90;
}

.field.full {
  grid-column: 1 / -1;
}

.field label,
.check-row {
  color: #2d2d2a;
  font-weight: 860;
}

.field label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  letter-spacing: 0;
}

.required {
  color: var(--warning);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(201, 207, 197, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0)),
    var(--field-bg);
  color: var(--ink);
  border-radius: 14px;
  min-height: 52px;
  padding: 13px 15px;
  font-weight: 500;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition:
    border-color 0.24s var(--ease-apple),
    background 0.24s var(--ease-apple),
    box-shadow 0.24s var(--ease-apple),
    transform 0.24s var(--ease-apple);
}

select {
  appearance: none;
  -webkit-appearance: none;
  padding: 13px 48px 13px 15px;
  background-image:
    linear-gradient(45deg, transparent 50%, #244b34 50%),
    linear-gradient(135deg, #244b34 50%, transparent 50%),
    linear-gradient(180deg, rgba(18, 204, 116, 0.12), rgba(18, 204, 116, 0.04));
  background-position:
    calc(100% - 25px) 23px,
    calc(100% - 18px) 23px,
    calc(100% - 42px) 0;
  background-size:
    7px 7px,
    7px 7px,
    1px 100%;
  background-repeat: no-repeat;
  color: #22221f;
  cursor: pointer;
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(18, 204, 116, 0.38);
  background-color: var(--field-bg-active);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 24px rgba(25, 23, 18, 0.045);
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  border-color: rgba(18, 204, 116, 0.72);
  background-color: var(--field-bg-active);
  box-shadow:
    0 0 0 5px rgba(18, 204, 116, 0.1),
    0 16px 34px rgba(18, 204, 116, 0.07);
  transform: translateY(-1px);
}

select:required:invalid,
select:has(option[value=""]:checked) {
  color: var(--muted);
}

select option {
  color: var(--ink);
  background: var(--paper);
}

.native-proxy {
  display: none !important;
}

.custom-control {
  position: relative;
  width: 100%;
}

.custom-control.is-open {
  z-index: 100;
}

.field-trigger {
  width: 100%;
  height: 52px;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(201, 207, 197, 0.72);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0)),
    var(--field-bg);
  color: var(--ink);
  padding: 0 15px;
  font-weight: 500;
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition:
    border-color 0.24s var(--ease-apple),
    background 0.24s var(--ease-apple),
    box-shadow 0.24s var(--ease-apple),
    transform 0.24s var(--ease-apple);
}

.field-trigger:hover,
.custom-control.is-open .field-trigger {
  border-color: rgba(18, 204, 116, 0.54);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.08)),
    var(--field-bg-active);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 12px 28px rgba(18, 204, 116, 0.08);
  transform: translateY(-1px);
}

.field-trigger:focus-visible {
  outline: none;
  border-color: rgba(18, 204, 116, 0.76);
  box-shadow:
    0 0 0 4px rgba(18, 204, 116, 0.12),
    0 16px 34px rgba(18, 204, 116, 0.07);
}

.field-trigger.is-placeholder {
  color: var(--muted);
}

.field-value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.field-chev {
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  border-right: 2px solid #244b34;
  border-bottom: 2px solid #244b34;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.26s var(--ease-apple);
}

.custom-control.is-open .field-chev {
  transform: translateY(2px) rotate(225deg);
}

.custom-popover {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 110;
  border: 1px solid rgba(201, 207, 197, 0.78);
  border-radius: 16px;
  background:
    linear-gradient(180deg, #fffefa, #fbfaf5),
    var(--paper);
  box-shadow: 0 24px 60px rgba(25, 23, 18, 0.14);
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px) scale(0.985);
  transform-origin: top;
  transition:
    opacity 0.22s var(--ease-apple),
    transform 0.22s var(--ease-apple);
}

.custom-control.is-open .custom-popover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.select-popover {
  max-height: min(460px, 56vh);
  overflow: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(18, 204, 116, 0.45) rgba(227, 225, 218, 0.62);
}

.custom-group-label {
  padding: 12px 12px 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 930;
}

.custom-option {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: var(--ink);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-weight: 760;
  transition:
    background 0.2s var(--ease-apple),
    color 0.2s var(--ease-apple),
    transform 0.2s var(--ease-apple);
}

.custom-option:hover,
.custom-option:focus-visible {
  outline: none;
  background: rgba(18, 204, 116, 0.1);
  color: var(--accent-dark);
}

.custom-option.is-selected {
  background: rgba(18, 204, 116, 0.14);
  color: #043d22;
  font-weight: 900;
}

.custom-option.is-selected::after {
  content: "";
  width: 8px;
  height: 13px;
  margin-left: 12px;
  border-right: 2px solid var(--accent-dark);
  border-bottom: 2px solid var(--accent-dark);
  transform: rotate(40deg);
}

.date-trigger {
  padding-right: 9px;
}

.date-glyph {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 12px;
  color: #313733;
  background: rgba(18, 204, 116, 0.12);
  padding: 8px;
}

.date-popover {
  left: 0;
  right: 0;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  border-color: rgba(60, 60, 67, 0.13);
  background:
    linear-gradient(180deg, rgba(255, 255, 252, 0.96), rgba(251, 250, 246, 0.92)),
    rgba(255, 255, 252, 0.94);
  box-shadow: 0 18px 50px rgba(25, 23, 18, 0.13);
  padding: 14px;
  backdrop-filter: blur(22px);
}

.picker-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 4px 12px;
  border-bottom: 1px solid rgba(60, 60, 67, 0.1);
}

.picker-head b {
  font-size: 14px;
  font-weight: 780;
  letter-spacing: 0;
}

.picker-head span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 690;
}

.picker-columns {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 12px 0;
  isolation: isolate;
}

.picker-columns::before {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 50%;
  height: 42px;
  border: 1px solid rgba(33, 211, 125, 0.16);
  border-radius: 14px;
  background: rgba(33, 211, 125, 0.08);
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

.custom-date[data-picker-type="month"] .picker-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.picker-column {
  position: relative;
  z-index: 1;
  max-height: 224px;
  overflow: auto;
  display: grid;
  gap: 0;
  padding: 91px 2px;
  scroll-padding-block: 91px;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
}

.picker-column::-webkit-scrollbar {
  display: none;
}

.picker-option {
  min-height: 42px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: rgba(12, 12, 12, 0.54);
  padding: 8px 6px;
  font-size: 16px;
  font-weight: 650;
  transition:
    background 0.18s var(--ease-apple),
    color 0.18s var(--ease-apple),
    box-shadow 0.18s var(--ease-apple),
    transform 0.18s var(--ease-apple);
}

.picker-option:hover {
  outline: none;
  background: transparent;
  color: rgba(8, 97, 58, 0.82);
}

.picker-option:focus-visible {
  outline: none;
  background: transparent;
  color: var(--accent-dark);
  box-shadow: inset 0 0 0 1.5px rgba(33, 211, 125, 0.32);
}

.picker-option.is-selected {
  background: transparent;
  color: #08150f;
  font-weight: 780;
  box-shadow: none;
}

.picker-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 12px 2px 0;
  border-top: 1px solid rgba(60, 60, 67, 0.1);
}

.picker-actions button {
  min-height: 36px;
  border-radius: 999px;
  border: 0;
  padding: 0 15px;
  font-size: 14px;
  font-weight: 760;
  background: transparent;
  color: rgba(12, 12, 12, 0.66);
  transition:
    background 0.18s var(--ease-apple),
    color 0.18s var(--ease-apple),
    transform 0.18s var(--ease-apple);
}

.picker-actions button:hover,
.picker-actions button:focus-visible {
  outline: none;
  background: rgba(60, 60, 67, 0.08);
  color: var(--ink);
}

.picker-actions button:active {
  transform: scale(0.98);
}

.picker-actions .picker-confirm {
  background: rgba(33, 211, 125, 0.16);
  color: #064627;
}

.picker-actions .picker-confirm:hover,
.picker-actions .picker-confirm:focus-visible {
  background: rgba(33, 211, 125, 0.24);
  color: #04351e;
}

.is-invalid input,
.is-invalid select,
.is-invalid textarea,
.is-invalid .field-trigger,
.is-invalid .upload-zone,
.declaration-check.is-invalid {
  border-color: rgba(178, 69, 40, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0)),
    rgba(178, 69, 40, 0.045);
  box-shadow: 0 0 0 5px rgba(178, 69, 40, 0.08);
}

textarea {
  min-height: 132px;
  resize: vertical;
  line-height: 1.7;
}

input[type="month"],
input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
  padding: 13px 14px 13px 15px;
  color: #22221f;
  color-scheme: light;
}

input[type="month"]::-webkit-datetime-edit,
input[type="date"]::-webkit-datetime-edit {
  padding: 0;
}

input[type="month"]::-webkit-calendar-picker-indicator,
input[type="date"]::-webkit-calendar-picker-indicator {
  width: 25px;
  height: 25px;
  margin-right: 0;
  padding: 5px;
  border-radius: 10px;
  background-color: rgba(18, 204, 116, 0.12);
  cursor: pointer;
  opacity: 0.78;
  transition: background-color 0.22s var(--ease-apple), opacity 0.22s var(--ease-apple);
}

input[type="month"]::-webkit-calendar-picker-indicator:hover,
input[type="date"]::-webkit-calendar-picker-indicator:hover {
  background-color: rgba(18, 204, 116, 0.18);
  opacity: 0.9;
}

input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

input[type="file"]::file-selector-button {
  display: none;
}

.upload-zone {
  position: relative;
  min-height: 98px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(18, 204, 116, 0.24);
  border-radius: 18px;
  background:
    radial-gradient(90% 140% at 0% 50%, rgba(18, 204, 116, 0.14), rgba(18, 204, 116, 0) 58%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(251, 250, 245, 0.62)),
    rgba(255, 254, 250, 0.9);
  padding: 18px 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 14px 32px rgba(18, 204, 116, 0.055);
  transition:
    border-color 0.26s var(--ease-apple),
    background 0.26s var(--ease-apple),
    box-shadow 0.26s var(--ease-apple),
    transform 0.26s var(--ease-apple);
}

.upload-zone:hover,
.upload-zone:focus-within {
  border-color: rgba(18, 204, 116, 0.58);
  background:
    radial-gradient(90% 140% at 0% 50%, rgba(18, 204, 116, 0.18), rgba(18, 204, 116, 0) 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(251, 250, 245, 0.68)),
    rgba(255, 254, 250, 0.96);
  box-shadow: 0 18px 38px rgba(18, 204, 116, 0.09);
  transform: translateY(-1px);
}

.upload-zone.has-file {
  border-color: rgba(18, 204, 116, 0.68);
  background:
    radial-gradient(90% 140% at 0% 50%, rgba(18, 204, 116, 0.2), rgba(18, 204, 116, 0) 62%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(251, 250, 245, 0.68)),
    rgba(255, 254, 250, 0.96);
}

.upload-glyph {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(180deg, var(--accent), #14b96d);
  padding: 11px;
  box-shadow:
    0 12px 22px rgba(18, 204, 116, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.upload-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
  flex: 1 1 auto;
}

.upload-copy b {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.upload-copy small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.upload-action {
  flex: 0 0 auto;
  min-height: 34px;
  border-radius: 999px;
  background: rgba(18, 204, 116, 0.13);
  color: #063b22;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 920;
}

.hint {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.error {
  color: var(--warning);
  font-size: 13px;
  line-height: 1.5;
  min-height: 18px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity 0.2s var(--ease-apple), transform 0.2s var(--ease-apple);
}

.error:not(:empty) {
  opacity: 1;
  transform: translateY(0);
}

.form-error-summary {
  border: 1px solid rgba(178, 69, 40, 0.24);
  border-left: 4px solid var(--warning);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.4)),
    rgba(178, 69, 40, 0.065);
  color: #6f2e1f;
  padding: 14px 16px;
  margin-bottom: 18px;
  font-weight: 850;
  line-height: 1.6;
  box-shadow: 0 14px 32px rgba(178, 69, 40, 0.06);
  animation: softIn 0.34s var(--ease-apple);
}

.declaration-check {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 13px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(60, 60, 67, 0.13);
  border-radius: 14px;
  padding: 17px 18px;
  cursor: pointer;
  line-height: 1.5;
  transition:
    border-color 0.24s var(--ease-apple),
    background 0.24s var(--ease-apple),
    box-shadow 0.24s var(--ease-apple);
}

.declaration-check:hover,
.declaration-check:focus-within {
  border-color: rgba(60, 60, 67, 0.22);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 24px rgba(25, 23, 18, 0.045);
}

.declaration-text {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.declaration-text b {
  color: #242421;
  font-size: 15px;
  font-weight: 820;
  line-height: 1.35;
}

.declaration-text small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.55;
}

.check-row input {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  max-width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  padding: 0;
  margin: 1px 0 0;
  display: grid;
  place-content: center;
  border: 1.5px solid rgba(60, 60, 67, 0.58);
  border-radius: 6px;
  background: #fffefa;
  cursor: pointer;
  transition:
    background 0.16s var(--ease-apple),
    border-color 0.16s var(--ease-apple),
    box-shadow 0.16s var(--ease-apple);
}

.check-row input::after {
  content: "";
  width: 5px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(40deg) scale(0);
  transform-origin: center;
  transition: transform 0.14s var(--ease-apple);
}

.check-row input:checked {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 6px 14px rgba(18, 204, 116, 0.14);
}

.check-row input:checked::after {
  transform: rotate(40deg) scale(1);
}

.check-row input:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(18, 204, 116, 0.12);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.submit-status {
  color: var(--muted);
  font-weight: 750;
  min-height: 24px;
  line-height: 1.55;
  transition: color 0.22s var(--ease-apple);
}

.apply-stepper,
.mobile-step-actions {
  display: none;
}

.success-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 34px;
}

.success-panel h1 {
  margin-top: 0;
}

.success-list {
  margin: 28px 0;
  display: grid;
  gap: 12px;
}

.success-row {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
}

.success-row b {
  color: var(--muted);
}

.empty-state {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 28px;
  color: var(--muted);
  line-height: 1.8;
}

.footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 28px 22px 40px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 750;
}

.footer-inner a {
  color: var(--accent-dark);
  font-weight: 800;
}

.footer-contact {
  font-size: 13px;
  font-weight: 650;
  color: var(--muted);
}

@keyframes softIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes contentFloatIn {
  from {
    opacity: 0;
    transform: translate3d(0, 7px, 0) scale(0.998);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.992);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.hide {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .form-main > .back-link,
  .form-title .eyebrow,
  .form-title h1,
  .form-title p,
  .form-main > .apply-note,
  .application-form > .fieldset,
  .application-form > .form-actions {
    animation: none;
  }
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 38px;
  }

  .home-hero {
    padding-top: 38px;
  }

  .bird-hero {
    top: 30px;
    right: 18px;
    width: 150px;
    opacity: 0.32;
  }

  .bird-section {
    width: 120px;
    opacity: 0.24;
  }

  .direction {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .direction-title {
    position: static;
  }

  .apply-band-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav {
    position: relative;
    align-items: center;
    display: flex;
    justify-content: flex-start;
    gap: 0;
    padding: 12px 94px 12px 16px;
    width: 100%;
  }

  .nav-actions {
    width: auto;
    min-width: 0;
    position: absolute;
    top: 50%;
    right: 16px;
    justify-content: flex-end;
    justify-self: end;
    gap: 8px;
    transform: translateY(-50%);
  }

  .nav-link {
    display: none;
  }

  .brand {
    flex: 1 1 auto;
    overflow: hidden;
  }

  .brand-logo {
    width: min(150px, calc(100vw - 132px));
    max-width: 100%;
  }

  .nav .btn {
    width: auto;
    min-height: 36px;
    padding: 0 14px;
    font-size: 14px;
  }

  .hero,
  .section,
  .detail-main,
  .form-main,
  .success-main {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    min-height: auto;
  }

  .home-hero {
    padding-top: 24px;
    padding-bottom: 26px;
  }

  .home-hero h1 {
    font-size: clamp(50px, 16vw, 68px);
    margin-top: 12px;
    margin-bottom: 14px;
  }

  .eyebrow {
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  .eyebrow::before {
    width: 24px;
  }

  .hero-lead {
    font-size: 17px;
    line-height: 1.55;
    max-width: 310px;
  }

  .hero-meta {
    margin-top: 18px;
    gap: 8px;
  }

  .meta-pill {
    min-height: 34px;
    padding: 8px 10px;
    font-size: 12px;
  }

  .hero-actions {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .bird-hero {
    top: 30px;
    right: 8px;
    width: 108px;
    opacity: 0.22;
  }

  .bird-apply {
    width: 96px;
    opacity: 0.2;
  }

  .section-head,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .section {
    padding-top: 24px;
  }

  .section h2 {
    font-size: 40px;
  }

  .direction {
    padding: 24px 0;
    gap: 14px;
  }

  .direction-title h3 {
    font-size: 21px;
  }

  .job-card {
    min-height: 76px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 14px 2px;
  }

  .job-card h4 {
    font-size: 20px;
  }

  .job-meta {
    margin-top: 6px;
    gap: 6px 10px;
    font-size: 12px;
  }

  .card-foot {
    min-width: 70px;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
    font-size: 12px;
  }

  .arrow {
    font-size: 13px;
  }

  .salary {
    font-size: 13px;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .fieldset {
    padding: 23px 18px 20px;
    border-radius: 15px;
  }

  .fieldset:hover {
    transform: none;
  }

  .fieldset legend {
    font-size: 15px;
    padding: 6px 10px;
  }

  input,
  select,
  textarea {
    min-height: 50px;
    border-radius: 13px;
    font-size: 15px;
  }

  .field-trigger {
    height: 50px;
    min-height: 50px;
    border-radius: 13px;
    font-size: 15px;
  }

  .custom-popover {
    border-radius: 15px;
    max-height: 52vh;
  }

  .date-popover {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .picker-columns {
    gap: 5px;
  }

  .picker-column {
    max-height: 186px;
    padding-top: 72px;
    padding-bottom: 72px;
    scroll-padding-block: 72px;
  }

  .upload-zone {
    min-height: 96px;
    padding: 16px;
    align-items: flex-start;
  }

  .upload-glyph {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    border-radius: 13px;
  }

  .upload-action {
    position: absolute;
    right: 14px;
    top: 14px;
    min-height: 30px;
    padding: 7px 10px;
  }

  .apply-stepper.is-active {
    position: sticky;
    top: 61px;
    z-index: 8;
    display: block;
    border: 1px solid rgba(227, 225, 218, 0.72);
    border-radius: 16px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.58)),
      rgba(253, 252, 248, 0.92);
    backdrop-filter: blur(18px);
    box-shadow: 0 16px 38px rgba(25, 23, 18, 0.08);
    padding: 13px 14px;
    margin-bottom: 16px;
    animation: softIn 0.34s var(--ease-apple);
  }

  .step-kicker,
  .step-count {
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
  }

  .step-title {
    margin-top: 3px;
    color: var(--ink);
    font-size: 17px;
    font-weight: 950;
  }

  .step-track {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 6px;
    margin: 11px 0 8px;
  }

  .step-dot {
    height: 5px;
    border-radius: 999px;
    background: rgba(227, 225, 218, 0.95);
    transition:
      background 0.3s var(--ease-apple),
      transform 0.3s var(--ease-apple),
      box-shadow 0.3s var(--ease-apple);
  }

  .step-dot.is-done,
  .step-dot.is-current {
    background: var(--accent);
  }

  .step-dot.is-current {
    transform: scaleY(1.35);
    box-shadow: 0 6px 14px rgba(18, 204, 116, 0.24);
  }

  .application-form.is-stepped {
    gap: 16px;
  }

  .application-form.is-stepped .fieldset {
    display: none;
  }

  .application-form.is-stepped .fieldset.is-active-step {
    display: block;
    animation: stepIn 0.38s var(--ease-apple);
  }

  .application-form.is-stepped .form-actions {
    display: none;
  }

  .application-form.is-stepped.is-last-step .form-actions {
    display: flex;
  }

  .mobile-step-actions.is-active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    animation: softIn 0.28s var(--ease-apple);
  }

  .application-form.is-stepped.is-last-step .mobile-step-actions {
    grid-template-columns: 1fr;
  }

  .application-form.is-stepped.is-last-step .mobile-step-actions [data-step-next] {
    display: none;
  }

  .mobile-step-actions .btn {
    width: 100%;
  }

  .success-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .btn {
    width: 100%;
  }
}
