html {
  color-scheme: dark;
}

body.content-page *,
body.content-page *::before,
body.content-page *::after {
  box-sizing: border-box;
}

body.content-page {
  margin: 0;
  background: #111111;
  color: #f4f0ec;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.content-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.content-header {
  padding: 28px 0;
  border-bottom: 1px solid rgba(244, 240, 236, 0.16);
}

.content-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.content-brand {
  color: #f4f0ec;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.content-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.content-links a,
.content-footer a,
.content-hero a,
.content-card a {
  color: #f6c15b;
}

.content-hero {
  padding: 76px 0 48px;
}

.content-kicker {
  margin: 0 0 14px;
  color: #9bd6c7;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.content-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.content-hero p {
  max-width: 760px;
  margin: 24px 0 0;
  color: #d8d1ca;
  font-size: 20px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 28px 0 72px;
}

.content-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 12px 0 0;
}

.content-card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(244, 240, 236, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.content-card h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.15;
}

.content-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.content-card p,
.content-card li {
  color: #d8d1ca;
  overflow-wrap: anywhere;
}

.content-card ul {
  padding-left: 20px;
}

.content-page-list {
  max-width: 820px;
  margin: 0;
  padding-left: 22px;
  color: #d8d1ca;
  font-size: 18px;
}

.content-page-list li + li {
  margin-top: 8px;
}

.content-page-list a,
.content-section a {
  color: #f6c15b;
}

.content-proof {
  padding: 18px 20px;
  border-left: 3px solid #9bd6c7;
  background: rgba(255, 255, 255, 0.04);
}

.content-section {
  padding: 56px 0;
  border-top: 1px solid rgba(244, 240, 236, 0.12);
}

.content-section h2 {
  max-width: 760px;
  margin: 0 0 20px;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.04;
}

.content-section p {
  max-width: 820px;
  color: #d8d1ca;
  font-size: 18px;
  overflow-wrap: anywhere;
}

.content-footer {
  padding: 34px 0;
  border-top: 1px solid rgba(244, 240, 236, 0.16);
  color: #bdb5ad;
}

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

  .content-hero {
    padding-top: 52px;
  }

  .content-hero p {
    font-size: 18px;
    overflow-wrap: anywhere;
  }

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

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