/* ═══════════════════════════════════════════════════
   About page — Styles
   ═══════════════════════════════════════════════════ */

.about-wrap {
  min-height: 100vh;
  padding: 80px 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

/* ─── Hero ─── */
.about-hero {
  text-align: center;
  max-width: 700px;
  animation: fadeUp .7s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.about-hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(139, 92, 246, .18), rgba(59, 130, 246, .18));
  border: 1px solid rgba(139, 92, 246, .30);
  color: var(--text);
  margin-bottom: 20px;
}

.about-hero-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: 20px;
}

.about-hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 28px;
}

.about-hero-cta {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 14px;
  background: linear-gradient(90deg, var(--grad-a), var(--grad-b));
  color: rgba(255,255,255,.96);
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: .02em;
  box-shadow: 0 14px 30px rgba(59, 130, 246, .28);
  transition: transform .14s ease, filter .2s ease;
}

.about-hero-cta:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.about-hero-cta:active {
  transform: scale(.98);
}

/* ─── Features ─── */
.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 960px;
  width: 100%;
  animation: fadeUp .7s ease .15s both;
}

.about-feature {
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  padding: 28px 24px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.about-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
}

.about-feature-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.about-feature-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.about-feature-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
}

/* ─── How it works ─── */
.about-steps-section {
  max-width: 960px;
  width: 100%;
  animation: fadeUp .7s ease .3s both;
}

.about-section-title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--text);
  text-align: center;
  margin-bottom: 36px;
  letter-spacing: -.02em;
}

.about-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.about-step {
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--panel-border);
  padding: 28px 24px;
  position: relative;
}

.about-step-num {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--grad-a), var(--grad-b));
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.about-step-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}

.about-step-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
}

/* ─── Footer ─── */
.about-footer {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .04em;
  margin-top: 20px;
}

/* ─── Responsive ─── */
@media (max-width: 600px) {
  .about-wrap {
    padding: 100px 16px 30px;
    gap: 40px;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .about-steps {
    grid-template-columns: 1fr;
  }
}
