*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --c-bg: #020b18;
  --c-bg2: #041020;
  --c-accent: #00d4ff;
  --c-accent2: #0077cc;
  --c-accent3: #00ffcc;
  --c-silver: #b0c4de;
  --c-white: #e8f4ff;
  --c-glow: rgba(0, 212, 255, 0.35);
  --c-glow2: rgba(0, 119, 204, 0.25);
  --c-glass: rgba(0, 20, 50, 0.55);
  --c-glass2: rgba(0, 30, 70, 0.7);
  --c-border: rgba(0, 180, 255, 0.18);
  --c-border2: rgba(0, 180, 255, 0.4);
  --font-head: "Orbitron", sans-serif;
  --font-body: "Exo 2", sans-serif;
  --r: 12px;
  --tr: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--c-bg);
  color: var(--c-white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}
/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #010810;
}
::-webkit-scrollbar-thumb {
  background: var(--c-accent2);
  border-radius: 4px;
}

/* ═══════════════════════════════════════════
   GLOBAL HELPERS
═══════════════════════════════════════════ */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 100px 0;
}
.section-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--c-accent);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-label::before,
.section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-accent), transparent);
  max-width: 60px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  background: linear-gradient(
    135deg,
    #fff 30%,
    var(--c-accent) 70%,
    var(--c-accent3) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}
.section-sub {
  color: rgba(200, 220, 255, 0.65);
  font-size: 1.05rem;
  max-width: 620px;
  line-height: 1.75;
}
/* Glow border card */
.gcard {
  background: var(--c-glass);
  border: 1px solid var(--c-border);
  border-radius: var(--r);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
  transition:
    transform var(--tr),
    box-shadow var(--tr),
    border-color var(--tr);
}
.gcard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.04), transparent 60%);
  pointer-events: none;
}
.gcard:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 60px rgba(0, 100, 200, 0.3),
    0 0 0 1px var(--c-border2);
  border-color: var(--c-border2);
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--c-accent2), var(--c-accent));
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 28px rgba(0, 180, 255, 0.4);
  transition:
    transform var(--tr),
    box-shadow var(--tr);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 48px rgba(0, 212, 255, 0.6);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  border-radius: 50px;
  background: transparent;
  border: 1px solid var(--c-border2);
  color: var(--c-accent);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform var(--tr),
    box-shadow var(--tr),
    background var(--tr);
}
.btn-ghost:hover {
  background: rgba(0, 180, 255, 0.1);
  box-shadow: 0 0 28px rgba(0, 180, 255, 0.25);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   ANIMATED BG CANVAS
═══════════════════════════════════════════ */
#bgCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
}

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition:
    background 0.4s,
    backdrop-filter 0.4s,
    padding 0.4s;
}
nav.scrolled {
  background: rgba(2, 10, 26, 0.85);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  border-bottom: 1px solid var(--c-border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--c-accent2), var(--c-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px var(--c-glow);
  font-size: 1.2rem;
}
.nav-logo-text {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--c-white);
}
.nav-logo-text span {
  display: block;
  font-size: 0.55rem;
  color: var(--c-accent);
  letter-spacing: 0.3em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(200, 230, 255, 0.7);
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 600;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--c-accent);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover {
  color: var(--c-accent);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}
