Global * {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.body {
  background-color: #04010d;
  color: white;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 5px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  margin: 0 2%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(8px);
}

.logo-img {
  height: 36px;
  display: block;
}

.nav-menu {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  position: relative;
  display: inline-block;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  border-radius: 8px;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: #1D9E75;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

@media (min-width: 768px) {
  .nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
  }

  .nav-link:hover::after {
    transform: scaleX(1);
  }
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
}

a.btn-presale {
  font-weight: bold;
  font-size: 13px;
  font-family: system-ui, sans-serif;
  color: white;
  text-decoration: none;
  border-radius: 2rem;
  cursor: pointer;
  padding: 0 22px;
  height: 50px;
  width: 160px;
  border: none;
  background: linear-gradient(90deg, #ff7a18, #ffb627, #4ade80, #3b82f6);
  background-size: 300% 100%;
  background-position: 0% 0%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: background-position 0.6s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 14px rgba(255, 122, 24, 0.15);
}

@media (min-width: 768px) {
  a.btn-presale:hover {
    background-position: 100% 0%;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(74, 222, 128, 0.25);
  }
}


a.btn-presale .span-mother,
a.btn-presale .span-mother2 {
  display: flex;
  overflow: hidden;
}

a.btn-presale .span-mother2 {
  position: absolute;
}

@media (min-width: 768px) {
  a.btn-presale:hover .span-mother {
    position: absolute;
  }

  a.btn-presale:hover .span-mother span {
    transform: translateY(1.2em);
  }
}


a.btn-presale .span-mother span,
a.btn-presale .span-mother2 span {
  transition: transform 0.2s;
}

a.btn-presale .span-mother span:nth-child(1) {
  transition-duration: 0.2s;
}

a.btn-presale .span-mother span:nth-child(2) {
  transition-duration: 0.25s;
}

a.btn-presale .span-mother span:nth-child(3) {
  transition-duration: 0.3s;
}

a.btn-presale .span-mother span:nth-child(4) {
  transition-duration: 0.35s;
}

a.btn-presale .span-mother span:nth-child(5) {
  transition-duration: 0.4s;
}

a.btn-presale .span-mother span:nth-child(6) {
  transition-duration: 0.45s;
}

a.btn-presale .span-mother span:nth-child(7) {
  transition-duration: 0.5s;
}

a.btn-presale .span-mother span:nth-child(8) {
  transition-duration: 0.55s;
}

a.btn-presale .span-mother span:nth-child(9) {
  transition-duration: 0.6s;
}

a.btn-presale .span-mother span:nth-child(10) {
  transition-duration: 0.65s;
}

a.btn-presale .span-mother span:nth-child(11) {
  transition-duration: 0.7s;
}

a.btn-presale .span-mother span:nth-child(12) {
  transition-duration: 0.75s;
}

a.btn-presale .span-mother span:nth-child(13) {
  transition-duration: 0.8s;
}

a.btn-presale .span-mother2 span {
  transform: translateY(-1.2em);
}

a.btn-presale:hover .span-mother2 span {
  transform: translateY(0);
}

a.btn-presale .span-mother2 span:nth-child(1) {
  transition-duration: 0.2s;
}

a.btn-presale .span-mother2 span:nth-child(2) {
  transition-duration: 0.25s;
}

a.btn-presale .span-mother2 span:nth-child(3) {
  transition-duration: 0.3s;
}

a.btn-presale .span-mother2 span:nth-child(4) {
  transition-duration: 0.35s;
}

a.btn-presale .span-mother2 span:nth-child(5) {
  transition-duration: 0.4s;
}

a.btn-presale .span-mother2 span:nth-child(6) {
  transition-duration: 0.45s;
}

a.btn-presale .span-mother2 span:nth-child(7) {
  transition-duration: 0.5s;
}

a.btn-presale .span-mother2 span:nth-child(8) {
  transition-duration: 0.55s;
}

a.btn-presale .span-mother2 span:nth-child(9) {
  transition-duration: 0.6s;
}

a.btn-presale .span-mother2 span:nth-child(10) {
  transition-duration: 0.65s;
}

a.btn-presale .span-mother2 span:nth-child(11) {
  transition-duration: 0.7s;
}

a.btn-presale .span-mother2 span:nth-child(12) {
  transition-duration: 0.75s;
}

a.btn-presale .span-mother2 span:nth-child(13) {
  transition-duration: 0.8s;
}

.hamburger {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}

@media (min-width: 768px) {
  .hamburger:hover {
    background: rgba(255, 255, 255, 0.08);
  }
}


.hamburger-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.hamburger.open .hamburger-icon {
  transform: rotate(90deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  margin: 0 12px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.35s ease, padding 0.35s ease;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 8px;
}

.mobile-menu.open {
  max-height: 340px;
  opacity: 1;
  padding: 10px 8px;
  margin-top: 8px;
}

.mobile-menu .nav-link {
  display: block;
  text-align: left;
  padding: 12px 14px;
  font-size: 15px;
  border-radius: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mobile-menu .nav-link:last-child {
  border-bottom: none;
}

.mobile-menu .nav-link::after {
  display: none;
}

@media (min-width: 768px) {
  .mobile-menu .nav-link:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
  }
}


.mobile-presale-btn {
  display: block;
  text-align: center;
  margin: 12px 0 4px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  background: linear-gradient(90deg, #ff7a18, #ffb627, #4ade80, #3b82f6);
  background-size: 300% 100%;
  transition: background-position 0.6s ease;
}

@media (min-width: 768px) {
  .mobile-presale-btn:hover {
    background-position: 100% 0%;
  }
}

@media (max-width: 868px) {
  .navbar {
    padding: 5px 12px;
  }

  .nav-container {
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
  }

  .nav-menu {
    display: none;
  }

  .nav-right .btn-presale {
    display: none;
  }

  .divider {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }
}

@media (max-width: 380px) {
  .navbar {
    padding: 4px 8px;
  }

  .nav-container {
    padding: 0.4rem 0.5rem;
    border-radius: 8px;
  }

  .logo-img {
    height: 30px;
  }

  .hamburger {
    width: 34px;
    height: 34px;
  }

  .mobile-menu .nav-link {
    padding: 10px 12px;
    font-size: 14px;
  }
}

/* Gradient Utilities */
.gradient-text {
  background: linear-gradient(90deg, #ED1C24, #FCAF17, #9AC23C, #1C75BC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-bg {
  background: linear-gradient(90deg, #ED1C24, #FCAF17, #9AC23C, #1C75BC);
}







/* Slideshow Section */
.slideshow {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: background-image 0.7s ease-in-out;
}

/* Dark overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

/* Slide text container */
.slide-content {
  position: relative;
  z-index: 10;
  width: 80%;
  margin-left: 10%;
  padding: 48px 0;
}




.step-section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #fff;
}

.steps-section {
  padding: 3rem 1rem;
  /* skip render work while off-screen, same as the progress section */
  content-visibility: auto;
  contain-intrinsic-size: 700px;
}

.tickets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding: 1.5rem 0;
  max-width: 1100px;
  margin: 0 auto;
}

.ticket-wrapper {
  --t-bg: #0e0e18;
  --t-bg-light: #2b2b36;
  --t-text-main: #f8fafc;
  --t-text-muted: #94a3b8;
  perspective: 1000px;
  display: block;
}

.ticket-wrapper.ring-red {
  --t-accent: #ef4444;
  --t-accent-glow: rgba(239, 68, 68, .45);
}

.ticket-wrapper.ring-yellow {
  --t-accent: #eab308;
  --t-accent-glow: rgba(234, 179, 8, .45);
}

.ticket-wrapper.ring-green {
  --t-accent: #22c55e;
  --t-accent-glow: rgba(34, 197, 94, .45);
}

.ticket-wrapper.ring-blue {
  --t-accent: #3b82f6;
  --t-accent-glow: rgba(59, 130, 246, .45);
}

.ticket {
  height: 100%;
  position: relative;
  color: var(--t-text-main);
  transform-style: preserve-3d;
  transition: transform .6s cubic-bezier(.23, 1, .32, 1), box-shadow .6s ease;
  /* FIX 1: dropped the separate `filter: drop-shadow(...)`.
       It was stacked on top of an identical box-shadow, and `filter` forces
       the browser to render this entire element (and everything animating
       inside it) into an offscreen buffer on every repaint instead of just
       compositing it normally. With a 3D transform and a looping animation
       inside, that buffer was being rebuilt constantly on all 4 cards. The
       box-shadow alone gives the same visual result for free. */
  box-shadow: 0 20px 40px rgba(0, 0, 0, .8), 0 0 0 1px rgba(255, 255, 255, .05);
  background: transparent;
  overflow: hidden;
}

/* FIX 2 (the big one): the grid texture used to animate `background-position`
     on an infinite 20s loop, on all 4 cards, from the instant the page loaded,
     whether anyone could see them or not. background-position can't be
     composited — every tick of that loop repainted the grid pattern by hand.
     This now animates `transform: translateY()` instead. The pattern layer is
     sized 2em larger than its box on every edge and moves by exactly one tile
     (2em), so the loop is pixel-identical but runs entirely on the GPU
     compositor, costing nothing on the main thread. */
.t-main {
  height: 100%;
  padding: 1.4em 1.6em 1.6em;
  position: relative;
  overflow: hidden;
  background: var(--t-bg);
}

.t-main::after {
  content: "";
  position: absolute;
  inset: -2em;
  /* overshoot one tile on every edge so the loop has no seam */
  background-image:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 2em 2em;
  opacity: .6;
  z-index: 0;
  pointer-events: none;
  transform: perspective(500px) rotateX(20deg) scale(1.5) translateY(0);
  animation: grid-scroll 20s linear infinite;
  animation-play-state: paused;
  /* only runs once the section is in view */
  will-change: transform;
}

.steps-section.in-view .t-main::after {
  animation-play-state: running;
}

@keyframes grid-scroll {
  from {
    transform: perspective(500px) rotateX(20deg) scale(1.5) translateY(0);
  }

  to {
    transform: perspective(500px) rotateX(20deg) scale(1.5) translateY(2em);
  }
}

.ticket::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, transparent 40%, rgba(255, 255, 255, .1) 45%, rgba(255, 255, 255, .3) 50%, rgba(255, 255, 255, .1) 55%, transparent 60%, transparent 100%);
  z-index: 10;
  background-size: 250% 250%;
  background-position: 100% 100%;
  transition: background-position .6s cubic-bezier(.23, 1, .32, 1);
  mix-blend-mode: overlay;
}

.t-content {
  position: relative;
  z-index: 1;
}

.t-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1em;
}

.t-step-num {
  font-size: 1.6em;
  font-weight: 900;
  color: var(--t-accent);
  text-shadow: 0 0 12px var(--t-accent-glow);
  line-height: 1;
}

.t-type {
  font-size: .55em;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--t-accent);
  border: 1px solid var(--t-accent);
  padding: .4em .7em;
  border-radius: 99em;
  font-weight: 700;
}

