html, body { background: #0B1120 !important; margin: 0; overflow-x: hidden !important; max-width: 100vw !important; }

#about-content {
  --ab-dark: #0B1120;
  --ab-surface: #131B2E;
  --ab-border: #1E293B;
  --ab-orange: #EC5A22;
  --ab-orange-hover: #D4501E;
  --ab-text: #E2E8F0;
  --ab-muted: #94A3B8;
  --ab-blue: #00A9EA;
  --ab-gold: #F5A11A;
  --ab-green: #16A34A;
  --ab-light: #F8FAFC;
  --ab-light-surface: #FFFFFF;
  --ab-light-border: #E2E8F0;
  --ab-text-on-light: #1E293B;
  --ab-text-muted-light: #64748B;
  background: var(--ab-dark);
  color: var(--ab-text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  overflow-x: hidden;
}

/* ===== CONTAINER ===== */
#about-content .ab-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SECTION LABEL ===== */
#about-content .ab-section-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ab-orange);
  margin-bottom: 12px;
  text-align: center;
}

/* ===== SECTION TITLES ===== */
#about-content .ab-section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--ab-text-on-light);
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.15;
  text-align: center;
}
#about-content .ab-section-title-dark {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.15;
  text-align: center;
}

/* ===== HERO (dark) ===== */
#about-content .ab-hero {
  padding: 108px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(327deg,rgba(33,0,75,0.20) 3%,rgba(60,0,136,0) 40%),linear-gradient(246deg,rgba(236,90,34,0.08) 0%,rgba(209,25,80,0) 36%),linear-gradient(148deg,rgba(0,169,234,0.04) 0%,transparent 60%),var(--ab-dark);
}

#about-content .ab-hero h1 {
  font-size: clamp(28px, 4vw, 52px) !important;
  font-weight: 800 !important;
  letter-spacing: -1.5px !important;
  line-height: 1.1 !important;
  margin: 0 0 16px !important;
  color: #fff !important;
  position: relative;
}
#about-content .ab-hero-sub {
  font-size: clamp(15px, 1.5vw, 17px);
  color: rgba(226,232,240,0.5);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

/* ===== ABOUT DESCRIPTION (light) ===== */
#about-content .ab-story {
  padding: 100px 0;
  background: var(--ab-light);
}
#about-content .ab-story-text {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 17px;
  color: var(--ab-text-on-light);
  line-height: 1.8;
  text-align: center;
}
#about-content .ab-story-image {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--ab-light-border);
  display: block;
}

/* ===== OUR MISSION (dark) ===== */
#about-content .ab-mission {
  padding: 100px 0;
  background: #FFFFFF;
}
#about-content .ab-mission-desc {
  font-size: 17px;
  color: var(--ab-text-muted-light);
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.7;
  text-align: center;
}
#about-content .ab-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
#about-content .ab-mission-card {
  background: var(--ab-light);
  border: 1px solid var(--ab-light-border);
  border-radius: 14px;
  padding: 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
#about-content .ab-mission-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
#about-content .ab-mission-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
#about-content .ab-mission-card:hover::after {
  transform: scaleX(1);
}
#about-content .ab-mission-card:nth-child(1)::after { background: var(--ab-orange); }
#about-content .ab-mission-card:nth-child(2)::after { background: var(--ab-blue); }
#about-content .ab-mission-card:nth-child(3)::after { background: var(--ab-green); }

#about-content .ab-mission-card:hover:nth-child(1) { border-color: var(--ab-orange); }
#about-content .ab-mission-card:hover:nth-child(2) { border-color: var(--ab-blue); }
#about-content .ab-mission-card:hover:nth-child(3) { border-color: var(--ab-green); }

#about-content .ab-mission-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
#about-content .ab-mission-card:nth-child(1) .ab-mission-icon { background: rgba(236,90,34,0.08); }
#about-content .ab-mission-card:nth-child(1) .ab-mission-icon svg { color: var(--ab-orange); stroke: var(--ab-orange); }
#about-content .ab-mission-card:nth-child(2) .ab-mission-icon { background: rgba(0,169,234,0.08); }
#about-content .ab-mission-card:nth-child(2) .ab-mission-icon svg { color: var(--ab-blue); stroke: var(--ab-blue); }
#about-content .ab-mission-card:nth-child(3) .ab-mission-icon { background: rgba(22,163,74,0.08); }
#about-content .ab-mission-card:nth-child(3) .ab-mission-icon svg { color: var(--ab-green); stroke: var(--ab-green); }

