/* ============================================================
   blockzen.css - Page-scoped styles for all 5 home pages
   Each page is scoped to body.page-1 ... body.page-5
   Shared utilities are at the top.
   ============================================================ */

/* -- SHARED BASE -- */
* {
  font-family: "Inter", "Space Grotesk", sans-serif;
}
body {
  overflow-x: hidden;
}

/* Shared animations */
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes rise {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-100px) scale(1.2);
    opacity: 0;
  }
}
@keyframes shimmer {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}
@keyframes pulseDot {
  0%,
  100% {
    box-shadow: 0 0 24px rgba(0, 255, 136, 0.7);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.9);
  }
}
@keyframes glitch1 {
  0%,
  90%,
  100% {
    transform: none;
  }
  92% {
    transform: translateX(-3px);
  }
  94% {
    transform: translateX(3px);
  }
  96% {
    transform: translateX(-2px);
  }
}
@keyframes glitch2 {
  0%,
  88%,
  100% {
    transform: none;
  }
  90% {
    transform: translateX(3px);
  }
  93% {
    transform: translateX(-3px);
  }
}

/* â”€â”€ BACK TO TOP â”€â”€ */
#back-to-top {
  position: fixed;
  bottom: 40px;
  right: 32px;
  z-index: 9999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary, #7c3aed);
  color: #fff;
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 0.3s,
    visibility 0.3s,
    transform 0.3s,
    background 0.2s;
}
#back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#back-to-top:hover {
  background: var(--primary-light, #a855f7);
  box-shadow: 0 6px 24px rgba(124, 58, 237, 0.6);
}

/* ============================================================
   PAGE 1 â€” body.page-1  (Classic Purple)
   ============================================================ */
body.page-1 {
  --primary: #7c3aed;
  --primary-light: #a855f7;
  --primary-accent: #e879f9;
  --glow: rgba(124, 58, 237, 0.35);
  --bg: #0d0d1a;
  --bg2: #11112a;
  --card-bg: rgba(255, 255, 255, 0.04);
  --border: rgba(168, 85, 247, 0.15);
  --text: #f0eeff;
  --muted: #9ca3c8;
  background: var(--bg);
  color: var(--text);
}
body.page-1 .nv {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(13, 13, 26, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
body.page-1 .nv.scrolled {
  padding: 10px 0;
  background: rgba(13, 13, 26, 0.97);
}
body.page-1 .navbar-brand span {
  color: var(--primary-light);
}
body.page-1 .nav-link {
  color: var(--muted) !important;
  font-size: 0.88rem;
  padding: 6px 14px !important;
  border-radius: 8px;
  transition: all 0.2s;
}
body.page-1 .nav-link:hover,
body.page-1 .nav-link.active {
  color: #fff !important;
  background: rgba(168, 85, 247, 0.12);
}
body.page-1 .btn-outline-primary {
  border-color: var(--primary-light);
  color: var(--primary-light);
}
body.page-1 .btn-outline-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
body.page-1 .hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 110px 0 70px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(
    ellipse 80% 60% at 20% 50%,
    rgba(124, 58, 237, 0.14) 0%,
    transparent 70%
  );
}
body.page-1 .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.8rem;
  color: var(--primary-light);
  margin-bottom: 24px;
}
body.page-1 .hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-dot 1.5s infinite;
}
body.page-1 .hero h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
}
body.page-1 .hero h1 .grad {
  background: linear-gradient(135deg, #a855f7, #e879f9, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.page-1 .hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
  margin: 18px 0 32px;
}
body.page-1 .btn-hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  box-shadow: 0 0 40px var(--glow);
  transition: all 0.3s;
}
body.page-1 .btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px var(--glow);
  color: #fff;
}
body.page-1 .particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.45);
  animation: rise linear infinite;
  pointer-events: none;
}
body.page-1 .tok-card {
  background: linear-gradient(
    145deg,
    rgba(124, 58, 237, 0.2),
    rgba(232, 121, 249, 0.08)
  );
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 60px rgba(124, 58, 237, 0.15);
  position: relative;
  overflow: hidden;
}
body.page-1 .tok-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.3), transparent 70%);
}
body.page-1 .tok-logo {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
}
body.page-1 .tok-price {
  font-size: 2.2rem;
  font-weight: 800;
}
body.page-1 .tok-change {
  font-size: 0.85rem;
  padding: 3px 10px;
  border-radius: 50px;
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}
body.page-1 .tok-stat {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 12px 16px;
}
body.page-1 .tok-stat label {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
}
body.page-1 .tok-stat span {
  font-size: 1rem;
  font-weight: 700;
}
body.page-1 .countdown-wrap {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  margin-top: 24px;
}
body.page-1 .countdown-label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 16px;
}
body.page-1 .cd-block {
  text-align: center;
}
body.page-1 .cd-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-light);
  line-height: 1;
}
body.page-1 .cd-unit {
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
body.page-1 .cd-sep {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}
body.page-1 .ticker-wrap {
  background: rgba(124, 58, 237, 0.08);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  overflow: hidden;
}
body.page-1 .ticker-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
body.page-1 .ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
  flex-shrink: 0;
}
body.page-1 .ticker-item strong {
  color: var(--text);
}
body.page-1 section {
  padding: 90px 0;
}
body.page-1 .section-badge {
  display: inline-block;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 4px 16px;
  font-size: 0.75rem;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
body.page-1 .section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
}
body.page-1 .section-title .grad {
  background: linear-gradient(135deg, #a855f7, #e879f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.page-1 .stat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s;
}
body.page-1 .stat-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-4px);
  box-shadow: 0 8px 40px var(--glow);
}
body.page-1 .stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, #a855f7, #e879f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.page-1 .stat-icon {
  width: 52px;
  height: 52px;
  background: rgba(124, 58, 237, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary-light);
  margin: 0 auto 16px;
}
body.page-1 .feat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  height: 100%;
  transition: all 0.3s;
}
body.page-1 .feat-card:hover {
  border-color: var(--primary-light);
  box-shadow: 0 0 30px var(--glow);
  transform: translateY(-4px);
}
body.page-1 .feat-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 20px;
}
body.page-1 .sale-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
}
body.page-1 .sale-bar-wrap {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50px;
  height: 12px;
  overflow: hidden;
  margin: 8px 0 6px;
}
body.page-1 .sale-bar {
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--primary-light),
    var(--primary-accent)
  );
  transition: width 1.5s ease;
}
body.page-1 .round-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid;
}
body.page-1 .round-active {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.3);
  color: #22c55e;
}
body.page-1 .round-done {
  background: rgba(168, 85, 247, 0.12);
  border-color: rgba(168, 85, 247, 0.3);
  color: var(--primary-light);
}
body.page-1 .round-soon {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--muted);
}
body.page-1 .rdm-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
}
body.page-1 .rdm-track::-webkit-scrollbar {
  height: 4px;
}
body.page-1 .rdm-track::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}
body.page-1 .rdm-track::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}
body.page-1 .rdm-item {
  flex: 0 0 260px;
  scroll-snap-align: start;
  padding: 0 24px;
  position: relative;
}
body.page-1 .rdm-item::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border);
}
body.page-1 .rdm-item:first-child::before {
  left: 50%;
}
body.page-1 .rdm-item:last-child::before {
  right: 50%;
}
body.page-1 .rdm-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
body.page-1 .rdm-dot.active {
  background: var(--primary);
  box-shadow: 0 0 20px var(--glow);
}
body.page-1 .rdm-dot.done {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-color: transparent;
}
body.page-1 .rdm-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  min-height: 180px;
  transition: all 0.3s;
}
body.page-1 .rdm-card:hover {
  border-color: var(--primary-light);
}
body.page-1 .rdm-q {
  font-size: 0.72rem;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
body.page-1 .team-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  transition: all 0.3s;
}
body.page-1 .team-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-4px);
}
body.page-1 .team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-accent));
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  border: 3px solid rgba(168, 85, 247, 0.4);
}
body.page-1 .team-social a {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 0 6px;
  transition: color 0.2s;
}
body.page-1 .team-social a:hover {
  color: var(--primary-light);
}
body.page-1 .tnom-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px 14px;
  text-align: center;
  transition: all 0.3s;
}
body.page-1 .tnom-card:hover {
  border-color: var(--primary-light);
}
body.page-1 .tnom-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}
body.page-1 .faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s;
}
body.page-1 .faq-item:hover {
  border-color: rgba(168, 85, 247, 0.3);
}
body.page-1 .faq-btn {
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
body.page-1 .faq-btn i {
  color: var(--primary-light);
  transition: transform 0.3s;
}
body.page-1 .faq-btn[aria-expanded="true"] i {
  transform: rotate(45deg);
}
body.page-1 .faq-body {
  padding: 0 24px 20px;
  color: var(--muted);
  line-height: 1.7;
}
body.page-1 .nl-section {
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.12),
    rgba(232, 121, 249, 0.06)
  );
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}
body.page-1 .nl-section::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.2), transparent 70%);
}
body.page-1 .nl-input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 14px 24px;
  color: var(--text);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
  flex: 1;
}
body.page-1 .nl-input::placeholder {
  color: var(--muted);
}
body.page-1 .nl-input:focus {
  border-color: var(--primary-light);
}
body.page-1 footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 0 24px;
}
body.page-1 .footer-logo span {
  color: var(--primary-light);
}
body.page-1 .footer-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 10px;
  transition: color 0.2s;
}
body.page-1 .footer-link:hover {
  color: var(--primary-light);
}
body.page-1 .social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1rem;
  transition: all 0.2s;
  text-decoration: none;
}
body.page-1 .social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
body.page-1 .footer-divider {
  border-color: var(--border);
}
body.page-1 .theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.2s;
}
body.page-1 .theme-toggle:hover {
  color: var(--primary-light);
}
body.page-1 .price-widget {
  position: fixed;
  bottom: 24px;
  right: 100px;
  z-index: 900;
  background: rgba(13, 13, 26, 0.92);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 16px;
  padding: 14px 18px;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
}
body.page-1 .price-widget .live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-dot 1.5s infinite;
  flex-shrink: 0;
}

