/* =============================================
   LEVIATHAN ($LEVA) — styles.css
   Paleta: Abismo Oceánico #030814 · Azul Eléctrico #2E8FFF · Dorado Profundidad #F5C542
   Tipografía: Oswald 700 (display) · Barlow 600-900 (cuerpo)
   Inspirado en las profundidades del océano y la leyenda del Leviatán.
   (Nombres de variables --green/--gold conservados por compatibilidad;
   --green ahora es el Azul Océano de la marca)
   ============================================= */
   
:root {
  --green:         #2E8FFF;
  --green-dark:    #0F5FCC;
  --green-dim:     #0B2A52;
  --green-glow:    rgba(46,143,255,0.3);
  --gold:          #F5C542;
  --gold-dark:     #C4972A;
  --gold-glow:     rgba(245,197,66,0.3);
  --black:         #030814;
  --surface:       #060E1F;
  --surface2:      #0A1830;
  --surface3:      #10233F;
  --border:        #16304F;
  --border-g:      rgba(46,143,255,0.2);
  --text:          #AFCBEA;   
  --text-muted:    #4FC3F7;   
  --text-heading:  #F4F8FF;   
  --text-accent:   #39D0FF;   
  --radius:        12px;
  --glow-green:    0 0 30px rgba(46,143,255,0.4);
  --glow-gold:     0 0 30px rgba(245,197,66,0.35);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.flag-icon {
  display: inline-block;
  width: 1.15em;
  height: 0.8em;
  vertical-align: middle;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.15);
}

/* ── TIPOGRAFÍA RESPONSIVE (base 16px → escala con viewport) ── */
html {
  scroll-behavior: smooth;
  
  font-size: clamp(14px, 0.55vw + 6.5px, 20px);
}

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  overflow-x: hidden;
  line-height: 1.65;
  font-size: 1rem; 
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── UTILITIES ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

.nav-inner { display: flex; align-items: center; gap: 1.5rem; width: 100%; max-width: 1560px; }
.green  { color: var(--green); }
.gold   { color: var(--text-heading); }

.section-label {
  font-size: 0.65rem; letter-spacing: 5px; font-weight: 700;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.section-label::before {
  content: ''; display: block;
  width: 32px; height: 2px;
  background: var(--green);
}

.section-title {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 0.92; letter-spacing: 1px;
  color: var(--text-heading); margin-bottom: 20px;
  text-align: center;
}

.section-desc {
  color: var(--text-muted); font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  max-width: 680px; margin: 0 auto 56px; line-height: 1.8; text-align: center;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--d, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #001028; font-size: clamp(0.72rem, 0.9vw, 0.85rem); font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 0.95rem 2.2rem; border-radius: 6px;
  border: 1px solid var(--green);
  transition: box-shadow 0.3s, transform 0.2s;
}
.btn-primary:hover {
  box-shadow: var(--glow-green);
  transform: translateY(-2px);
}
.btn-ghost {
  display: inline-block; color: var(--text-muted);
  font-size: clamp(0.72rem, 0.9vw, 0.85rem); font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; padding: 0.95rem 1.75rem;
  border: 1px solid var(--border-g); border-radius: 6px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--green); border-color: var(--green); }

