 body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top, rgba(0,255,229,0.08), transparent 40%),
    radial-gradient(circle at bottom, rgba(255,0,255,0.08), transparent 40%),
    linear-gradient(135deg, #070b18, #000 85%);
  color: white;
  overflow-x: hidden;
}

    /* Gradient utility */
    .gradient-text {
      background: linear-gradient(45deg, #ff00ff, #00f0ff, #ff9d00);
      background-size: 200% 200%;
      animation: gradientShift 6s ease infinite;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    @keyframes gradientShift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }
.hero {
  text-align: center;
  padding: 140px 20px 120px;
}
/* ===== ABOUT HERO (WAMMU STYLE) ===== */
.about-hero {
  padding: 140px 20px 90px;
}

.about-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.about-left h1 {
  font-size: clamp(2.8rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin: 25px 0;
}

.about-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
}

.about-desc.muted {
  color: rgba(255,255,255,0.65);
}

/* Breadcrumb */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
}

/* RIGHT TERMINAL */
.terminal-card {
  border-radius: 18px;
  background: linear-gradient(
    145deg,
    rgba(120,70,255,0.15),
    rgba(20,20,40,0.9)
  );
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 25px 70px rgba(0,0,0,0.8);
  overflow: hidden;
}

.terminal-header {
  padding: 10px 14px;
  display: flex;
  gap: 8px;
  background: rgba(0,0,0,0.4);
}

.terminal-header .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.terminal-body {
  padding: 25px;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.9rem;
  color: #6dffb3;
  line-height: 1.6;
}

/* STATS */
.about-stats {
  max-width: 1100px;
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
  gap: 25px;
}

.stat-box {
  text-align: center;
  padding: 28px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box i {
  font-size: 26px;
  color: #b98cff;
  margin-bottom: 10px;
}

.stat-box h3 {
  font-size: 1.6rem;
  margin-bottom: 5px;
}

.stat-box p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.stat-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 35px rgba(185,140,255,0.5);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-hero-inner {
    grid-template-columns: 1fr;
  }
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  letter-spacing: 1px;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
}


    /* ABOUT */
    .about-container {
      display: flex;
      align-items: center;
      justify-content: center;
      max-width: 1100px;
      margin: 70px auto;
      gap: 40px;
      padding: 0 20px;
      flex-wrap: wrap;
    }
.about-container img {
  flex: 1 1 40%;
  max-width: 400px;  /* smaller image */
  height: 200px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}
.about-text {
  flex: 1 1 55%;  /* text takes more space */
  max-width: 600px;
}

    .about-text h2 {
      font-size: 2rem;
      margin-bottom: 15px;
    }
    .about-text p {
      font-size: 1rem;
      line-height: 1.7;
      color: rgba(255,255,255,0.85);
      margin-bottom: 15px;
    }


    .highlights h2 {
      font-size: 2rem;
      margin-bottom: 40px;
    }
    .highlight-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
      gap: 25px;
      max-width: 1100px;
      margin: 0 auto;
    }
    .highlight-box {
      background: rgba(255,255,255,0.05);
      backdrop-filter: blur(12px);
      padding: 25px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,0.15);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .highlight-box:hover {
      transform: translateY(-8px);
      box-shadow: 0 0 20px rgba(0, 255, 200, 0.5);
    }
    .highlight-box i {
      font-size: 30px;
      margin-bottom: 12px;
      color: #00ffe5;
    }

    /* TEAM */
    .team {
      padding: 70px 20px;
      text-align: center;
    }
    .team h2 {
      font-size: 2rem;
      margin-bottom: 40px;
    }
    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
      gap: 25px;
      max-width: 1100px;
      margin: 0 auto;
    }
    .team-member {
      background: rgba(255,255,255,0.05);
      backdrop-filter: blur(12px);
      padding: 25px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,0.15);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .team-member:hover {
      transform: translateY(-8px);
      box-shadow: 0 0 25px rgba(255,0,255,0.6);
    }
    .team-member img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      border: 3px solid #ff00ff;
      margin-bottom: 12px;
    }
    .team-member h3.nickname {
      font-size: 1.3rem;
      font-weight: 700;
      background: linear-gradient(45deg, #ff00ff, #00f0ff, #ff9d00);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin: 8px 0 4px;
    }
    .team-member p.realname {
      font-size: 0.9rem;
      font-style: italic;
      color: rgba(255,255,255,0.6);
      margin: 0 0 6px;
    }
    .team-member p.role {
      font-size: 0.95rem;
      font-weight: 600;
      color: #00ffe5;
      margin: 0;
    }

    /* FOOTER */
    .footer {
      background: #0a0f1e;
      padding: 50px 20px;
      margin-top: 60px;
      border-top: 1px solid rgba(255,255,255,0.15);
    }
    .footer-container {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 30px;
      max-width: 1100px;
      margin: 0 auto 20px;
    }
    .footer-column h3 {
      color: #fff;
      margin-bottom: 15px;
      font-size: 1.1rem;
    }
    .footer-column ul {
      list-style: none;
      padding: 0;
    }
    .footer-column ul li {
      margin: 8px 0;
    }
    .footer-column ul li a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-column ul li a:hover {
      color: #00ffe5;
    }
    .footer-bottom {
      text-align: center;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.5);
    }
/* =========================
   OUR JOURNEY — INSANE
========================= */

.journey {
  padding: 110px 20px;
  position: relative;
  overflow: hidden;
}