/* ============================================================
   PAGE 2 â€” body.page-2  (Teal / Web3 DeFi)
   ============================================================ */
body.page-2 {
  --p: #00d4aa;
  --ps: #00b894;
  --pa: #00fff0;
  --dark: #080f1a;
  --card: #0d1a2d;
  --border: rgba(0, 212, 170, 0.12);
  background: var(--dark);
}
body.page-2 .nv2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 14px 0;
  background: rgba(8, 15, 26, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 212, 170, 0.08);
  transition: all 0.3s;
}
body.page-2 .nv2.scrolled {
  padding: 10px 0;
  background: rgba(8, 15, 26, 0.97);
}
body.page-2 .nl {
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 0.88rem;
  padding: 7px 15px !important;
  border-radius: 8px;
  transition: all 0.2s;
}
body.page-2 .nl:hover,
body.page-2 .nl.active {
  color: #fff !important;
  background: rgba(0, 212, 170, 0.1);
}
body.page-2 .nav-pill {
  display: inline-flex;
  gap: 4px;
  background: rgba(0, 212, 170, 0.06);
  border: 1px solid rgba(0, 212, 170, 0.1);
  border-radius: 50px;
  padding: 4px;
}
body.page-2 .bt1 {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #00d4aa, #00b8d9);
  color: #000;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
}
body.page-2 .bt1:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 212, 170, 0.38);
  color: #000;
}
body.page-2 .bt2 {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 26px;
  background: transparent;
  color: var(--p);
  border: 1.5px solid rgba(0, 212, 170, 0.4);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
}
body.page-2 .bt2:hover {
  background: rgba(0, 212, 170, 0.1);
  border-color: var(--p);
  transform: translateY(-2px);
}
body.page-2 .hero2 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}
body.page-2 .hero2::before {
  content: "";
  position: absolute;
  right: -10%;
  top: 5%;
  width: 55%;
  height: 90%;
  background: linear-gradient(
    135deg,
    rgba(0, 212, 170, 0.07),
    rgba(0, 184, 217, 0.04)
  );
  border-radius: 40px;
  border: 1px solid rgba(0, 212, 170, 0.06);
}
body.page-2 .grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 170, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 170, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
body.page-2 .st2 {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  background: rgba(0, 212, 170, 0.08);
  border: 1px solid rgba(0, 212, 170, 0.2);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--p);
  margin-bottom: 13px;
}
body.page-2 .f-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px 22px;
  height: 100%;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
body.page-2 .f-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--p), transparent);
  opacity: 0;
  transition: 0.3s;
}
body.page-2 .f-card:hover {
  border-color: rgba(0, 212, 170, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0, 212, 170, 0.12);
}
body.page-2 .f-card:hover::before {
  opacity: 1;
}
body.page-2 .f-ico {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: linear-gradient(
    135deg,
    rgba(0, 212, 170, 0.2),
    rgba(0, 184, 217, 0.1)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 14px;
}
body.page-2 .hiw {
  display: flex;
  flex-direction: column;
  gap: 0;
}
body.page-2 .hiw-step {
  display: flex;
  gap: 24px;
  position: relative;
  padding-bottom: 36px;
}
body.page-2 .hiw-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 46px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(0, 212, 170, 0.4),
    rgba(0, 212, 170, 0.05)
  );
}
body.page-2 .hiw-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--p), #00b8d9);
  color: #000;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
