:root {
  --green: #1aff4c;
  --green-soft: rgba(26, 255, 76, 0.12);
  --bg: #08140d;
  --card: #0f1f16;
  --card-2: #0c1712;
  --text: #eafff0;
  --muted: rgba(234, 255, 240, 0.65);
  --border: rgba(26, 255, 76, 0.18);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* subtle animated background grid */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(26, 255, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 255, 76, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* =========================
   HERO SECTION
========================= */
.about-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 70px 20px 30px;
  background:
    radial-gradient(circle at top, rgba(26, 255, 76, 0.25), transparent 60%),
    linear-gradient(180deg, #0b1a12, #08140d);
  overflow: hidden;
}

.about-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  filter: contrast(1.2) brightness(0.6);
  transform: scale(1.05);
}

.about-content {
  position: relative;
  max-width: 900px;
  z-index: 2;
}

.about-content h1 {
  font-size: 56px;
  margin-bottom: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  text-shadow:
    0 0 10px rgba(26, 255, 76, 0.4),
    0 0 30px rgba(26, 255, 76, 0.25);
}

.about-content p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 25px;
  line-height: 1.6;
}

.hero-logo {
  width: 180px;
  max-width: 60%;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(0 0 18px rgba(26, 255, 76, 0.35));
}

.hero-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.hero-logo img:hover {
  transform: scale(1.05);
}

/* =========================
   BADGES
========================= */
.about-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  padding: 10px 14px;
  background: rgba(26, 255, 76, 0.08);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.25s ease;
  backdrop-filter: blur(6px);
}

.badge i {
  color: var(--green);
}

.badge:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 18px rgba(26, 255, 76, 0.25);
}

/* =========================
   ABOUT SECTION
========================= */
.about-section {
  margin-top: -20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  padding: 60px 10% 70px;
  background: linear-gradient(180deg, #08140d, #070f0a);
}

.about-card {
  background: linear-gradient(145deg, var(--card), var(--card-2));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow);
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* neon edge sweep */
.about-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(26, 255, 76, 0.08),
    transparent
  );
  transform: translateX(-100%);
  transition: 0.6s ease;
}

.about-card:hover::after {
  transform: translateX(100%);
}

.about-card:hover {
  transform: translateY(-6px);
  border-color: rgba(26, 255, 76, 0.4);
  box-shadow: 0 0 35px rgba(26, 255, 76, 0.15);
}

.about-card h2 {
  color: var(--green);
  margin-bottom: 12px;
  font-size: 20px;
  position: relative;
  z-index: 2;
}

.about-card p,
.about-card li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.about-card ul {
  padding-left: 18px;
}

/* =========================
   STATS
========================= */
.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 50px 10%;
  background: var(--card-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-box {
  text-align: center;
  padding: 28px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(26, 255, 76, 0.12);
  transition: 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(26, 255, 76, 0.18);
}

.stat-box i {
  font-size: 30px;
  color: var(--green);
  margin-bottom: 10px;
}

.stat-box h3 {
  margin: 5px 0;
  font-size: 18px;
}

.stat-box p {
  color: var(--muted);
  font-size: 13px;
}

/* =========================
   JOIN / APPLY SECTION
========================= */
.about-join {
  text-align: center;
  padding: 70px 20px;
  background: radial-gradient(
    circle at center,
    rgba(26, 255, 76, 0.1),
    transparent 60%
  );
}

.about-join h2 {
  font-size: 28px;
  color: var(--green);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-join p {
  color: var(--muted);
  margin-bottom: 25px;
}

.join-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--green);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.25s ease;
  box-shadow: 0 0 20px rgba(26, 255, 76, 0.25);
  position: relative;
  overflow: hidden;
}

/* animated scan line */
.join-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-20deg);
  transition: 0.5s;
}

.join-btn:hover::before {
  left: 120%;
}

.join-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 35px rgba(26, 255, 76, 0.4);
}

/* =========================
   ANIMATIONS
========================= */
@keyframes glow {
  0% {
    box-shadow: 0 0 10px rgba(26, 255, 76, 0.2);
  }
  50% {
    box-shadow: 0 0 25px rgba(26, 255, 76, 0.4);
  }
  100% {
    box-shadow: 0 0 10px rgba(26, 255, 76, 0.2);
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .about-content h1 {
    font-size: 34px;
    letter-spacing: 1.5px;
    line-height: 1.2;
  }

  .about-content p {
    font-size: 16px;
    padding: 0 12px;
  }

  .hero-logo {
    width: 140px;
    max-width: 70%;
    margin-bottom: 18px;
  }

  .about-badges {
    gap: 10px;
  }

  .badge {
    font-size: 12px;
    padding: 9px 13px;
  }

  .about-card h2 {
    font-size: 18px;
  }

  .about-card p,
  .about-card li {
    font-size: 15px;
  }

  .stat-box h3 {
    font-size: 17px;
  }

  .stat-box p {
    font-size: 14px;
  }

  .about-join h2 {
    font-size: 22px;
  }

  .about-join p {
    font-size: 15px;
  }

  .about-join {
    text-align: center;
  }

  .join-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
}