.t-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.8em;
  height: 2.8em;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  margin-bottom: .8em;
}

.t-icon-wrap img {
  width: 1.6em;
  height: 1.6em;
  filter: brightness(0) invert(1);
  opacity: .85;
}

.t-title {
  font-size: 1.2em;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: .3em;
  text-transform: uppercase;
  color: #fff;
}

.t-subtitle {
  color: var(--t-text-muted);
  font-size: .72em;
  line-height: 1.55;
}

/* FIX 3: hover (and tap-tilt) only apply at 757px and up, as requested.
     Below that, cards stay flat and static — no 3D tilt, no shine sweep —
     which also means touch devices never get stuck in a "sticky hover"
     state after a tap. */
@media (min-width:757px) {
  .ticket-wrapper:hover .ticket {
    transform: rotateX(5deg) rotateY(-8deg) scale(1.03);
    box-shadow: 16px 16px 40px rgba(0, 0, 0, .6), 0 0 0 1px rgba(255, 255, 255, .1), -4px -4px 20px var(--t-accent-glow);
  }

  .ticket-wrapper:hover .ticket::after {
    background-position: 0% 0%;
  }

  .ticket-wrapper:active .ticket {
    transform: rotateX(14deg) rotateY(-4deg) scale(.97);
  }
}