body.page-2 .stats-dark {
  background: linear-gradient(
    135deg,
    rgba(0, 212, 170, 0.07),
    rgba(0, 184, 217, 0.04)
  );
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}
body.page-2 .stat2-n {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--p);
}
body.page-2 .vrm {
  display: flex;
  flex-direction: column;
  gap: 0;
}
body.page-2 .vrm-item {
  display: flex;
  gap: 20px;
  position: relative;
  padding-bottom: 40px;
}
body.page-2 .vrm-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 32px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(0, 212, 170, 0.5),
    rgba(0, 212, 170, 0.05)
  );
}
body.page-2 .vrm-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid rgba(0, 212, 170, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  font-size: 0.8rem;
  transition: all 0.3s;
}
body.page-2 .vrm-item.active .vrm-dot {
  border-color: var(--p);
  background: rgba(0, 212, 170, 0.15);
  box-shadow: 0 0 16px rgba(0, 212, 170, 0.3);
}
body.page-2 .vrm-item.done .vrm-dot {
  background: rgba(0, 212, 170, 0.2);
  border-color: var(--p);
}
body.page-2 .vrm-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  flex: 1;
  transition: all 0.3s;
}
body.page-2 .vrm-item.active .vrm-box {
  border-color: rgba(0, 212, 170, 0.28);
  background: rgba(0, 212, 170, 0.04);
}
body.page-2 .plan-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px 24px;
  text-align: center;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
body.page-2 .plan-card.featured {
  border-color: var(--p);
  background: linear-gradient(
    135deg,
    rgba(0, 212, 170, 0.08),
    rgba(0, 184, 217, 0.04)
  );
}
body.page-2 .plan-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: 16px;
  right: -24px;
  background: var(--p);
  color: #000;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 36px;
  transform: rotate(45deg);
}
body.page-2 .plan-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--p);
}
body.page-2 .plan-feat {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  text-align: left;
  margin: 20px 0;
}
body.page-2 .plan-feat li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.84rem;
}
body.page-2 .plan-feat li i {
  color: var(--p);
  font-size: 0.8rem;
}
body.page-2 .test-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px 22px;
}
body.page-2 .test-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--p), #00b8d9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #000;
  font-size: 0.9rem;
}
body.page-2 .stars {
  color: #f59e0b;
  font-size: 0.8rem;
}
body.page-2 .tpw2 {
  position: fixed;
  bottom: 24px;
  right: 100px;
  background: rgba(8, 15, 26, 0.97);
  border: 1px solid rgba(0, 212, 170, 0.25);
  border-radius: 16px;
  padding: 12px 17px;
  z-index: 500;
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  gap: 11px;
  box-shadow: 0 6px 26px rgba(0, 212, 170, 0.18);
  font-size: 0.82rem;
}
body.page-2 .lang-pick {
  background: rgba(0, 212, 170, 0.06);
  border: 1px solid rgba(0, 212, 170, 0.15);
  border-radius: 8px;
  padding: 5px 10px;
  color: #fff;
  font-size: 0.8rem;
  cursor: pointer;
  outline: none;
}
body.page-2 .app-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: rgba(0, 212, 170, 0.08);
  border: 1px solid rgba(0, 212, 170, 0.22);
  border-radius: 13px;
  transition: all 0.3s;
}
body.page-2 .app-btn:hover {
  background: rgba(0, 212, 170, 0.15);
  border-color: var(--p);
  transform: translateY(-2px);
}
body.page-2 .faq2-item {
  border-bottom: 1px solid rgba(0, 212, 170, 0.1);
  padding: 17px 0;
}
body.page-2 .faq2-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.2s;
}
body.page-2 .faq2-q:hover {
  color: var(--p);
}
body.page-2 .faq2-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 0.86rem;
  line-height: 1.75;
}
body.page-2 .faq2-item.open .faq2-a {
  max-height: 180px;
  padding-top: 12px;
}
body.page-2 .faq2-icon {
  transition: transform 0.3s;
  color: var(--p);
}
body.page-2 .faq2-item.open .faq2-icon {
  transform: rotate(45deg);
}
body.page-2 .terminal {
  background: #060d18;
  border: 1px solid rgba(0, 212, 170, 0.18);
  border-radius: 14px;
  overflow: hidden;
  font-family: "Courier New", monospace;
}
body.page-2 .term-bar {
  background: rgba(0, 212, 170, 0.06);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 7px;
}
body.page-2 .term-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
body.page-2 .term-body {
  padding: 20px 18px;
  font-size: 0.82rem;
  line-height: 1.9;
}
body.page-2 .term-green {
  color: #00d4aa;
}
body.page-2 .term-blue {
  color: #00b8d9;
}
body.page-2 .term-white {
  color: #e0e0ff;
}
body.page-2 .term-gray {
  color: #606080;
}

/* ============================================================
   PAGE 3 â€” body.page-3  (Neon Green / Web3 Futuristic)
   ============================================================ */
