:root {
  --paper: #f3f5f2;
  --surface: #ffffff;
  --ink: #15181a;
  --body: #3a423d;
  --mute: #5f665f;
  --mute-2: #8b948c;
  --line: #e2e7e1;
  --line-2: #edf1eb;
  --signal: #12b36a;
  --signal-deep: #0d8f54;
  --tint: #cdefdd;
  --blue: #345f8f;
  --coral: #bf6a57;
  --serif: "Newsreader", Georgia, serif;
  --sans: "Space Grotesk", system-ui, sans-serif;
  --mono: "Space Mono", monospace;
  --script: "Caveat", cursive;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding-inline: 40px;
}

.wordmark {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
}

.wordmark span {
  color: var(--signal);
}

.eyebrow,
.pill {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--signal-deep);
}

.pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--signal-deep);
  background: var(--tint);
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.btn-primary {
  color: var(--ink);
  background: var(--signal);
}

.btn-primary:hover {
  background: #10a562;
}

.btn-ghost {
  border: 1.5px solid var(--ink);
  color: var(--ink);
  background: transparent;
}

.btn-ghost:hover {
  color: var(--paper);
  background: var(--ink);
}

.btn-sm {
  min-height: 40px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--signal);
}

.h-display,
.h-section {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink);
}

.h-display {
  max-width: 780px;
  font-size: 72px;
  line-height: 0.98;
}

.h-section {
  max-width: 820px;
  font-size: 48px;
  line-height: 1.04;
}

.shadow {
  box-shadow: 0 32px 70px -46px rgba(20, 30, 24, 0.7);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-block: 26px;
}

.nav .brand {
  font-size: 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a:not(.btn) {
  font-size: 14px;
  font-weight: 600;
  color: var(--body);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 72px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 86px;
}

.hero-copy {
  min-width: 0;
}

.hero h1 {
  margin-top: 26px;
}

.lead {
  max-width: 650px;
  margin-top: 30px;
  font-size: 19px;
  line-height: 1.62;
  color: var(--body);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 34px;
}

.facepile {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 40px;
}

.facepile .stack {
  display: flex;
  flex: 0 0 auto;
}

.facepile .av {
  width: 46px;
  height: 46px;
  overflow: hidden;
  border: 2px solid var(--paper);
  border-radius: 999px;
  background: var(--surface);
}

.facepile .av + .av {
  margin-left: -14px;
}

.facepile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}

.facepile p {
  max-width: 360px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--mute);
}

.hero-media {
  position: relative;
  min-height: 480px;
}

.hero-photo {
  width: 100%;
  height: 440px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--surface);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.06);
}

.signal-note {
  position: absolute;
  top: 22px;
  right: -8px;
  font-family: var(--script);
  font-size: 28px;
  color: var(--signal-deep);
  transform: rotate(-6deg);
}

.hero-badge {
  position: absolute;
  left: -34px;
  bottom: 34px;
  width: 214px;
  border: 1px solid var(--line-2);
  border-radius: 20px;
  padding: 18px 20px;
  background: var(--surface);
  box-shadow: 0 24px 60px -38px rgba(20, 30, 24, 0.65);
}

.hero-badge span {
  display: block;
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1;
  color: var(--signal);
}

.hero-badge strong {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.35;
  color: var(--body);
}

.proof {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
}

.proof-row span {
  min-height: 84px;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--line);
  padding: 22px 24px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--body);
}

.proof-row span:last-child {
  border-right: 0;
}

.section,
.statement,
.final {
  padding-top: 96px;
  padding-bottom: 96px;
}

.statement {
  text-align: center;
}

.statement h2 {
  max-width: 860px;
  margin: 18px auto 0;
  font-family: var(--serif);
  font-size: 50px;
  font-weight: 500;
  line-height: 1.08;
}

.statement p:last-child {
  max-width: 820px;
  margin: 28px auto 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--body);
}

.statement em {
  color: var(--signal-deep);
}

.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.inner {
  padding-top: 88px;
  padding-bottom: 88px;
}

.section-head {
  display: grid;
  gap: 16px;
}

.section-head > p:not(.eyebrow),
.split > p,
.tools > p,
.founders-head > p,
.final > p {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
}

.split {
  grid-template-columns: minmax(0, 1fr) 430px;
  align-items: end;
}

.cards {
  display: grid;
  gap: 22px;
  margin-top: 44px;
}

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

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

.card,
.work-grid article,
.timeline article,
.audience-list article {
  border: 1px solid var(--line-2);
  border-radius: 22px;
  background: var(--paper);
}

.card {
  padding: 32px;
}

.card .num {
  display: block;
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1;
  color: var(--signal);
}

.card h3,
.work-grid h3,
.timeline h3,
.audience-list h3,
.faq-list h3 {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.14;
  color: var(--ink);
}

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

.card p,
.work-grid p,
.timeline p,
.audience-list p,
.faq-list p,
.person p,
.outcome-list p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--mute);
}