/* ── LOADER ── */
/* ── LOADER MODIFICADO ── */
.loader {
  position: fixed; inset: 0;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.7s ease, visibility 0.7s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-inner { text-align: center; }

.loader-coin {
  width: 90px; height: 90px;
  border-radius: 50%;
  
  
  overflow: hidden; 
  
  
  background: radial-gradient(circle at 35% 35%, #0B2A52, #030814);
  
  
  border: 2px solid #2DD4BF;
  
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 0 30px rgba(45,212,191,0.4);
  animation: coinSpin 2s ease infinite;
  
  
  perspective: 1000px; 
}

.loader-coin-img {
  width: 100%;
  height: 100%;
  
  
  object-fit: cover; 
  object-position: center;
  display: block;
}

@keyframes coinSpin {
  0%   { transform: rotateY(0deg); }
  50%  { transform: rotateY(180deg); box-shadow: 0 0 30px rgba(168,85,247,0.4); }
  100% { transform: rotateY(360deg); }
}

.loader-title {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: clamp(2.8rem, 5vw, 3.5rem); letter-spacing: 10px;
  background: linear-gradient(90deg, #2DD4BF, #A855F7);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 6px;
}
.loader-sub {
  font-size: 10px; letter-spacing: 4px;
  color: var(--text-muted); text-transform: uppercase;
  margin-bottom: 28px;
}
.loader-bar-wrap {
  width: 200px; height: 2px;
  background: var(--surface3); margin: 0 auto;
  border-radius: 99px; overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #2DD4BF, #A855F7);
  animation: barFill 1.8s ease forwards;
  width: 0;
}
@keyframes barFill { to { width: 100%; } }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  
  padding: 1.25rem 0;
  z-index: 1000;
  transition: background 0.3s, padding 0.3s, border-bottom 0.3s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(3,8,20,0.96);
  backdrop-filter: blur(16px);
  padding: 0.75rem 0;
  border-bottom-color: var(--border-g);
  box-shadow: 0 4px 30px rgba(46,143,255,0.05);
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  margin-right: auto;
}

.nav-coin-icon {
  width: 36px;
  height: 36px;
  
  
  border-radius: 50%; 
  overflow: hidden; 
  
  
  border: 1.5px solid #2DD4BF; 
  
  
  background: radial-gradient(circle, #0B2A52, #030814);
  
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  
}

.nav-coin-icon img {
  width: 100%;  
  height: 100%; 
  
  
  
  
  object-fit: cover; 
  
  object-position: center; 
  display: block; 
}

.nav-name {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: clamp(1.1rem, 1.6vw, 1.5rem); letter-spacing: 4px; color: var(--text-heading);
}
.nav-peru { font-size: 1rem; }

.nav-links { display: flex; gap: 1.4rem; }
.nav-link-icon { display: none; }
.nav-link-mobile-only { display: none; }
.nav-links-cta { display: none; }
.nav-links a {
  font-size: clamp(0.62rem, 0.8vw, 0.75rem); font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }

.btn-nav {
  font-size: clamp(0.62rem, 0.8vw, 0.72rem); font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 0.6rem 1.3rem; border-radius: 6px;
  border: 1.5px solid var(--green);
  color: var(--green); white-space: nowrap;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn-nav:hover {
  background: var(--green); color: #001028;
  box-shadow: var(--glow-green);
}

.lang-switch {
  position: relative;
  display: flex; align-items: center;
  width: 76px; height: 30px;
  background: var(--surface2);
  border: 1px solid var(--border-g);
  border-radius: 99px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.lang-opt {
  position: relative; z-index: 1;
  flex: 1; text-align: center;
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  color: var(--text-muted);
  transition: color 0.25s ease;
  pointer-events: none;
}
.lang-opt.active { color: #030814; }
.lang-thumb {
  position: absolute; top: 2px; left: 2px;
  width: 36px; height: 24px;
  background: linear-gradient(135deg, #2DD4BF, #A855F7);
  border-radius: 99px;
  transition: transform 0.25s ease;
  box-shadow: 0 0 12px rgba(45,212,191,0.4);
}
.lang-switch.lang-is-en .lang-thumb { transform: translateX(36px); }

.nav-toggle {
  display: none; background: var(--surface2); border: 1px solid var(--border-g);
  cursor: pointer; padding: 6px; z-index: 210; position: relative;
  width: 40px; height: 40px; border-radius: 50%;
  flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.nav-toggle:hover { border-color: rgba(45,212,191,0.5); }
.nav-toggle[aria-expanded="true"] {
  background: linear-gradient(135deg, rgba(45,212,191,0.15), rgba(168,85,247,0.15));
  border-color: rgba(45,212,191,0.5);
}
.nav-toggle-line {
  display: block; width: 22px; height: 2px; border-radius: 2px;
  background: var(--text-heading);
  transition: transform 0.3s ease, opacity 0.2s ease, background 0.3s ease;
}
.nav-links.open ~ .nav-toggle .nav-toggle-line,
.nav-toggle.active .nav-toggle-line { background: #2DD4BF; }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── HERO ── */

.hero {
  min-height: 100vh;
  display: flex; 
  align-items: center; 
  padding: 120px 0 80px; 
  position: relative; 
  overflow: hidden; 
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between; 
  width: 100%;
  gap: 40px;
}
.hero-bg-photo {
  position: absolute; inset: 0;
  background-image: url('Image/leviathan_cosmic_whale.jpeg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(3,8,20,0.55) 0%, rgba(3,8,20,0.75) 55%, var(--black) 100%),
    linear-gradient(90deg, rgba(3,8,20,0.35), rgba(3,8,20,0.6));
  z-index: 0;
}
.hero-bg-glow {
  position: absolute; border-radius: 50%;
  filter: blur(120px); pointer-events: none;
  z-index: 0;
}
.glow-green {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(45,212,191,0.12), transparent 70%);
  top: -100px; right: -100px;
}
.glow-gold {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(168,85,247,0.1), transparent 70%);
  bottom: 0; left: 100px;
}
.hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

.hero-content { flex: 1; max-width: 580px; position: relative; z-index: 1; }

.hero-badges {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px;
}
.badge {
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 7px 16px; border-radius: 99px;
  border: 1px solid;
}
.badge-green {
  background: rgba(45,212,191,0.12);
  border-color: rgba(45,212,191,0.4);
  color: #2DD4BF;
}
.badge-gold {
  background: rgba(168,85,247,0.12);
  border-color: rgba(168,85,247,0.4);
  color: #C084FC;
}

.hero-title {
  display: flex; flex-direction: column;
  gap: 2px; margin-bottom: 24px;
}
.hero-millox {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: clamp(3.8rem, 10vw, 8.5rem);
  line-height: 0.85; letter-spacing: 3px;
  background: linear-gradient(90deg, #2DD4BF 30%, #A855F7);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
  background-size: 200% auto;
}
@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.hero-sub-title {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: clamp(1rem, 2.2vw, 1.65rem);
  letter-spacing: 4px; color: var(--text-muted);
}
.hero-cultura {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: clamp(1.1rem, 2.5vw, 2rem);
  letter-spacing: 2px; color: var(--text-heading);
  line-height: 1;
}

.hero-tagline {
  font-size: clamp(0.85rem, 1.1vw, 1.05rem); color: var(--text-muted);
  line-height: 1.7; margin-bottom: 28px;
}
.hero-tagline strong { color: var(--text-accent); }

.hero-pills {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px;
}
.pill {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem); font-weight: 600; letter-spacing: 0.5px;
  padding: 0.55rem 1.3rem; border-radius: 99px;
  background: var(--surface2); border: 1px solid var(--border-g);
  color: var(--text-muted);
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-slogan {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: 8px;
  color: #2DD4BF;
  text-transform: uppercase;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; color: var(--green); }
}

/* ── HERO COIN ── */
.hero-coin-wrap {
  flex-shrink: 0; position: relative;
  width: 380px; height: 380px;
  display: flex; align-items: center; justify-content: center;
}
.hero-coin-glow {
  position: absolute; inset: -30px;
  background: radial-gradient(circle, rgba(45,212,191,0.18), rgba(168,85,247,0.12) 55%, transparent 75%);
  border-radius: 50%;
  animation: breathe 3s ease infinite;
}
@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; }
}

.hero-coin {
  width: 250px; height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%,
    #123a6b 0%, #08192e 40%, #020610 100%);
  border: 3px solid #2DD4BF;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
  cursor: pointer;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(45,212,191,0.35),
    0 0 40px rgba(168,85,247,0.25),
    inset 0 0 30px rgba(0,0,0,0.5);
  transition: transform 0.1s ease;
  transform-style: preserve-3d;
  perspective: 800px;
}

.hero-coin-ring {
  position: absolute; border-radius: 50%; border: 1px solid;
  animation: spinRing linear infinite;
}
.ring-a {
  inset: -25px;
  border-color: rgba(45,212,191,0.3);
  animation-duration: 18s;
}
.ring-b {
  inset: -48px;
  border-color: rgba(168,85,247,0.22);
  animation-duration: 28s;
  animation-direction: reverse;
}
@keyframes spinRing {
  to { transform: rotate(360deg); }
}

.hero-coin-face {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0; padding: 0;
  text-align: center;
}
.coin-inner-text {
  font-size: 8px; font-weight: 700;
  letter-spacing: 2px; color: var(--green);
  text-transform: uppercase;
}

.coin-x-symbol {
  width: 244px;
  height: 244px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden; 
  display: flex;
  align-items: center;
  justify-content: center;
  
  
  box-shadow: inset 0 0 10px rgba(0,0,0,0.5); 
}

.coin-x-symbol img {
  width: 100%;
  height: 100%;
  
  
  
  object-fit: cover; 
  
  object-position: center;
  display: block;
}

.coin-inner-bottom {
  font-size: 5.5px; letter-spacing: 1px;
  color: var(--text-muted); text-transform: uppercase;
  line-height: 1.4; max-width: 130px;
}

.coin-orbits {
  position: absolute; inset: 0; border-radius: 50%;
  animation: spinRing 12s linear infinite;
}
.orbit-dot {
  position: absolute; font-size: 20px;
  transform: translateX(-50%) translateY(-50%);
}
.od1 { top: 0; left: 50%; }
.od2 { top: 50%; right: 0; transform: translateX(50%) translateY(-50%); }
.od3 { bottom: 0; left: 50%; transform: translateX(-50%) translateY(50%); }
.od4 { top: 50%; left: 0; transform: translateX(-50%) translateY(-50%); }

/* ── TICKER ── */
.ticker-wrap {
  background: var(--surface);
  border-top: 1px solid var(--border-g);
  border-bottom: 1px solid var(--border-g);
  padding: 14px 0; overflow: hidden;
}
.ticker-track { overflow: hidden; }
.ticker-inner {
  display: flex; gap: 60px;
  white-space: nowrap;
  animation: tickerMove 30s linear infinite;
  width: max-content;
}
.ticker-inner span {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted);
}
.ticker-inner span:nth-child(odd) { color: var(--green); }
.ticker-inner span:nth-child(4n) { color: var(--text-heading); }
@keyframes tickerMove {
  to { transform: translateX(-50%); }
}

/* ── ABOUT ── */
.about { padding: 120px 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.value-card:hover {
  border-color: var(--green-dark);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(46,143,255,0.08);
}
.value-icon { font-size: 34px; margin-bottom: 18px; }
.value-card h3 {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: clamp(1rem, 1.4vw, 1.35rem); letter-spacing: 1px;
  color: var(--text-heading); margin-bottom: 10px;
}
.value-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }

/* ── UTILIDAD ── */
.utilidad {
  padding: 120px 0;
  background: var(--surface);
  border-top: 1px solid var(--border-g);
}

.utilidad-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px; margin-bottom: 48px;
}
.util-card {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.util-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.util-card:hover::before { opacity: 1; }
.util-card:hover { border-color: var(--green-dark); transform: translateY(-4px); }

.util-icon-wrap {
  width: 58px; height: 58px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 20px;
  border: 1px solid;
}
.green-glow { background: rgba(46,143,255,0.1); border-color: rgba(46,143,255,0.3); }
.gold-glow  { background: rgba(245,197,66,0.1); border-color: rgba(245,197,66,0.3); }

.util-card h3 {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: clamp(1.05rem, 1.5vw, 1.45rem); letter-spacing: 1px;
  color: var(--text-heading); margin-bottom: 10px;
}
.util-card p { color: var(--text-muted); font-size: clamp(0.8rem, 0.95vw, 0.9rem); line-height: 1.7; margin-bottom: 20px; }
.util-tag {
  display: inline-block; font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 99px;
  border: 1px solid var(--green-dark); color: var(--green);
  background: rgba(46,143,255,0.06);
}

.ecosystem-banner {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-g);
  margin: 0 auto 40px;
  box-shadow: 0 12px 40px rgba(46,143,255,0.1);
  max-width: 440px;
}
.ecosystem-banner img,
.ecosystem-banner video {
  display: block; width: 100%; height: auto;
  object-fit: contain;
}

.util-cta-banner {
  background: linear-gradient(135deg, rgba(46,143,255,0.12), rgba(245,197,66,0.08));
  border: 1px solid rgba(46,143,255,0.3);
  border-radius: var(--radius);
  padding: 36px 40px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.util-banner-text strong {
  display: block;
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: clamp(1.4rem, 2vw, 1.8rem); letter-spacing: 2px;
  color: var(--text-heading); margin-bottom: 6px;
}
.util-banner-text span { font-size: 14px; color: var(--text-muted); }

/* ── TOKENOMICS ── */
.tokenomics { padding: 120px 0; }

.tk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}

.tk-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.tk-rings-wrap {
  position: absolute;
  display: flex; align-items: center; justify-content: center;
}
.tk-ring-outer, .tk-ring-mid, .tk-ring-inner {
  position: absolute; border-radius: 50%; border: 1px solid;
  animation: spinRing linear infinite;
}
.tk-ring-outer { width: 300px; height: 300px; border-color: rgba(46,143,255,0.1); animation-duration: 40s; }
.tk-ring-mid   { width: 250px; height: 250px; border-color: rgba(245,197,66,0.1); animation-duration: 25s; animation-direction: reverse; }
.tk-ring-inner { width: 200px; height: 200px; border-color: rgba(46,143,255,0.15); animation-duration: 15s; }
.tk-center {
  width: 90px; height: 90px; border-radius: 50%;
  background: radial-gradient(circle, #0B2A52, #020610);
  border: 2px solid var(--green-dark);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: var(--glow-green);
  z-index: 1;
}
.tk-num {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 26px; color: var(--text-heading); letter-spacing: 1px; line-height: 1;
}
.tk-unit { font-size: 9px; letter-spacing: 2px; color: var(--green); }

.tk-donut {
  width: 290px; height: 290px;
  transform: rotate(-90deg);
  filter: drop-shadow(0 0 12px rgba(46,143,255,0.2));
}
.tk-seg { fill: none; stroke-width: 28; stroke-linecap: butt; }

.tk-legend { display: flex; flex-direction: column; gap: 14px; }
.tk-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s;
}
.tk-item:hover { border-color: var(--border-g); }
.tk-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.tk-info { flex: 1; }
.tk-info strong { display: block; font-size: clamp(0.68rem, 0.85vw, 0.78rem); color: var(--text-accent); letter-spacing: 1px; margin-bottom: 2px; }
.tk-info span { font-size: clamp(0.68rem, 0.85vw, 0.78rem); color: var(--text-muted); }
.tk-pct {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 24px; color: var(--green); min-width: 44px; text-align: right;
}

/* ── TOKENOMICS SECURITY GRID ── */
.tk-security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.tk-security-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.tk-security-card:hover {
  border-color: var(--border-g);
  transform: translateY(-3px);
}
.tk-sec-icon { font-size: 1.6rem; display: block; margin-bottom: 12px; }
.tk-security-card strong {
  display: block;
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  letter-spacing: 1.5px; color: var(--text-heading);
  margin-bottom: 8px;
}
.tk-security-card p {
  font-size: clamp(0.78rem, 0.9vw, 0.85rem);
  color: var(--text-muted); line-height: 1.6;
}

/* ── DECLARACIÓN FINAL ── */
.final-declaration {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border-g);
  text-align: center;
}
.fd-quote {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  letter-spacing: 1px; color: var(--text-heading);
  line-height: 1.4; margin: 0 auto 32px;
  max-width: 720px; text-align: center;
}
.fd-text {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--text-muted); line-height: 1.8;
  max-width: 680px; margin: 0 auto 16px; text-align: center;
}
.fd-highlight {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  letter-spacing: 1px; color: var(--text-heading);
  margin-top: 24px; text-align: center;
}

/* ── STATS BANNER ── */
.stats-banner {
  background: linear-gradient(135deg, var(--surface) 0%, rgba(46,143,255,0.05) 50%, var(--surface) 100%);
  border-top: 1px solid var(--border-g);
  border-bottom: 1px solid var(--border-g);
  padding: 60px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px; text-align: center;
}
.stat-item { }
.stat-val {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 42px; letter-spacing: 2px;
  background: linear-gradient(90deg, var(--green), var(--text-heading));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1; display: block;
}
.stat-lbl {
  font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-muted); margin-top: 8px;
}

/* ── ROADMAP ── */
.roadmap { padding: 120px 0; background: var(--surface); }

.rm-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; position: relative;
}
.rm-timeline::before {
  content: ''; position: absolute;
  top: 28px; left: 28px; right: 28px; height: 2px;
  background: linear-gradient(90deg, var(--green) 30%, var(--border) 30%);
  z-index: 0;
}
.rm-phase { position: relative; padding-top: 64px; }
.rm-dot {
  position: absolute; top: 0; left: 0;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--surface2);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.rm-dot span {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 14px; letter-spacing: 1px; color: var(--text-muted);
}
.rm-phase.done .rm-dot { border-color: var(--green); background: rgba(46,143,255,0.1); }
.rm-phase.done .rm-dot span { color: var(--green); }
.rm-phase.active .rm-dot {
  border-color: var(--green); background: var(--green);
  box-shadow: var(--glow-green);
  animation: pulseDot 2s ease infinite;
}
.rm-phase.active .rm-dot span { color: #000; }
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46,143,255,0.4); }
  50% { box-shadow: 0 0 0 10px rgba(46,143,255,0); }
}

