/*
 * Phase 3 — focused public homepage.
 * The original commercial sections remain in the source and can be restored
 * by removing this stylesheet.
 */
#the-asset,
#editorial,
#partner-circle,
#investor-section,
#references {
  display: none;
}

#platform-paths {
  padding-top: clamp(72px, 11vw, 130px);
  padding-bottom: clamp(72px, 11vw, 130px);
}

.path-intro {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(21px, 3vw, 29px);
  line-height: 1.5;
  color: #CFC7B5;
}

body.light .path-intro {
  color: #3F3A32;
}

.home-paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 980px;
  margin: 0 auto;
  border-top: .5px solid var(--rule);
  border-bottom: .5px solid var(--rule);
}

.home-path {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 34px;
  color: inherit;
  text-decoration: none;
  border-left: .5px solid var(--rule);
  transition: background .3s ease;
}

.home-path:first-child {
  border-left: 0;
}

.home-path:hover {
  background: rgba(184, 168, 138, .05);
}

.home-path-k {
  font-family: "Inter", sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #C9B68A;
}

body.light .home-path-k {
  color: #6B4725;
}

.home-path h3 {
  margin: auto 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 400;
}

.home-path p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #CFC7B5;
}

body.light .home-path p {
  color: #3F3A32;
}

.home-path-arrow {
  margin-top: 24px;
  color: #C9B68A;
  font-size: 18px;
}

body.light .home-path-arrow {
  color: #6B4725;
}

@media (max-width: 760px) {
  .home-paths {
    grid-template-columns: 1fr;
  }

  .home-path {
    min-height: 210px;
    padding: 28px 22px;
    border-left: 0;
    border-top: .5px solid var(--rule);
  }

  .home-path:first-child {
    border-top: 0;
  }

  .home-path h3 {
    margin-top: 42px;
    font-size: 32px;
  }

  .home-path p {
    font-size: 16px;
  }
}
