/* ─── about / mission page ──────────────────────────────────────────────────
   Layered on top of style.css. Reuses its tokens (--bg, --text, --cyan, etc).
   Scoped under .about so it never touches the canvas page. */

.about { max-width: 820px; margin: 0 auto; padding: 0 20px 80px; }

.about-hero { text-align: center; padding: 64px 0 40px; }
.about-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.08; margin: 12px 0 18px; }
.about-hero .hero-sub { max-width: 640px; margin: 0 auto; color: var(--text-muted); font-size: 1.08rem; }

.about section { padding: 40px 0; border-top: 1px solid var(--border); }

.about-band .about-vision {
  font-size: clamp(1.4rem, 3.4vw, 2.1rem);
  line-height: 1.3; font-weight: 600; margin-top: 14px;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.about-story h2, .about-values h2, .about-model h2, .about-cta h2 {
  font-size: clamp(1.5rem, 3.6vw, 2.1rem); margin: 12px 0 16px; line-height: 1.15;
}
.about-story p, .about-model p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.65; margin: 0 0 14px; }

.values-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 20px;
}
.value-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
}
.value-card strong { display: block; font-size: 1.05rem; margin-bottom: 8px; }
.value-card p { color: var(--text-muted); font-size: .95rem; line-height: 1.55; margin: 0; }

.about-cta { text-align: center; }
.about-cta .cta-sub { color: var(--text-muted); max-width: 560px; margin: 0 auto 22px; line-height: 1.6; }

.sub-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; max-width: 480px; margin: 0 auto; }
.sub-input {
  flex: 1 1 240px; min-width: 200px;
  background: var(--bg-card); border: 1px solid var(--border2); color: var(--text);
  border-radius: var(--radius-sm); padding: 13px 16px; font-family: var(--font); font-size: 1rem;
}
.sub-input:focus { outline: none; border-color: var(--cyan); }
.sub-form .btn-primary { flex: 0 0 auto; }

.ml-slot { max-width: 480px; margin: 0 auto; min-height: 52px; }
.sub-privacy { color: var(--text-dim); font-size: .82rem; margin-top: 14px; }

.about-backlink { margin-top: 36px; }
.about-backlink a { color: var(--text-muted); text-decoration: none; font-family: var(--font-mono); font-size: .9rem; }
.about-backlink a:hover { color: var(--cyan); }

nav .nav-links a.active { color: var(--cyan); }

@media (max-width: 560px) {
  .values-grid { grid-template-columns: 1fr; }
}
