* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: black;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  overflow-x: hidden; /* Prevent gaps */
}

/* ── NAV ── */

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SCROLL ANIMATIONS ── */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal        { opacity: 0; transform: translateY(50px); }
.reveal-left   { opacity: 0; transform: translateX(-70px); }
.reveal-right  { opacity: 0; transform: translateX(70px); }
.reveal-scale  { opacity: 0; transform: scale(0.8); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: none;
}

.visible.delay-1 { transition-delay: 0.08s; }
.visible.delay-2 { transition-delay: 0.18s; }
.visible.delay-3 { transition-delay: 0.28s; }
.visible.delay-4 { transition-delay: 0.38s; }
.visible.delay-5 { transition-delay: 0.48s; }

.reveal:not(.visible),
.reveal-left:not(.visible),
.reveal-right:not(.visible),
.reveal-scale:not(.visible) {
  transition-delay: 0s;
}

/* ── HR DIVIDERS ── */
hr {
  width: 91%;
  background-color: #00ff9c;
  border: none;
  height: 2px;
  margin: 1rem auto;
}

/* ── HERO ── */
.about-hero {
  width: 100%;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,255,156,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.about-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  animation: fadeUp 0.9s ease both;
  color: white;
}
.about-hero p {
  font-size: 1.2rem;
  color: #aaa;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
  animation: fadeUp 0.9s 0.2s ease both;
  font-family: Cambria, Georgia, serif;
  text-align: center;
}
.green-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #00ff9c, transparent);
  margin: 2rem auto;
  animation: fadeUp 0.9s 0.1s ease both;
}
.h1s {
  background: linear-gradient(90deg, green, lightgreen);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── STATS BAR ── */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  padding: 3rem 2rem;
  border-top: 1px solid rgba(0,255,156,0.15);
  border-bottom: 1px solid rgba(0,255,156,0.15);
  width: 90%;
  margin: 0 auto 4rem;
}
.stat-item { text-align: center; }
.stat-item .num {
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(90deg, #00ff9c, lightgreen);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item .lbl {
  font-size: 0.9rem;
  color: #777;
  margin-top: 0.3rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── WHO WE ARE ── */
.who-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  width: 88%;
  max-width: 1100px;
  margin: 3rem auto 6rem;
  align-items: center;
}
.who-text h2 {
  text-align: left;
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  color: white;
  -webkit-text-fill-color: white;
}
.who-text p {
  text-align: left;
  color: #bbb;
  line-height: 1.9;
  font-family: Cambria, Georgia, serif;
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}
.who-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hex-grid {
  display: grid;
  grid-template-columns: repeat(3, 90px);
  gap: 12px;
}
.hex {
  width: 90px;
  height: 90px;
  background: #050505;
  border: 1px solid rgba(0,255,156,0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: 0.4s;
  cursor: default;
}
.hex:hover {
  border-color: #00ff9c;
  background: rgba(0,255,156,0.05);
  transform: scale(1.08);
}

/* ── STORY TIMELINE ── */
.story-section {
  width: 88%;
  max-width: 800px;
  margin: 2rem auto 7rem;
}
.story-section h2 {
  text-align: left;
  font-size: 2.4rem;
  margin-bottom: 3rem;
  color: white;
  -webkit-text-fill-color: white;
}
.timeline {
  position: relative;
  padding-left: 2.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #00ff9c, transparent);
}
.tl-item {
  position: relative;
  margin-bottom: 2.5rem;
}
.tl-item::before {
  content: '';
  position: absolute;
  left: -2.1rem;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #00ff9c;
  box-shadow: 0 0 12px rgba(0,255,156,0.6);
}
.tl-item h3 {
  font-size: 1.1rem;
  color: #00ff9c;
  margin-bottom: 0.4rem;
}
.tl-item p {
  text-align: left;
  color: #999;
  line-height: 1.7;
  margin: 0;
  font-family: Cambria, Georgia, serif;
}

/* ── VALUES GRID ── */
.values-section {
  width: 90%;
  max-width: 1100px;
  margin: 2rem auto 7rem;
}
.values-section h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 3rem;
  color: white;
  -webkit-text-fill-color: white;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  justify-content: center;
}
.value-card {
  background: #050505;
  border: 1px solid #111;
  border-radius: 24px;
  padding: 2rem;
  transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: default;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.value-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,255,156,0.07), transparent);
  transition: 0.4s;
}
.value-card:hover {
  border-color: rgba(0,255,156,0.4);
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,255,156,0.08);
}
.value-card:hover::before { transform: scale(2); }
.value-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.value-card h3 {
  font-size: 1.15rem;
  background: linear-gradient(90deg, lightgreen, green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.7rem;
}
.value-card p {
  text-align: left;
  color: #888;
  line-height: 1.7;
  font-size: 0.95rem;
  margin: 0;
  font-family: Cambria, Georgia, serif;
}

/* ── TEAM ── */
.team-section {
  width: 90%;
  max-width: 1000px;
  margin: 2rem auto 7rem;
  text-align: center;
}
.team-section h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  color: white;
  -webkit-text-fill-color: white;
}
.team-section > p {
  color: #888;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.7;
  font-family: Cambria, Georgia, serif;
  text-align: center;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 400px));
  gap: 2rem;
  justify-content: center;
}
.team-card {
  background: #050505;
  border: 1px solid #111;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  transition: 0.4s;
}
.team-card:hover {
  border-color: rgba(0,255,156,0.35);
  transform: translateY(-5px);
}
.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0,255,156,0.08);
  border: 1px solid rgba(0,255,156,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 1rem;
  font-weight: 700;
  color: #00ff9c;
}
.team-card h3 {
  font-size: 1rem;
  color: white;
  -webkit-text-fill-color: white;
  margin-bottom: 0.3rem;
}
.team-card .role {
  font-size: 0.85rem;
  color: #00ff9c;
  margin: 0;
  text-align: center;
}
.cert-badges {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.8rem;
}
.cert {
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: 99px;
  border: 1px solid rgba(0,255,156,0.25);
  color: #aaa;
  background: rgba(0,255,156,0.04);
}

