/* =====================================================
   PROSPERO UNIVERSE — style.css
   A cinematic multi-universe website experience
   ===================================================== */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white: #ffffff;
  --off-white: #e8e8f0;
  --dim: #a0a0b8;
  --bg-dark: #04040f;
  --bg-deep: #070714;
  --accent-blue: #00d4ff;
  --accent-violet: #a78bfa;
  --accent-green: #00ff9d;
  --accent-gold: #fbbf24;
  --accent-red: #ff4d4d;
  --accent-orange: #ff8c42;
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --radius: 16px;
  --radius-sm: 8px;
  --font-display: 'Syne', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --font-body: 'DM Sans', sans-serif;
  --shadow-glow-blue: 0 0 40px rgba(0,212,255,0.3);
  --shadow-glow-violet: 0 0 40px rgba(167,139,250,0.3);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg-dark);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--accent-violet); border-radius: 3px; }

/* =====================================================
   CUSTOM CURSOR
   ===================================================== */
.cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--accent-blue);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.05s, width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: screen;
}
.cursor-trail {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(0,212,255,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.2s, height 0.2s, opacity 0.2s;
}
.cursor.hover-big { width: 20px; height: 20px; background: var(--accent-violet); }
.cursor-trail.hover-big { width: 56px; height: 56px; border-color: rgba(167,139,250,0.4); }

/* =====================================================
   LOADER
   ===================================================== */
.loader {
  position: fixed;
  inset: 0;
  background: #020208;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

#loaderCanvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}

.loader-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.loader-rings {
  position: relative;
  width: 200px; height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
  animation: ringRotate linear infinite;
}
.ring-1 {
  width: 200px; height: 200px;
  border-top-color: var(--accent-blue);
  border-right-color: rgba(0,212,255,0.2);
  animation-duration: 2s;
}
.ring-2 {
  width: 168px; height: 168px;
  border-top-color: var(--accent-violet);
  border-left-color: rgba(167,139,250,0.2);
  animation-duration: 2.8s;
  animation-direction: reverse;
}
.ring-3 {
  width: 136px; height: 136px;
  border-top-color: var(--accent-green);
  border-right-color: rgba(0,255,157,0.2);
  animation-duration: 1.6s;
}
.ring-4 {
  width: 104px; height: 104px;
  border-top-color: var(--accent-gold);
  border-left-color: rgba(251,191,36,0.2);
  animation-duration: 2.2s;
  animation-direction: reverse;
}
.ring-core {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,212,255,0.2), rgba(167,139,250,0.2));
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}
.loader-logo {
  width: 40px; height: 40px;
  object-fit: contain;
  filter: brightness(2);
}
.loader-logo-fallback {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-blue);
  text-shadow: 0 0 20px var(--accent-blue);
}

@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.loader-text {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--off-white);
  text-transform: uppercase;
}
.dots::after {
  content: '';
  animation: dotAnim 1.5s infinite;
}
@keyframes dotAnim {
  0% { content: '.'; }
  33% { content: '..'; }
  66% { content: '...'; }
}

.loader-progress-bar {
  width: 280px; height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.loader-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-violet));
  border-radius: 2px;
  transition: width 0.1s ease;
  box-shadow: 0 0 12px var(--accent-blue);
}
.loader-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 0.1em;
}

/* =====================================================
   HEADER
   ===================================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s;
  padding: 0 24px;
}
.header.scrolled {
  background: rgba(4,4,15,0.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--white);
  flex-shrink: 0;
}
.nav-logo img {
  width: 36px; height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px var(--accent-blue));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--dim);
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-links .nav-cta {
  color: var(--accent-blue);
  border: 1px solid rgba(0,212,255,0.3);
  margin-left: 8px;
}
.nav-links .nav-cta:hover {
  background: rgba(0,212,255,0.1);
  color: var(--accent-blue);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-violet));
  color: var(--bg-dark);
  box-shadow: 0 8px 32px rgba(0,212,255,0.3);
}
.btn-primary:hover { box-shadow: 0 12px 48px rgba(0,212,255,0.5); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
.btn-horror {
  background: linear-gradient(135deg, #330a0a, #800000);
  color: #ff9999;
  box-shadow: 0 8px 32px rgba(180,0,0,0.4);
  border: 1px solid rgba(255,80,80,0.3);
}
.btn-horror:hover { box-shadow: 0 12px 48px rgba(220,0,0,0.6); }
.btn-game {
  background: linear-gradient(135deg, #ff6b35, #f7c59f);
  color: #1a0a00;
  box-shadow: 0 8px 32px rgba(255,107,53,0.4);
}
.btn-game:hover { box-shadow: 0 12px 48px rgba(255,107,53,0.6); }
.btn-gold {
  background: linear-gradient(135deg, #d4a017, #fbbf24);
  color: #1a0e00;
  box-shadow: 0 8px 32px rgba(251,191,36,0.3);
}
.btn-gold:hover { box-shadow: 0 12px 48px rgba(251,191,36,0.5); }
.btn-glow {
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-violet));
  filter: blur(16px);
  opacity: 0;
  z-index: -1;
  border-radius: inherit;
  transition: opacity 0.3s;
}
.btn:hover .btn-glow { opacity: 0.5; }
.arr { font-size: 16px; transition: transform 0.2s; }
.btn:hover .arr { transform: translateX(4px); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 60%, #0a0a2e 0%, #020208 70%);
}
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.hero-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  animation: twinkle ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
  padding-top: 100px;
}
.hero-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--accent-blue);
  border: 1px solid rgba(0,212,255,0.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  background: rgba(0,212,255,0.05);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 120px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.title-line { display: block; }
.title-line.accent {
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-violet) 50%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(0,212,255,0.4));
}
.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--dim);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--white), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 12px;
  color: var(--dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.12);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--dim);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
  z-index: 5;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 4px; height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(8px); opacity: 0; }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Orbit system */