/* Ambient background energy */
.journey::before,
.journey::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,255,229,0.15), transparent 70%);
  top: -150px;
  left: -150px;
  filter: blur(80px);
  z-index: 0;
}

.journey::after {
  background: radial-gradient(circle, rgba(255,0,255,0.15), transparent 70%);
  top: auto;
  bottom: -150px;
  left: auto;
  right: -150px;
}

/* Title */
.journey h2 {
  font-size: 2.4rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.journey-sub {
  max-width: 650px;
  margin: 0 auto 70px;
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* =========================
   TIMELINE CORE
========================= */

.journey-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Neon spine */
.journey-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    to bottom,
    transparent,
    #00ffe5,
    #ff00ff,
    #00ffe5,
    transparent
  );
  transform: translateX(-50%);
  filter: drop-shadow(0 0 20px rgba(0,255,229,0.7));
}

/* =========================
   STEPS
========================= */

.journey-step {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 70px;
  position: relative;
}

/* Alternate sides */
.journey-step:nth-child(even) {
  flex-direction: row-reverse;
}

/* Timeline node */
.journey-step::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 16px;
  height: 16px;
  background: radial-gradient(circle, #00ffe5, #004d48);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow:
    0 0 18px rgba(0,255,229,0.9),
    0 0 35px rgba(255,0,255,0.6);
  animation: pulseNode 3s infinite ease-in-out;
}

@keyframes pulseNode {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.4); }
}

/* Year */
.journey-year {
  flex: 0 0 90px;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: #00ffe5;
  text-shadow: 0 0 12px rgba(0,255,229,0.8);
}

/* =========================
   CARDS
========================= */

.journey-card {
  flex: 1;
  max-width: 380px;
  padding: 30px;
  border-radius: 18px;
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.10),
    rgba(255,255,255,0.02)
  );
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    0 25px 60px rgba(0,0,0,0.85),
    inset 0 0 40px rgba(255,255,255,0.04);
  transition:
    transform 0.5s cubic-bezier(.2,.9,.3,1),
    box-shadow 0.5s ease;
  position: relative;
  overflow: hidden;
}

/* Light sweep effect */
.journey-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.15),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.journey-card:hover::before {
  transform: translateX(100%);
}

/* Hover */
.journey-card:hover {
  transform: translateY(-14px) scale(1.04);
  box-shadow:
    0 0 45px rgba(0,255,229,0.7),
    0 0 70px rgba(255,0,255,0.5);
}

/* Text */
.journey-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.journey-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

/* FUTURE CARD — GOD MODE */
.journey-card.glow {
  border-color: rgba(255,0,255,0.6);
  box-shadow:
    0 0 60px rgba(255,0,255,0.8),
    0 0 100px rgba(0,255,229,0.6);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .journey-timeline::before {
    left: 24px;
  }

  .journey-step,
  .journey-step:nth-child(even) {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 60px;
  }

  .journey-step::before {
    left: 24px;
  }

  .journey-year {
    margin-bottom: 10px;
  }

  .journey-card {
    max-width: 100%;
  }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 90px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 2.3rem;
  margin-bottom: 10px;
}

.testimonials-sub {
  max-width: 650px;
  margin: 0 auto 50px;
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
}

/* GRID */
.testimonial-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* CARD */
.testimonial-card {
  padding: 28px;
  border-radius: 18px;
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.02)
  );
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 25px 60px rgba(0,0,0,0.75);
  text-align: left;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 40px rgba(185,140,255,0.6);
}

/* GLOW FEATURED */
.testimonial-card.glow {
  box-shadow:
    0 0 45px rgba(185,140,255,0.7),
    inset 0 0 30px rgba(255,255,255,0.04);
}

/* HEADER */
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.testimonial-header img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #b98cff;
}

.testimonial-header h3 {
  margin: 0;
  font-size: 1.05rem;
}

.testimonial-header span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

/* STARS */
.stars {
  color: #ffd369;
  margin-bottom: 12px;
  font-size: 1rem;
}

/* TEXT */
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .testimonial-card {
    padding: 24px;
  }
}
/* ===== TEAM HOVER DETAILS ===== */
.team-member {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Overlay Panel */
.team-overlay {
  position: absolute;
  inset: 0;
  padding: 22px;
  background: linear-gradient(
    145deg,
    rgba(20,20,40,0.92),
    rgba(0,0,0,0.95)
  );
  backdrop-filter: blur(16px);
  border-radius: 14px;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.45s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

/* Show on hover */
.team-member:hover .team-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Overlay Title */
.team-overlay h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  background: linear-gradient(45deg, #ff00ff, #00f0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* List */
.team-overlay ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.team-overlay ul li {
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.85);
}

/* Discord highlight */
.team-overlay .discord {
  color: #7289da;
  font-weight: 600;
}

/* Hide base text slightly on hover */
.team-member:hover img,
.team-member:hover .nickname,
.team-member:hover .role {
  opacity: 0.1;
  transition: opacity 0.3s ease;
}

/* Mobile Support (tap) */
@media (max-width: 768px) {
  .team-overlay {
    transform: translateY(0);
    opacity: 1;
    position: relative;
    margin-top: 15px;
    background: rgba(255,255,255,0.05);
  }

  .team-member:hover img,
  .team-member:hover .nickname,
  .team-member:hover .role {
    opacity: 1;
  }
}
.team-member:hover {
  box-shadow: 0 0 35px rgba(185,140,255,0.7);
}
