:root {
  --mhub-green: #00a651;
  --mhub-dark: #0b2b2b;
  --accent: #00a651;
  --muted: #6b7280;
  --bg: #f7fbfb;
  --card: #ffffff;
  --radius: 12px;
  font-size: 16px;
}
* {
  box-sizing: border-box;
}
body {
  font-family:
    Inter,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial;
  margin: 0;
  color: var(--mhub-dark);
  background: var(--bg);
}
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem;
}
.hero {
  padding: 3rem 0;
  text-align: center;
  background: linear-gradient(180deg, rgba(0, 166, 81, 0.05), transparent);
}
.logo {
  display: inline-block;
  margin-bottom: 1.5rem;
}
.logo img {
  height: 56px;
}
.hero h1 {
  font-size: 2rem;
  margin: 0 0 0.5rem;
}
.lead {
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 1rem;
}
.cta {
  margin-top: 1rem;
}
.primary {
  background: var(--mhub-green);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  margin-right: 0.5rem;
}
.outline {
  border: 1px solid var(--mhub-green);
  color: var(--mhub-green);
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  text-decoration: none;
}

.links h2 {
  margin-top: 0;
}
.muted {
  color: var(--muted);
}
.grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--card);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 6px rgba(8, 27, 27, 0.06);
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(8, 27, 27, 0.08);
}
.icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  fill: var(--mhub-green);
}
.card-content strong {
  display: block;
}
.card-content span {
  color: var(--muted);
  font-size: 0.95rem;
}

.project-card .favicon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 8px;
  object-fit: contain;
}
.project-card .icon {
  fill: var(--mhub-dark);
  opacity: 0.7;
}
.project-card:hover .icon {
  fill: var(--mhub-green);
  opacity: 1;
}

.site-footer {
  padding: 2rem 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (min-width: 640px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero h1 {
    font-size: 2.6rem;
  }
}
