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

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f7f7f4;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(247, 247, 244, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #ffffff;
  border-radius: 8px;
  background: #111111;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 8px;
  background: #ffffff;
  font-size: 0.88rem;
  font-weight: 850;
  text-decoration: none;
}

.button.primary {
  color: #ffffff;
  border-color: #111111;
  background: #111111;
}

.hero,
.section {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  padding: clamp(56px, 8vw, 92px) 0 44px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 6px 10px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  background: #ffffff;
  color: #5d5d5d;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 7vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

p,
li {
  color: #464646;
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.65;
}

.lead {
  max-width: 780px;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

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

.section {
  padding: 46px 0;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

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

.card {
  min-height: 170px;
  padding: 20px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  background: #ffffff;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq article {
  padding: 18px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  background: #ffffff;
}

.footer {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 44px;
  color: #686868;
  font-size: 0.9rem;
  font-weight: 750;
}

@media (max-width: 760px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}
