:root {
  --canvas: #f5f2f0;
  --paper: #fffdfb;
  --ink: #171419;
  --body: #514b52;
  --muted: #756e76;
  --silver: #d6d1d2;
  --silver-soft: #e8e3e1;
  --brand-navy: #102e52;
  --brand-navy-dark: #071b32;
  --brand-silver: #c5c9cd;
  --brand-silver-dark: #727980;
  --brand-silver-deep: #454b50;
  --lilac-soft: #f0f1ed;
  --font-display: "Fraunces", Georgia, serif;
  --font-ui: "Inter", "Segoe UI", sans-serif;
  --radius-control: 10px;
  --radius-card: 24px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* , *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-ui);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.shell {
  max-width: 880px;
  margin-inline: auto;
  padding-inline: 24px;
}

a { color: inherit; }

.insight-header {
  border-bottom: 1px solid var(--silver);
  background: var(--paper);
}

.insight-header .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 20px;
  max-width: 880px;
}

.insight-header .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.insight-header .brand img {
  width: 28px;
  height: 28px;
}

.back-link {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 200ms ease;
}

.back-link:hover {
  color: var(--brand-navy);
}

.insight-hero {
  padding-block: 64px 40px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--brand-navy);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.insight-hero h1 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 46px);
  font-weight: 400;
  line-height: 1.12;
}

.lede {
  max-width: 640px;
  margin: 0;
  color: var(--body);
  font-size: 18px;
}

.infographic {
  padding-block: 12px 56px;
}

.infographic h2,
.summary h2 {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.info-card {
  padding: 22px;
  border: 1px solid var(--silver);
  border-radius: var(--radius-card);
  background: var(--paper);
}

.info-card .info-tag {
  display: block;
  margin-bottom: 10px;
  color: var(--brand-silver-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.info-card p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.3;
}

.info-card.is-accent {
  border-color: var(--brand-navy);
  background: var(--brand-navy);
  color: white;
}

.info-card.is-accent .info-tag {
  color: var(--brand-silver);
}

.summary {
  padding-block: 40px 64px;
  border-top: 1px solid var(--silver);
}

.summary-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}

.summary-copy p {
  margin: 0 0 18px;
  color: var(--body);
  font-size: 16px;
}

.summary-copy p:last-child {
  margin-bottom: 0;
}

.summary-list {
  padding: 24px;
  border-radius: var(--radius-card);
  background: var(--lilac-soft);
}

.summary-list h3 {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 600;
}

.summary-list ul {
  margin: 0;
  padding-left: 18px;
  color: var(--body);
  font-size: 14.5px;
}

.summary-list li {
  margin-bottom: 10px;
}

.summary-list li:last-child {
  margin-bottom: 0;
}

.insight-cta {
  padding-block: 56px 88px;
}

.insight-cta .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px;
  border-radius: var(--radius-card);
  background: var(--brand-navy);
  color: white;
  max-width: 880px;
}

.insight-cta h2 {
  margin: 0;
  max-width: 480px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.25;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  padding: 14px 22px;
  border-radius: 999px;
  background: white;
  color: var(--brand-navy);
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 200ms var(--ease-out);
}

.button:hover {
  transform: translateY(-2px);
}

.button-arrow {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 8px;
  background: var(--lilac-soft);
  font-size: 15px;
}

.insight-footer {
  border-top: 1px solid var(--silver);
  padding-block: 24px;
}

.insight-footer .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 880px;
  color: var(--muted);
  font-size: 13px;
}

.insight-footer a {
  text-decoration: none;
  font-weight: 500;
  transition: color 200ms ease;
}

.insight-footer a:hover {
  color: var(--brand-navy);
}

@media (max-width: 720px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

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

  .insight-cta .shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .insight-footer .shell {
    flex-direction: column;
    align-items: flex-start;
  }
}