body.page-3 {
  --n: #00ff88;
  --nb: #00cc66;
  --nx: #00ffcc;
  --dark: #020a0f;
  --card: rgba(0, 255, 136, 0.04);
  --border: rgba(0, 255, 136, 0.12);
  --glow: 0 0 20px rgba(0, 255, 136, 0.25);
  background: var(--dark);
  overflow-x: hidden;
}
body.page-3 h1,
body.page-3 h2,
body.page-3 h3,
body.page-3 .orb {
  font-family: "Orbitron", "Inter", sans-serif;
}
body.page-3 #particleCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
body.page-3 .nv3 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 14px 0;
  background: rgba(2, 10, 15, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 255, 136, 0.07);
}
body.page-3 .nv3.scrolled {
  padding: 10px 0;
  background: rgba(2, 10, 15, 0.9);
}
body.page-3 .nl3 {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.86rem;
  padding: 6px 14px !important;
  border-radius: 7px;
  transition: all 0.2s;
}
body.page-3 .nl3:hover {
  color: var(--n) !important;
  background: rgba(0, 255, 136, 0.06);
}
body.page-3 .bn1 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: var(--n);
  color: #020a0f;
  border: none;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.02em;
}
body.page-3 .bn1:hover {
  background: var(--nx);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
  transform: translateY(-2px);
  color: #020a0f;
}
body.page-3 .bn2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--n);
  border: 1px solid rgba(0, 255, 136, 0.4);
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
}
body.page-3 .bn2:hover {
  background: rgba(0, 255, 136, 0.08);
  border-color: var(--n);
  box-shadow: var(--glow);
}
body.page-3 .st3 {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  background: rgba(0, 255, 136, 0.06);
  border: 1px solid rgba(0, 255, 136, 0.18);
  border-radius: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--n);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 13px;
}
body.page-3 .hero3 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  position: relative;
  z-index: 1;
}
body.page-3 .glitch {
  position: relative;
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 20px;
}
body.page-3 .glitch::before,
body.page-3 .glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
body.page-3 .glitch::before {
  color: var(--n);
  text-shadow: 2px 0 0 var(--n);
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
  animation: glitch1 2.5s infinite;
}
body.page-3 .glitch::after {
  color: #ff0066;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
  animation: glitch2 2.5s infinite;
}
body.page-3 .neon-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--n), transparent);
  margin: 12px 0 20px;
}
body.page-3 .card3 {
  background: rgba(0, 255, 136, 0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
body.page-3 .card3:hover {
  border-color: rgba(0, 255, 136, 0.3);
  background: rgba(0, 255, 136, 0.06);
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.1);
}
body.page-3 .card3::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--n), transparent);
  transition: left 0.5s ease;
}
body.page-3 .card3:hover::after {
  left: 0;
}
body.page-3 .ps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}
body.page-3 .ps-card {
  background: rgba(0, 255, 136, 0.04);
  border: 1px solid rgba(0, 255, 136, 0.1);
  border-radius: 14px;
  padding: 24px;
}
body.page-3 .ps-vs {
  font-family: "Orbitron", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--n);
  text-align: center;
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
}
body.page-3 .eco-center {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  font-family: "Orbitron", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--n);
}
body.page-3 .eco-center::before {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 255, 136, 0.15);
  animation: spin 20s linear infinite;
}
body.page-3 .eco-center::after {
  content: "";
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 255, 136, 0.08);
  animation: spin 30s linear infinite reverse;
}
body.page-3 .nodes-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding: 60px 0 20px;
  overflow-x: auto;
}
body.page-3 .nodes-wrap::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--n), transparent);
  box-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
}
body.page-3 .node3 {
  text-align: center;
  flex: 1;
  min-width: 140px;
  padding: 0 8px;
  cursor: pointer;
}
body.page-3 .node3-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 2px solid rgba(0, 255, 136, 0.3);
  background: var(--dark);
  position: relative;
  z-index: 2;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.page-3 .node3.done .node3-dot {
  border-color: var(--n);
  background: rgba(0, 255, 136, 0.15);
  box-shadow: 0 0 14px rgba(0, 255, 136, 0.4);
}
body.page-3 .node3.active .node3-dot {
  border-color: var(--n);
  background: var(--n);
  box-shadow: 0 0 24px rgba(0, 255, 136, 0.7);
  animation: pulseDot 1.5s ease-in-out infinite;
}
body.page-3 .node3-q {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--n);
  letter-spacing: 0.1em;
  font-family: "Orbitron", sans-serif;
  margin-bottom: 8px;
}
body.page-3 .node3-box {
  background: rgba(0, 255, 136, 0.04);
  border: 1px solid rgba(0, 255, 136, 0.1);
  border-radius: 10px;
  padding: 12px;
  font-size: 0.75rem;
}
body.page-3 .node3-box h6 {
  color: var(--n);
  font-size: 0.8rem;
  margin-bottom: 5px;
}
body.page-3 .tok3d {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto;
}
body.page-3 .ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
}
body.page-3 .ring1 {
  inset: 0;
  border-color: rgba(0, 255, 136, 0.6);
  animation: spin 8s linear infinite;
}
body.page-3 .ring2 {
  inset: 20px;
  border-color: rgba(0, 255, 204, 0.4);
  border-style: dashed;
  animation: spin 12s linear infinite reverse;
}
body.page-3 .ring3 {
  inset: 40px;
  border-color: rgba(0, 255, 136, 0.2);
  animation: spin 20s linear infinite;
}
body.page-3 .tok3d-center {
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
body.page-3 .nft-card {
  background: rgba(0, 255, 136, 0.04);
  border: 1px solid rgba(0, 255, 136, 0.12);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s;
}
body.page-3 .nft-card:hover {
  border-color: rgba(0, 255, 136, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.12);
}
body.page-3 .nft-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(
    135deg,
    rgba(0, 255, 136, 0.1),
    rgba(0, 204, 102, 0.05)
  );
}
body.page-3 .flip-wrap {
  perspective: 1000px;
  height: 220px;
}
body.page-3 .flip-card {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}
body.page-3 .flip-wrap:hover .flip-card {
  transform: rotateY(180deg);
}
body.page-3 .flip-front,
body.page-3 .flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 16px;
  padding: 22px;
  background: rgba(0, 255, 136, 0.04);
  border: 1px solid rgba(0, 255, 136, 0.12);
}
body.page-3 .flip-back {
  transform: rotateY(180deg);
  background: rgba(0, 255, 136, 0.08);
  border-color: rgba(0, 255, 136, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
body.page-3 .flip-av {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00ff88, #00ccff);
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #020a0f;
  font-size: 1.2rem;
  box-shadow: 0 0 16px rgba(0, 255, 136, 0.4);
}
body.page-3 .comm-card {
  background: rgba(0, 255, 136, 0.04);
  border: 1px solid rgba(0, 255, 136, 0.12);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  transition: all 0.3s;
}
body.page-3 .comm-card:hover {
  border-color: rgba(0, 255, 136, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.12);
}
body.page-3 .presale-cta {
  background: linear-gradient(
    135deg,
    rgba(0, 255, 136, 0.08),
    rgba(0, 204, 102, 0.04)
  );
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
body.page-3 .presale-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.06), transparent 70%);
  pointer-events: none;
}
body.page-3 .live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background: rgba(0, 255, 136, 0.06);
  border: 1px solid rgba(0, 255, 136, 0.18);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
}
body.page-3 .live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--n);
  animation: blink 1.2s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(0, 255, 136, 0.6);
}
body.page-3 .chain-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(0, 255, 136, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s;
}
body.page-3 .chain-logo:hover {
  border-color: rgba(0, 255, 136, 0.4);
  box-shadow: var(--glow);
  transform: translateY(-3px);
}
body.page-3 .faq3-item {
  background: rgba(0, 255, 136, 0.03);
  border: 1px solid rgba(0, 255, 136, 0.1);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
}
body.page-3 .faq3-q {
  padding: 16px 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s;
}
body.page-3 .faq3-q:hover {
  color: var(--n);
}
body.page-3 .faq3-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 0.84rem;
  line-height: 1.75;
}
body.page-3 .faq3-item.open .faq3-a {
  max-height: 180px;
  padding: 0 18px 16px;
}
body.page-3 .faq3-icon {
  transition: transform 0.3s;
  color: var(--n);
}
body.page-3 .faq3-item.open .faq3-icon {
  transform: rotate(45deg);
}
body.page-3 .tpw3 {
  position: fixed;
  bottom: 24px;
  right: 100px;
  background: rgba(2, 10, 15, 0.97);
  border: 1px solid rgba(0, 255, 136, 0.22);
  border-radius: 12px;
  padding: 12px 16px;
  z-index: 500;
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 24px rgba(0, 255, 136, 0.15);
}

