:root {
  --ink: #122018;
  --muted: #647268;
  --paper: #f7fbf5;
  --surface: #ffffff;
  --line: #dce9dd;
  --lime: #b7e510;
  --green: #15803d;
  --deep-green: #0f5f32;
  --shadow: 0 22px 60px rgba(16, 95, 50, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 72px);
  color: var(--deep-green);
  background: #ffffff;
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(15, 95, 50, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: 148px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.nav {
  display: flex;
  gap: clamp(14px, 3vw, 30px);
  color: #000000;
  font-weight: 700;
  font-size: 14px;
}

.nav a {
  color: #000000;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, 92vh);
  overflow: hidden;
  color: #ffffff;
}

.hero-image,
.hero-shade,
.hero-content {
  grid-area: 1 / 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: min(760px, 92vh);
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 47, 25, 0.9), rgba(15, 95, 50, 0.55) 45%, rgba(15, 95, 50, 0.08)),
    linear-gradient(0deg, rgba(18, 32, 24, 0.28), rgba(18, 32, 24, 0.05));
}

.hero-content {
  z-index: 2;
  align-self: center;
  width: min(680px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 80px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--green);
}

.benefits-band .eyebrow.dark {
  color: #000000;
}

.apply-band .eyebrow.dark {
  color: #000000;
}

h1,
h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  font-size: clamp(46px, 8vw, 92px);
}

.hero h1 {
  font-family: system-ui, sans-serif;
  font-size: clamp(42px, 5vw, 50px);
}

h2 {
  font-size: clamp(30px, 5vw, 56px);
}

.hero-copy {
  max-width: 600px;
  margin: 24px 0 16px;
  color: rgba(255, 255, 255, 0.9);
  font-family: system-ui, sans-serif;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.5;
}

.hero-benefits {
  display: grid;
  gap: 8px;
  max-width: 560px;
  margin: 0 0 22px;
  padding: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(15px, 1.7vw, 18px);
  font-weight: 700;
  line-height: 1.4;
  list-style: none;
}

.hero-benefits li {
  position: relative;
  padding-left: 22px;
}

.hero-benefits li::before {
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.primary-link,
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  background: var(--lime);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(185, 221, 49, 0.26);
}

.hero .primary-link {
  display: inline-flex;
  width: auto;
  margin-left: 0;
  margin-right: 0;
  transform: translateY(-8px);
}

.section-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.picker-band,
.benefits-band,
.apply-band {
  padding: clamp(58px, 8vw, 104px) 0;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 30px;
}

.picker-layout {
  display: grid;
  grid-template-columns: minmax(280px, 410px) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.picker-panel,
.apply-form,
.vacancy-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.picker-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

label span {
  font-size: 14px;
}

select,
input,
textarea {
  width: 100%;
  border: 1px solid #c9dcca;
  border-radius: 8px;
  background: #fbfffb;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
}

select,
input {
  min-height: 52px;
  padding: 0 14px;
}

textarea {
  min-height: 112px;
  padding: 14px;
  resize: vertical;
}

.vacancy-card {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 4vw, 38px);
}

.vacancy-card h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
}

.vacancy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vacancy-meta span,
.selected-summary span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 8px;
  padding: 0 12px;
  background: #edf8e8;
  color: var(--deep-green);
  font-size: 13px;
  font-weight: 800;
}

.vacancy-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.requirements {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.requirements li {
  position: relative;
  padding-left: 24px;
  line-height: 1.55;
}

.requirements li::before {
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.benefits-band {
  background: #eef7ec;
}

.benefits-grid {
  display: grid;
  grid-template-columns: minmax(250px, 390px) minmax(0, 1fr);
  gap: 36px;
}

.benefits-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefits-list li {
  display: grid;
  gap: 8px;
  padding: 22px 0;
  border-bottom: 1px solid #cfe2d1;
}

.benefits-list strong {
  font-size: 20px;
}

.benefits-list span,
.apply-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.apply-layout {
  display: grid;
  grid-template-columns: minmax(250px, 390px) minmax(0, 620px);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.apply-copy {
  position: sticky;
  top: 110px;
}

.apply-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
}

.apply-picker-controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.selected-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 4px;
}

.consent {
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  font-weight: 600;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.submit-button {
  width: 100%;
  border: 1px solid var(--line);
  color: #0c0811;
  background: #b7e510;
  box-shadow: 0 12px 28px rgba(183, 229, 16, 0.22);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: #122018;
  background: #b7e510;
  font-size: 14px;
}

@media (max-width: 820px) {
  .topbar {
    position: absolute;
  }

  .nav {
    display: none;
  }

  .hero-content {
    align-self: end;
    margin: 0 auto;
    padding-bottom: 48px;
  }

  h1 {
    max-width: 10ch;
  }

  .picker-layout,
  .benefits-grid,
  .apply-layout {
    grid-template-columns: 1fr;
  }

  .apply-picker-controls {
    grid-template-columns: 1fr;
  }

  .apply-copy {
    position: static;
  }

  .footer {
    flex-direction: column;
  }
}

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

  .hero-image {
    min-height: 720px;
  }

  h1 {
    font-size: 42px;
  }

  .brand-logo {
    width: 132px;
    height: auto;
  }

  .picker-panel,
  .apply-form,
  .vacancy-card {
    padding: 20px;
  }
}