@media (prefers-reduced-motion: reduce) {
  .t-main::after {
    animation: none !important;
  }
}
















@media (min-width: 768px) {
  .slide-content {
    width: 45%;
    margin-left: 10%;
  }
}

/* Typography */
.title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
}

/* Show the desktop button from 768px+ */
/* Responsive */
@media (min-width: 1100px) {

  /* @media (min-width: 768px) { */
  .navbar {
    padding: 5px 0;
  }

  .nav-container {
    margin: 0 10%;
    padding: 0.75rem 1.5rem;
  }

  .nav-right .btn-presale {
    display: inline-flex;
  }

  .nav-menu {
    display: flex;
  }

  .divider {
    display: block;
  }

  .btn-presale {
    display: inline-flex;
  }

  .hamburger {
    display: none;
  }

  .title {
    font-size: 3rem;
    /* text-5xl */
  }
}

/* Mid-range: 768px-1024px — tighter nav so logo doesn't compress */
@media (min-width: 768px) and (max-width: 1023px) {
  .nav-container {
    margin: 0 2%;
    padding: 0.5rem 0.75rem;
  }

  .nav-link {
    padding: 6px 8px;
    font-size: 12px;
  }

  .nav-link::after {
    left: 8px;
    right: 8px;
  }

  .nav-menu {
    gap: 2px;
  }
}

.subtitle {
  font-size: 1.125rem;
  /* text-lg */
  color: #d1d5db;
  /* gray-300 */
  line-height: 1.6;
}

@media (min-width: 768px) {
  .subtitle {
    font-size: 1.25rem;
    /* text-xl */
  }
}

/* Gradient and highlights */
.gradient-text {
  background: linear-gradient(90deg, #ED1C24, #FCAF17, #9AC23C, #1C75BC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight-white {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: white;
  color: white;
}

/* Market Opportunity Section */
.main-section {
  padding: 3rem 10%;
}

.sub-title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #fff;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.info-card {
  position: relative;
  border-radius: 16px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 120ms ease-out, box-shadow 200ms ease;
  will-change: transform;
}

@media (min-width: 768px) {

  .info-card:hover,
  .info-card:focus-within {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  }
}