/* ============================================================
   PAGE 4 â€” body.page-4  (Gold / Enterprise)
   ============================================================ */
body.page-4 {
  --g: #f59e0b;
  --g2: #fbbf24;
  --g3: #d97706;
  --navy: #060d1a;
  --card: rgba(245, 158, 11, 0.04);
  --border: rgba(245, 158, 11, 0.12);
  background: var(--navy);
  color: #e2e8f0;
}
body.page-4 .nav4 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 16px 0;
  background: rgba(6, 13, 26, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(245, 158, 11, 0.1);
}
body.page-4 .nav4.scrolled {
  padding: 12px 0;
}
body.page-4 .nl4 {
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 0.86rem;
  padding: 6px 16px !important;
  border-radius: 6px;
  transition: all 0.2s;
}
body.page-4 .nl4:hover {
  color: var(--g) !important;
  background: rgba(245, 158, 11, 0.05);
}
body.page-4 .bg1 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: linear-gradient(135deg, var(--g), var(--g3));
  color: var(--navy);
  border: none;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
}
body.page-4 .bg1:hover {
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
  transform: translateY(-2px);
  color: var(--navy);
}
body.page-4 .bg2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--g);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
}
body.page-4 .bg2:hover {
  background: rgba(245, 158, 11, 0.06);
  border-color: var(--g);
}
body.page-4 .stg {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--g);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
body.page-4 .hero4 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(
    ellipse at 30% 60%,
    rgba(245, 158, 11, 0.06) 0%,
    transparent 60%
  );
}
body.page-4 .hero4::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.06),
    transparent 70%
  );
}
body.page-4 .gold-rule {
  height: 3px;
  background: linear-gradient(90deg, var(--g), transparent);
  width: 80px;
  margin: 18px 0;
}
body.page-4 .card4 {
  background: rgba(245, 158, 11, 0.03);
  border: 1px solid rgba(245, 158, 11, 0.1);
  border-radius: 14px;
  padding: 24px;
  transition: all 0.35s;
}
body.page-4 .card4:hover {
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(245, 158, 11, 0.06);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(245, 158, 11, 0.1);
}
body.page-4 .badge4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.04);
  border: 1px solid rgba(245, 158, 11, 0.12);
  border-radius: 14px;
  padding: 22px 16px;
  text-align: center;
  transition: all 0.3s;
}
body.page-4 .badge4:hover {
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(245, 158, 11, 0.08);
}
body.page-4 .stat4 {
  background: rgba(245, 158, 11, 0.04);
  border: 1px solid rgba(245, 158, 11, 0.1);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
}
body.page-4 .stat4-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--g);
  line-height: 1;
}
body.page-4 .rm4-item {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  position: relative;
}
body.page-4 .rm4-item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 19px;
  width: 2px;
  height: calc(100% - 28px);
  background: linear-gradient(
    180deg,
    rgba(245, 158, 11, 0.4),
    rgba(245, 158, 11, 0.05)
  );
}
body.page-4 .rm4-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(245, 158, 11, 0.3);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--g);
  transition: all 0.3s;
}
body.page-4 .rm4-item.done .rm4-dot {
  background: rgba(245, 158, 11, 0.12);
  border-color: var(--g);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.3);
}
body.page-4 .rm4-item.active .rm4-dot {
  background: var(--g);
  border-color: var(--g);
  color: var(--navy);
  font-weight: 800;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
}
body.page-4 .cs-card {
  background: rgba(245, 158, 11, 0.03);
  border: 1px solid rgba(245, 158, 11, 0.1);
  border-radius: 16px;
  padding: 26px;
  transition: all 0.3s;
}
body.page-4 .cs-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-4px);
}
body.page-4 .tok-table {
  width: 100%;
  border-collapse: collapse;
}
body.page-4 .tok-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--g);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border-bottom: 1px solid rgba(245, 158, 11, 0.12);
}
body.page-4 .tok-table td {
  padding: 12px 16px;
  font-size: 0.84rem;
  border-bottom: 1px solid rgba(245, 158, 11, 0.06);
}
body.page-4 .tok-table tbody tr:hover td {
  background: rgba(245, 158, 11, 0.03);
}
body.page-4 .prc4 {
  background: rgba(245, 158, 11, 0.04);
  border: 1px solid rgba(245, 158, 11, 0.1);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  position: relative;
  transition: all 0.35s;
}
body.page-4 .prc4:hover {
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(245, 158, 11, 0.1);
}
body.page-4 .prc4.featured {
  border-color: rgba(245, 158, 11, 0.5);
  background: rgba(245, 158, 11, 0.07);
}
body.page-4 .prc4-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--g), var(--g3));
  color: var(--navy);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 800;
  white-space: nowrap;
}
body.page-4 .prc4-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--g);
  line-height: 1;
  margin: 12px 0 4px;
}
body.page-4 .team4-card {
  background: rgba(245, 158, 11, 0.03);
  border: 1px solid rgba(245, 158, 11, 0.1);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  transition: all 0.3s;
}
body.page-4 .team4-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-3px);
}
body.page-4 .team4-av {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--g), var(--g3));
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--navy);
  box-shadow: 0 0 14px rgba(245, 158, 11, 0.3);
}
body.page-4 .cf4 {
  background: rgba(245, 158, 11, 0.04);
  border: 1px solid rgba(245, 158, 11, 0.1);
  border-radius: 14px;
  padding: 32px;
}
body.page-4 .inp4 {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 158, 11, 0.14);
  border-radius: 9px;
  padding: 12px 16px;
  color: white;
  font-size: 0.88rem;
  outline: none;
  transition: border 0.2s;
  margin-bottom: 14px;
}
body.page-4 .inp4:focus {
  border-color: rgba(245, 158, 11, 0.5);
}
body.page-4 .test4 {
  background: rgba(245, 158, 11, 0.03);
  border: 1px solid rgba(245, 158, 11, 0.1);
  border-radius: 14px;
  padding: 24px;
  transition: all 0.3s;
}
body.page-4 .test4:hover {
  border-color: rgba(245, 158, 11, 0.25);
}
body.page-4 .faq4-item {
  border-bottom: 1px solid rgba(245, 158, 11, 0.08);
}
body.page-4 .faq4-q {
  padding: 16px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s;
}
body.page-4 .faq4-q:hover {
  color: var(--g);
}
body.page-4 .faq4-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 0.84rem;
  line-height: 1.75;
}
body.page-4 .faq4-item.open .faq4-a {
  max-height: 160px;
  padding-bottom: 16px;
}
body.page-4 .faq4-icon {
  transition: transform 0.3s;
  color: var(--g);
}
body.page-4 .faq4-item.open .faq4-icon {
  transform: rotate(45deg);
}
body.page-4 .tpw4 {
  position: fixed;
  bottom: 24px;
  right: 100px;
  background: rgba(6, 13, 26, 0.97);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 12px;
  padding: 12px 16px;
  z-index: 500;
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 24px rgba(245, 158, 11, 0.12);
}
body.page-4 ::-webkit-scrollbar {
  width: 5px;
}
body.page-4 ::-webkit-scrollbar-track {
  background: var(--navy);
}
body.page-4 ::-webkit-scrollbar-thumb {
  background: rgba(245, 158, 11, 0.3);
  border-radius: 3px;
}