.nav-cta {
  margin-left: 12px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-accent);
  border-radius: 2px;
  transition: transform 0.3s;
}
@media (max-width: 900px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(2, 10, 26, 0.97);
    padding: 24px;
    gap: 24px;
    border-bottom: 1px solid var(--c-border);
  }
  .nav-links.open + .nav-cta {
    display: block;
    padding: 0 24px 24px;
    position: absolute;
    top: calc(100% + 140px);
    left: 0;
    right: 0;
    background: rgba(2, 10, 26, 0.97);
  }
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      ellipse 80% 60% at 70% 50%,
      rgba(0, 80, 180, 0.2) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 60% 80% at 20% 80%,
      rgba(0, 30, 100, 0.3) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 100% 100% at 50% 0%,
      rgba(0, 40, 100, 0.15) 0%,
      transparent 70%
    );
}
/* Grid lines overlay */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 180, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 180, 255, 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 50px;
  background: rgba(0, 180, 255, 0.1);
  border: 1px solid rgba(0, 180, 255, 0.3);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-accent);
  font-family: var(--font-head);
  font-weight: 600;
  margin-bottom: 28px;
  animation: fadeInDown 0.7s 0.2s both;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent3);
  box-shadow: 0 0 8px var(--c-accent3);
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  animation: fadeInDown 0.7s 0.35s both;
}
.hero-title .line1 {
  display: block;
  background: linear-gradient(90deg, #fff 40%, var(--c-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title .line2 {
  display: block;
  background: linear-gradient(90deg, var(--c-accent), var(--c-accent3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
}
.hero-sub {
  color: rgba(180, 210, 255, 0.7);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 40px;
  animation: fadeInDown 0.7s 0.5s both;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeInDown 0.7s 0.65s both;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  animation: fadeInDown 0.7s 0.8s both;
}
.hstat {
  border-left: 2px solid var(--c-accent2);
  padding-left: 16px;
}
.hstat-val {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--c-accent);
  display: block;
  text-shadow: 0 0 20px rgba(0, 180, 255, 0.5);
}
.hstat-lbl {
  font-size: 0.72rem;
  color: rgba(150, 190, 230, 0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fadeInRight 0.9s 0.4s both;
}
.hero-orb {
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(0, 180, 255, 0.15),
    rgba(0, 50, 120, 0.2),
    transparent 70%
  );
  border: 1px solid rgba(0, 180, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: spinOrb 20s linear infinite;
}
@keyframes spinOrb {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.hero-orb-inner {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 40% 40%,
    rgba(0, 212, 255, 0.2),
    rgba(0, 80, 200, 0.12),
    transparent 65%
  );
  border: 1px solid rgba(0, 212, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spinOrb 14s linear infinite reverse;
  box-shadow:
    0 0 80px rgba(0, 100, 200, 0.2),
    inset 0 0 40px rgba(0, 180, 255, 0.07);
}
.hero-orb-core {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(0, 100, 200, 0.4),
    rgba(0, 212, 255, 0.25)
  );
  border: 2px solid rgba(0, 212, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 60px rgba(0, 180, 255, 0.5),
    inset 0 0 30px rgba(0, 212, 255, 0.15);
  animation: spinOrb 0s linear;
  font-size: 4rem;
}
/* Floating orbit dots */
.orbit-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow:
    0 0 16px var(--c-accent),
    0 0 30px rgba(0, 180, 255, 0.4);
}
.orbit-dot:nth-child(1) {
  top: 10%;
  left: 50%;
  animation: orbitDot 6s linear infinite;
}
.orbit-dot:nth-child(2) {
  top: 50%;
  right: 8%;
  animation: orbitDot 6s linear -3s infinite;
}
.orbit-dot:nth-child(3) {
  bottom: 12%;
  left: 50%;
  animation: orbitDot 6s linear -1s infinite;
}
.orbit-dot:nth-child(4) {
  width: 6px;
  height: 6px;
  background: var(--c-accent3);
  box-shadow: 0 0 12px var(--c-accent3);
  top: 25%;
  right: 15%;
  animation: orbitDot 8s linear -4s infinite;
}
@keyframes orbitDot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.6);
  }
}
/* Floating cards around orb */
.float-card {
  position: absolute;
  padding: 10px 16px;
  border-radius: 10px;
  background: rgba(0, 20, 50, 0.75);
  border: 1px solid rgba(0, 180, 255, 0.3);
  backdrop-filter: blur(12px);
  font-size: 0.72rem;
  font-family: var(--font-head);
  white-space: nowrap;
  animation: floatUD 4s ease-in-out infinite;
}
.float-card:nth-child(5) {
  top: 5%;
  right: -5%;
  animation-delay: 0s;
}
.float-card:nth-child(6) {
  bottom: 12%;
  left: -8%;
  animation-delay: 1.5s;
}
.float-card:nth-child(7) {
  top: 40%;
  right: -12%;
  animation-delay: 2.8s;
}
.float-card .fc-val {
  color: var(--c-accent);
  font-weight: 700;
  display: block;
  font-size: 1rem;
}
.float-card .fc-lbl {
  color: rgba(150, 200, 255, 0.6);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
}
@keyframes floatUD {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .hero-stats {
    gap: 24px;
  }
}

