/* Page-specific styles for about.html */
html, body {
  overflow-y: auto;
  height: auto;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
}
.hero {
  max-width: 60rem;
  margin: 6rem auto 4rem;
  padding: 0 1rem;
  text-align: center;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  color: var(--accent);
  text-shadow: 0 0 10px #0ff5;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  color: #aaa;
  line-height: 1.6;
  max-width: 40rem;
  margin: 0 auto 2rem;
}
.cta {
  text-align: center;
  margin: 2rem 0;
}
.cta a {
  background: var(--accent);
  color: #000;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  font-family: var(--font);
}
.section {
  max-width: 60rem;
  margin: 4rem auto;
  padding: 0 1rem;
  line-height: 1.75;
  text-align: center;
}
.section h2 { color: var(--accent); margin-bottom: 0.75rem; }
ul li { margin-bottom: 0.5rem; }
.tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}
.tools-grid a {
  background: rgba(0,255,255,0.1);
  border: 1px solid rgba(0,255,255,0.2);
  padding: 1rem 1.5rem;
  border-radius: 6px;
  color: var(--accent);
  text-decoration: none;
  transition: background 0.3s;
}
.tools-grid a:hover {
  background: rgba(0,255,255,0.25);
}
footer.site-footer { margin-top: 4rem; }
