/* ============================================================
   home — landing page component styles
   Scoped to the .home page. Extends /shared/styles.css; never
   redefines tokens.
   ============================================================ */

/* --- 1. hero --------------------------------------------------- */
.home .hero {
  padding: 24px 0 48px;
  border-bottom: 1px solid var(--rule);
}

.home .hero .kicker {
  display: block;
  margin-bottom: 28px;
}

.home .hero-headline {
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
}

.home .lede {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.45;
  max-width: 60ch;
  margin: 0 0 14px;
}

.home .lede:last-child { margin-bottom: 0; }

.home .lede.quiet {
  color: var(--ink-soft);
  font-size: 17px;
}

/* --- 2. ventures ---------------------------------------------- */
.home .ventures { padding-top: 48px; padding-bottom: 48px; }

.home .venture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.home .venture {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.home .venture-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}

.home .venture-name {
  font-size: 28px;
  margin: 0;
  letter-spacing: -0.02em;
}

.home .venture-name a {
  text-decoration: none;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-repeat: no-repeat;
  background-size: 0% 2px;
  background-position: 0 100%;
  transition: background-size 0.2s ease, color 0.12s ease;
  padding-bottom: 2px;
}

.home .venture-name a:hover {
  background-size: 100% 2px;
  color: var(--accent);
}

.home .venture-tagline {
  font-size: 19px;
  line-height: 1.4;
  margin: 0 0 6px;
  color: var(--ink-soft);
}

.home .venture p {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
  margin: 0;
}

.home .venture-meta {
  font-family: var(--sans) !important;
  font-size: 14.5px !important;
  line-height: 1.55;
  color: var(--ink-soft);
}

.home .venture-meta.accent-rule { padding-left: 14px; }

.home .venture-foot {
  margin-top: auto;
  padding-top: 8px;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.home .venture-foot a {
  text-decoration: none;
  color: var(--muted);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
}

.home .venture-foot a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* --- 3. context: background + now + next steps ----------------- */
.home .background {
  margin-bottom: 40px;
}

.home .background p {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.5;
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
}

.home .now {
  padding: 22px 0 28px;
  margin-bottom: 36px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.home .now .kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
}

.home .now p {
  font-size: 20px;
  line-height: 1.4;
  margin: 0;
  max-width: 56ch;
}

.home .next-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}

.home .next-step {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 22px;
  text-decoration: none;
  color: var(--ink);
  border-right: 1px solid var(--rule);
  transition: background 0.12s ease;
}

.home .next-step:last-child { border-right: none; }


.home .next-step:hover { background: var(--paper); }

.home .next-step .kicker { color: var(--muted); }

.home .next-step-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.home .next-step:hover .next-step-title { color: var(--accent); }

.home .next-step .muted {
  font-size: 14px;
  line-height: 1.45;
}

/* --- responsive ----------------------------------------------- */
@media (max-width: 880px) {
  .home .hero { padding: 8px 0 32px; }
  .home .hero .kicker { margin-bottom: 18px; }
  .home .hero-headline { margin-bottom: 22px; }

  .home .venture-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .home .background p { padding-top: 12px; }

  .home .next-steps { grid-template-columns: 1fr; }
  .home .next-step {
    border-right: none;
    border-bottom: 1px solid var(--rule);
    padding: 20px 0;
  }
  .home .next-step + .next-step { padding-left: 0; }
  .home .next-step:last-child { border-bottom: none; }
}
