:root {
  color-scheme: light;
  --ink: #101214;
  --muted: #5a6168;
  --line: #d9dee2;
  --paper: #f7f8f6;
  --white: #ffffff;
  --green: #16a878;
  --cyan: #11a8bd;
  --amber: #d29a2d;
  --shadow: 0 18px 55px rgba(16, 18, 20, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  color: var(--white);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.75rem;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.375rem;
  height: 2.375rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 0.5rem;
  background: rgba(16, 18, 20, 0.42);
  font-size: 0.78rem;
}

.nav-links {
  gap: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(16, 18, 20, 0.42);
  padding: 0.3rem;
  backdrop-filter: blur(14px);
}

.nav-links a {
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 82svh;
  overflow: hidden;
  background: #101214;
  color: var(--white);
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  opacity: 0.8;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(16, 18, 20, 0.94), rgba(16, 18, 20, 0.58) 46%, rgba(16, 18, 20, 0.16)),
    linear-gradient(0deg, rgba(16, 18, 20, 0.72), rgba(16, 18, 20, 0.05) 42%, rgba(16, 18, 20, 0.56));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 82svh;
  width: min(100%, 77rem);
  flex-direction: column;
  justify-content: center;
  padding: 7rem clamp(1.25rem, 5vw, 4rem) 4.5rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 100%;
  margin: 0;
  font-size: 5.35rem;
  line-height: 0.94;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-copy {
  max-width: 43rem;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 2.9rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  padding: 0.78rem 1rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

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

.button.primary {
  border: 1px solid var(--green);
  background: var(--green);
  color: #06110d;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
}

.section {
  width: min(100%, 77rem);
  margin: 0 auto;
  padding: 5rem clamp(1.25rem, 5vw, 4rem);
}

.intro,
.process,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: start;
}

.section-heading h2,
.contact h2 {
  max-width: 16ch;
  margin: 0;
  font-size: 2.75rem;
  line-height: 1.04;
  letter-spacing: 0;
}

.section-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1.2rem;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 0;
}

.focus-card {
  min-height: 18rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--white);
  padding: 1.35rem;
  box-shadow: 0 1px 0 rgba(16, 18, 20, 0.03);
}

.card-icon {
  display: inline-grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border-radius: 0.5rem;
  background: #e8f7f2;
  color: #087a58;
  font-size: 0.78rem;
  font-weight: 900;
}

.focus-card:nth-child(2) .card-icon {
  background: #e6f6f8;
  color: #087b8a;
}

.focus-card:nth-child(3) .card-icon {
  background: #fbf1dc;
  color: #896018;
}

.focus-card h3 {
  margin: 3.6rem 0 0.7rem;
  font-size: 1.35rem;
  letter-spacing: 0;
}

.focus-card p,
.process-list p {
  margin: 0;
  color: var(--muted);
}

.process {
  border-top: 1px solid var(--line);
}

.process-list {
  display: grid;
  gap: 1.4rem;
}

.process-list div {
  border-left: 3px solid var(--cyan);
  padding-left: 1rem;
}

.process-list div:nth-child(2) {
  border-left-color: var(--green);
}

.process-list div:nth-child(3) {
  border-left-color: var(--amber);
}

.process-list strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}

.contact {
  align-items: center;
  border-top: 1px solid var(--line);
}

.contact .button {
  justify-self: end;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding: 1.25rem clamp(1.25rem, 5vw, 4rem);
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: 78svh;
  }

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

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(16, 18, 20, 0.94), rgba(16, 18, 20, 0.72)),
      linear-gradient(0deg, rgba(16, 18, 20, 0.76), rgba(16, 18, 20, 0.18) 54%, rgba(16, 18, 20, 0.62));
  }

  .hero-content {
    padding-top: 6.5rem;
    padding-bottom: 3.75rem;
  }

  .hero h1 {
    font-size: 3.7rem;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

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

  .intro,
  .process,
  .contact,
  .focus-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 3.8rem;
    padding-bottom: 3.8rem;
  }

  .section-heading h2,
  .contact h2 {
    max-width: none;
    font-size: 2.2rem;
  }

  .focus-grid {
    padding-top: 0;
  }

  .focus-card {
    min-height: 15rem;
  }

  .contact .button {
    justify-self: stretch;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 3rem;
  }

  .section-heading h2,
  .contact h2 {
    font-size: 1.9rem;
  }
}