/* ═══════════════════════════════════════════
   TICKER
═══════════════════════════════════════════ */
.ticker {
  position: relative;
  z-index: 1;
  background: rgba(0, 20, 50, 0.6);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 14px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 60px;
  animation: tickerScroll 28s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  color: rgba(180, 220, 255, 0.7);
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.ticker-item span {
  color: var(--c-accent);
}
@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ═══════════════════════════════════════════
   BENEFITS SECTION
═══════════════════════════════════════════ */
.benefits {
  position: relative;
  z-index: 1;
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 60px;
}
.benefits-left .section-sub {
  max-width: 520px;
  margin-bottom: 36px;
}
.benefits-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bp {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 24px;
  border-radius: var(--r);
  background: var(--c-glass);
  border: 1px solid var(--c-border);
  transition:
    transform var(--tr),
    border-color var(--tr),
    box-shadow var(--tr);
}
.bp:hover {
  transform: translateX(8px);
  border-color: rgba(0, 180, 255, 0.4);
  box-shadow: 0 8px 32px rgba(0, 100, 200, 0.2);
}
.bp-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 80, 180, 0.5),
    rgba(0, 180, 255, 0.25)
  );
  border: 1px solid rgba(0, 180, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.bp-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  color: var(--c-white);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.bp-text p {
  font-size: 0.88rem;
  color: rgba(160, 200, 240, 0.65);
  line-height: 1.6;
}
/* Big visual card right */
.benefits-right {
  position: relative;
  padding: 36px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.globe-ring {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: var(--r);
  overflow: hidden;
}
.globe-ring::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 100, 200, 0.25), transparent 65%);
  border: 1px solid rgba(0, 180, 255, 0.12);
}
.benefits-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.bsg-card {
  padding: 20px;
  border-radius: var(--r);
  background: rgba(0, 20, 55, 0.65);
  border: 1px solid var(--c-border);
  text-align: center;
  transition:
    transform var(--tr),
    box-shadow var(--tr);
}
.bsg-card:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 40px rgba(0, 100, 200, 0.25);
}
.bsg-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}
.bsg-val {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-accent);
  display: block;
  text-shadow: 0 0 20px rgba(0, 200, 255, 0.4);
}
.bsg-lbl {
  font-size: 0.75rem;
  color: rgba(150, 200, 255, 0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .benefits-stat-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ═══════════════════════════════════════════
   USES SECTION
═══════════════════════════════════════════ */
.uses {
  position: relative;
  z-index: 1;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(0, 15, 40, 0.5),
    transparent
  );
}
.uses .container {
  text-align: center;
}
.uses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.use-card {
  padding: 32px 24px;
  text-align: center;
}
.uc-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(0, 80, 180, 0.5),
    rgba(0, 200, 255, 0.2)
  );
  border: 1px solid rgba(0, 200, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  box-shadow: 0 0 28px rgba(0, 180, 255, 0.2);
  transition:
    transform var(--tr),
    box-shadow var(--tr);
}
.use-card:hover .uc-icon-wrap {
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 0 50px rgba(0, 200, 255, 0.45);
}
.uc-title {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c-white);
  margin-bottom: 10px;
}
.uc-desc {
  font-size: 0.85rem;
  color: rgba(160, 200, 240, 0.6);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   HOW IT WORKS (JOINING)
═══════════════════════════════════════════ */
.join {
  position: relative;
  z-index: 1;
}
.join-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}
.join-big {
  background: linear-gradient(
    135deg,
    rgba(0, 50, 120, 0.5),
    rgba(0, 20, 60, 0.7)
  );
  border: 1px solid rgba(0, 200, 255, 0.25);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.join-big::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 255, 0.15), transparent 70%);
}
.join-usdt {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.5));
  display: block;
  margin: 20px 0;
}
.join-big p {
  color: rgba(180, 220, 255, 0.7);
  font-size: 1rem;
  max-width: 320px;
  margin: 0 auto 32px;
}
.join-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.jstep {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  border-radius: 12px;
  background: var(--c-glass);
  border: 1px solid var(--c-border);
  transition:
    transform var(--tr),
    border-color var(--tr);
}
.jstep:hover {
  transform: translateX(6px);
  border-color: rgba(0, 200, 255, 0.4);
}
.jstep-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--c-accent2), var(--c-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 0 16px rgba(0, 180, 255, 0.4);
}
.jstep-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 4px;
}
.jstep-text span {
  font-size: 0.82rem;
  color: rgba(160, 200, 240, 0.6);
}

