.home-inner { padding-top: 56px; }

.hero {
  max-width: 640px;
  margin-bottom: 44px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--text-muted);
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  margin-bottom: 64px;
}

.tool-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow);
  transition: transform .15s ease, border-color .15s ease;
}

.tool-card:hover {
  transform: translateY(-3px);
  border-color: var(--green);
}

.tool-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tool-id {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}

.dot-pending {
  background: var(--amber);
  box-shadow: 0 0 0 3px var(--amber-tint);
}

.tool-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--green-tint);
  color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.tool-icon svg { width: 22px; height: 22px; }

.tool-card h2 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}

.tool-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
  flex: 1;
}

.tool-cta {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--green-dark);
}

.tool-card-soon {
  opacity: 0.7;
  cursor: default;
}
.tool-card-soon:hover { transform: none; border-color: var(--border); }
.tool-cta-soon { color: #b45309; }

.info-block h2 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 22px;
}

.info-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.info-columns h3 {
  font-size: 15px;
  margin-bottom: 8px;
}

.info-columns p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

@media (max-width: 880px) {
  .home-inner { padding-top: 8px; }
  .info-columns { grid-template-columns: 1fr; gap: 20px; }
}
