:root {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  color: #16201c;
  background: #f6f8f6;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

a {
  color: inherit;
}

.topbar {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #d7dfda;
  display: flex;
  height: 64px;
  justify-content: space-between;
  padding: 0 max(20px, calc((100vw - 1200px) / 2));
}

.brand {
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.brand span {
  color: #5d6b65;
  font-size: 11px;
  font-weight: 500;
  margin-left: 6px;
}

nav {
  display: flex;
  gap: 4px;
}

nav a {
  min-height: 44px;
  min-width: 44px;
  padding: 13px 10px;
  text-align: center;
  text-decoration: none;
}

nav a.active {
  color: #0e8f7a;
  font-weight: 700;
}

.hero {
  min-height: min(760px, calc(100vh - 64px));
  overflow: hidden;
  position: relative;
}

.hero img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero::after {
  background: rgba(246, 248, 246, 0.68);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-copy {
  padding: clamp(80px, 12vh, 140px) max(20px, calc((100vw - 1200px) / 2));
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: #0e8f7a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(44px, 7vw, 76px);
  line-height: 1.02;
  margin: 20px 0;
  max-width: 11ch;
}

.hero-copy > p:not(.eyebrow) {
  color: #43514b;
  font-size: 18px;
  line-height: 1.6;
  max-width: 46ch;
}

.button,
button {
  background: #0e8f7a;
  border: 0;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font: inherit;
  font-weight: 700;
  margin-top: 20px;
  min-height: 48px;
  padding: 14px 20px;
  text-decoration: none;
}

.button:focus-visible,
button:focus-visible,
input:focus-visible,
a:focus-visible {
  outline: 3px solid #336fd1;
  outline-offset: 2px;
}

.concept {
  bottom: 20px;
  color: #43514b;
  font-size: 11px;
  left: max(20px, calc((100vw - 1200px) / 2));
  position: absolute;
  z-index: 1;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: auto;
  max-width: 1200px;
  padding: 56px 0;
}

.feature-band article {
  border-left: 1px solid #d7dfda;
  min-height: 120px;
  padding: 12px 28px;
}

.feature-band span {
  color: #5d6b65;
  font-size: 12px;
}

.feature-band h2 {
  font-size: 20px;
  margin-top: 28px;
}

.waitlist {
  align-items: start;
  background: #16201c;
  color: #f1f5f2;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  padding: 80px max(20px, calc((100vw - 1200px) / 2));
}

.waitlist h2 {
  font-size: 40px;
  margin: 12px 0;
}

form {
  display: grid;
  gap: 16px;
}

label {
  color: #aab7b0;
  display: grid;
  font-size: 13px;
  gap: 8px;
}

input {
  background: #fff;
  border: 1px solid #d7dfda;
  border-radius: 4px;
  color: #16201c;
  font: inherit;
  min-height: 48px;
  padding: 12px;
}

.consent {
  align-items: start;
  display: grid;
  grid-template-columns: 24px 1fr;
  line-height: 1.5;
}

.consent input {
  min-height: 20px;
}

.honeypot {
  left: -10000px;
  position: absolute;
}

.form-status {
  min-height: 24px;
}

button:disabled {
  cursor: wait;
  opacity: 0.55;
}

@media (max-width: 760px) {
  .hero {
    min-height: 720px;
  }

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

  h1 {
    font-size: 44px;
  }

  .feature-band {
    grid-template-columns: 1fr 1fr;
    padding: 32px 20px;
  }

  .feature-band article {
    padding: 20px;
  }

  .waitlist {
    gap: 32px;
    grid-template-columns: 1fr;
    padding-bottom: 64px;
    padding-top: 56px;
  }
}