.hero-orbit-system {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}
.orbit {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  transform-origin: center;
}
.orbit-a { width: 600px; height: 600px; margin: -300px 0 0 -300px; animation: orbitRotate 20s linear infinite; }
.orbit-b { width: 420px; height: 420px; margin: -210px 0 0 -210px; animation: orbitRotate 14s linear infinite reverse; }
.orbit-c { width: 260px; height: 260px; margin: -130px 0 0 -130px; animation: orbitRotate 9s linear infinite; }
@keyframes orbitRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.orbit-planet {
  position: absolute;
  border-radius: 50%;
  top: -6px; left: 50%;
  transform: translateX(-50%);
}
.planet-1 { width: 12px; height: 12px; background: var(--accent-blue); box-shadow: 0 0 20px var(--accent-blue); }
.planet-2 { width: 8px; height: 8px; background: var(--accent-violet); box-shadow: 0 0 16px var(--accent-violet); }
.planet-3 { width: 6px; height: 6px; background: var(--accent-gold); box-shadow: 0 0 12px var(--accent-gold); }

/* =====================================================
   TICKER RIBBON
   ===================================================== */
.ribbon-ticker {
  background: linear-gradient(90deg, rgba(0,212,255,0.08), rgba(167,139,250,0.08));
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ribbon-inner {
  display: inline-flex;
  gap: 48px;
  animation: ribbonScroll 30s linear infinite;
}
.ribbon-inner span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--dim);
}
@keyframes ribbonScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =====================================================
   UNIVERSE BASE STYLES
   ===================================================== */
.universe {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0;
}

.u-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.08;
  z-index: 0;
  filter: saturate(0.5);
}
.u-bg-img.dark-img { opacity: 0.05; }

.universe-layout {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.universe-layout.layout-reverse { }
.universe-layout.layout-reverse .u-text { order: 2; }
.universe-layout.layout-reverse .u-visual { order: 1; }
.universe-layout.layout-center {
  grid-template-columns: 1fr;
  gap: 48px;
  text-align: center;
}

.u-number {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 800;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: -30px;
  left: -10px;
  pointer-events: none;
  letter-spacing: -0.05em;
}
.u-number.blood { color: rgba(180,0,0,0.1); }
.u-number.gold { color: rgba(251,191,36,0.08); }
.u-text { position: relative; padding-top: 20px; }
.u-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-blue);
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.u-text h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--white);
}
.u-text h2 em {
  font-style: normal;
  display: block;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.u-text p {
  color: var(--dim);
  font-size: 16px;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 28px;
}
.u-text.centered p { margin-left: auto; margin-right: auto; }

.u-features { margin-bottom: 36px; display: flex; flex-direction: column; gap: 12px; }
.u-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--off-white);
}
.feat-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.u-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.centered-btns { justify-content: center; }
.u-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 400px; }

/* GLOW CIRCLES */
.glow-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
}
.ww-glow { width: 400px; height: 400px; background: rgba(0,212,255,0.12); }
.grind-glow { width: 350px; height: 350px; background: rgba(255,100,0,0.12); }
.tv-glow { width: 350px; height: 350px; background: rgba(0,255,157,0.1); }
.lambra-glow { width: 350px; height: 350px; background: rgba(180,0,0,0.15); }
.qr-glow { width: 300px; height: 300px; background: rgba(0,212,255,0.1); }
.football-glow { width: 400px; height: 400px; background: rgba(255,200,0,0.12); }
.kumbha-glow { width: 380px; height: 380px; background: rgba(251,191,36,0.1); }

/* =====================================================
   UNIVERSE 1: WEBWORKS
   ===================================================== */
