.btn-primary {
  background: #FFF;
  display: inline-block;
  padding: 20px 40px;
  border-radius: 10px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
  border: none;
  font-size: 20px;
}

.btn-secondary {
  background: #CA4056;
  display: inline-block;
  padding: 20px 40px;
  border-radius: 10px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
  border: none;
  font-size: 20px;
  color: #fff;
}

.btn-tertiary {
  color: #fff;
  background: #000;
  display: inline-block;
  padding: 20px 40px;
  border-radius: 10px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
  border: none;
  font-size: 20px;
  border: 1px solid #fff;
}

html {
  scroll-behavior: smooth;
}

html, body, * {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

h1, h2, h3 {
  margin: 0 0 20px 0;
  font-weight: 600;
}

h1 {
  font-size: 50px;
  line-height: 60px;
  font-display: optional;
  font-display: block;
}

h3 {
  font-size: 20px;
  color: grey;
  font-weight: 300;
  line-height: 26px;
}

h4 {
  font-size: 20px;
  font-weight: 300;
  margin: 20px 0;
  font-weight: 400;
}

p, li {
  line-height: 26px;
  font-weight: 300;
  font-size: 16px;
}

ul {
  padding: 0 30px;
}

li {
  margin-bottom: 10px;
}

.bold {
  font-weight: 600;
}

.no-wrap {
  white-space: nowrap;
}

.pill-list {
  padding: 0;
}
.pill-list li {
  border: 1px solid #ccc;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 20px;
  margin: 0 5px 10px 5px;
}

/* styles.css */
:root {
  --bg: #f3f4f6; /* page background (light grey like reference) */
  --surface: #ffffff; /* cards/surfaces */
  --ink: #0b0f14; /* primary text */
  --muted: #5b6470; /* secondary text */
  --border: #e5e7eb; /* dividers */
  --hero: #23292b; /* dark hero panel */
  --hero2: #1f2527; /* subtle depth */
  --dark: #0b0f14; /* footer */
  --radius: 0px;
  --container: 980px;
  --base-font-size: 18px;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--container), 100% - 2 * clamp(16px, 4vw, 36px));
  margin-inline: auto;
}

/* Typography */
.h2 {
  margin: 0 0 14px;
  line-height: 1.08;
  font-size: clamp(24px, 3.4vw, 34px);
}

.h2--spaced {
  margin-top: 26px;
}

.h2--invert {
  color: #fff;
}

.h3 {
  margin: 0 0 10px;
  font-weight: 600;
  font-size: 24px;
  color: #0b0f14;
}

.h3--spaced {
  margin-top: 18px;
}

.h3--invert {
  color: #fff;
}

.prose {
  margin: 0;
  max-width: 78ch;
  color: var(--muted);
  font-size: 14px;
}

p {
  font-size: var(--base-font-size);
}

i {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  text-align: center;
  display: block;
  margin-top: 4px;
}

.prose--invert {
  color: rgba(255, 255, 255, 0.78);
}

.note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.note--invert {
  color: rgba(255, 255, 255, 0.7);
}

/* Sections */
.section {
  padding: clamp(20px, 4.5vw, 24px) 0;
}

.section--tight {
  padding: 18px 0 10px;
}

.section--dark {
  padding: clamp(28px, 5vw, 56px) 0;
  background: var(--dark);
}

/* HERO */
.hero {
  padding: clamp(18px, 3.5vw, 26px) 0 0;
  margin: 0 0 30px 0;
  background: linear-gradient(180deg, var(--hero), var(--hero2));
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  align-items: stretch;
}

.heroCard {
  background: linear-gradient(180deg, var(--hero), var(--hero2));
  border-radius: var(--radius);
  padding: clamp(18px, 3vw, 36px);
  color: #fff;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 40px;
}

.heroCard__title {
  margin: 0 0 50px 0;
  line-height: 1.2;
  font-size: clamp(56px, 3.2vw, 34px);
}

.heroCard__body {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 23px;
  max-width: 34ch;
  line-height: 1.5;
  margin-bottom: 30px;
}

.heroMedia {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #d1d5db;
  min-height: 190px;
}

.heroMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* IMPACT BAR */
.impactBar {
  background: #eef0f2;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
}

.impactBar__item {
  padding: 14px 16px;
  text-align: center;
  background: #f1f3f5;
}

.impactBar__item + .impactBar__item {
  border-left: 1px solid var(--border);
}

.impactBar__label {
  margin: 0 0 8px;
  color: #374151;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
}

.impactBar__value {
  margin: 0;
  font-weight: 700;
  font-size: 38px;
  color: var(--ink);
}

/* MEDIA */
.media {
  margin: 14px 0 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
}

.media--flush {
  margin: 0;
}

.media img {
  border-radius: 8px;
}

/* LISTS */
.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.list li {
  margin: 7px 0;
}

.list--wide li {
  margin: 9px 0;
}

.list--invert {
  color: rgba(255, 255, 255, 0.82);
}

.list--invert li {
  color: rgba(255, 255, 255, 0.82);
}

/* GOALS (two columns like reference) */
.goals {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.goals__col {
  background: transparent;
}

/* DESIGN APPROACH LAYOUT */
.twoCol {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}

/* DELIVERY */
.results {
  margin: 34px 0;
  max-width: 82ch;
}

/* RESPONSIVE */
@media (max-width: 860px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .impactBar {
    grid-template-columns: 1fr;
  }
  .impactBar__item + .impactBar__item {
    border-left: 0;
    border-top: 1px solid var(--border);
  }
  .goals {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .twoCol {
    grid-template-columns: 1fr;
  }
}
a.btn-back {
  border: 1px solid #fff;
  display: inline-block;
  padding: 20px;
  margin: 0 auto;
  color: #fff;
  text-decoration: none;
}
