:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  background: #052e2b;
  color: #ecfdf5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 70% 5%, #0f766e 0, transparent 34rem),
    linear-gradient(145deg, #052e2b, #064e3b);
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1000px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
}

header a,
.actions > a {
  color: #a7f3d0;
}

.brand {
  font-weight: 800;
  text-decoration: none;
}

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

nav a[aria-current="page"] {
  text-decoration-thickness: 3px;
}

main {
  width: min(1000px, calc(100% - 40px));
  margin: 11vh auto 0;
}

.eyebrow {
  color: #6ee7b7;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

h1 {
  max-width: 800px;
  margin: 12px 0 24px;
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  line-height: 0.96;
}

.lede {
  max-width: 720px;
  color: #d1fae5;
  font-size: 1.2rem;
}

.proof {
  max-width: 720px;
  margin: 32px 0;
  padding: 20px;
  border: 1px solid #10b981;
  border-radius: 14px;
  background: #064e3bcc;
}

code {
  color: #a7f3d0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 32px;
}

.button {
  display: inline-block;
  padding: 14px 20px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #065f46;
  font-weight: 800;
  text-decoration: none;
}