@media (max-width: 900px) {
  .join-wrap {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
   PACKAGES TABLE
═══════════════════════════════════════════ */
.packages {
  position: relative;
  z-index: 1;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(0, 10, 30, 0.6),
    transparent
  );
}
.pkg-table-wrap {
  margin-top: 56px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--c-border);
  box-shadow: 0 0 60px rgba(0, 60, 150, 0.2);
}
.pkg-table {
  width: 100%;
  border-collapse: collapse;
}
.pkg-table th {
  padding: 16px 20px;
  background: linear-gradient(
    135deg,
    rgba(0, 60, 140, 0.7),
    rgba(0, 30, 80, 0.8)
  );
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--c-accent);
  text-transform: uppercase;
  text-align: center;
  border-bottom: 1px solid rgba(0, 180, 255, 0.25);
}
.pkg-table th:first-child {
  text-align: left;
}
.pkg-table td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 80, 160, 0.15);
  font-size: 0.9rem;
  color: rgba(200, 230, 255, 0.8);
  transition: background 0.2s;
}
.pkg-table td:first-child {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-white);
  text-align: left;
  background: rgba(0, 30, 70, 0.5);
}
.pkg-table tr:hover td {
  background: rgba(0, 60, 140, 0.2);
}
.pkg-table tr:last-child td {
  border-bottom: none;
}
.roi-val {
  color: var(--c-accent);
  font-weight: 700;
}
.profit-val {
  color: var(--c-accent3);
  font-weight: 700;
  text-shadow: 0 0 12px rgba(0, 255, 200, 0.3);
}
.slot-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  background: linear-gradient(
    90deg,
    rgba(0, 80, 180, 0.5),
    rgba(0, 180, 255, 0.25)
  );
  border: 1px solid rgba(0, 180, 255, 0.3);
  font-size: 0.72rem;
}

/* ═══════════════════════════════════════════
   INCOME TYPES
═══════════════════════════════════════════ */
.income {
  position: relative;
  z-index: 1;
}
.income-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 56px;
}
.income-card {
  padding: 32px 28px;
  border-radius: 16px;
}
.ic-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.ic-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.ic-icon.cyan {
  background: linear-gradient(
    135deg,
    rgba(0, 80, 180, 0.6),
    rgba(0, 212, 255, 0.3)
  );
  border: 1px solid rgba(0, 212, 255, 0.4);
}
.ic-icon.green {
  background: linear-gradient(
    135deg,
    rgba(0, 120, 80, 0.6),
    rgba(0, 255, 200, 0.3)
  );
  border: 1px solid rgba(0, 255, 180, 0.35);
}
.ic-icon.gold {
  background: linear-gradient(
    135deg,
    rgba(150, 80, 0, 0.6),
    rgba(255, 200, 0, 0.3)
  );
  border: 1px solid rgba(255, 180, 0, 0.35);
}
.ic-title {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: 0.08em;
}
.ic-pct {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--c-accent);
  margin: 8px 0;
  text-shadow: 0 0 24px rgba(0, 200, 255, 0.4);
}
.ic-desc {
  font-size: 0.88rem;
  color: rgba(160, 200, 240, 0.65);
  line-height: 1.65;
}
.ic-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(0, 180, 255, 0.1);
  border: 1px solid rgba(0, 180, 255, 0.25);
  font-size: 0.7rem;
  font-family: var(--font-head);
  letter-spacing: 0.1em;
  color: var(--c-accent);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   WHY CHOOSE (CHECKLIST)