/* ============================================================
   PAGE 5 â€” body.page-5  (Orange / Presale)
   ============================================================ */
body.page-5 {
  --o: #ff6b35;
  --o2: #ff8c42;
  --o3: #e85d04;
  --dark: #080403;
  --card: rgba(255, 107, 53, 0.04);
  --border: rgba(255, 107, 53, 0.12);
  background: var(--dark);
  color: #e8e0d8;
  overflow-x: hidden;
}
body.page-5 * {
  font-family: "Space Grotesk", "Inter", sans-serif;
}
body.page-5 .nav5 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 14px 0;
  background: rgba(8, 4, 3, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}
body.page-5 .nav5.scrolled {
  padding: 10px 0;
}
body.page-5 .nl5 {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.86rem;
  padding: 6px 14px !important;
  border-radius: 7px;
  transition: all 0.2s;
}
body.page-5 .nl5:hover {
  color: var(--o) !important;
  background: rgba(255, 107, 53, 0.06);
}
body.page-5 .bo1 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: linear-gradient(135deg, var(--o), var(--o3));
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
}
body.page-5 .bo1:hover {
  box-shadow: 0 8px 28px rgba(255, 107, 53, 0.45);
  transform: translateY(-2px);
  color: #fff;
}
body.page-5 .bo2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--o);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
}
body.page-5 .bo2:hover {
  background: rgba(255, 107, 53, 0.07);
  border-color: var(--o);
}
body.page-5 .st5 {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--o);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
body.page-5 .hero5 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}
body.page-5 .hero5::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at 50% 30%,
    rgba(255, 107, 53, 0.08) 0%,
    transparent 65%
  );
}
body.page-5 .cd5-wrap {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
body.page-5 .cd5-box {
  text-align: center;
  background: rgba(255, 107, 53, 0.06);
  border: 1px solid rgba(255, 107, 53, 0.18);
  border-radius: 14px;
  padding: 20px 24px;
  min-width: 80px;
  position: relative;
  overflow: hidden;
}
body.page-5 .cd5-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--o), transparent);
}
body.page-5 .cd5-num {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--o);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
body.page-5 .cd5-label {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
body.page-5 .buy-widget {
  background: rgba(255, 107, 53, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.18);
  border-radius: 20px;
  padding: 30px;
  position: sticky;
  top: 90px;
}
body.page-5 .bw-tab {
  padding: 9px 16px;
  background: transparent;
  border: 1px solid rgba(255, 107, 53, 0.15);
  color: rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  transition: all 0.2s;
}
body.page-5 .bw-tab.active {
  background: rgba(255, 107, 53, 0.12);
  border-color: var(--o);
  color: var(--o);
}
body.page-5 .bw-inp {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 107, 53, 0.15);
  border-radius: 10px;
  padding: 12px 16px;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: border 0.2s;
  font-family: "Space Grotesk", sans-serif;
}
body.page-5 .bw-inp:focus {
  border-color: rgba(255, 107, 53, 0.5);
}
body.page-5 .prog5 {
  height: 20px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}
body.page-5 .prog5-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--o3), var(--o), var(--o2));
  width: 0;
  transition: width 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}
