:root {
  --ink: #11110f;
  --coal: #191918;
  --steel: #263237;
  --line: #d7d1c4;
  --concrete: #f3efe6;
  --paper: #fbf8f1;
  --orange: #ff6f1a;
  --orange-dark: #ce4f00;
  --teal: #2f9d8f;
  --white: #ffffff;
  --muted: #68645d;
  --shadow: 0 24px 60px rgba(17, 17, 15, 0.18);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.is-nav-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 16px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(251, 248, 241, 0.96);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(17, 17, 15, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid currentColor;
  color: currentColor;
  font-size: 21px;
  line-height: 1;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
  background: currentColor;
  opacity: 0.5;
}

.brand-mark::before {
  inset: 7px auto 7px 50%;
  width: 2px;
}

.brand-mark::after {
  inset: 50% 7px auto;
  height: 2px;
}

.brand-text {
  display: grid;
  gap: 0;
  font-size: 13px;
  line-height: 1.02;
}

.brand-text span:first-child {
  font-size: 18px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.3vw, 32px);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  padding: 11px 16px;
  background: var(--orange);
  color: var(--ink);
}

.site-nav .nav-cta::after {
  content: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  background: transparent;
  color: currentColor;
}

.nav-toggle span {
  position: absolute;
  width: 19px;
  height: 2px;
  background: currentColor;
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

.nav-toggle span:first-child {
  transform: translateY(-5px);
}

.nav-toggle span:last-child {
  transform: translateY(5px);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 78vh;
  overflow: hidden;
  padding: 110px clamp(18px, 6vw, 76px) 42px;
  color: var(--white);
}

.hero-media,
.hero-overlay,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 59% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 13, 12, 0.92) 0%, rgba(13, 13, 12, 0.72) 35%, rgba(13, 13, 12, 0.2) 66%, rgba(13, 13, 12, 0.06) 100%),
    linear-gradient(180deg, rgba(13, 13, 12, 0.38), rgba(13, 13, 12, 0.24) 46%, rgba(13, 13, 12, 0.64));
}

.hero-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, black 0%, transparent 68%);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 900px;
}

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

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

h1,
h2,
h3 {
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 840px;
  margin-bottom: 24px;
  font-size: clamp(47px, 7vw, 96px);
  font-weight: 950;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 670px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.8vw, 23px);
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  padding: 15px 20px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

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

