:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f4f1eb;
  color: #181916;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
}

a {
  color: inherit;
}

.nav,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1120px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 22px 0;
}

.brand {
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
}

nav,
footer {
  display: flex;
  gap: 16px;
  color: #62594f;
  font-size: 14px;
}

nav a,
footer a {
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(340px, 1.1fr);
  gap: 38px;
  align-items: center;
  width: min(1120px, calc(100vw - 40px));
  min-height: calc(100vh - 88px);
  margin: 0 auto;
  padding: 36px 0 64px;
}

.hero-copy,
.section-heading,
.document {
  display: grid;
  gap: 16px;
}

.eyebrow {
  margin: 0;
  color: #6f665b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 12ch;
  font-size: clamp(52px, 8vw, 92px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  max-width: 16ch;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 20px;
}

p,
li {
  color: #62594f;
  font-size: 17px;
  line-height: 1.55;
}

.lede {
  max-width: 38rem;
  font-size: 20px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 900;
  text-decoration: none;
}

.primary {
  background: #1f2a22;
  color: #fffaf2;
}

.secondary {
  background: #e7dfd3;
  color: #28241f;
}

.product-shot {
  display: grid;
  gap: 18px;
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(120deg, rgba(35, 102, 74, 0.64), transparent 48%),
    linear-gradient(250deg, rgba(194, 70, 52, 0.42), transparent 42%),
    #10130f;
  color: #fffaf1;
  box-shadow: 0 28px 90px rgba(24, 25, 22, 0.18);
}

.shot-copy {
  display: grid;
  gap: 8px;
}

.shot-copy p {
  color: #ffd166;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.shot-copy span {
  color: #e8ddc8;
}

video {
  width: 100%;
  border-radius: 8px;
  background: #050505;
}

.band,
.pricing,
.document {
  width: min(1120px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 72px 0;
}

.steps,
.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.plans {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

article,
.plan {
  display: grid;
  gap: 12px;
  border: 1px solid #dcd3c6;
  border-radius: 8px;
  padding: 18px;
  background: #fffaf2;
}

.featured {
  border-color: #23664a;
}

.steps span {
  display: grid;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  place-items: center;
  background: #1f2a22;
  color: #fffaf2;
  font-weight: 900;
}

.price {
  color: #181916;
  font-size: 34px;
  font-weight: 900;
}

ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.document {
  max-width: 760px;
}

.document h1 {
  max-width: 14ch;
}

.document h2 {
  margin-top: 18px;
  font-size: 24px;
}

@media (max-width: 820px) {
  .nav,
  footer,
  .hero,
  .band,
  .pricing,
  .document {
    width: min(100vw - 28px, 680px);
  }

  .nav,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

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