* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter
}

body {
    background: #050505;
    color: #fff;
    overflow-x: hidden
}
html, body {
  overflow-x: hidden;
}


/* LOADER */
/* LOADER */
.loader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, #0b0b0b, #050505);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-text span {
  font-size: clamp(42px, 8vw, 120px);
  font-weight: 900;
  display: inline-block;
  color: #f5b400;
  letter-spacing: -0.04em;
}

/* SPACE AFTER B1 */
.loader-text .space {
  width: 1.2vw;
}


/* CURSOR */
.cursor {
    width: 18px;
    height: 18px;
    border: 2px solid #f5b400;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference
}
@media (max-width: 1024px) {
    .cursor {
        display: none !important;
    }
}
/* NAV */
/* ================= NAVBAR ================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 86px;
  padding: 0 7vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(16px);
  background: rgba(5, 5, 5, 0.55); /* BLACK CLASH FIX */
  border-bottom: 1px solid rgba(255,255,255,0.05);
  z-index: 100;
}

/* LOGO */
.nav-left img {
  height: 64px;          /* BIGGER LOGO */
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(245,180,0,0.35));
}

/* DESKTOP LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}

.nav-links li {
  font-weight: 600;
  font-size: 15px;
  color: #ddd;
  cursor: pointer;
  position: relative;
}

/* HOVER UNDERLINE */
.nav-links li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #f5b400;
  transition: .3s ease;
}

.nav-links li:hover::after {
  width: 100%;
}

/* CTA */
.nav-links .cta {
  background: #f5b400;
  color: #000;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 800;
}

/* ================= HAMBURGER ================= */

.hamburger {
  width: 34px;
  height: 22px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  background: #fff;
  border-radius: 4px;
  transition: .4s ease;
}

/* ================= MOBILE MENU ================= */

.mobile-menu {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, #120000, #050505);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 36px;
  transform: translateY(-100%);
  z-index: 99;
}

.mobile-menu a {
  font-size: 34px;
  font-weight: 900;
  color: #fff;
}

.mobile-menu button {
  margin-top: 30px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav {
    padding: 0 6vw;
    height: 80px;
  }

  .nav-left img {
    height: 58px;
  }
}



/* ================= TABLET / iPAD ================= */

@media (max-width: 1024px) {

  /* NAV */
  .nav {
    height: 82px;
    padding: 0 6vw;
  }

  .nav-left img {
    height: 60px;
  }

  /* LINKS */
  .nav-links {
    gap: 22px;
  }

  .nav-links li {
    font-size: 14px;
  }

  .nav-links .cta {
    padding: 9px 20px;
    font-size: 14px;
  }
}

/* ================= iPAD PORTRAIT ================= */

@media (max-width: 900px) {

  .nav {
    height: 78px;
    padding: 0 5vw;
  }

  .nav-left img {
    height: 56px;
  }

  .nav-links {
    gap: 18px;
  }
}

/* ================= iPAD MINI / SMALL TABLETS ================= */

@media (max-width: 820px) {

  .desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav {
    height: 76px;
  }

  .nav-left img {
    height: 54px;
  }
}


/* HERO */
.hero {
    height: 100vh;
    position: relative
}

#heroCanvas {
    position: absolute;
    inset: 0
}

.hero-inner {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 8vw;
    max-width: 900px
}

.reveal h1 span {
    display: block;
    font-size: clamp(42px, 8vw, 110px);
    font-weight: 900;
    line-height: 1
}

.gold {
    color: #f5b400
}

.hero-para {
    margin-top: 30px;
    max-width: 520px;
    font-size: 18px;
    color: #ccc
}

.hero-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px
}


/* ================= HERO RESPONSIVE ================= */

/* Tablets */
@media (max-width: 1024px) {
  .hero-inner {
    padding-left: 6vw;
    max-width: 720px;
  }

  .hero-para {
    font-size: 16px;
  }
 

}