body.page-5 .prog5-fill::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  animation: shimmer 2s ease-in-out infinite;
}
body.page-5 .card5 {
  background: rgba(255, 107, 53, 0.04);
  border: 1px solid rgba(255, 107, 53, 0.1);
  border-radius: 14px;
  padding: 22px 18px;
  transition: all 0.35s;
}
body.page-5 .card5:hover {
  border-color: rgba(255, 107, 53, 0.3);
  background: rgba(255, 107, 53, 0.07);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(255, 107, 53, 0.1);
}
body.page-5 .bt-table {
  width: 100%;
  border-collapse: collapse;
}
body.page-5 .bt-table th {
  text-align: left;
  padding: 12px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--o);
  letter-spacing: 0.07em;
  border-bottom: 1px solid rgba(255, 107, 53, 0.12);
}
body.page-5 .bt-table td {
  padding: 12px 14px;
  font-size: 0.84rem;
  border-bottom: 1px solid rgba(255, 107, 53, 0.06);
  color: rgba(255, 255, 255, 0.75);
}
body.page-5 .bt-table .active-row td {
  background: rgba(255, 107, 53, 0.08);
  color: #fff;
  font-weight: 600;
}
body.page-5 .wlt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px;
  background: rgba(255, 107, 53, 0.04);
  border: 1px solid rgba(255, 107, 53, 0.1);
  border-radius: 12px;
  transition: all 0.3s;
  cursor: pointer;
}
body.page-5 .wlt:hover {
  border-color: rgba(255, 107, 53, 0.3);
  background: rgba(255, 107, 53, 0.08);
  transform: translateY(-3px);
}
body.page-5 .kyc-step {
  text-align: center;
  padding: 22px 16px;
}
body.page-5 .kyc-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--o), var(--o3));
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 0 16px rgba(255, 107, 53, 0.35);
}
body.page-5 .kyc-connector {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--o), rgba(255, 107, 53, 0.2));
  margin-top: 24px;
}
body.page-5 .rm5 {
  display: flex;
  gap: 0;
  justify-content: space-between;
  position: relative;
  padding: 20px 0;
}
body.page-5 .rm5::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, var(--o), rgba(255, 107, 53, 0.2));
}
body.page-5 .rm5-node {
  flex: 1;
  text-align: center;
  padding: 0 6px;
}
body.page-5 .rm5-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin: 0 auto 16px;
  border: 2px solid rgba(255, 107, 53, 0.3);
  background: var(--dark);
  position: relative;
  z-index: 2;
  transition: all 0.3s;
}
body.page-5 .rm5-node.done .rm5-dot {
  border-color: var(--o);
  background: rgba(255, 107, 53, 0.2);
  box-shadow: 0 0 12px rgba(255, 107, 53, 0.4);
}
body.page-5 .rm5-node.active .rm5-dot {
  border-color: var(--o);
  background: var(--o);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
}
body.page-5 .rm5-content {
  background: rgba(255, 107, 53, 0.04);
  border: 1px solid rgba(255, 107, 53, 0.1);
  border-radius: 10px;
  padding: 12px 8px;
  font-size: 0.75rem;
}
body.page-5 .rm5-content h6 {
  color: var(--o);
  font-size: 0.8rem;
  margin-bottom: 4px;
}
body.page-5 .faq5-item {
  background: rgba(255, 107, 53, 0.03);
  border: 1px solid rgba(255, 107, 53, 0.1);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
}
body.page-5 .faq5-q {
  padding: 16px 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s;
}
body.page-5 .faq5-q:hover {
  color: var(--o);
}
body.page-5 .faq5-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 0.84rem;
  line-height: 1.75;
}
body.page-5 .faq5-item.open .faq5-a {
  max-height: 180px;
  padding: 0 18px 16px;
}
body.page-5 .faq5-icon {
  transition: transform 0.3s;
  color: var(--o);
}
body.page-5 .faq5-item.open .faq5-icon {
  transform: rotate(45deg);
}
body.page-5 .live-banner {
  background: linear-gradient(
    90deg,
    rgba(255, 107, 53, 0.12),
    rgba(232, 93, 4, 0.08)
  );
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 12px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
body.page-5 .live-dot5 {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--o);
  box-shadow: 0 0 8px rgba(255, 107, 53, 0.7);
  animation: blink 1.2s ease-in-out infinite;
}
body.page-5 .tpw5 {
  position: fixed;
  bottom: 24px;
  left: 100px;
  background: rgba(8, 4, 3, 0.97);
  border: 1px solid rgba(255, 107, 53, 0.25);
  border-radius: 12px;
  padding: 12px 16px;
  z-index: 500;
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 24px rgba(255, 107, 53, 0.15);
}

/* ============================================================
   THEME TOGGLE button — pages 2-5
   ============================================================ */