═══════════════════════════════════════════ */
.why {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(0, 20, 60, 0.4), transparent);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 60px;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.wl-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 12px;
  background: rgba(0, 20, 55, 0.5);
  border: 1px solid rgba(0, 150, 220, 0.15);
  transition:
    border-color var(--tr),
    transform var(--tr),
    box-shadow var(--tr);
}
.wl-item:hover {
  border-color: rgba(0, 180, 255, 0.4);
  transform: translateX(6px);
  box-shadow: 0 6px 24px rgba(0, 80, 180, 0.2);
}
.wl-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--c-accent2), var(--c-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  margin-top: 2px;
  box-shadow: 0 0 14px rgba(0, 180, 255, 0.35);
}
.wl-item p {
  font-size: 0.9rem;
  color: rgba(180, 215, 255, 0.75);
  line-height: 1.6;
}
.wl-item strong {
  color: var(--c-white);
}
/* Right panel */
.why-visual {
  position: relative;
  padding: 40px 32px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(0, 40, 100, 0.4),
    rgba(0, 20, 60, 0.6)
  );
  border: 1px solid rgba(0, 180, 255, 0.2);
  text-align: center;
}
.why-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(0, 180, 255, 0.1),
    transparent 60%
  );
}
.why-headline {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: rgba(200, 230, 255, 0.6);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.why-big {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  background: linear-gradient(135deg, #fff, var(--c-accent), var(--c-accent3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.15;
  margin-bottom: 28px;
}
.why-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.wmg-item {
  padding: 16px;
  border-radius: 10px;
  background: rgba(0, 20, 50, 0.6);
  border: 1px solid rgba(0, 150, 220, 0.2);
  font-size: 0.82rem;
  text-align: center;
  transition:
    background var(--tr),
    border-color var(--tr);
}
.wmg-item:hover {
  background: rgba(0, 40, 100, 0.5);
  border-color: rgba(0, 200, 255, 0.4);
}
.wmg-icon {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 6px;
}
.wmg-item span {
  color: rgba(180, 220, 255, 0.7);
  font-size: 0.75rem;
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
   DECENTRALIZED
═══════════════════════════════════════════ */
.decentral {
  position: relative;
  z-index: 1;
}
.decentral .container {
  text-align: center;
}
.dec-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.dec-feat {
  padding: 32px 24px;
  text-align: center;
}
.df-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 8px;
}
.df-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
  display: block;
  opacity: 0.9;
}
.df-title {
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: var(--c-white);
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}
.df-desc {
  font-size: 0.85rem;
  color: rgba(160, 200, 240, 0.6);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   ROYALTY
═══════════════════════════════════════════ */
.royalty {
  position: relative;
  z-index: 1;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(0, 15, 45, 0.5),
    transparent
  );
}
.royalty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 56px;
}
.rcard {
  padding: 32px 28px;
  border-radius: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.rcard::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 255, 0.12), transparent 70%);
}
.rcard-gem {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 16px;
}
.rcard-title {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--c-white);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.rcard-pct {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--c-accent);
  display: block;
  margin: 10px 0;
  text-shadow: 0 0 24px rgba(0, 200, 255, 0.4);
}
.rcard-req {
  font-size: 0.82rem;
  color: rgba(160, 200, 240, 0.6);
  margin-top: 10px;
}
.rcard-req strong {
  color: var(--c-accent3);
}

