/* ── About Page ── */
.about-hero {
  text-align: center;
  padding: 56px 20px 40px;
  border-bottom: 1px solid var(--b1);
  background: radial-gradient(ellipse 65% 45% at 50% 0%, rgba(255,215,0,.06), transparent 60%);
  position: relative; z-index: 1;
}
.about-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 4px 14px; border-radius: 20px;
  background: rgba(255,215,0,.07); border: 1px solid rgba(255,215,0,.18);
  font-size: 11px; font-family: 'JetBrains Mono', monospace; color: var(--gold);
  margin-bottom: 20px;
}
.dot-pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--signal); animation: pulse 2s infinite;
}
.about-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 900; letter-spacing: -1.5px; margin-bottom: 12px;
}
.about-subtitle {
  font-size: 15px; color: var(--t2); max-width: 540px;
  margin: 0 auto; line-height: 1.7;
}

.about-body { max-width: 900px; margin: 0 auto; padding: 36px 16px 20px; }

.about-section { margin-bottom: 44px; }

.about-h2 {
  font-family: 'Syne', sans-serif;
  font-size: 22px; font-weight: 700;
  color: var(--t1); margin-bottom: 18px;
}

/* Mission */
.mission-box { padding: 24px 28px; position: relative; overflow: hidden; }
.mission-text {
  font-size: 15px; color: var(--t2);
  line-height: 1.85; font-style: italic;
}

/* Service cards */
.about-service-card {}
.sc-icon {
  font-size: 22px; color: var(--gold);
  margin-bottom: 10px;
}
.sc-title {
  font-family: 'Syne', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--t1); margin-bottom: 5px;
}
.sc-desc { font-size: 12px; color: var(--t3); line-height: 1.55; }

/* Ecosystem grid */
.eco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 700px) { .eco-grid { grid-template-columns: 1fr; } }

.eco-card2 {
  background: var(--s2);
  border: 1px solid var(--b1);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.eco-card2:hover {
  border-color: var(--ec, var(--cyan));
  transform: translateY(-3px);
  box-shadow: 0 0 18px -4px var(--ec, var(--cyan));
}
.ec2-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--ec, var(--cyan)) 12%, transparent);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--ec, var(--cyan));
}
.ec2-name {
  font-family: 'Syne', sans-serif;
  font-size: 13px; font-weight: 700;
  color: var(--ec, var(--cyan));
}
.ec2-desc {
  font-size: 11px;
  color: var(--t3);
  line-height: 1.6;
}

/* Legacy eco-card (kept for other pages) */
.eco-card {
  background: var(--s2); border: 1px solid var(--b1);
  border-radius: 14px; padding: 22px 16px;
  text-align: center; display: block;
  transition: all .25s;
}
.eco-card:hover {
  border-color: rgba(255,255,255,.15);
  transform: translateY(-2px);
}
.eco-icon {
  font-size: 28px; color: var(--ec, var(--cyan));
  display: block; margin-bottom: 10px;
}

/* Team */
.team-card { text-align: center; }
.team-av {
  width: 52px; height: 52px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 700; color: #05080F;
  margin: 0 auto 10px;
}
.team-name { font-size: 13px; font-weight: 600; color: var(--t1); margin-bottom: 2px; }
.team-role { font-size: 11px; color: var(--t3); font-family: 'JetBrains Mono', monospace; }

/* Contact */
.contact-card { padding: 0; overflow: hidden; }
.contact-row-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 20px; border-bottom: 1px solid var(--b1);
}
.contact-row-item:last-of-type { border-bottom: none; }
.contact-icon {
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--s3); border: 1px solid var(--b1);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--gold); flex-shrink: 0;
}
.contact-val { font-size: 14px; font-weight: 500; color: var(--t1); display: block; }
.contact-val.text-cyan { color: var(--cyan); }
.contact-val.text-cyan:hover { text-decoration: underline; }
.contact-lbl { font-size: 11px; color: var(--t3); margin-top: 1px; }
.contact-footer {
  display: flex; align-items: center; gap: 7px;
  padding: 12px 20px;
  background: rgba(10,14,26,.5);
  border-top: 1px solid var(--b1);
  font-size: 12px; color: var(--t3);
}
.contact-footer .dot-green {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--signal); animation: pulse 2s infinite;
}

/* Footer */
.about-footer {
  text-align: center; padding: 24px;
  border-top: 1px solid var(--b1);
  font-size: 13px; color: var(--t3);
  position: relative; z-index: 1;
}

@media (max-width: 640px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
