:root {
  color-scheme: light;
  --bg: #f4f6f3;
  --surface: #ffffff;
  --surface-2: #eef2ec;
  --ink: #172018;
  --muted: #667060;
  --line: #d8ded3;
  --accent: #b2182b;
  --accent-dark: #7f1021;
  --gold: #c9912b;
  --green: #1d6f55;
  --shadow: 0 18px 45px rgba(17, 25, 18, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 clamp(18px, 4vw, 56px);
  background: rgba(244, 246, 243, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--accent);
  color: #ffffff;
  font-size: 14px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-content: end;
  isolation: isolate;
  overflow: hidden;
  background: #111912;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(11, 15, 12, 0.86), rgba(11, 15, 12, 0.38) 55%, rgba(11, 15, 12, 0.72)),
    url("https://images.unsplash.com/photo-1605833556294-ea5c7a74f57d?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  z-index: -1;
  background: linear-gradient(0deg, rgba(17, 25, 18, 0.98), rgba(17, 25, 18, 0));
}

.hero-content {
  width: min(760px, calc(100% - 36px));
  margin: 0 clamp(18px, 5vw, 72px) 34px;
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.38;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 11px 16px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  background: var(--accent);
  color: #ffffff;
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.38);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.market-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.market-strip div {
  min-height: 92px;
  padding: 18px clamp(18px, 4vw, 42px);
  background: rgba(17, 25, 18, 0.76);
}

.market-strip strong,
.market-strip span {
  display: block;
}

.market-strip span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.35;
}

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

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
  letter-spacing: 0;
}

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

.market-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 14px 16px;
}

.market-summary strong,
.market-summary span {
  display: block;
}

.market-summary span {
  color: var(--muted);
}

.field {
  display: grid;
  gap: 7px;
}

label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #ffffff;
  color: var(--ink);
  min-height: 44px;
  padding: 10px 11px;
}

textarea {
  resize: vertical;
}

.jobs-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
  align-items: start;
}

.job-list {
  display: grid;
  gap: 12px;
}

.job-card,
.insight-panel,
.steps article,
.coming-soon-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.job-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 20px;
}

.job-card h3 {
  margin: 0;
  font-size: 22px;
}

.job-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.job-topline span,
.job-topline strong {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 900;
}

.job-topline span {
  color: var(--muted);
  background: var(--surface-2);
}

.job-topline strong {
  color: #ffffff;
  background: var(--accent);
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 9px;
  color: #43503e;
  background: var(--surface-2);
  font-size: 12px;
  font-weight: 800;
}

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

.requirement-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.requirement-list span {
  border-left: 3px solid var(--gold);
  background: #fbfaf6;
  color: #43503e;
  padding: 7px 9px;
  font-size: 12px;
  font-weight: 800;
}

.job-rate {
  min-width: 150px;
  text-align: right;
}

.job-rate strong {
  display: block;
  font-size: 20px;
}

.job-rate span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.job-rate span + span {
  margin-top: 8px;
}

.insight-panel {
  position: sticky;
  top: 92px;
  padding: 22px;
}

.insight-panel h3 {
  margin: 0 0 12px;
}

.insight-panel ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.42;
}

.employer-callout {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.employer-callout strong {
  color: var(--ink);
}

.employer-callout span {
  color: var(--muted);
  line-height: 1.4;
}

.process {
  background: #18251b;
  color: #ffffff;
}

.process .section-heading h2 {
  color: #ffffff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.steps article {
  padding: 22px;
  background: #223326;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.steps span {
  color: var(--gold);
  font-weight: 900;
}

.steps h3 {
  margin: 34px 0 8px;
  font-size: 22px;
}

.steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.coming-soon-panel {
  padding: clamp(18px, 4vw, 32px);
  max-width: 820px;
}

.coming-soon-panel strong {
  display: block;
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.08;
}

.coming-soon-panel p {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.coming-soon-panel .launch-note {
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: #ffffff;
  background: #111912;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 14px;
  }

  .hero {
    min-height: calc(100vh - 102px);
  }

  .market-strip,
  .filters,
  .jobs-layout,
  .steps {
    grid-template-columns: 1fr;
  }

  .market-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .job-card {
    grid-template-columns: 1fr;
  }

  .job-rate {
    text-align: left;
  }

  .insight-panel {
    position: static;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero-content {
    margin-bottom: 24px;
  }

  .hero-actions .button {
    width: 100%;
  }
}
