:root {
  color-scheme: light;
  --ink: #172033;
  --muted: #5c6678;
  --line: #d9e0ea;
  --paper: #f4f7fb;
  --white: #ffffff;
  --blue: #1d4ed8;
  --teal: #0f766e;
  --coral: #e85d45;
  --navy: #111827;
  --gold: #f4b942;
}

* {
  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;
  color: var(--ink);
  background: var(--paper);
}

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

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

.topbar {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(20px, 5vw, 64px);
  color: var(--white);
  background: rgba(17, 24, 39, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.brand,
nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  min-width: max-content;
  font-weight: 850;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: var(--gold);
  color: var(--navy);
}

nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  min-height: 92vh;
  padding: 132px clamp(20px, 5vw, 64px) 70px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(12, 18, 32, 0.88), rgba(12, 18, 32, 0.52)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=82")
      center / cover;
}

.hero-content {
  max-width: 860px;
}

.eyebrow,
.section-label,
.panel-kicker {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow,
.panel-kicker {
  color: var(--gold);
}

h1 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 690px;
  margin-bottom: 30px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.88);
}

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

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

.primary {
  background: var(--coral);
  color: var(--white);
}

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

.dark {
  background: var(--navy);
}

.outline {
  border-color: rgba(255, 255, 255, 0.46);
  color: var(--white);
}

.hero-panel {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(17, 24, 39, 0.72);
  backdrop-filter: blur(14px);
}

.hero-panel strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.3rem;
  line-height: 1.25;
}

.hero-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.section {
  padding: 76px clamp(20px, 5vw, 64px);
}

.intro,
.split,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.section-label {
  color: var(--teal);
}

h2 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.intro p,
.split p,
article p,
.steps span,
.faq p {
  color: var(--muted);
  line-height: 1.72;
}

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

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

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

.job-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

article {
  min-height: 236px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.jobs article {
  background: #fbfcff;
}

.icon {
  display: inline-flex;
  margin-bottom: 34px;
  font-weight: 900;
  color: var(--blue);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
}

.split {
  background: #eaf2f7;
}

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

.steps li {
  display: grid;
  gap: 6px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.steps strong {
  font-size: 1.05rem;
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcff;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
}

.contact {
  align-items: center;
  padding: 72px clamp(20px, 5vw, 64px);
  color: var(--white);
  background: var(--teal);
}

.contact .section-label,
.contact p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-actions {
  justify-self: end;
  justify-content: flex-end;
}

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

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

  .hero-panel {
    max-width: 560px;
  }
}

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

  nav {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding-top: 112px;
  }

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

  .contact-actions {
    justify-self: start;
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .brand {
    gap: 12px;
  }

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

  .button {
    width: 100%;
  }

  article,
  .hero-panel {
    padding: 22px;
  }
}