.rm-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.rm-phase.done .rm-card  { border-color: rgba(46,143,255,0.2); }
.rm-phase.active .rm-card { border-color: var(--green); box-shadow: 0 0 20px rgba(46,143,255,0.1); }

.rm-badge {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 12px;
}
.rm-done   { color: var(--green); }
.rm-active { color: var(--text-heading); }
.rm-next   { color: var(--text-muted); }
.rm-future { color: var(--text-muted); }

.rm-card h3 {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: clamp(0.95rem, 1.2vw, 1.2rem); letter-spacing: 1px;
  color: var(--text-heading); margin-bottom: 14px;
}
.rm-card li {
  font-size: clamp(0.85rem, 1vw, 0.95rem); color: var(--text-muted);
  padding: 7px 0; border-bottom: 1px solid var(--border);
}
.rm-card li:last-child { border-bottom: none; }
.rm-card li::before { content: '▸ '; color: var(--green-dark); }
.rm-phase.done .rm-card li::before { color: var(--green); }
.rm-phase.active .rm-card li::before { color: var(--text-heading); }

/* ── CONTRACT ── */
.contract-section { padding: 64px 0; }
.contract-box {
  background: var(--surface);
  border: 1px solid rgba(46,143,255,0.3);
  border-radius: var(--radius);
  padding: 36px 40px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.contract-box::before {
  content: ''; position: absolute;
  inset: 0; pointer-events: none;
  background: linear-gradient(135deg, rgba(46,143,255,0.04), transparent);
}
.contract-left { min-width: 180px; }
.contract-label {
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--green); margin-bottom: 4px;
}
.contract-net { font-size: 12px; color: var(--text-muted); }
.contract-addr {
  flex: 1; font-family: 'Inter', monospace;
  font-size: 14px; color: var(--text-muted);
  word-break: break-all;
}
.btn-copy {
  background: none; border: 1.5px solid var(--green);
  color: var(--green); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 12px 24px; border-radius: 6px;
  cursor: pointer; white-space: nowrap;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn-copy:hover { background: var(--green); color: #000; box-shadow: var(--glow-green); }

/* ── COMMUNITY ── */
.community { padding: 120px 0; }

.comm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px; margin-bottom: 48px;
}
.comm-card {
  display: flex; align-items: center; gap: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.comm-card:hover {
  border-color: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(46,143,255,0.08);
}
.comm-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--surface3);
  border: 1px solid var(--border-g);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.comm-info { flex: 1; }
.comm-info strong { display: block; font-size: clamp(0.72rem, 0.9vw, 0.85rem); color: var(--text-heading); margin-bottom: 2px; }
.comm-info span { display: block; font-size: 12px; color: var(--green); }
.comm-info em { display: block; font-size: 11px; color: var(--text-muted); font-style: normal; margin-top: 2px; }
.comm-arrow { color: var(--green-dark); font-size: 18px; transition: transform 0.2s, color 0.2s; }
.comm-card:hover .comm-arrow { transform: translateX(4px); color: var(--green); }

.together-strip {
  display: flex; justify-content: center;
  gap: 40px; flex-wrap: wrap;
  padding: 32px 40px;
  background: var(--surface);
  border: 1px solid var(--border-g);
  border-radius: var(--radius);
}
.together-strip span {
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted);
}
.together-strip span:nth-child(odd) { color: var(--green); }

