:root {
  --bg: #040404;
  --muted-stroke: rgba(255, 255, 255, 0.04);
  --accent-1: #2be3a6;
  --accent-2: #6b5dfc;
  --white: #ffffff;
  --container-max: 1200px;

  --text-white: #ffffff;
  --text-grey: #a0a0a0;

  --color-teal: #00dfba;
  --color-blue: #4a6dff;
  --color-purple: #9d4edd;
  --color-green: #00b48a;
  --color-light-grey: #ddd;
  --chart-size: 500px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: radial-gradient(circle at center, #040404, #040404);
  color: #fff;
  font-family: "Benzin", SF Pro Display;
  overflow-x: hidden;
}

/* HEADER */
.main-header {
  background: rgb(0 0 0 / 92%);
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
  /* backdrop-filter: blur(10px); */
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
}

.logo img {
  width: 140px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.4s ease;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  background-clip: text;
  text-transform: uppercase;
}

.nav-links a:hover {
  background: linear-gradient(
    to right,
    rgb(0, 255, 133) 50%,
    rgba(66, 0, 153, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.nav-links span {
  color: rgba(255, 255, 255, 0.3);
}

/* RIGHT SECTION */
.right-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

.language {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  cursor: pointer;
}

.language img {
  width: 18px;
  height: auto;
}

.connect-btn {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(0, 255, 255, 0.4);
  padding: 8px 30px;
  border-radius: 0px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.connect-btn:hover {
  background: linear-gradient(
    to right,
    rgb(0, 255, 133) 0%,
    rgb(67, 0, 153) 100%
  );
  border: none;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

/* Hamburger */
.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  /* Navbar */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 90%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding: 90px 25px 30px; /* Push items below header */
    display: flex;
    flex-direction: column;
    gap: 25px;
    transition: 0.4s ease;

    height: 100vh;
    padding-top: 90px; /* Prevent overlap with toggle */
    z-index: 9990; /* Lower than toggle */
  }

  .nav-links.active {
    right: 0;
    align-items: flex-start;
  }

  .nav-links span {
    display: none;
  }

  .menu-toggle {
    display: flex;
    /* position: fixed; stays above everything */
    top: 20px;
    right: 20px;
    z-index: 10000 !important; /* always visible */
    cursor: pointer;
  }

  .right-section {
    gap: 12px;
  }

  .connect-btn {
    padding: 7px 16px;
    font-size: 14px;
  }

  /* Hero Section */
  .hero-content {
    margin-top: 80px !important;
    padding: 0 20px;
  }

  .hero-content1 {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 100%;
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    gap: 30px;
    text-align: center;
  }

  /* Headline + CTA */
  .headline .cta-row {
    margin-top: 25px !important;
    display: flex !important;
    flex-direction: column;
    gap: 16px !important;
    align-items: center !important;
    margin-left: 0 !important;
  }

  /* Buttons */
  .cta-row a,
  .cta-row button {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

@media (max-width: 500px) {
  .logo img {
    width: 120px;
  }

  .language span {
    display: none;
  }
}
/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background Video */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
  filter: brightness(0.4) saturate(1.2);
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0),
    rgba(5, 0, 20, 0)
  );
  /* backdrop-filter: blur(3px); */
  z-index: 1;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  color: #fff;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-content .highlight {
  background: linear-gradient(
    to right,
    rgb(0, 255, 133) 50%,
    rgba(66, 0, 153, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.1rem;
  color: #ccc;
  margin-top: 15px;
  margin-bottom: 25px;
}

/* Buttons */
.btn-gradient {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  background: linear-gradient(90deg, #00ff6eff, #6f00ff);
  color: #fff;
  font-weight: 600;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  opacity: 0.9;
  transform: translateY(-3px);
}

.btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-outline-light:hover {
  background: #fff;
  color: #000;
}

/* Social Icons */
.social-icons a {
  color: #fff;
  font-size: 22px;
  margin: 0 10px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #00ffb9;
}

/* Stats */
.stats {
  margin-top: 30px;
}

.stats small {
  color: #aaa;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.stats span {
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
}

/* Info Box */
.info-box {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 0 25px rgba(0, 255, 187, 0);
  max-width: 480px;
  margin: auto;
  backdrop-filter: blur(8px);
}

.info-box h3 {
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.info-box p {
  color: #ccc;
  font-size: 0.95rem;
}

/* Badges (Audit Logos) */
.badges img {
  height: 40px;
  margin: 10px;
  opacity: 0.8;
  transition: 0.3s;
}

.badges img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* --- COMMUNITY DROPDOWN --- */
.community-dropdown {
  position: relative;
  display: inline-block;
}

.community-dropdown .dropdown-toggle {
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.community-dropdown .dropdown-toggle:hover {
  color: #fff;
}

.community-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  /* top: 35px; */
  left: 0;
  background: rgba(20, 20, 20, 0.95);
  border-radius: 12px;
  padding: 10px;
  width: 240px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.community-dropdown:hover .dropdown-menu {
  display: block;
}

.community-dropdown .dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

/* .community-dropdown .dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
} */

.community-dropdown .dropdown-menu i {
  font-size: 20px;
  color: #fefefeff;
  width: 24px;
  text-align: center;
}

.community-dropdown .dropdown-menu div {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.community-dropdown .dropdown-menu strong {
  font-size: 14px;
  color: #fff;
}

.community-dropdown .dropdown-menu span {
  font-size: 12px;
  color: #aaa;
}
.community-dropdown .dropdown-menu {
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.3s ease;
}

.community-dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
}
/* Full-bleed hero */
.hero {
  position: relative;
  min-height: 70vh; /* adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6vh 24px;
}

/* Giant outlined background word */
.hero::before {
  content: "EARTHMETA";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-weight: 800;
  font-size: clamp(90px, 24vw, 420px); /* scales with viewport */
  letter-spacing: -6px;
  color: transparent;
  -webkit-text-stroke: 1.6px rgba(255, 255, 255, 0.06);
  text-transform: uppercase;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
  mix-blend-mode: normal;
}

/* Main content area (above the outlined text) */
.hero-content1 {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: var(--container-max);
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: center;
  max-width: 1320px;
}

/* Left column headline */
.headline {
  align-self: start;
}

.headline h1 {
  margin: 0;
  line-height: 0.95;
  font-size: clamp(34px, 6.6vw, 74px); /* responsive */
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--white);
  text-transform: uppercase;
  /* subtle layered look */
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6), 0 6px 18px rgba(0, 0, 0, 0.45);
}

/* to force line breaks like in the image */
.headline h1 br {
  display: block;
}

.headline .cta-row {
  margin-top: -125px;
  display: grid;
  align-items: center;
  gap: 24px;
  margin-left: 90%;
}

/* Play button with concentric rings */
.play-wrap {
  position: relative;
  width: 100px;
  height: 100px;
  min-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* outer ring */
.play-wrap .ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  display: block;
  box-shadow: 0 0 0 3px rgba(43, 227, 166, 0.06) inset;
  transition: transform 0.35s ease;
  pointer-events: none;
}

/* gradient circle (middle) */
.play-wrap .ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgb(107 93 252), #00000091 30%),
    conic-gradient(from 180deg at 50% 50%, rgb(43 227 166), rgb(107 93 252));
  filter: blur(4px);
  opacity: 0.95;
  transform: scale(0.98);
}

/* inner circle */
.play-wrap .dot {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.25s ease, background 0.2s ease;
  z-index: 3;
}

/* triangle play icon */
.play-wrap .dot svg {
  width: 14px;
  height: 14px;
  transform: translateX(1px);
  opacity: 0.95;
  fill: none;
  stroke: white;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.play-wrap:hover .ring {
  transform: scale(1.06);
}
.play-wrap:active .dot {
  transform: scale(0.96);
}

/* Right column description */
.desc {
  max-width: 420px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.desc p {
  margin: 0;
}

/* Responsive for smaller screens */
@media (max-width: 980px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .desc {
    order: 2;
    max-width: 100%;
  }
  .headline {
    order: 1;
  }
  .hero::before {
    font-size: clamp(80px, 30vw, 260px);
    -webkit-text-stroke: 1.2px rgba(255, 255, 255, 0.05);
  }
  .play-wrap {
    width: 72px;
    height: 72px;
    min-width: 72px;
  }
}

@media (max-width: 420px) {
  .headline h1 {
    font-size: 34px;
  }
  .play-wrap {
    width: 58px;
    height: 58px;
    min-width: 58px;
  }
}
/* Section */
.ecosystem-section {
  position: relative;
  padding: 0px 0;
  overflow: hidden;
}

.ecosystem-section h1 {
  text-align: center;
  font-weight: 800;
  font-size: 4rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -1px;
}

/* GRID Layout */
.ecosystem-wrapper {
  position: relative;
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* gap: 2rem; */
  justify-items: center;
}

.ecosystem-card {
  background: rgb(3 3 3 / 83%);
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 0px;
  padding: 40px 30px;
  width: 280px;
  text-align: left;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.ecosystem-card1 {
  /* background: rgba(3, 3, 3, 0.63); */
  /* border: 2px solid rgba(255, 255, 255, 0.6); */
  border-radius: 0px;
  padding: 40px 30px;
  width: 280px;
  text-align: left;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
  margin-left: 200%;
}

.ecosystem-card:hover {
  background: rgba(0, 6, 4, 0.12);
  transform: translateY(-10px);
}
.ecosystem-card1:hover {
  background: rgba(0, 6, 4, 0.04);
  transform: translateY(-10px);
}

.ecosystem-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}
.ecosystem-card1 h1 {
  font-weight: 1000;
  margin-bottom: 10px;
  color: #fff;
}

.ecosystem-card p {
  color: #ccc;
  font-size: 0.95rem;
}

.ecosystem-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 8px rgba(0, 255, 200, 0.25));
  transition: transform 0.3s ease;
}

.ecosystem-card:hover .ecosystem-icon {
  transform: scale(1.1);
}

/* Blob image positioning */
.blob {
  position: absolute;
  width: 480px;
  height: 480px;
  background: url("../images/blob.png") no-repeat center/contain;
  z-index: 0; /* Behind cards but above background */
  opacity: 0.8;
  filter: drop-shadow(0 0 35px rgba(0, 255, 200, 0.25));
  pointer-events: none;
  transition: opacity 0.5s ease, transform 1s ease;
}

/* Optional subtle floating animation */
@keyframes floatBlob {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

.blob {
  animation: floatBlob 10s ease-in-out infinite;
}

.blob-1 {
  top: 50px;
  left: 20px;
}
.blob-2 {
  top: 150px;
  left: 72%;
  width: 20%;
}
.blob-3 {
  bottom: -100px;
  right: 134px;
  width: 30%;
}

/* Prevent overlapping on mobile */
@media (max-width: 992px) {
  .blob {
    display: none;
  }
}

.ecosystem-card1:nth-child(1) {
  grid-column: 3;
  grid-row: 1;
  /* transform: translateY(40px); */
}
/* Grid staggering (vertical offsets) */
.ecosystem-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}
.ecosystem-card:nth-child(2) {
  grid-column: 2;
  grid-row: 2;
  /* transform: translateY(80px); */
}
.ecosystem-card:nth-child(3) {
  grid-column: 4;
  grid-row: 2;
}
.ecosystem-card:nth-child(4) {
  grid-column: 1;
  grid-row: 3;
  /* transform: translateY(-40px); */
}
.ecosystem-card:nth-child(5) {
  grid-column: 3;
  grid-row: 3;
  /* transform: translateY(40px); */
}

@media (max-width: 992px) {
  .ecosystem-section {
    padding: 35px 0;
  }

  .ecosystem-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 60px;
  }

  .ecosystem-card,
  .ecosystem-card1 {
    width: 90%;
    max-width: 420px;
    margin: 0 auto;
    transform: none !important;
    background: rgba(3, 3, 3, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .ecosystem-card h5,
  .ecosystem-card1 h1 {
    text-align: center;
  }

  .ecosystem-card p {
    text-align: center;
  }

  .blob {
    display: none;
  }
  .Explanation_container__3PwpG {
    margin-top: 0px !important;
  }
  .container123 {
    margin-top: 40px !important;
  }
}

/* Optional extra tweak for smaller phones */
@media (max-width: 576px) {
  .ecosystem-section h1 {
    font-size: 2rem;
  }

  .ecosystem-card,
  .ecosystem-card1 {
    padding: 30px 20px;
    width: 95%;
  }
}
/* --- Video Modal Styling --- */
/* Modal Background */
.video-modal {
  display: none; /* toggle with JS */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Modal Content */
.video-content {
  position: relative;
  width: 100%;
  max-width: 800px;
  background: transparent;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
}

/* Make iframe responsive */
.video-content iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 10px;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .video-content iframe {
    height: 220px; /* adjust for mobile */
  }
  .close-btn {
    top: -5px;
    right: -5px;
    font-size: 28px;
  }
}
/* Section Background */
.landing_black_bg__aFhLB {
  background: #050505;
  padding: 0px 20px;
  display: flex;
  justify-content: center;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

/* Container */
.Explanation_container__3PwpG {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  margin-top: 100px;
}

/* Title */
.Explanation_sectionTitle__OL6EB {
  font-size: 36px;
  font-weight: 700;

  line-height: 1.4;
}

.Explanation_sectionTitle__OL6EB label {
  background: linear-gradient(
    to right,
    rgb(0, 255, 133) 50%,
    rgba(66, 0, 153, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

/* Cards Grid */
.Explanation_cards__TlMpi {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Individual Card */
.Explanation_card__J_t3o {
  background: linear-gradient(145deg, #11111122, #1b1b1b18);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0px 0px 10px rgba(0, 200, 255, 0.02);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background-color: #111111;
  border-radius: 16px;
  padding: 40px 20px 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 450px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* Hover Effects */
.Explanation_card__J_t3o:hover {
  transform: translateY(-10px) scale(1.03);
  /* box-shadow: 0px 15px 30px rgba(0, 200, 255, 0.25); */
}

/* Title inside card */
.Explanation_cardTitle__gy6Mo {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Description */
.Explanation_cardDescription__F6Cwz {
  font-size: 15px;
  color: #cccccc;
  margin-bottom: 20px;
}

/* Image Preview */
.Explanation_cardImage__pGHch {
  width: 100%;
  height: 350px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  /* filter: drop-shadow(0px 0px 8px rgba(0, 200, 255, 0.3)); */
  object-fit: contain;

  filter: grayscale(100%) contrast(1.1);
  transition: filter 0.4s ease;
}

/* Image hover zoom */
.Explanation_card__J_t3o:hover .Explanation_cardImage__pGHch {
  transform: scale(1.08);
  filter: grayscale(0%) contrast(1);
}

/* Fade-in animation */
.Explanation_visible__JKjj5 {
  opacity: 0;
  animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.card-badge {
  border: 1px solid #333;
  background-color: rgba(255, 255, 255, 0.05);
  color: #ccc;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
}
.background-glow {
  position: fixed;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(
    circle at 80% 20%,
    rgba(0, 150, 67, 0.15) 0%,
    rgba(0, 0, 0, 0) 60%
  );
  z-index: -1;
  pointer-events: none;
}

.container123 {
  max-width: 1200px;
  width: 100%;
  position: relative;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  margin-top: 20px;
}

.header-section {
  position: relative;
  margin-bottom: 30px;
  text-align: left;

  padding-right: 350px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.main-title {
  font-family: "Michroma", sans-serif;
  font-size: 2.5rem;
  color: #e0e0e0;
  text-transform: uppercase;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.glitch {
  position: relative;
  color: #e0e0e0;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
}

.glitch::before {
  left: 2px;
  text-shadow: -1px 0 #ff0000;
  clip-path: inset(44% 0 61% 0);
  animation: glitch-anim-1 2.5s infinite linear alternate-reverse;
}

.glitch::after {
  left: -2px;
  text-shadow: -1px 0 #00ccff;
  clip-path: inset(50% 0 30% 0);
  animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
  0% {
    clip-path: inset(20% 0 80% 0);
  }

  20% {
    clip-path: inset(60% 0 10% 0);
  }

  40% {
    clip-path: inset(40% 0 50% 0);
  }

  60% {
    clip-path: inset(80% 0 5% 0);
  }

  80% {
    clip-path: inset(10% 0 70% 0);
  }

  100% {
    clip-path: inset(30% 0 20% 0);
  }
}

@keyframes glitch-anim-2 {
  0% {
    clip-path: inset(10% 0 60% 0);
  }

  20% {
    clip-path: inset(30% 0 20% 0);
  }

  40% {
    clip-path: inset(70% 0 30% 0);
  }

  60% {
    clip-path: inset(20% 0 80% 0);
  }

  80% {
    clip-path: inset(50% 0 10% 0);
  }

  100% {
    clip-path: inset(0% 0 50% 0);
  }
}

.sub-text {
  font-family: "Share Tech Mono", monospace;
  font-size: 0.8rem;
  line-height: 1.6;
  color: #ccc;
  text-transform: uppercase;
  max-width: 650px;
  letter-spacing: 0.05em;
}

.shield-container {
  position: absolute;
  top: -50px;
  right: 0px;
  width: 350px;
  height: 350px;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-img {
  width: 100%;
  height: auto;
  animation: float 6s ease-in-out infinite;
  filter: grayscale(100%) brightness(0.7) contrast(1.5);
  opacity: 0.8;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 20px;
  position: relative;
  z-index: 5;
}

.card12 {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid #333;
  border-radius: 12px;
  padding: 30px;
  transition: border-color 0.3s, background-color 0.3s;
}

.card12:hover {
  border-color: #555;
  background-color: rgba(255, 255, 255, 0.05);
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.icon-box {
  margin-right: 12px;
  color: #53eb77ff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.card-title {
  font-family: "Share Tech Mono", monospace;
  color: #e0e0e0 !important;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 400;
}

.card-desc {
  font-family: "Share Tech Mono", monospace;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #777;
}

@media (max-width: 900px) {
  .grid-container {
    grid-template-columns: 1fr;
  }

  .shield-container {
    position: relative;
    width: 150px;
    height: 150px;
    top: 0;
    right: 0;
    margin: 0 auto 20px auto;
  }

  .header-section {
    margin-bottom: 40px;
    padding-right: 0;
    text-align: center;
    min-height: auto;
  }

  .sub-text {
    max-width: 90%;
    margin: 0 auto;
  }

  .main-title {
    font-size: 2rem;
  }
}
#bg-video {
  position: relative;
  top: 0;
  left: 0;
  width: 90%;
  height: 90%;
  object-fit: cover;
  z-index: 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  pointer-events: none;
}

.ui-layer {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.hotspot-group {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: default;
}

.label-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 300;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.label-text b {
  font-weight: 600;
  display: block;
}

.hotspot-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);

  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hotspot-btn:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
}

.hotspot-btn span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

.hotspot-btn span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: rotate(90deg);
  border-radius: 2px;
}

.hotspot-group.active .hotspot-btn {
  background: #fff;
  transform: scale(1);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.hotspot-group.active .hotspot-btn span {
  background: #000;
  transform: translate(-50%, -50%) rotate(135deg);
}

.hotspot-group.active .hotspot-btn span::after {
  background: #000;
}

.info-card {
  position: absolute;
  width: 240px;
  background: rgba(10, 10, 10, 0.9);
  border: 1px solid #00ff88;
  border-radius: 12px;
  padding: 16px;
  color: #ccc;
  font-size: 13px;
  line-height: 1.5;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 20;
}

.hotspot-group.active .info-card {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.hotspot-group:not(.active) .hotspot-btn {
  animation: pulse-ring 2.5s infinite;
}

#stake {
  top: 15%;
  left: 42%;
}

#stake .info-card {
  top: 100%;
  left: 20%;
  margin-top: 15px;
}

#p2p {
  top: 38%;
  left: 18%;
}

#p2p .info-card {
  top: 120%;
  left: 0;
}

#dao {
  top: 42%;
  left: 68%;
  flex-direction: row-reverse;
}

#dao .label-text {
  text-align: left;
}

#dao .info-card {
  top: 120%;
  right: 20px;
}

#snc {
  top: 75%;
  left: 48%;
  flex-direction: column;
}

#snc .label-text {
  text-align: center;
}

#snc .info-card {
  bottom: 100%;
  margin-bottom: 20px;
}
/* ===============================
   RESPONSIVE — TABLET & MOBILE
   =============================== */
@media (max-width: 1024px) {
  .label-text {
    font-size: 18px;
  }

  .hotspot-btn {
    width: 34px;
    height: 34px;
  }

  .info-card {
    width: 200px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .label-text {
    font-size: 16px;
  }

  .hotspot-btn {
    width: 30px;
    height: 30px;
  }

  .info-card {
    width: 180px;
    font-size: 11px;
  }

  /* CENTER UI on smaller screens */
  .hotspot-group {
    transform: scale(0.9);
  }

  /* HOTSPOT POSITIONS (optimized for mobile) */
  #stake {
    top: 18%;
    left: 50%;
    transform: translateX(-50%);
  }

  #stake .info-card {
    top: 110%;
    left: 50%;
    transform: translateX(-50%);
  }

  #p2p {
    top: 40%;
    left: 20%;
  }

  #p2p .info-card {
    top: 110%;
    left: 0;
  }

  #dao {
    top: 42%;
    left: 75%;
  }

  #dao .info-card {
    top: 110%;
    right: 0;
  }

  #snc {
    top: 78%;
    left: 50%;
    transform: translateX(-50%);
  }

  #snc .info-card {
    bottom: 110%;
    margin-bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ===============================
   EXTRA SMALL — Phones < 480px
   =============================== */
@media (max-width: 480px) {
  .label-text {
    font-size: 14px;
  }

  .hotspot-btn {
    width: 26px;
    height: 26px;
  }

  .hotspot-btn span {
    width: 12px;
  }

  .info-card {
    width: 160px;
    font-size: 10px;
  }

  .hotspot-group {
    transform: scale(0.8);
  }

  /* FURTHER POSITION ADJUSTMENTS */
  #stake {
    top: 20%;
    display: none;
  }

  #p2p {
    top: 42%;
    left: 15%;
    display: none;
  }

  #dao {
    top: 45%;
    left: 65%;
    display: none;
  }

  #snc {
    top: 82%;
    display: none;
  }
}
/* ============================================= */
.earth-footer {
  background-color: #000;
  color: #d6d6d6;
  font-family: "Inter", sans-serif;
}