.card-green,
.card-green:focus-within {
  background: linear-gradient(160deg, rgba(151, 196, 89, 0.28), rgba(11, 13, 16, 0.7));
  border-color: rgba(151, 196, 89, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(151, 196, 89, 0.1);
}

.card-blue,
.card-blue:focus-within {
  background: linear-gradient(160deg, rgba(55, 138, 221, 0.28), rgba(11, 13, 16, 0.7));
  border-color: rgba(55, 138, 221, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(55, 138, 221, 0.1);
}

.card-green {
  background: linear-gradient(160deg, rgba(151, 196, 89, 0.16), rgba(11, 13, 16, 0.6));
}

.card-blue {
  background: linear-gradient(160deg, rgba(55, 138, 221, 0.16), rgba(11, 13, 16, 0.6));
}

.card-header {
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  padding-bottom: 0.6rem;
  margin: 0 0 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.card-green .card-header {
  color: #C0DD97;
}

.card-blue .card-header {
  color: #B5D4F4;
}

/* Always-visible key stat */
.card-pin {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  margin-bottom: 0.9rem;
  background: rgba(255, 255, 255, 0.04);
}

.card-green .card-pin {
  border-left: 3px solid #97C459;
}

.card-blue .card-pin {
  border-left: 3px solid #85B7EB;
}

.pin-num {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.pin-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

.card-content {
  color: #fff;
}

.card-content ol {
  list-style: none;
  counter-reset: item;
  margin: 0;
  padding: 0;
}

.card-content li {
  counter-increment: item;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.75rem;
  padding-left: 1.75rem;
  position: relative;
  transform: translateX(0px);
  transition: opacity 200ms ease, transform 200ms ease;
}


.card-content li:last-child {
  margin-bottom: 0;
}

.card-content li::before {
  content: counter(item, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-green .card-content li::before {
  color: #173404;
  background: #97C459;
}

.card-blue .card-content li::before {
  color: #042C53;
  background: #85B7EB;
}

@media (prefers-reduced-motion: reduce) {

  .info-card,
  .card-content li {
    transition: none;
  }
}


/* Video Description */
/* Section Container */
.video-section {
  background: #04010d;
  padding: 3rem 10%;
  /* âœ… 10% left & right padding */
  text-align: center;
}

/* Heading */
.video-title {
  font-size: 1.75rem;
  /* Tailwind's text-2xl equivalent */
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  text-align: center;
  /* âœ… Ensure centered */
}

/* Responsive Video Wrapper */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 aspect ratio */
  border: 1px solid #555;
  border-radius: 12px;
  overflow: hidden;
}

/* Iframe fills wrapper */
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}


/* Tokenomics */
/* Section Container */
#tokenomics {
  background-color: #04010d;
  padding: 3rem 5%;
}

@media (max-width: 480px) {
  #tokenomics {
    padding: 2rem 1rem;
  }
}

/* Title */
.section-title {
  text-align: center;
  font-size: clamp(1.25rem, 5vw, 1.75rem);
  font-weight: bold;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  color: #fff;
}

/* Flex Container */
.tokenomics-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (max-width: 480px) {
  .tokenomics-container {
    gap: 1.5rem;
  }
}

@media (min-width: 768px) {
  .tokenomics-container {
    flex-direction: row;
    align-items: flex-start;
    gap: 2.5rem;
  }
}

/* Flex Container */
.token-info-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (max-width: 480px) {
  .token-info-container {
    gap: 1.5rem;
  }
}

@media (min-width: 768px) {
  .token-info-container {
    flex-direction: row;
    align-items: flex-start;
    gap: 2.5rem;
  }
}



/* ── Flex containers ── */
.tokenomics-container,
.token-info-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

@media (min-width: 768px) {

  .tokenomics-container,
  .token-info-container {
    flex-direction: row;
    align-items: flex-start;
  }
}


/* Left Side Text */
.tokenomics-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tokenomics-heading {
  font-size: clamp(1rem, 3.5vw, 1.25rem);
  font-weight: 600;
  color: var(--cyan);
  text-shadow: 0 0 14px rgba(0, 245, 255, 0.5);
  letter-spacing: 0.01em;
}


.tokenomics-text p {
  color: #d1d5db;
  line-height: 1.6;
  font-size: clamp(0.85rem, 2.5vw, 1rem);
}


/* ── Text side ── */
.tokenomics-text,
.token-info-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tokenomics-text p,
.token-info-text p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ── Glowing card wrapper ── */
.glow-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
}

@media (max-width: 480px) {
  .glow-card {
    padding: 1rem;
  }
}


/* Right Side Chart */
.tokenomics-chart {
  /* display: flex; */
  align-items: center;
  justify-content: center;
  /* width: 50%; */
  /* max-width: 500px; */
  margin: 5% auto;
  flex: 1;
  width: 100%;
  max-width: 500px;
  height: 400px;
  margin: 7% auto;
}

.tokenomics-chart canvas {
  width: 100%;
  height: auto;
  max-height: 400px;
  aspect-ratio: 1 / 1;
}

/* ── Legend ── */
.legend {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 2rem;
  margin-top: 1.5rem;
  font-size: clamp(0.75rem, 2.5vw, 0.9rem);
}

@media (max-width: 480px) {
  .legend {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

@media (max-width: 1140px) {
  .token-info-text .legend {
    grid-template-columns: 1fr;
  }
}

.legend div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.25s, transform 0.2s;
  cursor: default;
}

@media (min-width: 768px) {
  .legend div:hover {
    background: rgba(0, 245, 255, 0.07);
    transform: translateX(4px);
  }
}

.legend .box {
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 3px;
  flex-shrink: 0;
  animation: box-pulse 2.5s ease-in-out infinite;
  transition: transform 0.2s;
}

@media (max-width: 768px) {
  .legend div .box {
    transform: scale(1.15);
    animation: none;
    box-shadow: 0 0 14px currentColor;
  }
}

@media (min-width: 768px) {
  .legend div:hover .box {
    transform: scale(1.15);
    animation: none;
    box-shadow: 0 0 14px currentColor;
  }
}

.legend .percent {
  margin-left: auto;
  font-weight: 600;
  color: var(--cyan);
  font-size: 0.85rem;
}

/* Legend colors – tokenomics */
.treasury {
  background: #EF4444;
  color: #EF4444;
}

.marketing {
  background: #FACC15;
  color: #FACC15;
}

.founding {
  background: #22C55E;
  color: #22C55E;
}

.advisors {
  background: #FB923C;
  color: #FB923C;
}

.staking {
  background: #22D3EE;
  color: #22D3EE;
}

.liquidity {
  background: #2563EB;
  color: #2563EB;
}

.community {
  background: #F43F5E;
  color: #F43F5E;
}

.sales {
  background: #93C5FD;
  color: #93C5FD;
}

/* Legend colors – presale */
.private {
  background: #EF4444;
  color: #EF4444;
}

.phase1 {
  background: #FACC15;
  color: #FACC15;
}

.phase2 {
  background: #22C55E;
  color: #22C55E;
}

.phase3 {
  background: #FB923C;
  color: #FB923C;
}

.phase4 {
  background: #22D3EE;
  color: #22D3EE;
}

.phase5 {
  background: #2563EB;
  color: #2563EB;
}

.phase6 {
  background: #F43F5E;
  color: #F43F5E;
}

.ido {
  background: #93C5FD;
  color: #93C5FD;
}

/* ── Note ── */
.note {
  font-size: clamp(0.7rem, 2vw, 0.78rem);
  color: #4b5563;
  margin-top: 0.5rem;
  line-height: 1.6;
  border-left: 2px solid rgba(0, 245, 255, 0.25);
  padding-left: 0.75rem;
}


/* Section Styling */
.token-info-section {
  background: #04010d;
  padding: 3rem 5%;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

@media (max-width: 480px) {
  .token-info-section {
    padding: 2rem 1rem;
  }
}

/* Container */
.token-info-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* Link styling inside token section */
.token-info-section a {
  color: #1a73e8;
  /* blue for unvisited */
  text-decoration: underline;
}

.token-info-section a:visited {
  color: #800080;
  /* purple for visited */
}

@media (min-width: 768px) {
  .token-info-section a:hover {
    color: #4dabff;
    /* lighter blue on hover (optional) */
  }
}

@media (min-width: 768px) {
  .token-info-container {
    flex-direction: row;
    align-items: flex-start;
    gap: 2.5rem;
  }

  .token-info-text {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .token-info-container {
    gap: 1.5rem;
  }
}

/* Chart Container */
.chart-container {
  align-items: center;
  margin: 5% auto;
  margin-top: 6%;
  flex: 1;
  display: flex;
  justify-content: center;
}

.chart-container canvas {
  width: 100%;
  height: auto;
  max-height: 400px;
  aspect-ratio: 1 / 1;
}

/* Text Section */
.token-info-text {
  flex: 1;
  width: 100%;
  min-width: 0;
}

.token-info-heading {
  font-size: clamp(1.1rem, 4vw, 1.5rem);
  text-align: center;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

/* Table Styling */
.table-wrapper {
  overflow-x: auto;
}

.token-table {
  width: 100%;
  border-collapse: collapse;
}

.token-table td {
  padding: 0.75rem 0;
  border-bottom: 1px solid #333;
  font-size: clamp(0.8rem, 2.5vw, 0.95rem);
  word-break: break-word;
}

.token-table td:first-child {
  font-weight: 500;
  color: #aaa;
}


/* Section Styling */
#team {
  background-color: #04010d;
  color: #ffffff;
  /* padding: 3rem 5%; */
  text-align: center;
}

#team h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
}

/* Container for team cards */
.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 0px 10% 0px 10%;
}

/* Individual card */
.team-card {
  background-color: #0e0b1c;
  width: 30%;
  min-width: 260px;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .team-card:hover {
    transform: translateY(-5px);
  }
}

/* Border colors */
.red-border {
  border: 1px solid #ED1C24;
  color: #ED1C24;
}

.green-border {
  border: 1px solid #9AC23C;
  color: #9AC23C;
}

.orange-border {
  color: #FCAF17;
  border: 1px solid #FCAF17;
}

/* Image wrapper */
.image-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.image-wrapper img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
}

/* Role text */
.role {
  font-size: 0.9rem;
  color: #a1a1aa;
  /* gray */
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Name link */
.name {
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

@media (min-width: 768px) {
  .name:hover {
    color: #ffffff;
    text-decoration: underline;
  }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .team-card {
    width: 45%;
  }
}

@media (max-width: 640px) {
  .team-card {
    width: 80%;
    min-width: 150px;
  }

  .name {
    font-size: 1rem;
    /* keeps names readable */
  }
}

/* Advisory Section */
#advisory-team {
  margin: 0px 10% 0px 10%;
  background-color: #04010d;
  color: #ffffff;
  padding: 3rem 5%;
  text-align: center;
}

#advisory-team h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
}

/* Advisory container */
.advisory-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

/* Advisory card */
.advisory-card {
  background-color: #0e0b1c;
  width: 35%;
  min-width: 260px;
  /* Keeps readable on small screens */
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #1C75BC;
  /* Always orange */
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .advisory-card:hover {
    transform: translateY(-5px);
  }
}

/* Shared image wrapper with team */
.image-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.image-wrapper img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
}