/* ── FOOTER ── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border-g);
  padding: 80px 0 40px;
  position: relative; overflow: hidden;
}
.footer-glow {
  position: absolute; bottom: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(46,143,255,0.07), transparent 70%);
  pointer-events: none;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; margin-bottom: 60px;
}
.footer-logo {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 26px; letter-spacing: 4px;
  background: linear-gradient(90deg, var(--green), var(--text-heading));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 16px;
}
.footer-brand p {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.75; max-width: 280px; margin-bottom: 16px;
}
.footer-hashtag {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 18px; letter-spacing: 4px; color: var(--green-dark);
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col strong {
  font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--green); margin-bottom: 8px;
}
.footer-col a {
  font-size: 14px; color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-heading); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 11px; letter-spacing: 1px; color: var(--text-muted); }
.disclaimer { font-style: italic; max-width: 420px; text-align: right; }

/* ── DEXSCREENER ── */
.dex-section {
  padding: 120px 0;
  background: var(--surface);
  border-top: 1px solid var(--border-g);
}

.dex-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.dex-chart-wrap {
  background: var(--black);
  border: 1px solid var(--border-g);
  border-radius: var(--radius);
  overflow: hidden;
}

.dex-chart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  background: var(--surface2);
  border-bottom: 1px solid var(--border-g);
}