.button svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.button-primary {
  background: var(--orange);
  color: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ff8a3e;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

.signal-strip div {
  min-height: 132px;
  padding: 28px clamp(18px, 4vw, 54px);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

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

.signal-strip strong {
  display: block;
  margin-bottom: 9px;
  color: var(--orange);
  font-size: 16px;
  text-transform: uppercase;
}

.signal-strip span {
  display: block;
  max-width: 370px;
  color: rgba(255, 255, 255, 0.76);
}

.section {
  padding: clamp(68px, 9vw, 122px) clamp(18px, 6vw, 76px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.62fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.intro h2,
.section-heading h2,
.candidate-layout h2,
.market-copy h2,
.contact-copy h2 {
  max-width: 930px;
  margin-bottom: 22px;
  font-size: clamp(36px, 5vw, 76px);
  font-weight: 950;
  text-transform: uppercase;
}

.intro p,
.section-heading p,
.candidate-layout p,
.market-copy p,
.contact-copy p,
.proof-panel p {
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
}

.proof-panel {
  border-left: 6px solid var(--orange);
  padding: 26px 0 26px 28px;
}

.proof-panel span {
  display: block;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-panel strong {
  display: block;
  margin-bottom: 16px;
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1;
  text-transform: uppercase;
}

.band {
  background:
    linear-gradient(90deg, rgba(47, 157, 143, 0.08), transparent 34%),
    var(--concrete);
}

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

.feature-card,
.role-card,
.timeline article {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.64);
}

.feature-card {
  min-height: 290px;
  padding: 28px;
}

.feature-number,
.timeline span {
  display: inline-block;
  margin-bottom: 54px;
  color: var(--teal);
  font-weight: 950;
}

.feature-card h3,
.role-card h3,
.timeline h3 {
  margin-bottom: 16px;
  font-size: clamp(24px, 2.3vw, 36px);
  font-weight: 950;
  text-transform: uppercase;
}

.feature-card p,
.role-card p,
.timeline p {
  color: var(--muted);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 440px);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  margin-bottom: 34px;
}

.role-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.role-tab {
  min-width: 92px;
  min-height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.role-tab.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

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

.role-card {
  min-height: 265px;
  padding: 26px;
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

.role-card.is-hidden {
  display: none;
}

.role-card:hover {
  transform: translateY(-4px);
}

.role-card span {
  display: block;
  margin-bottom: 50px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.candidate-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.candidate-layout p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.72);
}

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

.candidate-list div {
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 24px;
}

.candidate-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 18px;
  text-transform: uppercase;
}

.candidate-list span {
  color: rgba(255, 255, 255, 0.72);
}

.process {
  background: var(--paper);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.timeline article {
  min-height: 300px;
  border-top: 0;
  border-left: 0;
  padding: 26px;
}

.timeline span {
  margin-bottom: 64px;
  color: var(--orange-dark);
}

.market-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.85fr);
  gap: clamp(28px, 6vw, 78px);
  background: var(--concrete);
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.market-grid span {
  display: grid;
  min-height: 76px;
  place-items: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--steel);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.9fr);
  gap: clamp(34px, 7vw, 90px);
  padding: clamp(70px, 9vw, 128px) clamp(18px, 6vw, 76px);
  background:
    linear-gradient(135deg, rgba(255, 111, 26, 0.12), transparent 32%),
    var(--ink);
  color: var(--white);
}

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

.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  color: var(--orange);
  font-size: 18px;
  font-weight: 900;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.lead-form textarea {
  min-height: 122px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 111, 26, 0.25);
}

.wide {
  grid-column: 1 / -1;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 36px clamp(18px, 6vw, 76px);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-end;
  gap: 18px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 1020px) {
  .feature-grid,
  .roles-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading,
  .market-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .market-grid {
    max-width: 760px;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 70px;
    padding: 14px 18px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 70px 0 auto;
    display: grid;
    gap: 0;
    padding: 12px 18px 24px;
    background: rgba(251, 248, 241, 0.98);
    color: var(--ink);
    box-shadow: 0 18px 30px rgba(17, 17, 15, 0.13);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-cta {
    margin-top: 16px;
    padding: 14px 16px;
    text-align: center;
  }

  .hero {
    min-height: 78vh;
    padding: 96px 18px 38px;
  }

  .hero-media img {
    object-position: 66% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(13, 13, 12, 0.94) 0%, rgba(13, 13, 12, 0.72) 56%, rgba(13, 13, 12, 0.32) 100%),
      linear-gradient(180deg, rgba(13, 13, 12, 0.18), rgba(13, 13, 12, 0.72));
  }

  h1 {
    font-size: clamp(38px, 11vw, 56px);
  }

  .hero-copy {
    font-size: 17px;
  }

  .signal-strip,
  .split,
  .candidate-layout {
    grid-template-columns: 1fr;
  }

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

  .proof-panel {
    border-left-width: 4px;
    padding-left: 20px;
  }

  .lead-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .site-footer {
    display: grid;
  }

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

@media (max-width: 620px) {
  .button {
    width: 100%;
  }

  .feature-grid,
  .roles-grid,
  .timeline,
  .market-grid {
    grid-template-columns: 1fr;
  }

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

  .role-tab {
    width: 100%;
  }

  .intro h2,
  .section-heading h2,
  .candidate-layout h2,
  .market-copy h2,
  .contact-copy h2 {
    font-size: clamp(34px, 11vw, 52px);
  }

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

  .brand-text span:first-child {
    font-size: 16px;
  }
}

@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;
  }
}
