:root{
  --page-bg: #ffffff;
  --page-text: #3f4447;
  --page-muted: #6b6f73;
  --page-border: rgba(0,0,0,0.10);
  --page-soft: rgba(0,0,0,0.06);
}

/* Page wrapper */
.page{
  background: var(--page-bg);
  color: var(--page-text);
  padding: 56px 16px 72px;
}

.page__inner{
  max-width: 960px;
  margin: 0 auto;
}

/* Hero header */
.page-header{
  text-align: center;
  max-width: 760px;
  margin: 0 auto 32px;
}

.page-header h1{
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: clamp(2.2rem, 5.2vw, 3.1rem);
  line-height: 1.08;

  /* same H1 gradient vibe used on homepage */
  background: linear-gradient(135deg, #3f4447 0%, #6a6f74 45%, #3f4447 85%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.page-lead{
  margin: 0;
  color: var(--page-muted);
  font-size: 1.15rem;
  line-height: 1.7;
}

/* Content card */
.content-card{
  border: 1px solid var(--page-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
  overflow: hidden;
}

.content-card__body{
  padding: 22px 18px;
  max-width: 760px;
  margin: 0 auto;
}

.content-card__body p{
  margin: 0 0 14px;
  color: #5f6468;
  line-height: 1.75;
  font-size: 1.08rem;
}
.content-card__body p:last-child{ margin-bottom: 0; }

/* Highlight row (chips but not button-like) */
.highlights{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 14px 18px 0;
}

.highlight{
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--page-muted);
  font-weight: 800;
  letter-spacing: .1px;
  display: inline-flex;
  align-items: center;
}
.highlight + .highlight::before{
  content: "•";
  margin: 0 10px 0 0;
  color: rgba(63,68,71,0.30);
}

/* Image block */
.page-image{
  margin-top: 16px;
  border-top: 1px solid var(--page-soft);
}

.page-image img{
  width: 100%;
  height: auto;
  display: block;
}

/* Section headings */
.section{
  margin-top: 26px;
}

.section h2{
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 3.2vw, 1.75rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--page-text);
}

.section p{
  margin: 0 0 12px;
  color: #5f6468;
  line-height: 1.75;
}
.section p:last-child{ margin-bottom: 0; }

/* Desktop spacing */
@media (min-width: 900px){
  .page{
    padding: 84px 16px 96px;
  }
  .content-card__body{
    padding: 28px 24px;
  }
}