/* Mobile */
@media (max-width: 768px) {
  .hero-inner {
    padding: 0 6vw;
    text-align: center;
    align-items: center;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions button {
    width: 100%;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero {
    height: 90vh;
  }
}





/* BUTTONS */
.primary {
    background: #f5b400;
    border: none;
    padding: 14px 34px;
    border-radius: 40px;
    font-weight: 800
}

.secondary {
    background: transparent;
    border: 2px solid #f5b400;
    color: #f5b400;
    padding: 14px 34px;
    border-radius: 40px
}

/* MARQUEE */
.danger-marquee {
    overflow: hidden;
    padding: 30px 0
}

.marquee-track {
    display: flex;
    gap: 80px;
    white-space: nowrap
}

.marquee-track span {
    font-size: clamp(26px, 4vw, 64px);
    font-weight: 900;
    color: #666
}

/* SECTIONS */
.section {
    padding: 140px 8vw
}

.dark {
    background: #0d0d0d
}

.xl {
    font-size: clamp(42px, 7vw, 100px)
}

.xl span {
    color: #f5b400
}







/* ================= ECOSYSTEM SECTION ================= */

/* ================= ECOSYSTEM ================= */

.ecosystem {
  position: relative;
  background: radial-gradient(circle at top, #120000, #050505);
  overflow: hidden;
}

/* DESKTOP HEIGHT */
@media (min-width: 769px) {
  .ecosystem {
    height: 300vh;
  }
}

.eco-inner {
  height: 100vh;
  padding: 0 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 70px;
}

/* HEADING */
.eco-heading {
  max-width: 900px;
  position: relative;
  z-index: 10;
}

.eco-heading h2 {
  font-size: clamp(36px, 6vw, 92px);
  font-weight: 900;
  line-height: 1.05;
}

.eco-heading span {
  color: #f5b400;
}

.eco-heading p {
  margin-top: 22px;
  max-width: 640px;
  font-size: 18px;
  color: #ccc;
}

/* TRACK */
.eco-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

/* CARD */
.eco-card {
  min-width: 320px;
  padding: 40px;
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 22px;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.eco-card.gold {
  background: linear-gradient(135deg, #f5b400, #ffcc55);
  color: #000;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .ecosystem {
    height: auto;
  }

  .eco-inner {
    height: auto;
    padding: 120px 6vw;
    gap: 40px;
  }

  .eco-track {
    flex-direction: column;
    width: 100%;
  }

  .eco-card {
    min-width: 100%;
    font-size: 18px;
  }
}





/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px
}

.card {
    border: 1px solid #222;
    padding: 40px;
    border-radius: 22px;
    font-weight: 700
}

/* STORY */
.story {
    display: flex;
    gap: 80px;
    padding: 160px 8vw
}

.story-left {
    flex: 1;
    position: sticky;
    top: 120px
}

.story-left span {
    color: #f5b400
}

.step {
    padding: 50px 0;
    border-bottom: 1px solid #222;
    font-size: 22px;
    color: #ccc
}





/* HORIZONTAL */
.horizontal {
    height: 100vh;
    overflow: hidden
}

.track-h {
    display: flex;
    height: 100%
}

.panel {
    min-width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(32px, 6vw, 100px)
}






/* ================= FINAL CTA ================= */

.final-cta {
  position: relative;
  padding: 180px 8vw;
  background: radial-gradient(circle at top, #140000, #050505);
  overflow: hidden;
  text-align: center;
}

.final-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(245,180,0,0.12), transparent 60%);
  filter: blur(120px);
  animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,100% { opacity: .4; }
  50% { opacity: .7; }
}

.final-inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: auto;
}

.final-inner h2 {
  font-size: clamp(40px, 6vw, 96px);
  font-weight: 900;
  line-height: 1.05;
}

.final-inner span,
.gold {
  color: #f5b400;
}

.final-inner p {
  margin: 32px auto 0;
  max-width: 720px;
  font-size: 18px;
  color: #ccc;
  line-height: 1.7;
}

.final-actions {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* GHOST BUTTON */
.ghost {
  background: transparent;
  border: 2px solid rgba(245,180,0,0.5);
  color: #f5b400;
  padding: 18px 44px;
  border-radius: 40px;
  font-weight: 800;
}

/* MOBILE */
@media(max-width:768px){
  .final-cta {
    padding: 140px 6vw;
  }
}


/* ================= FOOTER ================= */

/* ================= FOOTER ================= */

.footer.compact {
  background: #050505;
  padding: 70px 8vw 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
}

.footer-brand h3 {
  font-size: 26px;
  font-weight: 900;
}

.footer-brand p {
  margin-top: 12px;
  font-size: 14px;
  color: #aaa;
  line-height: 1.5;
}

.footer-brand span {
  color: #f5b400;
}

/* DESKTOP COLUMNS */
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
}

.footer h4 {
  margin-bottom: 12px;
  font-size: 14px;
  color: #f5b400;
}

.footer a {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  color: #aaa;
}

.footer-bottom {
  margin-top: 36px;
  text-align: center;
  font-size: 12px;
  color: #555;
}

/* ================= MOBILE (ROW STYLE) ================= */

/* ================= MOBILE (3-COLUMN CLEAN) ================= */
@media(max-width:768px){

  .footer.compact {
    padding: 40px 6vw 22px;
  }

  /* Footer inner grid: brand on top, columns below */
  .footer-inner {
    display: grid;
    grid-template-columns: 1fr; /* brand row */
    gap: 25px;
    text-align: center;
  }

  /* BRAND SECTION CENTERED */
  .footer-brand {
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-brand h3 {
    font-size: 20px;
  }

  .footer-brand p {
    font-size: 12.5px;
    line-height: 1.4;
  }

  /* COLUMNS LAYOUT: 3 COLUMNS INLINE (responsive) */
  .footer-cols {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5px;
    margin-left: 20px;
  }

  .footer-cols > div {
    flex: 1 1 30%; /* 3 columns roughly */
    min-width: 100px; /* prevents too small columns */
    text-align: left;
 
  }

  /* COLUMN HEADINGS */
  .footer h4 {
    font-size: 13px;
    margin-bottom: 8px;
    color: #f5b400;
  }

  /* LINKS */
  .footer a {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .footer a:hover {
    color: #f5b400;
  }

  /* MARKETPLACE LINKS WRAP IF NEEDED */
  .footer-cols div:nth-child(2) a {
    display: block; /* stack vertically for small screens */
  }

  /* FOOTER BOTTOM */
  .footer-bottom {
    margin-top: 20px;
    font-size: 11px;
    color: #777;
    text-align: center;
  }
}

