/* Home v2: orient first-time visitors, then move them into the run. */
.home-v2 .home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(34px, 5vw, 68px) clamp(24px, 4vw, 56px);
  border: 1px solid var(--color-border, rgba(25,24,29,.14));
  border-radius: var(--radius-xl, 24px);
  background:
    radial-gradient(circle at 82% 18%, rgba(196,73,38,.14), transparent 32%),
    linear-gradient(135deg, rgba(251,247,239,.98), rgba(220,237,237,.58));
}
.home-v2 .home-hero-copy { max-width: 780px; }
.home-v2 .home-hero h1 {
  max-width: 12ch;
  margin: 8px 0 16px;
  font-size: clamp(3rem, 6.8vw, 6.2rem);
  line-height: .92;
}
.home-v2 .home-hero-copy > p {
  max-width: 62ch;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
}
.home-v2 .home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.home-v2 .home-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--color-muted, #66636b);
  font-size: .82rem;
  font-weight: 700;
}
.home-v2 .home-facts li + li::before {
  content: "•";
  margin-right: 18px;
  color: rgba(25,24,29,.28);
}
.home-v2 .home-run-preview {
  padding: 8px 0 8px 28px;
  border-left: 1px solid rgba(25,24,29,.18);
}
.home-v2 .home-run-preview > span {
  color: var(--color-action, #c44926);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.home-v2 .home-run-preview ol {
  display: grid;
  gap: 0;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: run;
}
.home-v2 .home-run-preview li {
  position: relative;
  display: grid;
  gap: 2px;
  padding: 13px 0 13px 42px;
  border-bottom: 1px solid rgba(25,24,29,.1);
  counter-increment: run;
}
.home-v2 .home-run-preview li:last-child { border-bottom: 0; }
.home-v2 .home-run-preview li::before {
  content: "0" counter(run);
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--color-progress, #176a6b);
  font-size: .72rem;
  font-weight: 800;
}
.home-v2 .home-run-preview strong { font-size: 1rem; }
.home-v2 .home-run-preview small { color: var(--color-muted, #66636b); line-height: 1.45; }

.home-v2 .home-section {
  padding: clamp(34px, 5vw, 64px) 0;
  border-top: 1px solid var(--color-border, rgba(25,24,29,.14));
}
.home-v2 .home-section-head {
  max-width: 760px;
  margin-bottom: 28px;
}
.home-v2 .home-section-head h2 { margin: 6px 0 10px; }
.home-v2 .home-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: home-step;
}
.home-v2 .home-steps li {
  counter-increment: home-step;
  min-width: 0;
  padding: 0 24px;
  border-left: 1px solid var(--color-border, rgba(25,24,29,.14));
}
.home-v2 .home-steps li:first-child { padding-left: 0; border-left: 0; }
.home-v2 .home-steps li::before {
  content: "0" counter(home-step);
  display: block;
  margin-bottom: 20px;
  color: var(--color-action, #c44926);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
}
.home-v2 .home-steps h3 { margin: 0 0 8px; }
.home-v2 .home-steps p { margin: 0; }

.home-v2 .home-role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.home-v2 .home-role-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 10px;
  min-height: 270px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--color-border, rgba(25,24,29,.14));
  border-radius: var(--radius-lg, 16px);
  background: rgba(251,247,239,.76);
}
.home-v2 .home-role-card h3 { margin: 0; font-size: 1.45rem; }
.home-v2 .home-role-card ul {
  margin: 8px 0 20px;
  padding-left: 18px;
  color: var(--color-muted, #66636b);
}
.home-v2 .home-role-card .button { justify-self: start; }

.home-v2 .home-season {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(196,73,38,.2);
  border-radius: var(--radius-lg, 16px);
  background: linear-gradient(120deg, rgba(196,73,38,.08), rgba(251,247,239,.9));
}
.home-v2 .home-season h2 { margin: 5px 0 9px; }
.home-v2 .home-season p { max-width: 68ch; margin-bottom: 0; }

.home-v2 .home-community-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--color-border, rgba(25,24,29,.14));
  border-bottom: 1px solid var(--color-border, rgba(25,24,29,.14));
}
.home-v2 .home-community-links a {
  display: grid;
  gap: 5px;
  padding: 20px;
  border-right: 1px solid var(--color-border, rgba(25,24,29,.14));
  color: inherit;
  text-decoration: none;
}
.home-v2 .home-community-links a:last-child { border-right: 0; }
.home-v2 .home-community-links a:hover { background: rgba(23,106,107,.05); }
.home-v2 .home-community-links strong { color: var(--color-ink, #19181d); }
.home-v2 .home-community-links span { color: var(--color-muted, #66636b); font-size: .78rem; }

@media (max-width: 980px) {
  .home-v2 .home-hero { grid-template-columns: 1fr; }
  .home-v2 .home-run-preview { max-width: 720px; }
  .home-v2 .home-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 0; }
  .home-v2 .home-steps li:nth-child(3) { padding-left: 0; border-left: 0; }
  .home-v2 .home-community-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-v2 .home-community-links a:nth-child(2) { border-right: 0; }
  .home-v2 .home-community-links a:nth-child(-n+2) { border-bottom: 1px solid var(--color-border, rgba(25,24,29,.14)); }
}

@media (max-width: 680px) {
  .home-v2 .home-hero { padding: 28px 20px; }
  .home-v2 .home-hero h1 { font-size: clamp(2.8rem, 15vw, 4.8rem); }
  .home-v2 .home-facts { display: grid; gap: 5px; }
  .home-v2 .home-facts li + li::before { display: none; }
  .home-v2 .home-run-preview { padding-left: 18px; }
  .home-v2 .home-steps,
  .home-v2 .home-role-grid,
  .home-v2 .home-community-links { grid-template-columns: 1fr; }
  .home-v2 .home-steps li,
  .home-v2 .home-steps li:nth-child(3) { padding: 20px 0; border-left: 0; border-top: 1px solid var(--color-border, rgba(25,24,29,.14)); }
  .home-v2 .home-steps li:first-child { border-top: 0; padding-top: 0; }
  .home-v2 .home-community-links a,
  .home-v2 .home-community-links a:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--color-border, rgba(25,24,29,.14)); }
  .home-v2 .home-community-links a:last-child { border-bottom: 0; }
  .home-v2 .home-season { grid-template-columns: 1fr; align-items: start; }
  .home-v2 .home-season .button { justify-self: start; }
}
