:root {
  --ink: #171917;
  --muted: #60685f;
  --paper: #fbfcf8;
  --soft: #eef3ea;
  --line: #dbe2d6;
  --accent: #0a6b55;
  --accent-2: #8a5d12;
  --white: #ffffff;
  --max: 1120px;
}

* {
  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;
}

a {
  color: inherit;
}

.nav {
  align-items: center;
  background: rgba(251, 252, 248, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  min-height: 62px;
  padding: 0 max(20px, calc((100vw - var(--max)) / 2));
  position: sticky;
  right: 0;
  top: 0;
  z-index: 5;
}

.brand,
.nav nav {
  align-items: center;
  display: flex;
  gap: 10px;
}

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

.mark {
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(10, 107, 85, 0.12);
  display: inline-block;
  height: 15px;
  width: 15px;
}

.nav nav {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav nav a {
  text-decoration: none;
}

.nav nav a:hover {
  color: var(--ink);
}

.hero {
  align-items: center;
  background-color: #eef2ea;
  background-image: url("assets/extension-preview.png");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  min-height: calc(100vh - 128px);
  padding: 58px max(22px, calc((100vw - var(--max)) / 2)) 64px;
  position: relative;
}

.hero::before {
  background: rgba(251, 252, 248, 0.74);
  content: "";
  inset: 0;
  position: absolute;
}

.heroText {
  max-width: 650px;
  position: relative;
  z-index: 1;
}

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

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  font-size: 68px;
  line-height: 0.98;
  margin: 0;
  max-width: 760px;
}

h2 {
  font-size: 42px;
  line-height: 1.05;
  margin: 0;
}

h3 {
  font-size: 18px;
  line-height: 1.2;
  margin: 0 0 10px;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.lead {
  color: #30372f;
  font-size: 21px;
  max-width: 700px;
}

.note {
  color: #4d554c;
  font-size: 14px;
  margin: 16px 0 0;
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

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

.primary {
  background: var(--ink);
  color: var(--white);
}

.secondary {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  color: var(--ink);
}

.wrap {
  margin: 0 auto;
  max-width: var(--max);
  padding: 76px 22px;
}

.band {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.intro .wrap {
  padding-bottom: 54px;
  padding-top: 54px;
}

.two {
  align-items: start;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1.08fr);
}

.two p {
  margin: 0;
}

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

.grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.grid p,
.steps p {
  font-size: 15px;
  margin: 0;
}

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

.steps div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}

.steps span {
  align-items: center;
  background: var(--accent);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  height: 30px;
  justify-content: center;
  margin-bottom: 16px;
  width: 30px;
}

.install {
  align-items: start;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
}

ol {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}

code {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--ink);
  font-size: 0.9em;
  padding: 2px 5px;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 10px;
  padding: 18px 20px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.faq details p {
  font-size: 15px;
  margin-bottom: 0;
}

.footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footGrid {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding-bottom: 28px;
  padding-top: 28px;
}

.footGrid a {
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 14px;
    padding-top: 14px;
    position: static;
  }

  .nav nav {
    flex-wrap: wrap;
  }

  .hero {
    background-position: center;
    min-height: 74vh;
    padding-bottom: 72px;
    padding-top: 58px;
  }

  .hero::before {
    background: rgba(251, 252, 248, 0.82);
  }

  .two,
  .grid,
  .steps,
  .install {
    grid-template-columns: 1fr;
  }

  .wrap {
    padding-bottom: 58px;
    padding-top: 58px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 30px;
  }

  .lead {
    font-size: 18px;
  }
}