/* Role */
.role {
  font-size: 0.9rem;
  color: #a1a1aa;
  margin: 0.5rem 0;
}

/* Advisor name */
.advisor-name {
  font-weight: 600;
  font-size: 1.125rem;
  color: #1C75BC;
  /* green */
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

@media (min-width: 768px) {
  .advisor-name:hover {
    color: #ffffff;
    text-decoration: underline;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .advisory-card {
    width: 45%;
  }
}

@media (max-width: 640px) {
  .advisory-card {
    width: 90%;
    min-width: 150px;
  }

  .advisor-name {
    font-size: 1rem;
  }
}


/* Base Footer */
.site-footer {
  position: relative;
  /* background-color: #0d0d0f; */
  background-color: #00000000;
  color: #d1d5db;
  padding: 4rem 10% 0rem 10%;
  font-family: Arial, sans-serif;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.18), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.6;
    transform: translateX(-50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.15);
  }
}

.footer-container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  z-index: 1;
}

.footer-flex {
  /* display: flex; */
  justify-content: space-evenly;
  align-items: flex-start;
  gap: 4rem;
}

@media (max-width: 768px) {
  .footer-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
  }
}

.footer-column {
  width: 100%;
  margin-bottom: 3rem;
  animation: fadeUp 0.8s ease both;
}

.footer-column:nth-child(1) {
  display: flex;
  flex-direction: column;
}

