/* Home / landing page (2026-08-24). Rides league.css for the base. */

.home-hero { text-align: center; padding: 1.4rem 0 1.2rem; }
.home-ball { margin-bottom: 0.5rem; line-height: 0; }
.home-ball img { width: 72px; height: 72px; }
.home-hero h1 {
  font-size: 1.6rem; font-weight: 800; color: var(--accent);
  letter-spacing: 0.02em;
}
.home-sub { color: var(--ink-muted); font-size: 0.78rem; margin-top: 0.2rem; }
.home-status {
  display: inline-block; margin-top: 0.8rem;
  background: var(--bg-accent); border: 1px solid var(--accent-dark); border-radius: 10px;
  color: var(--accent-bright); font-size: 0.78rem; padding: 0.45rem 0.8rem;
}

.home-paths { display: grid; gap: 0.8rem; margin-top: 0.6rem; }
.home-card {
  display: block; background: var(--bg-sunken); border: 1px solid var(--line-soft);
  border-radius: 14px; padding: 1rem 1.1rem;
  color: inherit; text-decoration: none;
}
a.home-card:hover { border-color: var(--accent); }
/* A real h2 since step 5/6; margin and font set here so the UA heading
   styles do not leak. The icon inherits the heading colour. */
.home-card-h {
  font-size: 1rem; font-weight: 800; margin: 0 0 0.35rem; line-height: 1.3;
  display: flex; align-items: center; gap: 0.4rem;
}
.home-card p { color: var(--ink-muted); font-size: 0.82rem; line-height: 1.5; margin: 0 0 0.5rem; }
.home-go { color: var(--accent); font-size: 0.82rem; font-weight: 700; }
.home-tools { display: flex; flex-direction: column; gap: 0.45rem; }
.home-tools a {
  color: var(--accent); text-decoration: none; font-size: 0.85rem; font-weight: 700;
  padding: 0.5rem 0.7rem; background: var(--bg-page); border: 1px solid var(--line-soft);
  border-radius: 10px;
  min-height: 44px; display: flex; align-items: center;
}
.home-tools a:hover { border-color: var(--accent); }

@media (min-width: 640px) {
  .home-paths { grid-template-columns: 1fr 1fr; align-items: start; }
}