body.page-2 .theme-toggle,
body.page-3 .theme-toggle,
body.page-4 .theme-toggle,
body.page-5 .theme-toggle {
  width:38px; height:38px; border-radius:10px;
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12);
  color:rgba(255,255,255,.6); cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  font-size:1rem; transition:all .2s;
}
body.page-2 .theme-toggle:hover { color:#00d4aa; border-color:rgba(0,212,170,.3); }
body.page-3 .theme-toggle:hover { color:#00ff88; border-color:rgba(0,255,136,.3); }
body.page-4 .theme-toggle:hover { color:#f59e0b; border-color:rgba(245,158,11,.3); }
body.page-5 .theme-toggle:hover { color:#ff6b35; border-color:rgba(255,107,53,.3); }

/* ============================================================
   LIGHT THEME  (html[data-bs-theme="light"])
   Dim palette — not pure white, deeper mid-tones for comfort
   ============================================================ */

/* ── Page 1 light — deep purple-slate ── */
[data-bs-theme="light"] body.page-1 {
  --primary: #7c3aed; --primary-light: #9333ea; --primary-accent: #c084fc;
  --glow: rgba(124,58,237,.3);
  --bg: #1a1226; --bg2: #211630;
  --card-bg: rgba(124,58,237,.12);
  --border: rgba(168,85,247,.22);
  --text: #e8deff; --muted: #b09ed4;
  background: var(--bg); color: var(--text);
}
[data-bs-theme="light"] body.page-1 .nv {
  background: rgba(26,18,38,.88);
  border-bottom-color: rgba(124,58,237,.2);
}
[data-bs-theme="light"] body.page-1 .nv.scrolled { background: rgba(26,18,38,.97); }
[data-bs-theme="light"] body.page-1 .stat-card,
[data-bs-theme="light"] body.page-1 .feat-card,
[data-bs-theme="light"] body.page-1 .sale-card,
[data-bs-theme="light"] body.page-1 .team-card,
[data-bs-theme="light"] body.page-1 .faq-item,
[data-bs-theme="light"] body.page-1 .rdm-card,
[data-bs-theme="light"] body.page-1 .tnom-card,
[data-bs-theme="light"] body.page-1 .tok-card { background: rgba(124,58,237,.14); border-color: rgba(168,85,247,.2); }
[data-bs-theme="light"] body.page-1 .nl-input { background: rgba(124,58,237,.12); color: var(--text); }
[data-bs-theme="light"] body.page-1 .faq-btn { color: var(--text); }
[data-bs-theme="light"] body.page-1 footer { background: var(--bg2); }
[data-bs-theme="light"] body.page-1 .price-widget { background: rgba(26,18,38,.95); }
[data-bs-theme="light"] body.page-1 .theme-toggle { background: rgba(124,58,237,.15); border-color: rgba(168,85,247,.25); color: #c084fc; }

/* ── Page 2 light — deep teal-slate ── */
[data-bs-theme="light"] body.page-2 {
  --p: #00d4aa; --ps: #00b894; --pa: #00fff0;
  --dark: #0a1a14; --card: #0e2218;
  --border: rgba(0,212,170,.18);
  background: var(--dark); color: #c0ede4;
}
[data-bs-theme="light"] body.page-2 .nv2 {
  background: rgba(10,26,20,.88); border-bottom: 1px solid rgba(0,212,170,.12);
}
[data-bs-theme="light"] body.page-2 .nv2.scrolled { background: rgba(10,26,20,.97); }
[data-bs-theme="light"] body.page-2 .nl { color: rgba(255,255,255,.65) !important; }
[data-bs-theme="light"] body.page-2 .nl:hover { color: var(--p) !important; background: rgba(0,212,170,.1); }
[data-bs-theme="light"] body.page-2 .f-card,
[data-bs-theme="light"] body.page-2 .vrm-box,
[data-bs-theme="light"] body.page-2 .plan-card,
[data-bs-theme="light"] body.page-2 .test-card { background: var(--card); border-color: rgba(0,212,170,.18); }
[data-bs-theme="light"] body.page-2 .stats-dark { background: rgba(0,212,170,.08); }
[data-bs-theme="light"] body.page-2 .terminal { background: #060f0b; }
[data-bs-theme="light"] body.page-2 .tpw2 { background: rgba(10,26,20,.97); }
[data-bs-theme="light"] body.page-2 #mobileMenu2 { background: #0e2218 !important; }
[data-bs-theme="light"] body.page-2 .theme-toggle { color: #00d4aa; border-color: rgba(0,212,170,.25); }

/* ── Page 3 light — deep green-slate ── */
[data-bs-theme="light"] body.page-3 {
  --n: #00ff88; --nb: #00cc66; --nx: #00ffcc;
  --dark: #040f08; --card: rgba(0,255,136,.06);
  --border: rgba(0,255,136,.15); --glow: 0 0 20px rgba(0,255,136,.25);
  background: var(--dark); color: #c0f0d8;
}
[data-bs-theme="light"] body.page-3 .nv3 {
  background: rgba(4,15,8,.85); border-bottom-color: rgba(0,255,136,.1);
}
[data-bs-theme="light"] body.page-3 .nv3.scrolled { background: rgba(4,15,8,.96); }
[data-bs-theme="light"] body.page-3 .nl3 { color: rgba(255,255,255,.6) !important; }
[data-bs-theme="light"] body.page-3 .card3,
[data-bs-theme="light"] body.page-3 .ps-card,
[data-bs-theme="light"] body.page-3 .node3-box,
[data-bs-theme="light"] body.page-3 .flip-front,
[data-bs-theme="light"] body.page-3 .comm-card,
[data-bs-theme="light"] body.page-3 .nft-card { background: rgba(0,255,136,.07); border-color: rgba(0,255,136,.18); }
[data-bs-theme="light"] body.page-3 .presale-cta { background: rgba(0,255,136,.06); }
[data-bs-theme="light"] body.page-3 .tpw3 { background: rgba(4,15,8,.97); }
[data-bs-theme="light"] body.page-3 #mobileMenu3 { background: #060f0a !important; }
[data-bs-theme="light"] body.page-3 .theme-toggle { color: #00ff88; border-color: rgba(0,255,136,.25); }

/* ── Page 4 light — deep gold-slate ── */
[data-bs-theme="light"] body.page-4 {
  --g: #f59e0b; --g2: #fbbf24; --g3: #d97706;
  --navy: #0c0a02; --card: rgba(245,158,11,.07);
  --border: rgba(245,158,11,.18);
  background: var(--navy); color: #f0dfa0;
}
[data-bs-theme="light"] body.page-4 .nav4 {
  background: rgba(12,10,2,.88); border-bottom: 1px solid rgba(245,158,11,.14);
}
[data-bs-theme="light"] body.page-4 .nav4.scrolled { background: rgba(12,10,2,.97); }
[data-bs-theme="light"] body.page-4 .nl4 { color: rgba(255,255,255,.65) !important; }
[data-bs-theme="light"] body.page-4 .nl4:hover { color: var(--g) !important; }
[data-bs-theme="light"] body.page-4 .card4,
[data-bs-theme="light"] body.page-4 .badge4,
[data-bs-theme="light"] body.page-4 .stat4,
[data-bs-theme="light"] body.page-4 .cs-card,
[data-bs-theme="light"] body.page-4 .prc4,
[data-bs-theme="light"] body.page-4 .team4-card,
[data-bs-theme="light"] body.page-4 .cf4,
[data-bs-theme="light"] body.page-4 .test4 { background: rgba(245,158,11,.08); border-color: rgba(245,158,11,.2); }
[data-bs-theme="light"] body.page-4 .inp4 { background: rgba(245,158,11,.07); color: #f0dfa0; }
[data-bs-theme="light"] body.page-4 .tpw4 { background: rgba(12,10,2,.97); }
[data-bs-theme="light"] body.page-4 #mobileMenu4 { background: #100e03 !important; }
[data-bs-theme="light"] body.page-4 .theme-toggle { color: #f59e0b; border-color: rgba(245,158,11,.25); }

/* ── Page 5 light — deep orange-slate ── */
[data-bs-theme="light"] body.page-5 {
  --o: #ff6b35; --o2: #ff8c42; --o3: #e85d04;
  --dark: #0f0502; --card: rgba(255,107,53,.07);
  --border: rgba(255,107,53,.18);
  background: var(--dark); color: #f0cdb8;
}
[data-bs-theme="light"] body.page-5 .nav5 {
  background: rgba(15,5,2,.88); border-bottom: 1px solid rgba(255,107,53,.14);
}
[data-bs-theme="light"] body.page-5 .nav5.scrolled { background: rgba(15,5,2,.97); }
[data-bs-theme="light"] body.page-5 .nl5 { color: rgba(255,255,255,.65) !important; }
[data-bs-theme="light"] body.page-5 .nl5:hover { color: var(--o) !important; }
[data-bs-theme="light"] body.page-5 .card5,
[data-bs-theme="light"] body.page-5 .buy-widget,
[data-bs-theme="light"] body.page-5 .rm5-content,
[data-bs-theme="light"] body.page-5 .wlt,
[data-bs-theme="light"] body.page-5 .faq5-item { background: rgba(255,107,53,.08); border-color: rgba(255,107,53,.2); }
[data-bs-theme="light"] body.page-5 .bw-inp { background: rgba(255,107,53,.07); color: #f0cdb8; }
[data-bs-theme="light"] body.page-5 .live-banner { background: rgba(255,107,53,.1); }
[data-bs-theme="light"] body.page-5 .tpw5 { background: rgba(15,5,2,.97); }
[data-bs-theme="light"] body.page-5 #mobileMenu5 { background: #130700 !important; }
[data-bs-theme="light"] body.page-5 .theme-toggle { color: #ff6b35; border-color: rgba(255,107,53,.25); }

/* Light theme — shared offcanvas link fix */
[data-bs-theme="light"] .offcanvas .nl,
[data-bs-theme="light"] .offcanvas .nl3,
[data-bs-theme="light"] .offcanvas .nl4,
[data-bs-theme="light"] .offcanvas .nl5 { color: rgba(255,255,255,.7) !important; }