/* ── ABOUT PAGE ──────────────────────────────────────────────────────────────── */

/* ── PAGE HERO ── */
.about-page-hero { padding-bottom: 64px; }

.about-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.about-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(247,201,72,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247,201,72,.025) 1px, transparent 1px);
  background-size: 56px 56px;
}
.about-hero-glow {
  position: absolute;
  top: -40%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(247,201,72,.06) 0%, transparent 65%);
}

.about-hero-content {
  position: relative;
  z-index: 1;
}

/* ── MAIN ── */
.about-main {
  padding-top: 64px;
  padding-bottom: 100px;
}

/* ── SECTIONS ── */
.about-section {
  padding: 0;
  animation: about-fade-up .5s ease both;
}
@keyframes about-fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.about-section:nth-child(2)  { animation-delay: .05s; }
.about-section:nth-child(4)  { animation-delay: .10s; }
.about-section:nth-child(6)  { animation-delay: .15s; }
.about-section:nth-child(8)  { animation-delay: .20s; }
.about-section:nth-child(10) { animation-delay: .25s; }

.about-section-inner {
  max-width: 760px;
}

/* ── SECTION HEADER ── */
.about-section-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.about-section-eyebrow::before {
  content: '';
  display: block;
  width: 16px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
}
.about-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.2;
}
.about-section-header {
  margin-bottom: 0;
}

/* ── BODY TEXT ── */
.about-section-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-section-body p:last-child { margin-bottom: 0; }
.about-section-body p strong {
  color: var(--text);
  font-weight: 600;
}
.about-lead {
  font-size: 17px !important;
  color: var(--text) !important;
  font-weight: 500;
  line-height: 1.7 !important;
}
.about-intro .about-section-body { padding-top: 0; }

/* ── DIVIDER ── */
.about-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 56px 0;
  position: relative;
}
.about-divider::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
  font-size: 10px;
  background: var(--bg-deep);
  padding-right: 12px;
  line-height: 1;
}

/* ── CALLOUT BOX ── */
.about-callout {
  display: flex;
  gap: 16px;
  background: rgba(247,201,72,.05);
  border: 1px solid rgba(247,201,72,.15);
  border-left: 3px solid var(--yellow);
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 20px;
}
.about-callout-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: rgba(247,201,72,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--yellow);
  font-family: 'Poppins', sans-serif;
  margin-top: 1px;
}
.about-callout p {
  margin: 0 !important;
  font-size: 14px !important;
  color: rgba(228, 232, 245, 0.75) !important;
}

/* ── MISSION LIST ── */
.about-mission-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 24px;
}
.about-mission-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  transition: border-color .2s, transform .2s;
}
.about-mission-item:hover {
  border-color: rgba(247,201,72,.2);
  transform: translateX(4px);
}
.about-mission-icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--bg-card2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-mission-text {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}
.about-mission-footer {
  font-size: 14px !important;
  color: var(--text-muted) !important;
  font-style: italic;
  padding-top: 4px;
}

/* ── CLOSING BLOCK ── */
.about-closing {
  margin-top: 24px;
  padding: 24px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.about-closing::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow), var(--teal));
}
.about-closing p {
  margin: 0 !important;
  color: var(--text) !important;
  font-size: 15px !important;
  font-weight: 500;
  line-height: 1.7 !important;
}

/* ── FOOTER ── */
#footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-dim);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .about-main { padding-top: 40px; padding-bottom: 64px; }
  .about-divider { margin: 40px 0; }
  .about-mission-item:hover { transform: none; }
}