.universe-webworks {
  background: linear-gradient(135deg, #020b1a 0%, #04040f 50%, #0a0218 100%);
}
.u-bg-fx { position: absolute; inset: 0; pointer-events: none; }
#codeCanvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.5; }
.neon-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Floating cards */
.webworks-visual { flex-direction: column; gap: 16px; }
.floating-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  padding: 16px 20px;
  position: absolute;
  transition: transform 0.3s ease;
}
.floating-card:hover { transform: translateY(-6px) !important; }
.card-1 { top: 20px; left: 0px; width: 220px; animation: cardFloat 4s ease-in-out infinite; }
.card-2 { bottom: 40px; left: 20px; width: 200px; animation: cardFloat 5s ease-in-out infinite 0.5s; }
.card-3 { top: 50%; right: 0; transform: translateY(-50%); width: 140px; animation: cardFloat 3.5s ease-in-out infinite 1s; text-align: center; }
.card-4 { bottom: 20px; right: 20px; width: 200px; animation: cardFloat 4.5s ease-in-out infinite 0.8s; }

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.card-3:hover { transform: translateY(-50%) translateY(-6px) !important; }

.card-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 6px; }
.card-dot.green { background: #00ff9d; }
.card-dot.yellow { background: #fbbf24; }
.card-dot.red { background: #ff4d4d; }
.card-code { font-family: var(--font-mono); font-size: 12px; margin-top: 10px; line-height: 1.8; }
.c-tag { color: var(--accent-blue); }
.c-prop { color: var(--accent-violet); }
.c-val { color: var(--accent-gold); }

.card-metric { display: flex; align-items: baseline; gap: 8px; margin-bottom: 8px; }
.metric-val { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--accent-green); }
.metric-label { font-size: 12px; color: var(--dim); }
.metric-bar { height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.metric-fill { height: 100%; background: linear-gradient(90deg, var(--accent-green), var(--accent-blue)); border-radius: 2px; transition: width 1s ease; }

.card-icon-large { font-size: 36px; display: block; margin-bottom: 8px; }
.card-label { font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; }

.card-stat-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; font-size: 13px; color: var(--dim); }
.badge { padding: 2px 8px; border-radius: 4px; font-size: 11px; font-family: var(--font-mono); }
.badge.green { background: rgba(0,255,157,0.15); color: var(--accent-green); }
.badge.blue { background: rgba(0,212,255,0.15); color: var(--accent-blue); }
.badge.purple { background: rgba(167,139,250,0.15); color: var(--accent-violet); }

/* =====================================================
   UNIVERSE 2: TOOLKIT
   ===================================================== */
.universe-toolkit {
  background: linear-gradient(180deg, #04040f 0%, #080818 50%, #04040f 100%);
}
.toolkit-bg-fx {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(167,139,250,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0,212,255,0.08) 0%, transparent 50%);
}
.toolkit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}
.tool-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s, border-color 0.3s, background 0.3s, box-shadow 0.3s;
  backdrop-filter: blur(10px);
}
.tool-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(0,212,255,0.3);
  background: rgba(0,212,255,0.05);
  box-shadow: 0 20px 60px rgba(0,212,255,0.1);
}
.tool-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.tool-name { font-family: var(--font-display); font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.tool-desc { font-size: 13px; color: var(--dim); line-height: 1.5; }

/* =====================================================
   UNIVERSE 3: GRINDLIST
   ===================================================== */
.universe-grindlist {
  background: linear-gradient(135deg, #080808 0%, #0f0800 40%, #050510 100%);
}
.glitch-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.glitch-lines::before, .glitch-lines::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,100,0,0.3), transparent);
  animation: glitchLine 6s ease-in-out infinite;
}
.glitch-lines::before { top: 30%; animation-delay: 0s; }
.glitch-lines::after { top: 70%; animation-delay: 2.5s; }
@keyframes glitchLine {
  0%, 100% { opacity: 0; transform: translateX(-100%); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translateX(100%); }
}

/* Dashboard Mock */
.dashboard-mock {
  background: rgba(10,10,20,0.9);
  border: 1px solid rgba(255,100,0,0.2);
  border-radius: 20px;
  padding: 28px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 0 60px rgba(255,100,0,0.08), inset 0 1px 0 rgba(255,255,255,0.05);
}
.dash-header { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.dash-avatar { font-size: 32px; }
.dash-name { font-family: var(--font-display); font-weight: 700; font-size: 16px; }
.dash-level { font-size: 12px; color: var(--dim); font-family: var(--font-mono); }
.dash-xp-badge {
  margin-left: auto;
  background: rgba(255,100,0,0.15);
  border: 1px solid rgba(255,100,0,0.3);
  color: var(--accent-orange);
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 50px;
}
.xp-bar-wrap { margin-bottom: 20px; }
.xp-bar-label { display: flex; justify-content: space-between; font-size: 12px; color: var(--dim); margin-bottom: 8px; }
.xp-bar { height: 6px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; }
.xp-fill { height: 100%; background: linear-gradient(90deg, var(--accent-orange), #ff4d4d); border-radius: 3px; box-shadow: 0 0 12px rgba(255,100,0,0.5); transition: width 1.5s ease; }
.dash-stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 20px; }
.dash-stat { background: rgba(255,255,255,0.03); border-radius: 10px; padding: 12px; text-align: center; }
.ds-val { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--accent-orange); }
.ds-label { font-size: 11px; color: var(--dim); margin-top: 2px; }
.task-list { display: flex; flex-direction: column; gap: 8px; }
.task-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; background: rgba(255,255,255,0.02); font-size: 13px; color: var(--dim); }
.task-item.done { color: rgba(255,255,255,0.4); }
.task-item.done .task-check { color: var(--accent-green); }
.task-item.active { color: var(--white); background: rgba(255,100,0,0.08); border: 1px solid rgba(255,100,0,0.2); }
.task-item.active .task-check { color: var(--accent-orange); }
.task-check { font-family: var(--font-mono); font-size: 14px; width: 20px; flex-shrink: 0; }
.task-xp { margin-left: auto; font-family: var(--font-mono); font-size: 11px; color: var(--accent-orange); }

