.brand-image {
  background: var(--ink);
  padding: 8px 12px;
  border-radius: 10px;
}

.brand-image img {
  display: block;
  width: 144px;
  height: auto;
}

.hero {
  position: relative;
  isolation: isolate;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 19, 27, .93) 0%, rgba(6, 19, 27, .82) 48%, rgba(6, 19, 27, .34) 100%),
    url('/assets/nyc-night.jpg') center 58% / cover no-repeat;
}

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

.hero .hero-copy {
  color: #d9e4e2;
}

.hero .primary {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}

.hero .primary:hover {
  background: var(--white);
}

.hero .secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, .8);
  background: rgba(6, 19, 27, .22);
}

.hero .trust-row span {
  border-color: rgba(255, 255, 255, .35);
  background: rgba(6, 19, 27, .48);
}

.photo-credit {
  position: absolute;
  right: 2vw;
  bottom: 12px;
  margin: 0;
  color: rgba(255, 255, 255, .66);
  font-size: .62rem;
}

.photo-credit a {
  color: inherit;
}

.app-purpose {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 8vw;
  background: var(--white);
}

.app-purpose-intro > p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.app-purpose-details {
  margin: 0;
}

.app-purpose-details div {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}

.app-purpose-details dt {
  color: var(--accent);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.app-purpose-details dd {
  margin: 5px 0 0;
  color: var(--muted);
}

.results {
  background: #eef1e9;
}

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

.case-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  min-height: 480px;
}

.case-card.featured {
  background: var(--ink);
  color: var(--white);
}

.case-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .7rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 58px;
}

.case-card.featured .case-top {
  color: var(--lime);
}

.case-card > p {
  color: var(--muted);
  max-width: 650px;
}

.case-card.featured > p {
  color: #b9c6c2;
}

.case-proof {
  margin: 24px 0 4px;
}

.case-proof img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.case-proof figcaption {
  margin-top: 9px;
  color: var(--muted);
  font-size: .68rem;
  line-height: 1.4;
}

.case-card.featured .case-proof figcaption {
  color: #b9c6c2;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: auto;
  padding-top: 34px;
}

.case-metrics div {
  border-top: 1px solid var(--line);
  padding-top: 15px;
}

.case-card.featured .case-metrics div {
  border-color: #3a4c47;
}

.case-metrics strong,
.case-metrics span {
  display: block;
}

.case-metrics strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 1.05;
}

.case-metrics span {
  font-size: .7rem;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.35;
}

.case-card.featured .case-metrics span {
  color: #b9c6c2;
}

.case-period {
  font-size: .75rem;
  margin: 28px 0 0;
}

.results-note {
  font-size: .78rem;
  color: var(--muted);
  max-width: 900px;
  margin: 24px 0 0;
}

.about {
  grid-template-columns: .8fr 1.2fr;
  gap: 8vw;
  align-items: center;
}

.founder-photo {
  margin: 0;
}

.founder-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 38% center;
  border-radius: var(--radius);
  filter: saturate(.85);
}

.founder-photo figcaption {
  font-size: .76rem;
  color: var(--muted);
  margin-top: 12px;
}

.about-content > p {
  font-size: 1.08rem;
}

.about dl {
  margin: 38px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.footer-logo img {
  display: block;
  width: 210px;
  height: auto;
}

@media (max-width: 850px) {
  .app-purpose {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .brand-image img {
    width: 112px;
  }

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

  .case-card {
    min-height: auto;
    padding: 28px;
  }

  .hero {
    background-position: 61% center;
  }

  .photo-credit {
    right: 5vw;
  }

  .case-top {
    margin-bottom: 38px;
  }

  .case-metrics,
  .about dl {
    grid-template-columns: 1fr;
  }
}

/* Illustrated service cards and a tighter editorial rhythm */
.section {
  padding-top: 82px;
  padding-bottom: 82px;
}

.section-head {
  margin-bottom: 34px;
}

.cards {
  gap: 14px;
}

.cards article {
  min-height: 245px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.cards article:nth-child(3) {
  background: #e7efdf;
}

.service-visual {
  width: 72px;
  height: 72px;
  margin-bottom: 32px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
}

.cards article:nth-child(2) .service-visual {
  color: var(--white);
  background: var(--ink);
}

.cards article:nth-child(3) .service-visual {
  color: var(--white);
  background: var(--accent);
}

.service-visual svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-visual .accent-line {
  stroke: var(--accent);
}

.cards article:nth-child(2) .service-visual .accent-line,
.cards article:nth-child(3) .service-visual .accent-line {
  stroke: var(--lime);
}

.service-visual .accent-fill {
  fill: var(--accent);
  stroke: none;
}

.cards article:nth-child(2) .service-visual .accent-fill,
.cards article:nth-child(3) .service-visual .accent-fill {
  fill: var(--lime);
}

.cards article h3 {
  margin-bottom: 14px;
}

.cards article p {
  margin-bottom: 0;
}

.split {
  gap: 5vw;
}

.steps li {
  padding-top: 17px;
  padding-bottom: 17px;
}

@media (max-width: 850px) {
  .section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .cards {
    gap: 12px;
  }

  .cards article {
    min-height: 0;
    padding: 24px;
  }

  .service-visual {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
  }

  .service-visual svg {
    width: 46px;
    height: 46px;
  }

  .split {
    gap: 30px;
  }

  .steps li {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .results {
    padding-top: 56px;
  }
}