/* ═══════════════════════════════════════════
   FUTURE PLANS
═══════════════════════════════════════════ */
.future {
  position: relative;
  z-index: 1;
}
.future-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.future-card {
  padding: 28px 24px;
  border-radius: 14px;
  text-align: center;
}
.fc2-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(0, 80, 180, 0.5),
    rgba(0, 200, 255, 0.2)
  );
  border: 1px solid rgba(0, 200, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 24px rgba(0, 120, 200, 0.2);
  transition:
    transform var(--tr),
    box-shadow var(--tr);
}
.future-card:hover .fc2-icon {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 12px 40px rgba(0, 180, 255, 0.35);
}
.fc2-title {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.fc2-desc {
  font-size: 0.82rem;
  color: rgba(155, 195, 240, 0.6);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   STATS COUNTER
═══════════════════════════════════════════ */
.stats-band {
  position: relative;
  z-index: 1;
  padding: 60px 0;
  background: linear-gradient(
    135deg,
    rgba(0, 30, 80, 0.5),
    rgba(0, 15, 50, 0.6)
  );
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  overflow: hidden;
}
.stats-band::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 100, 200, 0.12), transparent 65%);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(0, 150, 220, 0.15);
}
.stat-item:last-child {
  border-right: none;
}
.stat-n {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  color: var(--c-accent);
  display: block;
  text-shadow: 0 0 30px rgba(0, 200, 255, 0.4);
}
.stat-l {
  font-size: 0.78rem;
  color: rgba(160, 200, 240, 0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
  .stat-item:nth-child(2) {
    border-right: none;
  }
  .stat-item {
    border-bottom: 1px solid rgba(0, 150, 220, 0.15);
  }
  .stat-item:last-child {
    border-bottom: none;
  }
}

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq {
  position: relative;
  z-index: 1;
}
.faq .container {
  max-width: 860px;
}
.faq-list {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--c-border);
  background: var(--c-glass);
  transition: border-color var(--tr);
}
.faq-item.open {
  border-color: rgba(0, 180, 255, 0.4);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
  text-align: left;
}
.faq-q-text {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-white);
  letter-spacing: 0.06em;
}
.faq-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 100, 200, 0.3);
  border: 1px solid rgba(0, 180, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    transform var(--tr),
    background var(--tr);
  font-size: 0.8rem;
  color: var(--c-accent);
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: rgba(0, 180, 255, 0.2);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s;
  padding: 0 24px;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-a p {
  font-size: 0.9rem;
  color: rgba(160, 200, 240, 0.7);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact {
  position: relative;
  z-index: 1;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(0, 15, 50, 0.4),
    transparent
  );
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  margin-top: 60px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ci-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  border-radius: 12px;
  background: var(--c-glass);
  border: 1px solid var(--c-border);
  transition: transform var(--tr);
}
.ci-card:hover {
  transform: translateY(-4px);
}
.ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 80, 160, 0.6),
    rgba(0, 180, 255, 0.3)
  );
  border: 1px solid rgba(0, 180, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.ci-info strong {
  display: block;
  font-size: 0.82rem;
  font-family: var(--font-head);
  color: var(--c-accent);
  letter-spacing: 0.08em;
  margin-bottom: 3px;
}
.ci-info p {
  font-size: 0.88rem;
  color: rgba(160, 200, 240, 0.7);
}
/* Form */
.contact-form {
  padding: 36px;
  border-radius: 16px;
  background: rgba(0, 20, 55, 0.55);
  border: 1px solid var(--c-border);
  backdrop-filter: blur(16px);
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cf-group {
  margin-bottom: 18px;
}
.cf-group label {
  display: block;
  font-size: 0.72rem;
  font-family: var(--font-head);
  color: var(--c-accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.cf-group input,
.cf-group textarea,
.cf-group select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(0, 20, 50, 0.6);
  border: 1px solid rgba(0, 120, 200, 0.3);
  border-radius: 8px;
  color: var(--c-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition:
    border-color var(--tr),
    box-shadow var(--tr);
  outline: none;
}
.cf-group input:focus,
.cf-group textarea:focus,
.cf-group select:focus {
  border-color: rgba(0, 200, 255, 0.6);
  box-shadow: 0 0 16px rgba(0, 180, 255, 0.2);
}
.cf-group textarea {
  resize: vertical;
  min-height: 100px;
}
.cf-group select option {
  background: #020b18;
  color: var(--c-white);
}

@media (max-width: 900px) {
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  .cf-row {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  position: relative;
  z-index: 1;
  background: rgba(0, 5, 18, 0.9);
  border-top: 1px solid var(--c-border);
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo {
  display: inline-flex;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(150, 190, 230, 0.55);
  line-height: 1.7;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.soc-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0, 40, 90, 0.6);
  border: 1px solid rgba(0, 150, 220, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  text-decoration: none;
  color: rgba(160, 210, 255, 0.7);
  transition:
    background var(--tr),
    border-color var(--tr),
    color var(--tr);
}
.soc-btn:hover {
  background: rgba(0, 100, 200, 0.4);
  border-color: rgba(0, 200, 255, 0.4);
  color: var(--c-accent);
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(150, 190, 230, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--c-accent);
}
.footer-bottom {
  border-top: 1px solid rgba(0, 100, 180, 0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(120, 160, 210, 0.4);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 0.75rem;
  color: rgba(120, 160, 210, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: var(--c-accent);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════════════════════════════
   GLOWING DIVIDER
═══════════════════════════════════════════ */
.glow-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 180, 255, 0.4),
    rgba(0, 255, 200, 0.25),
    rgba(0, 180, 255, 0.4),
    transparent
  );
  position: relative;
}
.glow-line::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -3px;
  width: 100px;
  height: 6px;
  background: rgba(0, 180, 255, 0.2);
  filter: blur(6px);
  border-radius: 50%;
}

/* Light streak particles */
.streak {
  position: absolute;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    var(--c-accent),
    transparent
  );
  opacity: 0;
  animation: streakFall linear infinite;
}
@keyframes streakFall {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  10% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
    transform: translateY(110vh);
  }
}