.team-socials {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.team-socials a {
  text-decoration: none;
  font-size: 1.1rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.3s;
}

.team-socials a:hover {
  background: rgba(0,255,156,0.1);
  border-color: #00ff9c;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,255,156,0.15);
}

/* ── CTA ── */
.cta-section {
  width: 50%;
  max-width: 600px;
  min-width: 320px;
  margin: 3rem auto 6rem;
  text-align: center;
  padding: 3.5rem 3rem;
  border: 1px solid rgba(0,255,156,0.2);
  border-radius: 32px;
  background: rgba(0,255,156,0.02);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,255,156,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section h2 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  color: white;
  -webkit-text-fill-color: white;
}
.cta-section p {
  color: #888;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-family: Cambria, Georgia, serif;
  font-size: 0.95rem;
  text-align: center;
}
.btns2 { display: flex; justify-content: center; }
.btn2 {
  padding: 0.9rem 2.5rem;
  border-radius: 60px;
  font-weight: 800;
  font-size: 1.2rem;
  width: auto;
  height: auto;
  color: white;
  border: 1px solid rgba(0, 255, 140, 0.3);
  cursor: pointer;
  background: rgba(0, 255, 140, 0.05);
  transition: 1s;
  text-align: center;
}
.btn2:hover {
  background: #2cae7c;
  color: black;
  box-shadow: 0 0 60px rgba(0, 255, 156, 0.4);
}

/* ── FOOTER ── */
footer {
  width: 91%;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
footer a { color: #555; text-decoration: none; }
footer a:hover { color: #00ff9c; }

/* ── Responsive ── */
@media (max-width: 968px) {
    body { overflow-x: hidden !important; width: 100% !important; margin: 0 !important; padding: 0 !important; display: block !important; }
    .about-hero { text-align: center; padding: 100px 20px 40px; width: 100%; }
    .about-hero h1 { font-size: 2.5rem; width: 100%; }
    .about-hero p { font-size: 1.1rem; width: 100%; max-width: 100%; padding: 0 10px; }
    .who-section { grid-template-columns: 1fr; width: 100%; padding: 0 20px; }
    .who-text h2, .who-text p { text-align: center; width: 100%; }
    .team-grid, .values-grid { grid-template-columns: 1fr; width: 100%; }
}