.universe-grindlist .u-tag { color: var(--accent-orange); border-color: rgba(255,100,0,0.3); background: rgba(255,100,0,0.08); }
.universe-grindlist h2 em { background: linear-gradient(135deg, var(--accent-orange), #ff4d4d); -webkit-background-clip: text; background-clip: text; }
.universe-grindlist .btn-primary { background: linear-gradient(135deg, var(--accent-orange), #ff4d4d); box-shadow: 0 8px 32px rgba(255,100,0,0.3); color: var(--white); }

/* =====================================================
   UNIVERSE 4: FineTix
   ===================================================== */
.universe-FineTix {
  background: linear-gradient(135deg, #001a0a 0%, #04040f 40%, #001a05 100%);
  padding-top: 160px;
}
.ticker-bar {
  position: absolute;
  top: 80px; left: 0; right: 0;
  overflow: hidden;
  background: rgba(0,255,157,0.04);
  border-top: 1px solid rgba(0,255,157,0.1);
  border-bottom: 1px solid rgba(0,255,157,0.1);
  padding: 10px 0;
  white-space: nowrap;
  z-index: 3;
}
.ticker-inner { display: inline-flex; gap: 40px; animation: tickerMove 20s linear infinite; }
.tick { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; padding: 0 8px; }
.tick.up { color: var(--accent-green); }
.tick.down { color: var(--accent-red); }
@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.chart-mock {
  background: rgba(0,10,5,0.8);
  border: 1px solid rgba(0,255,157,0.15);
  border-radius: 20px;
  padding: 24px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 0 60px rgba(0,255,157,0.06);
}
.chart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.chart-name { font-family: var(--font-mono); font-size: 13px; color: var(--dim); }
.chart-price { font-family: var(--font-display); font-size: 20px; font-weight: 700; }
.price-change.up { font-size: 14px; color: var(--accent-green); }
.candlestick-chart { width: 100%; height: 160px; display: block; }
.chart-bottom-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-top: 16px; }
.cbs { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; }
.cbs span:first-child { color: var(--dim); }
.cbs span:last-child { font-family: var(--font-mono); color: var(--white); }

.universe-FineTix .u-tag { color: var(--accent-green); border-color: rgba(0,255,157,0.3); background: rgba(0,255,157,0.08); }
.universe-FineTix h2 em { background: linear-gradient(135deg, var(--accent-green), var(--accent-blue)); -webkit-background-clip: text; background-clip: text; }
.universe-FineTix .btn-primary { background: linear-gradient(135deg, #00a86b, var(--accent-green)); color: #001a0a; box-shadow: 0 8px 32px rgba(0,255,157,0.3); }

/* =====================================================
   UNIVERSE 5: LAMBRA
   ===================================================== */
.universe-lambra {
  background: #000000;
  min-height: 100vh;
}
.fog-container { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 1; }
.fog-layer {
  position: absolute;
  bottom: 0;
  width: 200%;
  height: 180px;
  background: linear-gradient(transparent, rgba(20,5,5,0.6));
  border-radius: 50%;
  animation: fogDrift ease-in-out infinite;
}
.fog-1 { animation-duration: 8s; opacity: 0.6; }
.fog-2 { animation-duration: 12s; animation-delay: -4s; opacity: 0.4; height: 120px; bottom: 20px; }
.fog-3 { animation-duration: 16s; animation-delay: -8s; opacity: 0.3; height: 80px; bottom: 40px; }
@keyframes fogDrift {
  0%, 100% { transform: translateX(-10%); }
  50% { transform: translateX(10%); }
}
.flicker-light {
  position: absolute;
  top: 10%; right: 15%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(200,150,50,0.05) 0%, transparent 70%);
  animation: flicker 3s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}
@keyframes flicker {
  0%, 100% { opacity: 1; }
  45% { opacity: 1; }
  50% { opacity: 0.4; }
  55% { opacity: 1; }
  70% { opacity: 1; }
  75% { opacity: 0.7; }
  80% { opacity: 1; }
}

.lambra-text .u-tag { color: #cc4444; border-color: rgba(200,50,50,0.3); background: rgba(200,0,0,0.08); }
.lambra-text h2 em { background: linear-gradient(135deg, #cc4444, #880000); -webkit-background-clip: text; background-clip: text; }
.lambra-p { color: rgba(200,180,180,0.7); }
.lambra-quote {
  font-family: var(--font-mono);
  font-size: 14px;
  font-style: italic;
  color: rgba(200,150,150,0.6);
  border-left: 2px solid rgba(200,50,50,0.4);
  padding-left: 16px;
  margin-bottom: 24px;
}
.lambra-features .feat-icon { background: rgba(200,0,0,0.1); }

/* Lambra Eye */
.lambra-eye-container { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.lambra-eye {
  position: relative;
  width: 200px; height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eye-outer {
  width: 200px; height: 100px;
  border-radius: 50% / 50%;
  border: 2px solid rgba(200,50,50,0.4);
  position: absolute;
  animation: eyeBlink 4s ease-in-out infinite;
}
.eye-iris {
  width: 80px; height: 80px;
  background: radial-gradient(circle, #8b0000 0%, #330000 60%, #000 100%);
  border-radius: 50%;
  position: absolute;
  box-shadow: 0 0 30px rgba(200,0,0,0.4), inset 0 0 20px rgba(0,0,0,0.5);
  animation: irisMove 8s ease-in-out infinite;
}
.eye-pupil {
  width: 30px; height: 30px;
  background: #000;
  border-radius: 50%;
  position: absolute;
  box-shadow: 0 0 10px rgba(200,0,0,0.3);
}
.eye-glow-ring {
  width: 100px; height: 100px;
  border-radius: 50%;
  border: 1px solid rgba(200,50,50,0.15);
  position: absolute;
  animation: eyePulse 2s ease-in-out infinite;
}
@keyframes eyeBlink {
  0%, 90%, 100% { transform: scaleY(1); }
  95% { transform: scaleY(0.05); }
}
@keyframes irisMove {
  0%, 100% { transform: translateX(0) translateY(0); }
  25% { transform: translateX(-15px) translateY(-5px); }
  50% { transform: translateX(15px) translateY(5px); }
  75% { transform: translateX(-8px) translateY(8px); }
}
@keyframes eyePulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.3); opacity: 0; }
}
.eye-caption {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: rgba(200,50,50,0.6);
  text-transform: uppercase;
}

/* =====================================================
   UNIVERSE 6: MERGE GAME
   ===================================================== */
.universe-merge {
  background: linear-gradient(135deg, #0a0015 0%, #150028 50%, #0a001a 100%);
}
.confetti-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.confetti-piece {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  animation: confettiFall linear infinite;
}
@keyframes confettiFall {
  0% { transform: translateY(-20px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

.merge-board-demo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}
.merge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.merge-cell {
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  animation: cellPulse ease-in-out infinite;
}
.merge-cell:hover { transform: scale(1.15); background: rgba(255,255,255,0.12); box-shadow: 0 8px 24px rgba(255,255,255,0.1); }
.merge-cell.special {
  background: rgba(255,215,0,0.1);
  border-color: rgba(255,215,0,0.4);
  box-shadow: 0 0 20px rgba(255,215,0,0.2);
  animation: specialPulse 2s ease-in-out infinite;
}
.c1 { animation-duration: 3.1s; animation-delay: 0s; }
.c2 { animation-duration: 2.8s; animation-delay: 0.2s; }
.c3 { animation-duration: 3.4s; animation-delay: 0.4s; }
.c4 { animation-duration: 2.6s; animation-delay: 0.6s; }
.c5 { animation-duration: 3.2s; animation-delay: 0.8s; }
.c6 { animation-duration: 2.9s; animation-delay: 1s; }
.c7 { animation-duration: 3.0s; animation-delay: 1.2s; }
.c8 { animation-duration: 2.7s; animation-delay: 1.4s; }
@keyframes cellPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes specialPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255,215,0,0.2); transform: scale(1); }
  50% { box-shadow: 0 0 40px rgba(255,215,0,0.5); transform: scale(1.05); }
}
.merge-hint {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--dim);
  letter-spacing: 0.1em;
  text-align: center;
}

.universe-merge .u-tag { color: #c77dff; border-color: rgba(199,125,255,0.3); background: rgba(199,125,255,0.08); }
.universe-merge h2 em { background: linear-gradient(135deg, #c77dff, #ff6b6b); -webkit-background-clip: text; background-clip: text; }
.universe-merge .btn-game { margin: auto; }

/* =====================================================
   UNIVERSE 7: QR LAB
   ===================================================== */
.universe-qr {
  background: linear-gradient(135deg, #020a12 0%, #04040f 50%, #001220 100%);
}
.scan-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
  animation: scanMove 4s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}
@keyframes scanMove {
  0% { top: 0%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.qr-demo-card {
  background: rgba(0,212,255,0.04);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-shadow: 0 0 60px rgba(0,212,255,0.06);
  position: relative;
  overflow: hidden;
  max-width: 300px;
}
.qr-demo-header {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--accent-blue);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.qr-version {
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.3);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
}
.qr-code-art { position: relative; }
.qr-scan-anim {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
  animation: qrScan 2s ease-in-out infinite;
  filter: blur(1px);
}
@keyframes qrScan {
  0% { top: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
.qr-url { font-family: var(--font-mono); font-size: 11px; color: var(--dim); text-align: center; }

/* =====================================================
   UNIVERSE 8: FOOTBALL
   ===================================================== */
.universe-football {
  background: linear-gradient(135deg, #030a00 0%, #04040f 50%, #0a0800 100%);
}
.stadium-lights { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 1; }
.light {
  position: absolute;
  top: -100px;
  width: 200px; height: 400px;
  background: linear-gradient(180deg, rgba(255,255,200,0.04) 0%, transparent 100%);
  filter: blur(30px);
  animation: lightSway 6s ease-in-out infinite;
}
.light-l { left: 10%; transform-origin: top center; }
.light-r { right: 10%; transform-origin: top center; animation-delay: 2s; }
@keyframes lightSway {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

.football-card {
  background: linear-gradient(135deg, #1a2a00, #0d1a05, #0a1200);
  border: 1px solid rgba(255,220,0,0.2);
  border-radius: 20px;
  padding: 32px;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 0 60px rgba(255,220,0,0.06);
  position: relative;
  overflow: hidden;
}
.football-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255,220,0,0.03) 0%, transparent 50%);
  animation: cardPulse 4s ease-in-out infinite;
}
@keyframes cardPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
.fc-position {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-gold);
  border: 1px solid rgba(251,191,36,0.3);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.fc-rating {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 4px;
  text-shadow: 0 0 40px rgba(251,191,36,0.4);
}
.fc-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.fc-stats { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.fc-stat-row { display: flex; align-items: center; gap: 12px; font-size: 12px; font-family: var(--font-mono); color: var(--dim); }
.fc-stat-row span:first-child { width: 30px; }
.fc-stat-row span:last-child { width: 24px; text-align: right; color: var(--white); }
.fc-bar { flex: 1; height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.fc-bar-fill { height: 100%; background: linear-gradient(90deg, var(--accent-gold), #ff9d00); border-radius: 2px; transition: width 1.5s ease; }
.fc-badge {
  display: inline-block;
  background: rgba(251,191,36,0.1);
  border: 1px solid rgba(251,191,36,0.3);
  color: var(--accent-gold);
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.1em;
}

.universe-football .u-tag { color: var(--accent-gold); border-color: rgba(251,191,36,0.3); background: rgba(251,191,36,0.08); }
.universe-football h2 em { background: linear-gradient(135deg, var(--accent-gold), #ff9d00); -webkit-background-clip: text; background-clip: text; }
.universe-football .btn-primary { background: linear-gradient(135deg, #b8860b, var(--accent-gold)); color: #1a0e00; box-shadow: 0 8px 32px rgba(251,191,36,0.3); }

/* =====================================================
   UNIVERSE 9: KUMBHA
   ===================================================== */
.universe-kumbha {
  background: linear-gradient(135deg, #0d0800 0%, #04040f 40%, #100a00 100%);
}
.mandala-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
}
.mandala-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--accent-gold);
}
.m-ring-1 { width: 600px; height: 600px; animation: mandalaSpin 40s linear infinite; border-style: dashed; }
.m-ring-2 { width: 420px; height: 420px; animation: mandalaSpin 25s linear infinite reverse; }
.m-ring-3 { width: 240px; height: 240px; animation: mandalaSpin 15s linear infinite; border-style: dotted; }
.mandala-center { width: 40px; height: 40px; background: radial-gradient(circle, var(--accent-gold), transparent); border-radius: 50%; animation: mandalaGlow 3s ease-in-out infinite; }
@keyframes mandalaSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes mandalaGlow {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}

.kumbha-text .u-tag { color: var(--accent-gold); border-color: rgba(251,191,36,0.3); background: rgba(251,191,36,0.08); }
.kumbha-text h2 em { background: linear-gradient(135deg, var(--accent-gold), #f59e0b); -webkit-background-clip: text; background-clip: text; }
.kumbha-features .feat-icon { background: rgba(251,191,36,0.08); }

.kumbha-card {
  background: rgba(20,14,0,0.85);
  border: 1px solid rgba(251,191,36,0.2);
  border-radius: 20px;
  padding: 36px 32px;
  max-width: 380px;
  text-align: center;
  box-shadow: 0 0 60px rgba(251,191,36,0.06);
}
.kumbha-symbol {
  font-size: 48px;
  display: block;
  margin-bottom: 20px;
  color: var(--accent-gold);
  text-shadow: 0 0 30px rgba(251,191,36,0.5);
  animation: symbolFloat 4s ease-in-out infinite;
}
@keyframes symbolFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(5deg); }
}
.kumbha-quote-text {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 16px;
  color: rgba(255,220,150,0.9);
  line-height: 1.7;
  margin-bottom: 8px;
}
.kumbha-attribution { font-family: var(--font-mono); font-size: 11px; color: var(--dim); letter-spacing: 0.1em; }
.kumbha-divider { width: 60px; height: 1px; background: rgba(251,191,36,0.3); margin: 20px auto; }
.kumbha-tags { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.k-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  border: 1px solid rgba(251,191,36,0.2);
  padding: 4px 10px;
  border-radius: 50px;
  background: rgba(251,191,36,0.05);
}

/* =====================================================
   CONNECT SECTION
   ===================================================== */
.connect-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px;
  background: linear-gradient(180deg, #04040f 0%, #080818 100%);
  overflow: hidden;
}
#connectCanvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.connect-content { position: relative; z-index: 2; width: 100%; max-width: 1100px; margin: 0 auto; }
.connect-header { text-align: center; margin-bottom: 64px; }
.u-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--accent-violet);
  border: 1px solid rgba(167,139,250,0.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  background: rgba(167,139,250,0.05);
}
.connect-header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.connect-header h2 em { font-style: normal; background: linear-gradient(135deg, var(--accent-violet), var(--accent-blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.connect-header p { color: var(--dim); font-size: 17px; max-width: 500px; margin: auto; }

.connect-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}
.connect-info { display: flex; flex-direction: column; gap: 20px; }
.info-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color 0.2s, background 0.2s;
}
.info-card:hover { border-color: rgba(167,139,250,0.2); background: rgba(167,139,250,0.04); }
.info-icon { font-size: 24px; width: 48px; height: 48px; background: rgba(255,255,255,0.05); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-label { font-size: 11px; color: var(--dim); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; font-family: var(--font-mono); }
.info-val { font-size: 14px; color: var(--white); }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-btn {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  font-size: 16px;
  font-family: var(--font-mono);
  color: var(--dim);
  transition: all 0.2s;
}
.social-btn:hover { color: var(--white); border-color: rgba(167,139,250,0.4); background: rgba(167,139,250,0.1); transform: translateY(-3px); }

/* Contact Form */
.contact-form {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  backdrop-filter: blur(10px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 12px; color: var(--dim); letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--font-mono); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(167,139,250,0.5);
  background: rgba(167,139,250,0.04);
  box-shadow: 0 0 0 3px rgba(167,139,250,0.08);
}
.form-group select option { background: #0a0a1f; color: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; font-size: 15px; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: #020208;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 64px 40px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-logo { width: 48px; height: 48px; object-fit: contain; filter: brightness(0.7); }
.footer-name { font-family: var(--font-display); font-size: 18px; font-weight: 800; letter-spacing: 0.12em; color: var(--white); }
.footer-tagline { font-size: 14px; color: var(--dim); max-width: 320px; line-height: 1.6; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.fc-title { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dim); margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--dim);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-back-top a { color: var(--accent-blue); transition: opacity 0.2s; }
.footer-back-top a:hover { opacity: 0.7; }

/* =====================================================
   SCROLL REVEAL
   ===================================================== */
[data-scroll-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
[data-scroll-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  .universe-layout { gap: 48px; padding: 0 32px; }
  .toolkit-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(4,4,15,0.97); flex-direction: column; align-items: center; justify-content: center; gap: 8px; z-index: 999; backdrop-filter: blur(20px); padding: 80px 40px; transition: opacity 0.3s, visibility 0.3s; opacity: 0; visibility: hidden; }
  .nav-links.open { display: flex; opacity: 1; visibility: visible; }
  .nav-links a { font-size: 18px; padding: 12px 24px; width: 100%; text-align: center; }
  .nav-links .nav-cta { margin-left: 0; margin-top: 8px; }
  .hamburger { display: flex; }

  .universe-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 24px;
  }
  .universe-layout.layout-reverse .u-text { order: 1; }
  .universe-layout.layout-reverse .u-visual { order: 2; }

  .u-visual { min-height: 300px; }
  .floating-card { position: relative; }
  .card-1, .card-2, .card-3, .card-4 { position: relative; top: auto; left: auto; right: auto; bottom: auto; animation: none; }
  .webworks-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: start; }
  .card-3 { transform: none !important; }

  .hero-stats { flex-direction: column; gap: 20px; }
  .stat-divider { width: 60px; height: 1px; }
  .stat { padding: 0; }

  .connect-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }

  .orbit-a { width: 300px; height: 300px; margin: -150px 0 0 -150px; }
  .orbit-b { width: 210px; height: 210px; margin: -105px 0 0 -105px; }
  .orbit-c { width: 130px; height: 130px; margin: -65px 0 0 -65px; }

  .toolkit-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-links { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hero-title { font-size: clamp(40px, 12vw, 64px); }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn { padding: 13px 24px; font-size: 13px; }

  .toolkit-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .tool-card { padding: 20px 14px; }
  .tool-icon { font-size: 28px; margin-bottom: 10px; }
  .tool-name { font-size: 13px; }
  .tool-desc { font-size: 12px; }

  .u-text h2 { font-size: clamp(32px, 9vw, 52px); }

  .merge-cell { width: 64px; height: 64px; font-size: 24px; border-radius: 12px; }
  .dashboard-mock { padding: 20px; }
  .chart-mock { padding: 20px; }
  .football-card { padding: 24px; }
  .contact-form { padding: 24px 20px; }

  .connect-section { padding: 80px 20px; }
  .footer { padding: 48px 20px 24px; }
  .footer-inner { gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .webworks-visual { grid-template-columns: 1fr; }
  .universe { padding: 80px 0; }

  .hero-orbit-system { display: none; }
  .cursor, .cursor-trail { display: none; }
  body { cursor: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
.connect-section {
  position: relative;
  padding: 100px 5%;
  background: radial-gradient(circle, #020617, #000);
  color: white;
}



.connect-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  padding: 15px;
  border-radius: 12px;
  background: #020617;
  border: 1px solid #1e293b;
  transition: 0.3s;
}

.clickable:hover {
  transform: translateY(-5px);
  border-color: #3b82f6;
}

.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: #020617;
  color: white;
}

.btn-primary {
  background: #3b82f6;
  padding: 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.form-success {
  display: none;
  color: #22c55e;
  margin-top: 10px;
}

/* ROBOT */
.robot {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #020617;
  padding: 15px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(59,130,246,0.5);
  text-align: center;
}

.robot-face {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 5px;
}

.eye {
  width: 10px;
  height: 10px;
  background: #3b82f6;
  border-radius: 50%;
  animation: blink 4s infinite;
}

@keyframes blink {
  0%, 90%, 100% { height: 10px; }
  95% { height: 2px; }
}

.mouth {
  width: 20px;
  height: 4px;
  background: #3b82f6;
  margin: auto;
  border-radius: 2px;
}

.robot-text {
  font-size: 12px;
  opacity: 0.7;
}
/* ===== ABOUT SECTION ===== */
.about-section {
  position: relative;
  padding: 120px 8%;
  background: radial-gradient(circle at center, #0a0a1a, #050510);
  overflow: hidden;
}

.about-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,255,200,0.15), transparent);
  filter: blur(120px);
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
}

.about-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* TEXT */
.about-text h2 {
  font-size: 42px;
  margin: 20px 0;
}

.about-desc {
  opacity: 0.8;
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-highlight {
  margin-top: 20px;
  font-weight: bold;
  color: #00ffd5;
  font-size: 18px;
}

.about-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.about-stat span {
  font-size: 28px;
  font-weight: bold;
}

/* FOUNDER CARD */
.founder-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
}

.founder-image-wrap {
  width: 120px;
  height: 120px;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
}

.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-fallback {
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  height: 100%;
  background: #111;
}

.founder-logo {
  width: 40px;
  margin-top: 15px;
}

.founder-role {
  opacity: 0.6;
  font-size: 14px;
}

.founder-desc {
  margin-top: 10px;
  opacity: 0.85;
}

.founder-tags {
  margin-top: 15px;
}

.founder-tags span {
  margin: 5px;
  padding: 5px 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: inline-block;
  font-size: 12px;
}

/* MOBILE */
@media(max-width: 900px){
  .about-container {
    grid-template-columns: 1fr;
  }
}
/* ===== MOBILE MENU (UPGRADE) ===== */

.mobile-menu {
  position: fixed;
  top: 20px;
  right: -100%;
  
  width: 280px; /* smaller */
  height: calc(100vh - 40px); /* margin top/bottom */
  
  background: rgba(10, 10, 25, 0.9);
  backdrop-filter: blur(20px);

  border-radius: 16px; /* 🔥 gives that clean square card feel */
  border: 1px solid rgba(255,255,255,0.08);

  z-index: 2000;

  transition: right 0.4s cubic-bezier(0.22,1,0.36,1);
  overflow: hidden;
}

.mobile-menu.open {
  right: 20px;
}

/* HEADER */
.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-title {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--dim);
}
.menu-inner {
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px; /* reduced */
}
.menu-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
}

/* LINKS */
.menu-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-links a {
  padding: 10px 14px; /* smaller */
  border-radius: 10px;

  font-size: 14px; /* tighter */

  background: rgba(255,255,255,0.03);

  transition: all 0.2s ease;
}

.menu-links a:hover {
  background: rgba(0,212,255,0.08);
  border-color: rgba(0,212,255,0.2);
  color: var(--white);
  transform: translateX(6px);
}
#successMessage {
  text-align: center;
  font-size: 20px;
  padding: 40px;
  color: #00ff9d;
}
/* FLOATING BUTTONS */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fab {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  transition: 0.3s ease;
}

/* WhatsApp */
.whatsapp-fab {
  background: #25D366;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
}

/* Call */
.call-fab {
  background: #007bff;
}

.call-fab:hover {
  transform: scale(1.1);
}
.whatsapp-cta {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(12px);
  text-align: left;
}

.whatsapp-cta h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.whatsapp-cta p {
  color: var(--dim);
  margin-bottom: 20px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}