:root {
  color: #18231f;
  background: #f7f8f3;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

a {
  color: inherit;
}

.site-header,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 5vw, 64px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 2;
  background: rgba(247, 248, 243, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #dfe6df;
}

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

.brand span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #17231f;
  background: #e7b44d;
}

nav,
footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

nav a,
footer a {
  color: #40534c;
  text-decoration: none;
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: 48px clamp(18px, 5vw, 64px) 72px;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.98;
  margin: 0 0 24px;
  max-width: 820px;
}

.hero p {
  color: #526760;
  font-size: 20px;
  line-height: 1.55;
  max-width: 700px;
}

.hero img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #d5ded7;
  box-shadow: 0 26px 80px rgba(31, 50, 44, 0.16);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 8px;
  background: #173f36;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.button.secondary {
  background: #e8eef7;
  color: #274b78;
}

.feature-grid,
.pricing-grid,
.docs-grid,
.review-strip,
.status-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 34px clamp(18px, 5vw, 64px);
}

.feature-grid article,
.pricing-grid article,
.docs-grid article,
.review-strip article,
.status-list article,
.entry {
  background: #fff;
  border: 1px solid #d9e2dc;
  border-radius: 8px;
  padding: 20px;
}

.review-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 0;
}

.review-strip article,
.status-list article {
  display: grid;
  gap: 8px;
}

.review-strip span,
.status-list span {
  color: #526760;
  line-height: 1.55;
}

h2 {
  margin: 0 0 10px;
}

p,
li {
  color: #526760;
  line-height: 1.65;
}

.band {
  margin: 40px clamp(18px, 5vw, 64px);
  padding: clamp(28px, 5vw, 56px);
  border-radius: 8px;
  color: #fff;
  background: #17231f;
}

.band p {
  color: #d7e4dd;
  max-width: 900px;
}

.page {
  max-width: 1060px;
  margin: 0 auto;
  padding: 58px 20px 90px;
}

.page h1 {
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1;
  margin: 0 0 22px;
}

.page .pricing-grid,
.page .docs-grid,
.page .status-list {
  padding: 24px 0;
}

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

.callout {
  margin-top: 18px;
  padding: 24px;
  border: 1px solid #cbd9d1;
  border-radius: 8px;
  background: #eef5f0;
}

strong {
  color: #173f36;
}

@media (max-width: 1050px) {
  .hero,
  .feature-grid,
  .pricing-grid,
  .docs-grid,
  .review-strip,
  .status-list,
  .page .status-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header,
  footer,
  nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .feature-grid,
  .pricing-grid,
  .docs-grid,
  .review-strip,
  .status-list,
  .page .status-list {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }
}