.footer-column:nth-child(2) {
  animation-delay: 0.15s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-column-header {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.section-title2 {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  position: relative;
  display: inline-block;
}

.section-title2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 32px;
  height: 2px;
  background: linear-gradient(to right, #6366f1, transparent);
  border-radius: 2px;
}

/* --- Supported By --- */
.supported-list {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.supported-list li {
  flex: 0 1 180px;
}

.support-box {
  height: 100%;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0px 0px 19px #004fff22, 71px -23px 129px #0000001a;
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0.85rem 1.1rem;
  border-radius: 10px;

  display: flex;
  justify-content: center;
  align-items: center;

  transition: all 0.35s ease;
}

.support-box img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(0.3) brightness(0.95);
  transition: filter 0.35s ease, transform 0.35s ease;
}

/* Hover only on devices that support hover */
@media (hover: hover) {
  .support-box:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
  }

  .support-box:hover img {
    filter: grayscale(0) brightness(1.1);
    transform: scale(1.04);
  }
}

/* Mobile stacking */
@media (max-width: 768px) {
  .supported-list {
    flex-direction: column;
    align-items: center;
  }

  .supported-list li {
    width: 100%;
    max-width: 240px;
  }
}

/* --- Social Bubble Icons --- */
.social-bubble-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.social-bubble-item {
  position: relative;
}

.social-bubble-item .social-tooltip {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  padding: 5px 10px;
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  font-size: 11px;
  font-family: "JetBrains Mono", monospace;
  white-space: nowrap;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 10;
}

@media (min-width: 768px) {
  .social-bubble-item:hover .social-tooltip {
    opacity: 1;
    visibility: visible;
    top: -44px;
  }
}

.social-bubble-link {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .social-bubble-link:hover {
    color: #fff;
    border-color: transparent;
    box-shadow: 3px 2px 45px 0px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}
}

.social-bubble-link img {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(0.6);
  transition: filter 0.3s ease;
}
@media (min-width: 768px) {
  .social-bubble-link:hover img {
    filter: brightness(0) invert(1);
}
}

.social-bubble-filled {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  transition: height 0.3s ease-in-out;
  z-index: 0;
}
@media (min-width: 768px) {
  .social-bubble-link:hover .social-bubble-filled {
    height: 100%;
  }
}


@media (max-width: 768px) {
  .social-tooltip {
    display: none;
  }

  .support-box img {
    filter: grayscale(0) brightness(1.1);
    transform: scale(1.04);
  }

  .social-bubble-link img {
    filter: brightness(0) invert(1);
  }

  .social-bubble-link .social-bubble-filled {
    visibility: visible;
    height: 100%;
    opacity: 1;
  }

  /* Per-platform fill colors */
  .social-bubble-link[data-social="telegram"] .social-bubble-filled {
    background-color: #229ED9;
  }

  .social-bubble-link[data-social="twitter"] .social-bubble-filled {
    background-color: #000000;
  }

  .social-bubble-link[data-social="facebook"] .social-bubble-filled {
    background-color: #316FF6;
  }

  .social-bubble-link[data-social="reddit"] .social-bubble-filled {
    background-color: #FF4500;
  }

  .social-bubble-link[data-social="discord"] .social-bubble-filled {
    background-color: #5865F2;
  }

  .social-bubble-link[data-social="linkedin"] .social-bubble-filled {
    background-color: #0A66C2;
  }

  .social-bubble-link[data-social="medium"] .social-bubble-filled {
    background-color: #000000;
  }

  .social-bubble-link[data-social="quora"] .social-bubble-filled {
    background-color: #B92B27;
  }

  .social-bubble-link[data-social="instagram"] .social-bubble-filled {
    background: linear-gradient(45deg, #405de6, #5b51db, #b33ab4, #c135b4, #e1306c, #fd1f1f);
  }

  .social-bubble-link[data-social="tiktok"] .social-bubble-filled {
    background-color: #010101;
  }


}


/* Per-platform fill colors */
.social-bubble-link[data-social="telegram"] .social-bubble-filled,
.social-bubble-item[data-social="telegram"] .social-tooltip {
  background-color: #229ED9;
}

.social-bubble-link[data-social="twitter"] .social-bubble-filled,
.social-bubble-item[data-social="twitter"] .social-tooltip {
  background-color: #000000;
}

.social-bubble-link[data-social="facebook"] .social-bubble-filled,
.social-bubble-item[data-social="facebook"] .social-tooltip {
  background-color: #316FF6;
}

.social-bubble-link[data-social="reddit"] .social-bubble-filled,
.social-bubble-item[data-social="reddit"] .social-tooltip {
  background-color: #FF4500;
}

.social-bubble-link[data-social="discord"] .social-bubble-filled,
.social-bubble-item[data-social="discord"] .social-tooltip {
  background-color: #5865F2;
}

.social-bubble-link[data-social="linkedin"] .social-bubble-filled,
.social-bubble-item[data-social="linkedin"] .social-tooltip {
  background-color: #0A66C2;
}

.social-bubble-link[data-social="medium"] .social-bubble-filled,
.social-bubble-item[data-social="medium"] .social-tooltip {
  background-color: #000000;
}

.social-bubble-link[data-social="quora"] .social-bubble-filled,
.social-bubble-item[data-social="quora"] .social-tooltip {
  background-color: #B92B27;
}

.social-bubble-link[data-social="instagram"] .social-bubble-filled,
.social-bubble-item[data-social="instagram"] .social-tooltip {
  background: linear-gradient(45deg, #405de6, #5b51db, #b33ab4, #c135b4, #e1306c, #fd1f1f);
}

.social-bubble-link[data-social="tiktok"] .social-bubble-filled,
.social-bubble-item[data-social="tiktok"] .social-tooltip {
  background-color: #010101;
}

/* Discord highlight ring */
.social-bubble-link.is-highlight {
  background: rgba(88, 101, 242, 0.1);
  border-color: rgba(88, 101, 242, 0.4);
  color: #5865F2;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 2rem;
}

.footer-bottom img {
  width: 25%;
  margin: 0 auto 1rem auto;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}
@media (min-width: 768px) {
  .footer-bottom img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 12px rgba(99, 102, 241, 0.4));
  }
}

.footer-bottom .legal {
  color: white;
  font-size: 0.75rem;
  line-height: 1.6;
}

.footer-bottom .legal a {
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .footer-bottom .legal a:hover {
    opacity: 0.7;
    text-decoration: underline;
}
}

.footer-bottom .disclaimer {
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.5;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ─── Cookie Consent Banner ─── */
#sbp-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 0 1rem 1rem;
  display: flex;
  justify-content: center;
}

#sbp-cookie-banner .cc-card {
  background: rgba(10, 4, 22, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.7);
  max-width: 960px;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

#sbp-cookie-banner .cc-bar {
  width: 5px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #ED1C24 0%, #FCAF17 33%, #9AC23C 66%, #1C75BC 100%);
}

#sbp-cookie-banner .cc-body {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  flex: 1;
  min-width: 0;
}

#sbp-cookie-banner .cc-icon-wrap {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

#sbp-cookie-banner .cc-icon {
  width: 22px;
  height: 22px;
  color: rgba(255, 255, 255, 0.7);
}

#sbp-cookie-banner .cc-text {
  flex: 1;
  min-width: 0;
}