.dex-chart-title {
  display: flex; align-items: center; gap: 10px;
  font-size: clamp(0.72rem, 0.9vw, 0.82rem);
  font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-accent);
}

.dex-dot-live {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulseDot 1.5s ease infinite;
}

.dex-ext-link {
  font-size: clamp(0.65rem, 0.8vw, 0.75rem);
  font-weight: 600; letter-spacing: 1px;
  color: var(--green); text-transform: uppercase;
  transition: color 0.2s;
}
.dex-ext-link:hover { color: var(--gold); }

.dex-iframe-wrap {
  height: 650px;
  position: relative;
}

.dex-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 2rem;
  background: radial-gradient(ellipse at center, rgba(46,143,255,0.04) 0%, transparent 70%);
}

.dex-placeholder-icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.5; }

.dex-placeholder-title {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: clamp(1.4rem, 2vw, 2rem);
  letter-spacing: 3px; color: var(--text-heading);
  margin-bottom: 12px;
}

.dex-placeholder-sub {
  font-size: clamp(0.78rem, 0.95vw, 0.9rem);
  color: var(--text-muted); line-height: 1.65;
}

.dex-panel {
  display: flex; justify-content: center;
}

.dex-panel-cta {
  width: 100%;
  max-width: 560px;
  background: linear-gradient(135deg, rgba(46,143,255,0.08), rgba(245,197,66,0.05));
  border: 1px solid rgba(46,143,255,0.25);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}
