:root {
  color-scheme: dark;
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.78);
  --line: rgba(255, 255, 255, 0.24);
  --panel: rgba(12, 18, 25, 0.72);
  --accent: #1f7a6d;
  --accent-bright: #48c5b0;
  --accent-dark: #145b52;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 28px;
  color: #ffffff;
}

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

.brand {
  gap: 10px;
  font-size: 16px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--panel);
}

.site-nav {
  gap: 8px;
}

.site-nav a,
.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  font-weight: 800;
}

.site-nav a {
  min-height: 36px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
}

.site-nav .nav-action,
.secondary-link {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.site-nav .nav-action-primary {
  border-color: rgba(72, 197, 176, 0.76);
  background: rgba(31, 122, 109, 0.88);
  color: #ffffff;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.primary-link:focus-visible,
.secondary-link:hover,
.secondary-link:focus-visible {
  color: #ffffff;
  outline: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 104px 28px 58px;
  background: #111923;
}

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

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

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(8, 13, 19, 0.92) 0%, rgba(8, 13, 19, 0.78) 34%, rgba(8, 13, 19, 0.22) 70%),
    linear-gradient(0deg, rgba(8, 13, 19, 0.36), rgba(8, 13, 19, 0.06));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  color: #ffffff;
}

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

h1,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(54px, 8vw, 108px);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

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

.primary-link,
.secondary-link {
  padding: 0 18px;
}

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

.primary-link:hover,
.primary-link:focus-visible {
  background: var(--accent-dark);
}

.secondary-link {
  color: #ffffff;
}

@media (max-width: 820px) {
  .site-header {
    height: 60px;
    padding: 0 16px;
  }

  .hero {
    min-height: 100svh;
    padding: 92px 18px 42px;
    align-items: flex-end;
  }

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

  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(8, 13, 19, 0.94) 0%, rgba(8, 13, 19, 0.72) 52%, rgba(8, 13, 19, 0.2) 100%),
      linear-gradient(90deg, rgba(8, 13, 19, 0.48), rgba(8, 13, 19, 0.12));
  }

  h1 {
    font-size: clamp(48px, 17vw, 78px);
  }

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