#sbp-cookie-banner .cc-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.15rem;
}

#sbp-cookie-banner .cc-text p {
  font-size: 0.78rem;
  color: #9ca3af;
  line-height: 1.5;
  margin: 0;
}

#sbp-cookie-banner .cc-text em {
  font-style: normal;
  color: #FCAF17;
}

#sbp-cookie-banner .cc-text a {
  color: #9AC23C;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s;
}
@media (min-width: 768px) {
  #sbp-cookie-banner .cc-text a:hover {
    opacity: 0.75;
}
}

#sbp-cookie-banner .cc-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
  align-items: center;
}

#sbp-cookie-banner .cc-btn {
  cursor: pointer;
  border: none;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
}

#sbp-cookie-banner .cc-btn:active {
  transform: scale(0.96);
}

#sbp-cookie-banner .cc-btn--accept {
  background: linear-gradient(90deg, #ED1C24, #FCAF17, #9AC23C, #1C75BC);
  color: #000;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(252, 175, 23, 0.25);
}
@media (min-width: 768px) {
  #sbp-cookie-banner .cc-btn--accept:hover {
    box-shadow: 0 4px 20px rgba(252, 175, 23, 0.4);
  }
}

#sbp-cookie-banner .cc-btn--reject {
  background: rgba(255, 255, 255, 0.06);
  color: #d1d5db;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
  #sbp-cookie-banner .cc-btn--reject:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }
}

#sbp-cookie-banner .cc-btn--customize {
  background: transparent;
  color: #9CA3AF;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0.5rem 0.25rem;
  font-size: 0.75rem;
}
@media (min-width: 768px) {
#sbp-cookie-banner .cc-btn--customize:hover {
  color: #fff;
}
}

#sbp-cookie-banner.cc-hidden {
  display: none !important;
}

@media (max-width: 640px) {
  #sbp-cookie-banner {
    padding: 0 0.75rem 0.75rem;
  }

  #sbp-cookie-banner .cc-body {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
  }

  #sbp-cookie-banner .cc-icon-wrap {
    display: none;
  }

  #sbp-cookie-banner .cc-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  #sbp-cookie-banner .cc-btn {
    flex: 1;
    text-align: center;
    font-size: 0.75rem;
    padding: 0.45rem 0.75rem;
  }

  #sbp-cookie-banner .cc-btn--customize {
    flex: 0 0 auto;
    width: 100%;
    padding: 0.35rem 0;
  }
}


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ Overlay (Blur Background) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.intro-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.6);

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 9999;

  opacity: 0;
  transition: opacity 0.4s ease;
}

.intro-overlay.show {
  opacity: 1;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ Modal Box â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.intro-modal {
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #fff;

  width: 420px;
  max-width: 90%;

  border-radius: 20px;
  padding: 30px 25px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);

  text-align: center;

  transform: scale(0.9) translateY(20px);
  transition: all 0.4s ease;
}

.intro-overlay.show .intro-modal {
  transform: scale(1) translateY(0);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ Close Button â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.intro-close {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 22px;
  color: #aaa;
  background: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 768px) {
  .intro-close:hover {
    color: #fff;
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ Content â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.intro-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.intro-message {
  font-size: 16px;
  color: #cbd5f5;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ CTA Button â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.intro-cta {
  background: linear-gradient(90deg, #6366f1, #22c55e);
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .intro-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ Utility â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* .hidden {
  display: none;
} */
















:root {
  --c-red: #e63946;
  --c-blue: #3a86ff;
  --c-green: #2ecc71;
  --c-yellow: #e6da39;
}

body {
  margin: 0;
  background: #0b0d12;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ============ Section ============ */
.progress-section {
  padding: 3rem 1rem;
  position: relative;
  /* skip rendering work while this section is off-screen — biggest single
       win if it sits lower on the page than the fold */
  content-visibility: auto;
  contain-intrinsic-size: 700px;
}

@media (min-width:1000px) {
  .progress-section {
    padding: 3rem 10%;
  }
}

.section-title-white {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #fff;
}

/* ============ Bar ============ */
.progress-bar {
  position: relative;
  width: 100%;
  height: .30rem;
  background: rgba(255, 255, 255, .08);
  border-radius: 9999px;
  overflow: hidden;
}

/* FIX 1: width → transform:scaleX.
     Animating `width` forces a layout recalculation on every frame.
     Animating `transform` is handled entirely by the compositor (GPU),
     never touches layout, and is the #1 reason this section was costing
     more than it should during initial render. */
.progress-fill {
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 9999px;
  background: linear-gradient(90deg, var(--c-red), var(--c-blue), var(--c-green));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.4s cubic-bezier(.22, .9, .32, 1);
  will-change: transform;
}

.progress-section.is-visible .progress-fill {
  transform: scaleX(.75);
  /* drive this number from your data */
}

/* FIX 2: the old red→blue→green "flowing" effect animated
     background-position on a 300%-wide gradient, forever, even off-screen.
     That property can't be composited — the browser has to repaint the
     whole bar every single frame, nonstop, for as long as the page is open.
     This swaps it for a thin diagonal "shine" sweeping across a STATIC
     gradient using transform:translateX, which IS compositable, and it
     only plays a few times after the bar finishes filling, then stops. */
.progress-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, .5) 8%, transparent 16%);
  transform: translateX(-120%);
  opacity: 0;
}

.progress-section.is-visible .progress-fill::after {
  animation: shine 2.6s ease-in-out 1.4s 3 both;
}

@keyframes shine {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }

  15% {
    opacity: .9;
  }

  70% {
    transform: translateX(220%);
    opacity: 0;
  }

  100% {
    transform: translateX(220%);
    opacity: 0;
  }
}

/* ============ Milestones ============ */
.milestones {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
}

.milestone {
  width: 22%;
  text-align: center;
  font-size: .875rem;
  font-weight: 500;
  color: #f1f1f1;
  opacity: 0;
  transform: translateY(15px);
  transition: transform .3s ease;
}

/* FIX 3: entrance animations only fire once the section is actually
     visible (see the IntersectionObserver below), instead of firing the
     instant the page loads — even if the section starts below the fold. */
.progress-section.is-visible .milestone {
  animation: fadeUp .6s ease-out forwards;
}

.progress-section.is-visible .milestone:nth-child(1) {
  animation-delay: .1s;
}

.progress-section.is-visible .milestone:nth-child(2) {
  animation-delay: .25s;
}

.progress-section.is-visible .milestone:nth-child(3) {
  animation-delay: .4s;
}

.progress-section.is-visible .milestone:nth-child(4) {
  animation-delay: .55s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* .milestone:hover {
  transform: translateZ(4px);
} */

.milestone-dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  margin: -28px auto 1rem;
  position: relative;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, .2);
}

.dot-red {
  background: var(--c-red);
}

.dot-blue {
  background: var(--c-blue);
}

.dot-green {
  background: var(--c-green);
}

.dot-yellow {
  background: var(--c-yellow);
}

/* FIX 4: previously all four dots pulsed forever, simultaneously.
     Completed milestones don't need a "live" indicator — only the
     in-progress one does. That's both cheaper (1 infinite animation
     instead of 4) and reads more correctly: the pulse now means
     "happening now," not just decoration. */
.milestone-dot.is-active::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: inherit;
  opacity: .45;
  animation: pulse 2.2s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(.6);
    opacity: .5;
  }

  70% {
    transform: scale(1.9);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.milestone a {
  text-decoration: underline;
  font-weight: bold;
  color: var(--c-blue);
  transition: color .2s ease;
}

.milestone a:hover {
  color: var(--c-green);
}

@media (max-width:768px) {
  .progress-bar {
    display: none;
  }

  .milestone-dot {
    display: none;
  }

  .milestones {
    flex-direction: column;
    gap: 14px;
  }

  .milestone {
    width: auto;
    text-align: left;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .05);
    border-left: 4px solid var(--c-blue);
  }

  .milestone:nth-child(1) {
    border-left-color: var(--c-red);
  }

  .milestone:nth-child(2) {
    border-left-color: var(--c-yellow);
  }

  .milestone:nth-child(3) {
    border-left-color: var(--c-green);
  }

  .milestone:nth-child(4) {
    border-left-color: var(--c-blue);

  }
}

