:root {
  --ink: #101014;
  --ink-soft: #25252c;
  --paper: #fffdf8;
  --paper-muted: #f5f1e8;
  --line: rgba(16, 16, 20, 0.14);
  --white: #ffffff;
  --muted: #62616a;
  --coral: #ff4d5f;
  --cyan: #14c8e8;
  --lime: #d9ff5c;
  --violet: #7758ff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--lime);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 40px;
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 253, 248, 0.96);
  color: var(--ink);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1;
  background: rgba(255, 255, 255, 0.08);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 17px;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: currentColor;
  opacity: 0.72;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 800;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 6px;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  outline: none;
}

.site-header.is-scrolled .main-nav a:hover,
.site-header.is-scrolled .main-nav a:focus-visible,
.site-header.is-open .main-nav a:hover,
.site-header.is-open .main-nav a:focus-visible {
  background: rgba(16, 16, 20, 0.08);
}

.main-nav .nav-cta {
  background: var(--lime);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 10, 13, 0.92) 0%, rgba(10, 10, 13, 0.72) 38%, rgba(10, 10, 13, 0.16) 72%),
    linear-gradient(0deg, rgba(10, 10, 13, 0.76) 0%, rgba(10, 10, 13, 0) 46%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 150px 0 64px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-kicker {
  color: var(--coral);
}

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

h1 {
  max-width: 870px;
  margin-bottom: 22px;
  font-size: 64px;
  line-height: 1.03;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 730px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.hero-actions,
.footer-links,
.contact-methods,
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  background: var(--lime);
  color: var(--ink);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.hero-tags {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  max-width: 820px;
}

.hero-tags li {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 800;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-strip div {
  min-height: 118px;
  padding: 28px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-strip div:last-child {
  border-right: 0;
}

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

.proof-strip strong {
  font-size: 22px;
  line-height: 1.2;
}

.proof-strip span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.section {
  padding: 96px 40px;
}

.section-heading,
.intro-grid,
.split,
.seo-copy,
.contact-section,
.site-footer {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

h2 {
  margin-bottom: 18px;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: 0;
}

.intro-copy {
  color: var(--ink-soft);
  font-size: 18px;
}

.intro-copy p:last-child,
.seo-copy p:last-child,
.split-copy p:last-child {
  margin-bottom: 0;
}

.positions-section,
.faq-section {
  background: var(--paper-muted);
}

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

.section-heading p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.section-heading.narrow {
  max-width: 790px;
  text-align: center;
}

.position-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.position-card,
.feature-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.position-card {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.04);
}

.position-card.featured {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.position-card.featured .card-topline {
  color: var(--lime);
}

.card-topline small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: none;
}

.position-card.featured .card-topline small {
  color: rgba(255, 255, 255, 0.68);
}

.position-card h3 {
  margin-bottom: 12px;
  font-size: 25px;
  line-height: 1.18;
  letter-spacing: 0;
}

.position-card p,
.position-card li {
  color: var(--muted);
}

.position-card.featured p,
.position-card.featured li {
  color: rgba(255, 255, 255, 0.76);
}

.position-card ul {
  padding-left: 18px;
  margin: 6px 0 24px;
}

.position-card li + li {
  margin-top: 8px;
}

.position-card a {
  margin-top: auto;
  color: var(--ink);
  font-weight: 900;
  border-bottom: 2px solid var(--coral);
  width: max-content;
  max-width: 100%;
}

.position-card.featured a {
  color: var(--white);
  border-color: var(--lime);
}

.training-section {
  background: var(--ink);
  color: var(--white);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 54px;
  align-items: center;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  min-height: 520px;
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.media-frame span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 12px;
  border-radius: 6px;
  background: var(--lime);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.split-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.steps {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.steps div {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.steps strong {
  color: var(--cyan);
  font-size: 22px;
}

.steps h3 {
  margin-bottom: 4px;
  font-size: 20px;
  line-height: 1.2;
}

.steps p {
  grid-column: 2;
  margin: -10px 0 0;
  font-size: 16px;
}

.environment-section {
  background: var(--paper);
}

.feature-grid {
  width: min(1180px, 100%);
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-grid article {
  padding: 24px;
  min-height: 260px;
}

.feature-grid span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--violet);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-grid h3 {
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.17;
}

.feature-grid p {
  color: var(--muted);
}

.seo-section {
  background: #f7f7f1;
}

.seo-copy {
  max-width: 910px;
}

.seo-copy p {
  color: var(--ink-soft);
  font-size: 18px;
}

.faq-list {
  width: min(920px, 100%);
  margin: 0 auto;
}

details {
  border-top: 1px solid var(--line);
  background: transparent;
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

details[open] summary::after {
  content: "-";
  background: var(--coral);
}

details p {
  max-width: 760px;
  margin: -4px 0 24px;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: 44px;
  padding: 96px 40px;
}

.contact-copy {
  align-self: center;
}

.contact-copy p {
  color: var(--muted);
  font-size: 18px;
}

.contact-methods {
  margin-top: 28px;
}

.contact-methods a {
  flex: 1 1 210px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.contact-methods span,
.contact-methods strong {
  display: block;
}

.contact-methods span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.contact-methods strong {
  margin-top: 4px;
  line-height: 1.22;
}

.apply-form {
  padding: 26px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.apply-form h3 {
  margin-bottom: 20px;
  font-size: 28px;
}

.apply-form label {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.apply-form input,
.apply-form select,
.apply-form textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 13px 14px;
  outline: none;
}

.apply-form select option {
  color: var(--ink);
}

.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
  border-color: var(--lime);
}

.apply-form textarea {
  resize: vertical;
}

.apply-form .btn {
  width: 100%;
  margin-top: 6px;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--lime);
  font-size: 14px;
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 40px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 520px;
  margin: 8px 0 0;
  color: var(--muted);
}

.footer-links {
  justify-content: flex-end;
  font-weight: 800;
}

.footer-links a {
  border-bottom: 2px solid var(--coral);
}

.mobile-actions {
  display: none;
}

.job-detail-hero {
  position: relative;
  min-height: 68vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.job-detail-hero .hero-image,
.job-detail-hero .hero-shade {
  position: absolute;
  inset: 0;
}

.job-detail-hero .hero-content {
  padding-bottom: 58px;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.job-meta li {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 800;
}

.job-detail-main {
  padding: 82px 40px;
  background: var(--paper);
}

.job-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 42px;
  align-items: start;
}

.job-content h2 {
  margin-top: 42px;
  font-size: 32px;
}

.job-content h2:first-child {
  margin-top: 0;
}

.job-content p,
.job-content li {
  color: var(--ink-soft);
  font-size: 18px;
}

.job-content ul {
  padding-left: 20px;
}

.job-content li + li {
  margin-top: 8px;
}

.job-sidebar {
  position: sticky;
  top: 92px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.05);
}

.job-sidebar h2 {
  font-size: 26px;
}

.job-sidebar dl {
  margin: 18px 0 22px;
}

.job-sidebar div {
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.job-sidebar dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.job-sidebar dd {
  margin: 4px 0 0;
  font-weight: 850;
  line-height: 1.35;
}

.job-sidebar .btn {
  width: 100%;
}

.back-link {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--coral);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

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

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  .proof-strip,
  .position-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .position-card {
    min-height: 390px;
  }

  .split,
  .intro-grid,
  .contact-section,
  .job-layout {
    grid-template-columns: 1fr;
  }

  .job-sidebar {
    position: static;
  }

  .media-frame,
  .media-frame img {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 62px;
  }

  .site-header {
    padding: 12px 16px;
  }

  .brand {
    min-width: auto;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand small {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    color: var(--ink);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  }

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

  .main-nav a {
    justify-content: center;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-image {
    object-position: 68% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 10, 13, 0.92) 0%, rgba(10, 10, 13, 0.68) 62%, rgba(10, 10, 13, 0.26) 100%),
      linear-gradient(0deg, rgba(10, 10, 13, 0.82) 0%, rgba(10, 10, 13, 0) 48%);
  }

  .hero-content {
    width: min(100% - 28px, 1180px);
    padding: 112px 0 34px;
  }

  h1 {
    font-size: 35px;
    line-height: 1.08;
  }

  .hero-lead,
  .section-heading p,
  .intro-copy,
  .seo-copy p,
  .split-copy p,
  .contact-copy p {
    font-size: 16px;
  }

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

  .hero-tags {
    gap: 8px;
  }

  .hero-tags li {
    font-size: 13px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    min-height: auto;
    padding: 18px 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .section,
  .contact-section,
  .job-detail-main {
    padding: 64px 18px;
  }

  .job-detail-hero .hero-content {
    padding-bottom: 40px;
  }

  .job-meta {
    gap: 8px;
  }

  .job-meta li {
    font-size: 13px;
  }

  .job-content h2 {
    font-size: 27px;
  }

  .job-content p,
  .job-content li {
    font-size: 16px;
  }

  h2 {
    font-size: 30px;
  }

  .position-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .position-card,
  .feature-grid article {
    min-height: auto;
  }

  .media-frame,
  .media-frame img {
    min-height: 320px;
  }

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

  summary {
    min-height: 64px;
    font-size: 17px;
  }

  .apply-form {
    padding: 20px;
  }

  .site-footer {
    flex-direction: column;
    padding: 34px 18px 24px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .mobile-actions {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--ink);
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mobile-actions a {
    display: grid;
    place-items: center;
    min-height: 58px;
    font-weight: 900;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mobile-actions a:nth-child(2) {
    background: var(--lime);
    color: var(--ink);
  }

  .mobile-actions a:last-child {
    border-right: 0;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 31px;
  }

  h2 {
    font-size: 27px;
  }

  .brand strong {
    font-size: 15px;
  }

  .hero-content {
    width: min(100% - 22px, 1180px);
  }
}

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

/* Professional refresh */
:root {
  --ink: #151619;
  --ink-soft: #333842;
  --paper: #fbfaf7;
  --paper-muted: #f1f3f0;
  --line: rgba(21, 22, 25, 0.12);
  --white: #ffffff;
  --muted: #6d7280;
  --coral: #b35c28;
  --cyan: #087f8c;
  --lime: #f2b84b;
  --violet: #5f5a8f;
  --shadow: 0 18px 50px rgba(21, 22, 25, 0.14);
}

body {
  background: var(--paper);
  color: var(--ink);
}

.site-header {
  background: rgba(251, 250, 247, 0.96);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
  backdrop-filter: blur(18px);
  padding: 14px 40px;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(251, 250, 247, 0.98);
  box-shadow: 0 10px 32px rgba(21, 22, 25, 0.08);
}

.brand {
  gap: 13px;
}

.brand-mark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: 15px;
}

.brand small {
  color: var(--muted);
  opacity: 1;
  letter-spacing: 0.04em;
}

.main-nav {
  gap: 2px;
  color: var(--ink-soft);
}

.main-nav a {
  border-radius: 6px;
  min-height: 40px;
  padding: 0 13px;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.site-header.is-scrolled .main-nav a:hover,
.site-header.is-scrolled .main-nav a:focus-visible,
.site-header.is-open .main-nav a:hover,
.site-header.is-open .main-nav a:focus-visible {
  background: rgba(21, 22, 25, 0.06);
}

.main-nav .nav-cta {
  background: var(--ink);
  color: var(--white);
}

.hero,
.job-detail-hero {
  min-height: 78vh;
  background: #171719;
}

.job-detail-hero {
  min-height: 64vh;
}

.hero-image {
  object-position: 68% center;
  filter: saturate(0.92) contrast(0.98);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 13, 16, 0.88) 0%, rgba(12, 13, 16, 0.72) 42%, rgba(12, 13, 16, 0.24) 74%),
    linear-gradient(0deg, rgba(12, 13, 16, 0.7) 0%, rgba(12, 13, 16, 0.08) 48%);
}

.hero-content {
  width: min(1120px, calc(100% - 56px));
  padding: 138px 0 72px;
}

.eyebrow,
.section-kicker {
  color: var(--lime);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.section-kicker {
  color: var(--coral);
}

h1 {
  max-width: 760px;
  font-size: 54px;
  line-height: 1.08;
  font-weight: 850;
}

.hero-lead {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.btn {
  border-radius: 6px;
  font-weight: 850;
  min-height: 48px;
  box-shadow: none;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--lime);
  color: var(--ink);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.32);
}

.hero-tags li,
.job-meta li {
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 760;
}

.proof-strip {
  width: min(1120px, calc(100% - 56px));
  margin: -38px auto 0;
  position: relative;
  z-index: 2;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 20px 45px rgba(21, 22, 25, 0.1);
  overflow: hidden;
}

.proof-strip div {
  min-height: 104px;
  padding: 24px 28px;
  border-right: 1px solid var(--line);
}

.proof-strip strong {
  font-size: 19px;
}

.proof-strip span {
  color: var(--muted);
}

.section {
  padding: 88px 40px;
}

h2 {
  font-size: 40px;
  line-height: 1.14;
  font-weight: 820;
}

.intro-section,
.environment-section,
.contact-section {
  background: var(--paper);
}

.positions-section,
.faq-section {
  background: var(--paper-muted);
}

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

.section-heading p,
.intro-copy,
.seo-copy p,
.split-copy p,
.contact-copy p {
  color: var(--ink-soft);
}

.position-grid {
  width: min(1120px, 100%);
  gap: 16px;
}

.position-card,
.feature-grid article,
.contact-methods a,
.job-sidebar {
  border-color: var(--line);
  box-shadow: none;
}

.position-card {
  min-height: 380px;
  padding: 25px;
}

.position-card.featured {
  background: var(--white);
  color: var(--ink);
  border-color: rgba(179, 92, 40, 0.32);
  border-top: 4px solid var(--coral);
}

.card-topline,
.position-card.featured .card-topline {
  color: var(--coral);
  letter-spacing: 0.05em;
}

.position-card.featured p,
.position-card.featured li {
  color: var(--muted);
}

.position-card h3 {
  font-size: 23px;
  font-weight: 820;
}

.position-card a,
.position-card.featured a,
.footer-links a,
.back-link {
  color: var(--cyan);
  border-color: rgba(8, 127, 140, 0.35);
}

.training-section {
  background: #18191b;
}

.media-frame {
  min-height: 470px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.media-frame img {
  min-height: 470px;
}

.media-frame span {
  background: rgba(251, 250, 247, 0.94);
  color: var(--ink);
  border-radius: 6px;
}

.steps strong {
  color: var(--lime);
}

.feature-grid {
  width: min(1120px, 100%);
  gap: 16px;
}

.feature-grid article {
  min-height: 230px;
}

.feature-grid span {
  color: var(--cyan);
}

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

summary {
  font-size: 18px;
}

summary::after {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}

details[open] summary::after {
  background: var(--ink);
  color: var(--white);
}

.contact-section {
  padding-top: 88px;
  padding-bottom: 88px;
  align-items: start;
}

.contact-copy {
  align-self: start;
  padding-top: 34px;
}

.apply-form {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(21, 22, 25, 0.1);
}

.application-panel {
  display: grid;
  gap: 18px;
}

.apply-form label {
  color: var(--ink-soft);
}

.apply-form input,
.apply-form select,
.apply-form textarea {
  background: #f7f7f4;
  color: var(--ink);
  border-color: var(--line);
}

.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
  border-color: var(--cyan);
  background: var(--white);
}

.form-status {
  color: var(--cyan);
}

.qr-card {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(21, 22, 25, 0.08);
  text-align: center;
}

.qr-card h3 {
  margin-bottom: 4px;
  font-size: 24px;
}

.qr-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.qr-card img {
  width: 211px;
  height: auto;
  max-width: 100%;
  border-radius: 8px;
}

.qr-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  font-weight: 850;
}

.guide-section {
  background: var(--paper);
}

.guide-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.guide-grid article {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.guide-grid span,
.article-kicker {
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-grid h3 {
  margin: 18px 0 10px;
  font-size: 23px;
  line-height: 1.2;
}

.guide-grid p {
  color: var(--muted);
}

.guide-grid a {
  margin-top: auto;
  width: max-content;
  max-width: 100%;
  color: var(--cyan);
  font-weight: 850;
  border-bottom: 2px solid rgba(8, 127, 140, 0.35);
}

.article-hero {
  padding: 142px 40px 72px;
  background: #18191b;
  color: var(--white);
}

.article-hero-inner,
.article-layout,
.related-guides {
  width: min(980px, 100%);
  margin: 0 auto;
}

.article-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: 48px;
}

.article-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.article-main {
  padding: 72px 40px;
  background: var(--paper);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 42px;
  align-items: start;
}

.article-body h2 {
  margin-top: 34px;
  font-size: 30px;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body p,
.article-body li {
  color: var(--ink-soft);
  font-size: 18px;
}

.article-body ul {
  padding-left: 20px;
}

.article-body li + li {
  margin-top: 8px;
}

.article-sidebox {
  position: sticky;
  top: 92px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.article-sidebox h2 {
  font-size: 24px;
}

.article-sidebox p {
  color: var(--muted);
}

.article-sidebox .btn {
  width: 100%;
  margin-top: 8px;
}

.related-guides {
  margin-top: 56px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.related-guides h2 {
  font-size: 28px;
}

.related-guides ul {
  padding-left: 20px;
}

.related-guides a {
  color: var(--cyan);
  font-weight: 850;
  border-bottom: 1px solid rgba(8, 127, 140, 0.35);
}

@media (max-width: 1040px) {
  .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebox {
    position: static;
  }
}

@media (max-width: 760px) {
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .guide-grid article {
    min-height: auto;
    padding: 21px;
  }

  .article-hero {
    padding: 104px 18px 48px;
  }

  .article-hero h1 {
    font-size: 31px;
  }

  .article-hero p,
  .article-body p,
  .article-body li {
    font-size: 16px;
  }

  .article-main {
    padding: 54px 18px;
  }

  .article-body h2 {
    font-size: 26px;
  }
}

.site-footer {
  background: #18191b;
  color: var(--white);
  border-top: 0;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.66);
}

.job-detail-main {
  background: var(--paper);
}

.job-sidebar {
  box-shadow: 0 18px 45px rgba(21, 22, 25, 0.08);
}

@media (max-width: 1040px) {
  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .position-card {
    min-height: 0;
  }
}

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

  .main-nav {
    background: var(--paper);
    color: var(--ink);
    top: 64px;
  }

  .hero,
  .job-detail-hero {
    min-height: 82vh;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(12, 13, 16, 0.93) 0%, rgba(12, 13, 16, 0.78) 64%, rgba(12, 13, 16, 0.36) 100%),
      linear-gradient(0deg, rgba(12, 13, 16, 0.76) 0%, rgba(12, 13, 16, 0.18) 54%);
  }

  .hero-content {
    width: min(100% - 30px, 1120px);
    padding: 106px 0 38px;
  }

  h1 {
    font-size: 30px;
    line-height: 1.13;
  }

  h2 {
    font-size: 28px;
  }

  .proof-strip {
    width: calc(100% - 30px);
    margin-top: -26px;
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    padding: 17px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section,
  .contact-section,
  .job-detail-main {
    padding-left: 18px;
    padding-right: 18px;
  }

  .position-card {
    padding: 21px;
  }

  .mobile-actions {
    background: #18191b;
  }

  .mobile-actions a:nth-child(2) {
    background: var(--lime);
    color: var(--ink);
  }
}
