.home-main {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* ── Section label ── */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}


/* ── Tools grid ── */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 4rem;
}

.tool-card {
  background: var(--surface);
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: background 0.15s;
  position: relative;
}

.tool-card:hover {
  background: var(--surface2);
}

.tool-card-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.tool-card h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  letter-spacing: 0.03em;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.tool-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.tool-card-footer {
  display: flex;
  align-items: center;
}

/* ── About strip ── */
.about-strip {
  border: 1px solid var(--border);
  padding: 2rem;
  background: var(--surface);
}

.about-strip h3 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}



.about-strip p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 680px;
}