/* ============ Accomplishment cards ============ */
/* FIX 5: the 4 near-duplicate .acc-card-1..4 blocks are merged into one
     ruleset driven by CSS custom properties — same visual result, a
     fraction of the CSS to parse, and one place to tweak the look. */
.acc-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: var(--card-bg);
  overflow: hidden;
  /* tells the browser this card's internals can't affect layout outside
       it, so paint/layout work stays scoped to the card itself */
  contain: content;
  transition: transform .25s ease, border-color .25s ease;

  background: #000;
  box-shadow: 6px 17px 60px #ffffff17, 100px -67px 99px #0606061a
}
@media (min-width: 768px) {
  .acc-card:hover {
    /* transform: translateY(-3px); */
    border-color: var(--accent-ring);
  }
}
@media (max-width: 768px) {
  .acc-card {
    /* transform: translateY(-3px); */
    border-color: var(--accent-ring);
  }
}

/* .acc-card::before{
    content:"";
    position:absolute;
    left:0; top:0; bottom:0;
    width:3px;
    background:var(--accent);
  } */
.acc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 7px;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--accent-ring);
}

/* same logic as the milestone dot: only the active card pulses */
.acc-card.is-active .acc-dot {
  animation: pulseGlow 2.4s ease-in-out infinite;
}

@keyframes pulseGlow {

  0%,
  100% {
    opacity: .5;
  }

  50% {
    opacity: 1;
  }
}

.acc-text {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .78);
}

.acc-text a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--accent-ring);
  padding-bottom: 1px;
  transition: color .2s ease, border-color .2s ease;
}
@media (min-width: 768px) {
  .acc-text a:hover {
    color: #fff;
    border-color: var(--accent);
  }
}

.acc-card-1 {
  --accent: var(--c-red);
  --accent-ring: rgba(230, 57, 70, .35);
  --card-bg: linear-gradient(135deg, rgba(230, 57, 70, .07), rgba(255, 255, 255, .02));
}

.acc-card-2 {
  --accent: var(--c-yellow);
  --accent-ring: rgba(230, 218, 57, .35);
  --card-bg: linear-gradient(135deg, rgba(230, 218, 57, .07), rgba(255, 255, 255, .02));
}

.acc-card-3 {
  --accent: var(--c-green);
  --accent-ring: rgba(46, 204, 113, .35);
  --card-bg: linear-gradient(135deg, rgba(46, 204, 113, .07), rgba(255, 255, 255, .02));
}

.acc-card-4 {

  --accent: var(--c-blue);
  --accent-ring: rgba(58, 134, 255, .35);
  --card-bg: linear-gradient(135deg, rgba(58, 134, 255, .07), rgba(255, 255, 255, .02));

}

/* FIX 6: respect the OS-level "reduce motion" setting — also a quiet
     perf win on low-power / battery-saver devices that honor it */
@media (prefers-reduced-motion: reduce) {

  .progress-fill,
  .progress-fill::after,
  .milestone,
  .milestone-dot.is-active::after,
  .acc-card.is-active .acc-dot,
  .acc-card {
    animation: none !important;
    transition: none !important;
  }

  .progress-section.is-visible .progress-fill {
    transform: scaleX(.75);
  }

  .milestone {
    opacity: 1;
    transform: none;
  }
}