:root {
  color-scheme: light;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --paper: #f5f5f7;
  --panel: #ffffff;
  --line: rgba(0, 0, 0, .12);
  --soft-line: rgba(0, 0, 0, .075);
  --brand: #17624f;
  --brand-strong: #0e4034;
  --accent: #b58942;
  --radius: 22px;
  --shadow: 0 22px 70px rgba(0, 0, 0, .08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:
    linear-gradient(180deg, #fbfbfd 0, var(--paper) 420px, #efeff2 100%);
  color: var(--ink);
  line-height: 1.68;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--soft-line);
  background: rgba(251, 251, 253, .82);
  backdrop-filter: saturate(180%) blur(20px);
}

.nav {
  width: min(1180px, 100% - 40px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 54px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.brand img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 12px;
  font-weight: 600;
}

.nav-links a {
  color: rgba(29, 29, 31, .72);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
}

.hero {
  width: min(1040px, 100% - 40px);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 104px) 0 28px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--brand-strong);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1 {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(48px, 8vw, 88px);
  line-height: .96;
  letter-spacing: 0;
}

.lead {
  max-width: 820px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.36;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.btn.secondary {
  background: transparent;
  color: var(--ink);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.content {
  width: min(1040px, 100% - 40px);
  margin: 0 auto 72px;
  padding-top: 18px;
}

.content-card {
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.content-section {
  display: grid;
  grid-template-columns: minmax(190px, 260px) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 58px);
  padding: clamp(26px, 4vw, 46px);
  border-top: 1px solid var(--soft-line);
}

.content-section:first-child {
  border-top: 0;
}

h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.1;
  letter-spacing: 0;
}

.content-section p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 15px;
}

.content-section p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  margin: 0;
  padding-left: 20px;
}

li {
  margin: 9px 0;
  color: var(--muted);
  font-size: 15px;
}

strong {
  color: var(--ink);
}

.legal-note {
  margin: 0;
  padding: 20px clamp(26px, 4vw, 46px);
  border-top: 1px solid var(--soft-line);
  background: #f9f1df;
  color: #5f4a22;
  font-size: 13px;
}

.site-footer {
  border-top: 1px solid var(--soft-line);
  padding: 26px 0;
  color: var(--muted);
  font-size: 12px;
}

.site-footer div {
  width: min(1180px, 100% - 40px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 820px) {
  .nav {
    width: min(100% - 28px, 1180px);
    align-items: flex-start;
    padding: 11px 0;
  }

  .nav-links {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .hero,
  .content,
  .site-footer div {
    width: min(100% - 28px, 1040px);
  }

  .hero {
    text-align: left;
  }

  h1 {
    font-size: clamp(40px, 12.5vw, 64px);
    overflow-wrap: anywhere;
  }

  h1,
  .lead {
    margin-left: 0;
    margin-right: 0;
  }

  .actions {
    justify-content: flex-start;
  }

  .content-section {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