.dex-panel-cta strong {
  display: block;
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  letter-spacing: 2px; color: var(--text-heading);
  text-shadow: 0 0 14px var(--gold-glow);
  margin-bottom: 6px;
}
.dex-panel-cta span {
  display: block; font-size: clamp(0.68rem, 0.85vw, 0.78rem);
  color: var(--green); text-shadow: 0 0 10px var(--green-glow);
  margin-bottom: 16px; line-height: 1.5;
}
.dex-cta-buttons { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ── ESCALADO EN PANTALLAS GRANDES ──
   El .container y el html font-size ya crecen de forma fluida (clamp/vw),
   pero algunos elementos tienen medidas fijas en px que antes se quedaban
   "chicas" al pasar de un laptop a un monitor 1920x1080 o más grande.
   Estos breakpoints los hacen crecer con la resolución real. */
@media (min-width: 1440px) {
  .container { max-width: 1320px; }
  .hero-content { max-width: 640px; }
  .hero-coin-wrap { width: 420px; height: 420px; }
  .hero-coin { width: 280px; height: 280px; }
  .coin-x-symbol { width: 274px; height: 274px; }
}

@media (min-width: 1920px) {
  .container { max-width: 1560px; }
  .hero-content { max-width: 720px; }
  .hero-coin-wrap { width: 480px; height: 480px; }
  .hero-coin { width: 320px; height: 320px; }
  .coin-x-symbol { width: 314px; height: 314px; }
}

@media (min-width: 2560px) {
  .container { max-width: 1880px; }
  .hero-content { max-width: 820px; }
  .hero-coin-wrap { width: 540px; height: 540px; }
  .hero-coin { width: 360px; height: 360px; }
  .coin-x-symbol { width: 354px; height: 354px; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-container { padding: 0 40px; } 
  .hero-coin-wrap { width: 300px; height: 300px; }
  .hero-coin { width: 200px; height: 200px; }
  .hero-coin-face { padding: 8px; gap: 2px; }
  .coin-x-symbol { width: 194px; height: 194px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .tk-grid { grid-template-columns: 1fr; }
  .tk-donut { width: 240px; height: 240px; }
  .tk-security-grid { grid-template-columns: repeat(2, 1fr); }
  .rm-timeline { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .rm-timeline::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1180px) {
  .nav-links {
    display: none; position: absolute;
    top: calc(100% + 1px); left: 12px; right: 12px;
    background: rgba(6,14,31,0.92);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    flex-direction: column; padding: 10px; gap: 4px;
    border: 1px solid rgba(45,212,191,0.25);
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(168,85,247,0.08);
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    overflow-x: hidden;
  }
  .nav-links::before {
    content: '';
    position: sticky; top: 0; left: 0; right: 0;
    display: block; height: 3px; margin: -10px -10px 10px;
    background: linear-gradient(90deg, #2DD4BF, #A855F7, #2DD4BF);
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
    border-radius: 18px 18px 0 0;
    z-index: 1;
  }
  .nav-links.open {
    display: flex;
    animation: navDropIn 0.28s ease;
  }
  @keyframes navDropIn {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .nav-links li { width: 100%; position: relative; }
  .nav-link-mobile-only { display: block; }
  .nav-links li + li::before {
    content: ''; position: absolute; top: 0; left: 16px; right: 16px;
    height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  }
  .nav-links li:has(+ .nav-links-cta)::before,
  .nav-links-cta::before { display: none; }
  .nav-links a {
    display: flex; align-items: center; gap: 14px;
    padding: 13px 16px; border-radius: 12px;
    font-size: 0.85rem; letter-spacing: 1.5px;
    border-left: 2px solid transparent;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, padding-left 0.2s ease, transform 0.2s ease;
  }
  .nav-link-icon {
    font-size: 0.95rem; flex-shrink: 0;
    width: 32px; height: 32px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: var(--surface3);
    border: 1px solid rgba(255,255,255,0.06);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  }
  .nav-links.open li {
    animation: navItemIn 0.35s ease backwards;
  }
  .nav-links.open li:nth-child(1)  { animation-delay: 0.03s; }
  .nav-links.open li:nth-child(2)  { animation-delay: 0.06s; }
  .nav-links.open li:nth-child(3)  { animation-delay: 0.09s; }
  .nav-links.open li:nth-child(4)  { animation-delay: 0.12s; }
  .nav-links.open li:nth-child(5)  { animation-delay: 0.15s; }
  .nav-links.open li:nth-child(6)  { animation-delay: 0.18s; }
  .nav-links.open li:nth-child(7)  { animation-delay: 0.21s; }
  .nav-links.open li:nth-child(8)  { animation-delay: 0.24s; }
  .nav-links.open li:nth-child(9)  { animation-delay: 0.27s; }
  @keyframes navItemIn {
    from { opacity: 0; transform: translateX(-8px); }
    to   { opacity: 1; transform: translateX(0); }
  }
  .nav-links a:hover,
  .nav-links a:active {
    background: linear-gradient(90deg, rgba(45,212,191,0.12), transparent);
    border-left-color: #2DD4BF;
    color: var(--text-heading);
    padding-left: 20px;
  }
  .nav-links a:hover .nav-link-icon {
    background: linear-gradient(135deg, rgba(45,212,191,0.25), rgba(168,85,247,0.25));
    border-color: rgba(45,212,191,0.4);
    transform: scale(1.08);
  }
  .nav-links-cta {
    display: block;
    margin-top: 8px; padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links-cta a {
    justify-content: center; text-align: center;
    font-size: 0.78rem;
    border-left: none !important;
    padding: 14px 16px !important;
  }
  .nav-links-cta a:hover { padding-left: 16px !important; }
  .nav-toggle { display: flex; }
  .btn-nav { display: none; }
}

@media (max-width: 768px) {
  .navbar { padding: 1rem 0; }
  .navbar.scrolled { padding: 0.75rem 0; }
  .nav-inner { padding: 0 1.25rem; }

  
  .hero { padding: 100px 0 60px; }
  .hero-container {
    flex-direction: column; 
    text-align: center;
    gap: 40px;
    padding: 0 24px;
  }
  
  .hero-badges, .hero-pills, .hero-cta { justify-content: center; }
  .section-desc { margin-left: auto; margin-right: auto; }

  .values-grid { grid-template-columns: 1fr; }
  .utilidad-grid { grid-template-columns: 1fr; }
  .tk-security-grid { grid-template-columns: 1fr; }
  .rm-timeline { grid-template-columns: 1fr; }
  .comm-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .disclaimer { text-align: center; max-width: 100%; }
  .contract-box { flex-direction: column; align-items: flex-start; }
  .util-cta-banner { flex-direction: column; text-align: center; }
  .together-strip { gap: 20px; padding: 24px; }
}

/* ── IFRAME DEXSCREENER — estilos pulidos ── */
.dex-iframe-wrap iframe {
  display: block;
  border-radius: 0 0 var(--radius) var(--radius);
}

.dex-layout {
  grid-template-columns: 1fr !important;
}

/* ── GLOW GENERAL: TÍTULOS AMARILLOS + INFO VERDE FOSFORESCENTE ──
   Aplica el mismo brillo neón del bloque CTA a todos los títulos
   (amarillo) y textos de información / letras pequeñas (verde) del sitio. */
.section-title,
.nav-name,
.value-card h3,
.util-card h3,
.util-banner-text strong,
.tk-security-card strong,
.rm-card h3,
.comm-info strong,
.dex-placeholder-title,
.fd-highlight {
  text-shadow: 0 0 14px var(--gold-glow);
}

.section-desc,
.hero-tagline,
.loader-sub,
.value-card p,
.util-card p,
.util-banner-text span,
.tk-info span,
.tk-security-card p,
.fd-text,
.rm-next,
.rm-future,
.rm-card li,
.contract-net,
.contract-addr,
.comm-info em,
.comm-info span,
.together-strip span,
.footer-brand p,
.footer-bottom p,
.disclaimer,
.dex-placeholder-sub,
.stat-lbl {
  text-shadow: 0 0 10px var(--green-glow);
}