#about-content .ab-mission-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
}
#about-content .ab-mission-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ab-text-on-light);
  margin: 0 0 8px;
  letter-spacing: -0.3px;
}
#about-content .ab-mission-card p {
  font-size: 14px;
  color: var(--ab-text-muted-light);
  line-height: 1.6;
  margin: 0;
}

/* ===== TEAM (light) ===== */
#about-content .ab-team {
  padding: 100px 0;
  background: var(--ab-light);
}
#about-content .ab-team-subtitle {
  font-size: 17px;
  color: var(--ab-text-muted-light);
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.7;
  text-align: center;
}
#about-content .ab-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
#about-content .ab-team-card {
  background: var(--ab-light-surface);
  border: 1px solid var(--ab-light-border);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s;
}
#about-content .ab-team-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
#about-content .ab-team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--ab-light-border);
  margin-bottom: 16px;
}
#about-content .ab-team-name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
}
#about-content .ab-team-name span {
  font-size: 16px;
  font-weight: 700;
  color: var(--ab-text-on-light);
}
#about-content .ab-team-flag {
  width: 20px;
  height: auto;
}
#about-content .ab-team-role {
  font-size: 13px;
  color: var(--ab-text-muted-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

/* ===== BUILT ON OPEN SOURCE (dark) ===== */
#about-content .ab-stack {
  padding: 100px 0;
  background: #FFFFFF;
}
#about-content .ab-stack-subtitle {
  font-size: 17px;
  color: var(--ab-text-muted-light);
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.7;
  text-align: center;
}
#about-content .ab-stack-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
#about-content .ab-stack-card {
  background: var(--ab-light);
  border: 1px solid var(--ab-light-border);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s;
}
#about-content .ab-stack-card:hover {
  border-color: var(--ab-orange);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
#about-content .ab-stack-logo {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: contain;
  margin-bottom: 16px;
}
#about-content .ab-stack-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ab-text-on-light);
  margin: 0 0 8px;
  letter-spacing: -0.3px;
}
#about-content .ab-stack-card p {
  font-size: 13px;
  color: var(--ab-text-muted-light);
  line-height: 1.6;
  margin: 0;
}

/* ===== OPEN SOURCE SUPPORT (light) ===== */
#about-content .ab-oss {
  padding: 100px 0;
  background: var(--ab-light);
  text-align: center;
}
#about-content .ab-oss h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--ab-text-on-light);
  letter-spacing: -1px;
  margin-bottom: 24px;
  line-height: 1.15;
}
#about-content .ab-oss h2 .ab-highlight {
  color: var(--ab-orange);
}
#about-content .ab-oss-desc {
  font-size: 17px;
  color: var(--ab-text-muted-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== JOIN US CTA (dark) ===== */
#about-content .ab-cta {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#about-content .ab-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(236,90,34,0.08) 0%, transparent 60%);
  pointer-events: none;
}
#about-content .ab-cta h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  margin: 0 0 16px;
  position: relative;
}
#about-content .ab-cta p {
  font-size: 17px;
  color: var(--ab-muted);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
  position: relative;
}
#about-content .ab-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border-radius: 10px;
  background: var(--ab-orange);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  position: relative;
}
#about-content .ab-cta-btn:hover {
  background: var(--ab-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(236,90,34,0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  #about-content .ab-mission-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #about-content .ab-team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  #about-content .ab-stack-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  #about-content .ab-hero { padding: 80px 0 40px; }
  #about-content .ab-mission-grid {
    grid-template-columns: 1fr;
  }
  #about-content .ab-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #about-content .ab-stack-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  #about-content .ab-team-grid {
    grid-template-columns: 1fr;
  }
  #about-content .ab-stack-grid {
    grid-template-columns: 1fr;
  }
}