.card p {
  margin-top: 10px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.work-grid article {
  min-height: 188px;
  padding: 24px;
  background: var(--surface);
}

.work-grid article:nth-child(3n + 1) {
  border-top-color: var(--signal);
}

.work-grid article:nth-child(3n + 2) {
  border-top-color: var(--blue);
}

.work-grid article:nth-child(3n) {
  border-top-color: var(--coral);
}

.work-grid p {
  margin-top: 12px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}

.timeline article {
  min-height: 198px;
  padding: 26px;
}

.timeline span {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--signal-deep);
}

.timeline h3 {
  margin-top: 12px;
}

.timeline p {
  margin-top: 10px;
}

.callout {
  margin-top: 26px;
  border-left: 4px solid var(--signal);
  padding: 20px 24px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--body);
  background: var(--paper);
}

.callout strong {
  display: block;
  color: var(--ink);
}

.two-ways {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.wide h3 {
  margin-top: 0;
}

.tools-section {
  padding: 74px 0;
  color: var(--paper);
  background: var(--ink);
}

.tools {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: end;
}

.tools .h-section,
.tools .eyebrow {
  color: var(--paper);
}

.tools .eyebrow {
  color: var(--signal);
}

.tools p:last-child {
  color: #d7ded7;
}

.founders-head {
  display: grid;
  gap: 16px;
  max-width: 900px;
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 46px;
}

.person {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line-2);
  border-radius: 24px;
  background: var(--surface);
}

.person .photo {
  min-height: 310px;
  background: var(--line);
}

.person .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.06);
}

.person-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.person h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
}

.person .role {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--signal-deep);
}

.person p:last-child {
  margin-top: 14px;
}

.audience {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 52px;
}

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

.audience-list article {
  padding: 26px;
}

.audience-list p {
  margin-top: 8px;
}

.outcomes {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.outcomes .photo {
  overflow: hidden;
  border-radius: 28px;
  background: var(--surface);
}

.outcomes .photo img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}

.outcome-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.outcome-list p {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  color: var(--body);
}

.outcome-list span {
  color: var(--signal);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1;
}

.quote-wrap {
  padding-top: 0;
}

.quote {
  border-radius: 28px;
  padding: 58px;
  text-align: center;
  background: var(--tint);
}

.quote blockquote {
  max-width: 840px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.22;
}

.quote figcaption {
  margin-top: 24px;
  font-size: 15px;
  font-weight: 700;
  color: var(--signal-deep);
}

.faq .h-section,
.faq .eyebrow {
  text-align: center;
  margin-inline: auto;
}

.faq .h-section {
  margin-top: 14px;
}

.faq-list {
  display: grid;
  max-width: 980px;
  margin: 44px auto 0;
}

.faq-list article {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 36px;
  border-top: 1px solid var(--line);
  padding: 26px 0;
}

.faq-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.final {
  text-align: center;
}

.final .eyebrow {
  margin-bottom: 16px;
}

.final h2 {
  max-width: 790px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: 60px;
  font-weight: 500;
  line-height: 1.04;
}

.final p:not(.eyebrow) {
  margin: 24px auto 0;
}

.final .hero-cta {
  justify-content: center;
}

.footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 42px;
  padding-bottom: 42px;
}

.footer .brand {
  font-size: 26px;
}

.footer p {
  max-width: 440px;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--mute);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: flex-end;
}

.footer-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--body);
}

@media (max-width: 980px) {
  .wrap {
    padding-inline: 24px;
  }

  .nav-links a:not(.btn) {
    display: none;
  }

  .hero,
  .split,
  .two-ways,
  .tools,
  .audience,
  .outcomes {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 42px;
    padding-top: 28px;
  }

  .h-display {
    font-size: 52px;
  }

  .h-section,
  .statement h2 {
    font-size: 40px;
  }

  .final h2 {
    font-size: 46px;
  }

  .hero-media {
    width: min(420px, 100%);
    min-height: 430px;
  }

  .hero-photo {
    height: 390px;
  }

  .proof-row,
  .three,
  .two,
  .work-grid,
  .timeline,
  .founder-grid,
  .audience-list {
    grid-template-columns: 1fr;
  }

  .proof-row span {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-row span:last-child {
    border-bottom: 0;
  }

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

  .person .photo {
    min-height: 360px;
  }

  .faq-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 560px) {
  .wrap {
    padding-inline: 20px;
  }

  .nav {
    align-items: flex-start;
  }

  .nav .brand {
    font-size: 25px;
  }

  .btn-sm {
    min-height: 38px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .h-display {
    font-size: 42px;
  }

  .h-section,
  .statement h2 {
    font-size: 34px;
  }

  .final h2 {
    font-size: 38px;
  }

  .lead,
  .statement p:last-child {
    font-size: 17px;
  }

  .hero {
    padding-bottom: 64px;
  }

  .hero-media {
    min-height: 384px;
  }

  .hero-photo {
    height: 340px;
    border-radius: 22px;
  }

  .hero-badge {
    left: 14px;
    bottom: 0;
    width: 196px;
  }

  .signal-note {
    right: 6px;
    font-size: 24px;
  }

  .section,
  .statement,
  .final {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .inner {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .card,
  .work-grid article,
  .timeline article,
  .audience-list article {
    padding: 24px;
  }

  .quote {
    border-radius: 22px;
    padding: 38px 24px;
  }

  .quote blockquote {
    font-size: 30px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}
