:root {
  --ink: #17211f;
  --muted: #5e6b66;
  --line: #dfe8e2;
  --soft: #f5f8f4;
  --soft-2: #eef5f0;
  --green: #2d8f57;
  --green-2: #43bf72;
  --navy: #17343f;
  --violet: #52517e;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(20, 39, 34, 0.12);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #f7faf7 100%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(223, 232, 226, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  gap: 2px;
  min-width: 210px;
  line-height: 1;
}

.brand-name {
  color: var(--ink);
  font-size: 19px;
  font-weight: 850;
}

.brand-subtitle {
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ink);
  background: var(--soft-2);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
  padding: clamp(56px, 9vw, 112px) clamp(20px, 5vw, 72px) 48px;
}

.job-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.54fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(56px, 9vw, 104px) clamp(20px, 5vw, 72px) clamp(40px, 7vw, 78px);
  background: #fbfcfb;
}

.hero-copy {
  max-width: 720px;
}

.job-hero-copy {
  max-width: 820px;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-text,
.section p,
.card p,
.step p,
.role-item p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  font-weight: 800;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 28px rgba(45, 143, 87, 0.22);
}

.button.primary:hover {
  background: #237b49;
}

.button.secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.button.secondary:hover {
  border-color: #bdd2c5;
  background: var(--soft);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.hero-stats div {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-stats dt {
  font-size: 26px;
  font-weight: 800;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.hero-media {
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  border-radius: 12px;
}

.section {
  padding: clamp(54px, 8vw, 92px) clamp(20px, 5vw, 72px);
}

.intro {
  max-width: 1060px;
  padding-top: 28px;
  padding-bottom: 28px;
}

.intro p {
  margin: 0;
  color: var(--navy);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.25;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.three,
.card-grid.six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.role-item,
.proof-panel,
.contact-form,
.job-summary,
.job-section {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(20, 39, 34, 0.06);
}

.job-summary {
  padding: 8px;
}

.job-summary dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.job-summary div {
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.job-summary div:last-child {
  border-bottom: 0;
}

.job-summary dt {
  margin-bottom: 6px;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.job-summary dd {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.45;
}

.card {
  padding: 28px;
}

.card-icon {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
  background: var(--soft);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  background: #fbfcfb;
}

.about-copy {
  display: grid;
  gap: 16px;
}

.about-copy p {
  margin: 0;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.step span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  font-weight: 800;
  background: var(--navy);
  border-radius: 8px;
}

.role-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.role-item {
  padding: 24px;
}

.careers {
  background: var(--soft);
}

.career-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.7fr);
  gap: 18px;
}

.career-copy,
.career-list {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(20, 39, 34, 0.06);
}

.career-copy {
  padding: clamp(26px, 4vw, 42px);
}

.career-copy .button {
  margin-top: 10px;
}

.career-list {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.career-list p {
  display: flex;
  align-items: center;
  min-height: 72px;
  margin: 0;
  padding: 18px 22px;
  color: var(--navy);
  font-weight: 800;
  border-bottom: 1px solid var(--line);
}

.career-list p:last-child {
  border-bottom: 0;
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 24px;
  align-items: stretch;
}

.proof-panel {
  padding: clamp(28px, 5vw, 48px);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--violet));
  border: none;
}

.proof-panel .eyebrow,
.proof-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.proof-list {
  display: grid;
  gap: 14px;
}

.proof-list p {
  display: flex;
  align-items: center;
  min-height: 68px;
  margin: 0;
  padding: 18px 22px;
  color: var(--navy);
  font-weight: 800;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
  overflow: hidden;
}

.faq-list summary {
  min-height: 64px;
  padding: 20px 24px;
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
}

.faq-list details[open] summary {
  border-bottom: 1px solid var(--line);
}

.faq-list p {
  margin: 0;
  padding: 20px 24px 24px;
}

.job-detail {
  display: grid;
  gap: 18px;
  max-width: 1060px;
}

.job-section {
  padding: clamp(24px, 4vw, 38px);
}

.job-section h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.job-section p:last-child,
.job-section .job-list:last-child {
  margin-bottom: 0;
}

.job-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.job-list li::marker {
  color: var(--green);
}

.employer-note {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  background: var(--soft);
}

.employer-note a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.74fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background: #fbfcfb;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
}

.contact-options {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-options a,
.contact-options span {
  display: inline-flex;
  width: fit-content;
  color: var(--navy);
  font-weight: 800;
}

.contact-options a {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  font: inherit;
  border: 1px solid #cddbd2;
  border-radius: 8px;
  background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(67, 191, 114, 0.22);
  border-color: var(--green);
}

.form-note {
  min-height: 24px;
  margin: 0;
  font-size: 14px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--navy);
  font-weight: 800;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero,
  .job-hero,
  .about,
  .split,
  .proof,
  .employer-note,
  .career-panel,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .card-grid.three,
  .card-grid.six,
  .role-list {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-name {
    font-size: 18px;
  }

  .brand-subtitle {
    font-size: 12px;
  }

  .hero,
  .section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .step {
    grid-template-columns: 1fr;
  }
}
