.marketing-page {
  min-height: 100vh;
  color: #ffffff;
}

.marketing-page .site-nav {
  position: relative;
}

.marketing-main {
  overflow: hidden;
}

.marketing-hero,
.marketing-band > div,
.marketing-cta,
.marketing-page .site-footer {
  width: min(1080px, calc(100% - 2rem));
  margin-inline: auto;
}

.marketing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
  min-height: min(680px, calc(100vh - 64px));
  padding: 4rem 0;
}

.marketing-hero h1 {
  max-width: 13ch;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  line-height: 0.96;
}

.marketing-hero .lead {
  max-width: 57ch;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  line-height: 1.55;
}

.marketing-hero .eyebrow {
  color: var(--color-gold);
}

.digit-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(96px, 1fr));
  gap: 0.65rem;
  max-width: 360px;
  justify-self: end;
}

.digit-stack span {
  display: grid;
  aspect-ratio: 1 / 1.18;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: var(--color-gold);
  color: #211604;
  box-shadow: 12px 12px 0 rgba(255, 255, 255, 0.08);
  font-size: clamp(4rem, 10vw, 7.5rem);
  font-weight: 950;
  line-height: 1;
}

.digit-stack span:last-child {
  background: var(--color-accent);
  color: #ffffff;
  transform: translateY(1.5rem);
}

.marketing-band {
  padding: 4.5rem 0;
  background: #f7f2e8;
  color: var(--color-ink);
}

.marketing-band.alt {
  background: #ffffff;
}

.marketing-band.dark {
  background: #0a1118;
  color: #ffffff;
}

.marketing-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  gap: 2rem;
  align-items: start;
}

.marketing-heading h2,
.marketing-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1;
}

.marketing-heading > p {
  max-width: 62ch;
  margin: 0;
  color: var(--color-muted);
  font-size: 1.05rem;
  font-weight: 650;
  line-height: 1.65;
}

.marketing-band.dark .marketing-heading > p {
  color: rgba(255, 255, 255, 0.7);
}

.step-list,
.proof-list,
.use-case-list {
  display: grid;
  margin-top: 2.5rem;
  border-top: 1px solid var(--color-line);
}

.step-list article,
.proof-list article,
.use-case-list article {
  display: grid;
  grid-template-columns: 76px minmax(190px, 0.65fr) minmax(0, 1.35fr);
  gap: 1.25rem;
  align-items: baseline;
  border-bottom: 1px solid var(--color-line);
  padding: 1.4rem 0;
}

.step-list span,
.proof-list span,
.use-case-list span {
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 950;
}

.step-list strong,
.proof-list strong,
.use-case-list strong {
  font-size: 1.1rem;
}

.step-list p,
.proof-list p,
.use-case-list p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.55;
}

.marketing-band.dark .proof-list {
  border-color: rgba(255, 255, 255, 0.14);
}

.marketing-band.dark .proof-list article {
  border-color: rgba(255, 255, 255, 0.14);
}

.marketing-band.dark .proof-list p {
  color: rgba(255, 255, 255, 0.68);
}

.marketing-callout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2.5rem;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-line);
}

.marketing-callout div {
  min-height: 160px;
  padding: 1.1rem;
  background: #ffffff;
}

.marketing-callout strong,
.marketing-callout p {
  display: block;
}

.marketing-callout strong {
  font-size: 1.05rem;
}

.marketing-callout p {
  margin: 0.6rem 0 0;
  color: var(--color-muted);
  line-height: 1.5;
}

.faq-list {
  display: grid;
  gap: 0;
  margin-top: 2.5rem;
  border-top: 1px solid var(--color-line);
}

.faq-list details {
  border-bottom: 1px solid var(--color-line);
  padding: 1.1rem 0;
}

.faq-list summary {
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 850;
}

.faq-list p {
  max-width: 70ch;
  margin: 0.8rem 0 0;
  color: var(--color-muted);
  line-height: 1.6;
}

.marketing-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: 5rem 0;
}

.marketing-cta p {
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 680;
  line-height: 1.5;
}

.marketing-page .site-footer {
  grid-template-columns: minmax(220px, 1fr) auto minmax(280px, 1fr);
}

@media (max-width: 780px) {
  .marketing-hero,
  .marketing-heading,
  .marketing-cta,
  .marketing-page .site-footer {
    grid-template-columns: 1fr;
  }

  .marketing-hero {
    min-height: auto;
    padding: 3rem 0 4.5rem;
  }

  .digit-stack {
    width: min(300px, 80vw);
    justify-self: start;
  }

  .step-list article,
  .proof-list article,
  .use-case-list article {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .step-list p,
  .proof-list p,
  .use-case-list p {
    grid-column: 2;
  }

  .marketing-callout {
    grid-template-columns: 1fr;
  }
}