.footer-logo {
  width: 20%;
}

.footer-brand {
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

.footer-text {
  font-size: 15px;
  line-height: 1.6;
  color: #bbb;
}

.footer-heading {
  color: #fff;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 18px;
}

.footer-links {
  padding-left: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #bfbfbf;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  background: linear-gradient(
    to right,
    rgb(0, 255, 133) 50%,
    rgba(66, 0, 153, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

/* Social icons */
.social-icons a {
  margin-right: 15px;
  color: #fff;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #00ffa7;
}

/* Gradient text */
.footer-gradient-text {
  font-size: 26px;
  font-weight: 600;
  background: linear-gradient(
    to right,
    rgb(0, 255, 133) 50%,
    rgba(66, 0, 153, 1) 80%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Separator line */
.footer-line {
  border: none;
  border-top: 2px solid #00cfff;
  width: 120px;
  margin: 20px auto;
}

.footer-bottom-text {
  color: #888;
  font-size: 14px;
}

.disclaimer-text {
  color: #666;
  font-size: 13px;
  max-width: 900px;
  margin: 0 auto;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .footer-gradient-text {
    font-size: 20px;
  }

  .footer-brand {
    font-size: 20px;
  }
}
/* Mobile Responsive – Center Everything */
@media (max-width: 768px) {
  .earth-footer {
    text-align: center;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-column {
    width: 100%;
    margin-bottom: 25px;
    text-align: center;
  }

  .footer-links li {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
    display: flex;
    margin-top: 10px;
  }

  .footer-logo {
    margin: 0 auto 10px auto;
    display: block;
  }

  .disclaimer-text {
    text-align: center;
    padding: 0 15px;
  }
}
.main-container {
  width: 90%;
  max-width: 1200px;
}

header1 {
  text-align: center;
  margin-bottom: 60px;
  margin-top: 20px;
  color: #fff;
}

header1 h1 {
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

header1 .subtitle {
  color: var(--text-white);
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  font-weight: 400;
  color: var(--text-grey);
  margin-bottom: 75px;
}

.content-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
}

.chart-section {
  max-width: var(--chart-size);
  min-width: 400px;
  flex-basis: var(--chart-size);
  display: flex;
  justify-content: center;
  position: relative;
  padding-bottom: 20px;
}

.chart-wrapper {
  position: relative;
  width: 75%;
  height: 75%;
  max-width: var(--chart-size);
  max-height: var(--chart-size);
  padding-top: 100%;
}

.chart-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.chart-center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
}

.chart-center-text .label-text {
  display: block;
  color: var(--text-white);
  font-size: 1rem;
  margin-bottom: 5px;
  font-weight: 300;
}

.chart-center-text .amount-text {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  background: linear-gradient(90deg, var(--color-teal), var(--color-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.5px;
}

.chart-label {
  position: absolute;
  font-size: 0.5rem;
  color: var(--text-grey);
  line-height: 1.2;
  font-weight: 300;
  white-space: nowrap;
  /* margin: 10px; */
}

.chart-label .percent {
  font-weight: bold;
  font-size: 1rem;
  display: block;
  margin-bottom: 2px;
  color: var(--text-white);
}

.label-founding {
  top: -4%;
  left: 12%;
  text-align: left;
  transform: translateX(100%);
}
.label-p2e {
  top: 0%;
  left: 30%;
  text-align: right;
  transform: translateX(-100%);
}
.label-bizdev {
  top: 9%;
  left: 10%;
  text-align: right;
  transform: translateX(-100%);
}
.label-presale {
  top: 26%;
  left: 0%;
  text-align: right;
  transform: translateX(-100%);
}
.label-liquidity {
  top: 47%;
  left: -4%;
  text-align: right;
  transform: translateX(-100%);
}
.label-staking {
  bottom: 19%;
  left: 0%;
  text-align: center;
  transform: translateY(100%);
}
.label-marketing {
  bottom: 11%;
  left: 50%;
  text-align: center;
  transform: translateY(100%);
}
.label-treasury {
  bottom: 20%;
  right: 0%;
  text-align: left;
  transform: translateX(100%);
}
.label-innovation {
  top: 7%;
  right: 13%;
  text-align: left;
  transform: translateX(100%);
}

.funds-section {
  flex: 1;
  min-width: 400px;
  padding-left: 80px;
  margin-top: 35px;
}

.funds-section h2 {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--color-light-grey);
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

.funds-list {
  list-style: none;
  padding: 0;
}

.fund-item {
  margin-bottom: 25px;
}

.fund-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 5px;
}

.fund-name {
  font-size: 1rem;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 300;
}

.fund-percent {
  font-size: 1rem;
  font-weight: bold;
}

.progress-bar {
  width: 100%;
  height: 3px;
  background-color: transparent;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 2px;
  position: relative;
  width: 0%;
}

.c-teal {
  background: linear-gradient(
    to right,
    rgb(0, 255, 133) 50%,
    rgba(66, 0, 153, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}
.c-blue {
  color: var(--color-blue);
}
.c-green {
  color: var(--color-green);
}

.c-teal-bg {
  background: linear-gradient(
    to right,
    rgb(0, 255, 133) 50%,
    rgba(66, 0, 153, 1) 100%
  );
  box-shadow: 0 0 5px var(--color-teal);
}

.c-blue-bg {
  background-color: var(--color-blue);
  box-shadow: 0 0 5px var(--color-blue);
}

.c-green-bg {
  background-color: var(--color-green);
  box-shadow: 0 0 5px var(--color-green);
}

@media (max-width: 1000px) {
  .content-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .chart-section {
    min-width: unset;
    width: 100%;
    max-width: 400px;
    padding-right: 0;
    justify-content: center;
    flex-basis: auto;
  }

  .funds-section {
    min-width: unset;
    width: 100%;
    max-width: 400px;
    margin-top: 0;
    padding: 0 20px;
  }

  .chart-wrapper {
    width: 100%;
    max-width: 400px;
    max-height: 400px;
    padding-top: 100%;
  }

  .chart-label {
    transform: none !important;
    white-space: normal;
    margin: 0;
    padding: 5px;
    display: none;
  }

  .label-founding {
    top: 12%;
    left: 58%;
    text-align: left;
  }
  .label-p2e {
    top: 15%;
    left: 35%;
    text-align: right;
  }
  .label-bizdev {
    top: 22%;
    left: 25%;
    text-align: right;
  }
  .label-presale {
    top: 38%;
    left: 18%;
    text-align: right;
  }
  .label-liquidity {
    top: 58%;
    left: 15%;
    text-align: right;
  }
  .label-staking {
    bottom: 10%;
    left: 30%;
    text-align: center;
  }
  .label-marketing {
    bottom: 8%;
    left: 55%;
    text-align: center;
  }
  .label-treasury {
    bottom: 20%;
    right: 15%;
    text-align: left;
  }
  .label-innovation {
    top: 28%;
    right: 15%;
    text-align: left;
  }
}
/* FAQ Section */
.faq-section {
  padding: 80px 20px;
  color: #fff;
  position: relative;
}

.faq-title {
  text-align: center;
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 10px;
}

.faq-sub {
  text-align: center;
  font-size: 17px;
  opacity: 0.8;
  margin-bottom: 50px;
}

.faq-wrapper {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(241, 237, 241, 0.55);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-align: left;
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 24px;
  transition: 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  padding: 0 20px;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 15px 0;
  line-height: 1.6;
  opacity: 0.9;
}

/* Active State */
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.buy-section {
  padding: 20px 0;
}

.main-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.separator {
  height: 4px;
  width: 80px;
  background: #00d1ff;
  margin: 0 auto 40px;
  border-radius: 10px;
}

.steps-row .step-box {
  padding: 20px;
  margin-bottom: 40px;
}

.step-img img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  margin-bottom: 20px;
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.step-desc {
  font-size: 15px;
  color: #fffdfdff;
}
