@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&family=Source+Serif+4:wght@600;700&display=swap");

:root {
  --paper: #f4efe6;
  --ink: #16251d;
  --forest: #254435;
  --accent: #d66f45;
  --muted: #51645a;
  --panel: rgba(255, 255, 255, 0.64);
  --line: rgba(22, 37, 29, 0.12);
  --shadow: 0 26px 70px rgba(24, 32, 27, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(214, 111, 69, 0.18), transparent 22%),
    radial-gradient(circle at bottom left, rgba(37, 68, 53, 0.14), transparent 20%),
    linear-gradient(180deg, #f6f2ea 0%, var(--paper) 100%);
}

main {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0 80px;
}

.hero {
  padding: 6px 0 12px;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.72fr) minmax(300px, 0.62fr);
  gap: 42px;
  align-items: start;
}

.hero-copy {
  max-width: 980px;
}

.eyebrow {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  line-height: 0.98;
}

h1 {
  max-width: 15ch;
  font-size: clamp(2.4rem, 5.3vw, 4.8rem);
  line-height: 0.93;
  text-wrap: balance;
}

.lede,
.before-after p,
.flow-card p,
.audience-grid p,
.close p,
.statement {
  line-height: 1.85;
}

.lede {
  margin: 22px 0 0;
  max-width: 62ch;
  font-size: 1.08rem;
  color: var(--muted);
}

.hero-statement,
.before-after article,
.flow-card,
.audience-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero-statement {
  max-width: 420px;
  margin-top: 126px;
  justify-self: end;
  padding: 28px;
}

.hero-statement::after,
.before-after article::after,
.flow-card::after,
.audience-grid article::after {
  content: "";
  position: absolute;
  inset: auto -30px -50px auto;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(214, 111, 69, 0.16), transparent 72%);
  pointer-events: none;
}

.statement {
  margin: 0;
  font-size: 1.15rem;
}

.statement-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.statement-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(37, 68, 53, 0.08);
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 700;
}

.section {
  padding-top: 78px;
}

.split-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.split-head h2,
.close h2 {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
}

.before-after,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.before-after article,
.audience-grid article {
  padding: 26px;
}

.before-after h3,
.flow-card h3,
.audience-grid h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.before-after p,
.flow-card p,
.audience-grid p,
.close p {
  color: var(--muted);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.flow-card {
  padding: 28px;
}

.flow-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-bottom: 16px;
  background: rgba(214, 111, 69, 0.14);
  color: var(--accent);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.audience-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.close {
  text-align: center;
  max-width: 760px;
  margin: 86px auto 0;
}

.close h2 {
  margin-bottom: 18px;
}

.close p {
  margin: 0;
}

@media (max-width: 1080px) {
  .hero-content,
  .before-after,
  .flow-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-statement {
    max-width: none;
    margin-top: 8px;
    justify-self: stretch;
  }

  h1 {
    max-width: 12ch;
  }
}

@media (max-width: 700px) {
  main {
    width: min(100% - 28px, 1180px);
    padding-top: 14px;
  }

  .hero-statement,
  .before-after article,
  .flow-card,
  .audience-grid article {
    border-radius: 22px;
    padding: 22px;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(2.5rem, 12vw, 4rem);
  }
}
