/* Home (v117): visual polish + readability */
.hero.heroHome{
  position: relative;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  padding: clamp(18px, 3vw, 28px);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero.heroHome::before{
  content:"";
  position:absolute;
  inset:-1px;
  pointer-events:none;
  background:
    radial-gradient(900px 520px at 12% 0%, rgba(122,162,255,.22), transparent 62%),
    radial-gradient(860px 520px at 92% 10%, rgba(97,255,214,.16), transparent 60%);
  opacity:.9;
}
.hero.heroHome::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity:.20;
  mask-image: radial-gradient(70% 60% at 25% 20%, rgba(0,0,0,.85), transparent 72%);
}
.hero.heroHome > *{ position: relative; }

.heroHome .lead{ font-size: 18px; max-width: 62ch; }
.heroHome .ctaRow{ margin-top: 14px; }
.stdChips{ display:flex; flex-wrap:wrap; gap:8px; margin-top: 12px; }
.stdChips .chip{
  display:inline-flex;
  align-items:center;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .15px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  padding: 6px 10px;
  border-radius: 999px;
}

.heroHome .signal{ display:flex; gap:10px; align-items:flex-start; }
.heroHome .sigIcon{
  width: 30px; height: 30px;
  display:flex; align-items:center; justify-content:center;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  flex: 0 0 auto;
}

.heroHome .heroStack .card{ background: rgba(255,255,255,.03); }
.heroHome .heroStack .card.subtle{ background: rgba(255,255,255,.02); }

@media (max-width: 980px){
  .hero.heroHome{ grid-template-columns: 1fr; }
  .heroHome .heroRight{ margin-top: 14px; }
}

/* v118: Mobile fit fixes (no overflow, single-column cards) */
@media (max-width: 820px){
  body.home .cards2{ grid-template-columns: 1fr !important; }
  body.home .cards3{ grid-template-columns: 1fr !important; }
  body.home .cards2 > *,
  body.home .cards3 > *{ min-width:0; }
  body.home .wrap{ padding:16px; }
  body.home .panel,
  body.home .card{ padding:16px; max-width:100%; }
  body.home .panel, body.home .card, body.home .hero{ overflow:hidden; }
  body.home .panel *, body.home .card *{ min-width:0; }
  body.home .muted, body.home p, body.home li{ overflow-wrap:anywhere; word-break:break-word; }
}

@media (max-width: 480px){
  body.home .hero.heroHome{ padding:18px; }
  body.home .ctaRow{ gap:10px; }
  body.home .ctaRow .btn{ width:100%; justify-content:center; }
  body.home .jumpRow{ gap:8px; }
  body.home .jumpLink{ width:100%; text-align:center; }
  body.home .stdChips{ gap:6px; }
}

