/* =========================
GLOBAL DESIGN SYSTEM
========================= */

:root{
  --bg:#05070d;
  --bg-soft:#0b0f1a;

  --text:#e6edf3;
  --muted:#8b949e;

  --accent:#7c5cff;
  --accent2:#00d4ff;

  --glass:rgba(255,255,255,.05);
  --border:rgba(255,255,255,.12);

  --max-width:1200px;
}

/* =========================
RESET
========================= */

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

img{
  max-width:100%;
  display:block;
}

body{
  font-family:Inter,system-ui;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

/* =========================
TYPOGRAPHY
========================= */

h1{
  font-size:clamp(42px,6vw,72px);
  font-weight:800;
}

h2{
  font-size:clamp(28px,4vw,42px);
  font-weight:700;
}

h3{
  font-size:20px;
}

p{
  font-size:16px;
  line-height:1.7;
  color:var(--muted);
}

/* =========================
BACKGROUND SYSTEM
========================= */

body::before{
  content:"";
  position:fixed;
  inset:0;
  background:
    radial-gradient(circle at 20% 30%, rgba(124,92,255,.2), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0,212,255,.15), transparent 40%);
  animation:moveBg 12s infinite alternate ease-in-out;
  z-index:-3;
}

@keyframes moveBg{
  0%{transform:translate(0,0)}
  100%{transform:translate(-50px,-40px)}
}

canvas{
  position:fixed;
  inset:0;
  z-index:-4;
}

/* =========================
HEADER
========================= */

.header{
  position:fixed;
  top:0;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:16px 60px;

  backdrop-filter:blur(14px);
  background:rgba(5,7,12,.7);
  border-bottom:1px solid var(--border);

  z-index:100;
}

.logo-ignite{
  height:40px;
}

.header nav a{
  margin-left:20px;
  text-decoration:none;
  color:var(--text);
  opacity:.7;
  font-size:14px;
  position:relative;
}

.header nav a:hover{
  opacity:1;
  color:var(--accent2);
}

.header nav a::after{
  content:"";
  position:absolute;
  bottom:-6px;
  left:0;
  width:0%;
  height:2px;
  background:linear-gradient(90deg,var(--accent),var(--accent2));
  transition:.3s;
}

.header nav a:hover::after{
  width:100%;
}

/* =========================
🔥 HERO (APPLE STYLE SPLIT)
========================= */

.hero{
  display:flex;
  justify-content:space-between;
  align-items:center;

  max-width:var(--max-width);
  .hero{
  margin:120px auto 40px; /* balanced */
}
  padding:0 60px;

  gap:60px;
}

.hero-left{
  flex:1;
  max-width:600px;
}

.hero-right{
  flex:1;
  display:flex;
  justify-content:center;
  align-items:center;
}

/* HERO TEXT */

.hero-left h1{
  line-height:1.1;

  background:linear-gradient(90deg,var(--accent),var(--accent2));
  -webkit-background-clip:text;
  color:transparent;

  margin-bottom:20px;
}

.hero-left p{
  font-size:18px;
  opacity:.9;
  margin-top:10px;
}

/* HERO BUTTON ROW */

.hero-cta-row{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

/* HERO VISUAL */

.hero-visual{
  width:320px;
  height:320px;
  border-radius:50%;

  background:
    radial-gradient(circle at 30% 30%, var(--accent), transparent 60%),
    radial-gradient(circle at 70% 70%, var(--accent2), transparent 60%);

  filter:blur(30px);
  animation:floatHero 8s ease-in-out infinite;
}

@keyframes floatHero{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-30px)}
}

/* =========================
STATUS BAR
========================= */

.system-status-bar{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:20px;
}

.status-item{
  background:var(--glass);
  border:1px solid var(--border);
  padding:10px 16px;
  border-radius:10px;
  font-size:14px;
}

.status-item .label{
  display:block;
  font-size:11px;
  color:var(--muted);
}

/* =========================
CTA
========================= */

.cta{
  display:inline-block;
  margin-top:20px;
  padding:14px 28px;
  border-radius:12px;

  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:white;
  text-decoration:none;
  font-weight:600;

  transition:.3s;
  position:relative;
  overflow:hidden;
}

.cta:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 50px rgba(124,92,255,.5);
}

.cta::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,transparent,rgba(255,255,255,.3),transparent);
  opacity:0;
  transition:.4s;
}

.cta:hover::before{
  opacity:1;
}

/* =========================
SECTIONS
========================= */

.panel{
  max-width:var(--max-width);
  margin:80px auto; /* 🔥 reduced */
  padding:0 40px;
}
.section-sub{
  margin-top:10px;
}

/* =========================
GRID
========================= */

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:20px;
  margin-top:40px;
}

/* =========================
CARDS
========================= */

.card{
  padding:28px;
  border-radius:16px;

  background:var(--glass);
  border:1px solid var(--border);

  backdrop-filter:blur(14px);

  transition:.3s;
  position:relative;
}

.card:hover{
  transform:translateY(-8px);
  box-shadow:
    0 20px 60px rgba(0,0,0,.7),
    0 0 40px rgba(124,92,255,.2);
}

.card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:linear-gradient(120deg,transparent,rgba(124,92,255,.2),transparent);
  opacity:0;
  transition:.4s;
}

.card:hover::after{
  opacity:1;
}

/* =========================
FOOTER
========================= */

footer{
  text-align:center;
  padding:60px 20px;
  color:var(--muted);
}

/* =========================
ANIMATIONS
========================= */

.fade-in{
  opacity:0;
  transform:translateY(40px);
  transition:.8s ease;
}

.fade-in.visible{
  opacity:1;
  transform:translateY(0);
}

/* =========================
CURSOR GLOW
========================= */

.cursor{
  position:fixed;
  width:300px;
  height:300px;
  background:radial-gradient(circle, rgba(124,92,255,.15), transparent 60%);
  pointer-events:none;
  transform:translate(-50%,-50%);
  z-index:999;
}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

  .hero{
    flex-direction:column;
    text-align:center;
    padding:120px 20px;
  }

  .panel{
    padding:0 20px;
  }

  .header{
    padding:12px 20px;
  }

}
/* =========================
AI NEURAL SYSTEM SECTION
========================= */

.systems-ai{
  text-align:center;
  position:relative;
}

.neural-container{
  position:relative;
  height:400px;
  margin-top:60px;
}

.neural-node{
  position:absolute;
  left:var(--x);
  top:var(--y);

  transform:translate(-50%,-50%);
  padding:12px 20px;
  border-radius:20px;

  background:rgba(124,92,255,.15);
  border:1px solid var(--border);

  backdrop-filter:blur(10px);

  font-size:14px;
  transition:.3s;

  animation:floatNode 6s infinite ease-in-out;
}

@keyframes floatNode{
  0%,100%{transform:translate(-50%,-50%) translateY(0)}
  50%{transform:translate(-50%,-50%) translateY(-10px)}
}

.neural-node:hover{
  background:rgba(124,92,255,.3);
  box-shadow:0 0 30px rgba(124,92,255,.6);
  transform:translate(-50%,-50%) scale(1.1);
}

.neural-lines{
  position:absolute;
  width:100%;
  height:100%;
}

.neural-lines line{
  stroke:rgba(0,212,255,.3);
  stroke-width:1.5;
  stroke-dasharray:6;
  animation:flowLine 6s linear infinite;
}

@keyframes flowLine{
  0%{stroke-dashoffset:0}
  100%{stroke-dashoffset:100}
}
}
 
/* =========================
ARCHITECTURE FLOW SYSTEM (NEW)
========================= */

.architecture-flow{
  text-align:center;
}

.flow-diagram{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  margin-top:60px;
  flex-wrap:wrap;
}

.flow-box{
  padding:14px 24px;
  border-radius:14px;
  background:rgba(124,92,255,.15);
  border:1px solid var(--border);
  backdrop-filter:blur(12px);
  font-size:14px;
  transition:.3s;
}

.flow-box:hover{
  transform:translateY(-5px);
  box-shadow:0 0 30px rgba(124,92,255,.4);
}

.flow-line{
  width:40px;
  height:2px;
  background:linear-gradient(90deg,var(--accent),var(--accent2));
  position:relative;
  overflow:hidden;
}

.flow-line::after{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  background:linear-gradient(90deg,transparent,white,transparent);
  animation:flowMove 2s linear infinite;
}

@keyframes flowMove{
  0%{transform:translateX(-100%)}
  100%{transform:translateX(100%)}
}

.flow-details{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin-top:60px;
}

.flow-card{
  padding:24px;
  border-radius:16px;
  background:var(--glass);
  border:1px solid var(--border);
  backdrop-filter:blur(14px);
  text-align:left;
  transition:.3s;
}

.flow-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 50px rgba(0,0,0,.6);
}
}
/* =========================
AI LAB UI (HIGH-END)
========================= */

.lab-body{
  background:#02040a;
  font-family:Inter,system-ui;
  color:white;
}

/* CONTAINER */

.lab-container{
  max-width:1200px;
  margin:80px auto;
  padding:20px;
}

/* TITLE */

.lab-title{
  font-size:42px;
  margin-bottom:20px;
  background:linear-gradient(90deg,#00d4ff,#7c5cff);
  -webkit-background-clip:text;
  color:transparent;
}

/* NAV */

.lab-nav{
  margin-bottom:30px;
}

.lab-nav a{
  margin-right:20px;
  text-decoration:none;
  color:#8b949e;
  transition:.3s;
}

.lab-nav a:hover{
  color:#00d4ff;
}

/* GRID */

.lab-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

/* CARD */

.lab-card{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:16px;
  padding:20px;
  backdrop-filter:blur(10px);
  position:relative;
  overflow:hidden;
}

/* GLOW EFFECT */

.lab-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,transparent,rgba(0,212,255,.2),transparent);
  opacity:0;
  transition:.5s;
}

.lab-card:hover::before{
  opacity:1;
}

/* SIZES */

.lab-card.big{
  grid-column:span 2;
}

.lab-card.wide{
  grid-column:span 3;
}

/* TEXT */

.lab-card h2{
  margin-bottom:10px;
}

.lab-card p{
  color:#8b949e;
}

/* METER */

.lab-meter{
  margin-top:20px;
  height:6px;
  background:linear-gradient(90deg,#00d4ff,#7c5cff);
  border-radius:10px;
  animation:load 3s infinite;
}

@keyframes load{
  0%{width:20%}
  50%{width:80%}
  100%{width:40%}
}

/* MOBILE */

@media(max-width:768px){
  .lab-grid{
    grid-template-columns:1fr;
  }
}
/* =========================
CINEMATIC AI LAB UI
========================= */

.lab-body{
  margin:0;
  background:#02040a;
  color:white;
  overflow-x:hidden;
}

/* BACKGROUND */

.lab-bg{
  position:fixed;
  inset:0;
  background:
    radial-gradient(circle at 20% 30%, rgba(0,212,255,.15), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(124,92,255,.15), transparent 40%);
  animation:bgMove 12s infinite alternate;
  z-index:-2;
}

@keyframes bgMove{
  0%{transform:translate(0,0)}
  100%{transform:translate(-40px,-30px)}
}

/* CONTAINER */

.lab-container{
  max-width:1200px;
  margin:80px auto;
  padding:20px;
}

/* TITLE */

.lab-title{
  font-size:52px;
  font-weight:800;
  background:linear-gradient(90deg,#00d4ff,#7c5cff);
  -webkit-background-clip:text;
  color:transparent;
  margin-bottom:20px;
}

/* NAV */

.lab-nav{
  margin-bottom:40px;
}

.lab-nav a{
  margin-right:20px;
  color:#8b949e;
  text-decoration:none;
  transition:.3s;
}

.lab-nav a:hover{
  color:#00d4ff;
}

/* GRID */

.lab-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

/* CARD */

.lab-card{
  padding:24px;
  border-radius:16px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.1);
  backdrop-filter:blur(14px);
  position:relative;
  overflow:hidden;
  transition:.3s;
}

/* GLOW EFFECT */

.lab-card.glow::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,transparent,rgba(0,212,255,.3),transparent);
  opacity:0;
  transition:.5s;
}

.lab-card.glow:hover::before{
  opacity:1;
}

.lab-card:hover{
  transform:translateY(-6px);
  box-shadow:0 0 40px rgba(0,212,255,.2);
}

/* SIZES */

.lab-card.big{
  grid-column:span 2;
}

.lab-card.wide{
  grid-column:span 3;
}

/* TEXT */

.lab-card h2{
  margin-bottom:10px;
}

.lab-card p{
  color:#8b949e;
}

/* METER */

.lab-meter{
  height:6px;
  margin-top:20px;
  border-radius:10px;
  background:linear-gradient(90deg,#00d4ff,#7c5cff);
  animation:meter 3s infinite;
}

@keyframes meter{
  0%{width:20%}
  50%{width:80%}
  100%{width:40%}
}

/* MOBILE */

@media(max-width:768px){
  .lab-grid{
    grid-template-columns:1fr;
  }
}
/* =========================
AI SIGNAL NETWORK
========================= */

#lab-network{
  position:fixed;
  inset:0;
  z-index:-1;
  opacity:0.6;
}
/* ENERGY MODE */
body.energy-mode {
  background: radial-gradient(circle, #020617, #000);
}

/* PREMIUM MODE */
body.premium-mode {
  background: linear-gradient(135deg, #0f172a, #020617);
}

/* LOGO STYLE */
.logo-premium {
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
}

.logo-energy {
  filter: drop-shadow(0 0 20px cyan);
}

/* glow pulse */

.lab-card{
  position:relative;
}

.lab-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:radial-gradient(circle, rgba(0,212,255,.15), transparent 70%);
  opacity:0;
  transition:.4s;
}

.lab-card:hover::after{
  opacity:1;
}
/* =====================================
AI GROWTH PANEL (GLASS EFFECT)
===================================== */
.ai-growth-panel {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px; /* reduced */
}

.glass-card.strong {
  width: 100%;
  max-width: 850px;
  padding: 40px;

  background: rgba(10, 15, 25, 0.95); /* 🔥 stronger */
  border-radius: 18px;

  border: 1px solid rgba(0, 212, 255, 0.25);

  box-shadow: 
    0 10px 40px rgba(0,0,0,0.5);

  text-align: center;
}
.glass-card {
  width: 90%;
  max-width: 1100px;
  padding: 40px;

  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.1);

  text-align: center;
}

.growth-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.growth-box {
  padding: 20px;
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: 0.3s ease;
}

.growth-box:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 200, 255, 0.4);
}
/* =====================================
DAILY INTELLIGENCE PANEL (VISIBLE)
===================================== */

.ai-growth-panel {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 120px 20px;
}

.glass-card.strong {
  width: 90%;
  max-width: 900px;
  padding: 50px;

  background: rgba(10, 15, 25, 0.9);
  border-radius: 20px;

  backdrop-filter: blur(14px);

  border: 1px solid rgba(0, 200, 255, 0.25);

  text-align: center;

  box-shadow: 
    0 20px 80px rgba(0,0,0,0.6),
    0 0 40px rgba(0,212,255,0.1);
}

.daily-insight-box {
  margin: 40px 0;
  padding: 30px;

  border-radius: 16px;

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.insight-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.daily-action {
  margin: 30px 0;
  padding: 20px;
  border-radius: 14px;

  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
}
section {
  margin-top: 60px;
  margin-bottom: 60px;
}
/* =====================================
FINAL DAILY PANEL (CLEAN + PROFESSIONAL)
===================================== */

.ai-growth-panel {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}

.glass-card.strong {
  width: 100%;
  max-width: 850px;
  padding: 40px;

  background: rgba(10, 15, 25, 0.95);
  border-radius: 18px;

  border: 1px solid rgba(0, 212, 255, 0.25);

  box-shadow: 0 10px 40px rgba(0,0,0,0.5);

  text-align: center;
}

.daily-insight-box {
  margin: 30px 0;
  padding: 25px;

  border-radius: 14px;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.daily-action {
  margin: 25px 0;
  padding: 20px;

  border-radius: 12px;

  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
}

.growth-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
  margin-top: 30px;
}

.growth-box {
  padding: 18px;
  border-radius: 12px;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);

  transition: 0.3s;
}

.growth-box:hover {
  transform: translateY(-5px);
  border-color: rgba(0,212,255,0.4);
}

.insight-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
/* =====================================
UNIVERSE FLOATING HERO UI
===================================== */

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;

  max-width: var(--max-width);
  margin: 120px auto 60px;
  padding: 0 40px;
  gap: 40px;
}

/* FLOATING UI CONTAINER */

.hero-floating-ui {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

/* FLOATING INFO CARDS */

.floating-info {
  padding: 14px 20px;
  border-radius: 14px;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);

  backdrop-filter: blur(12px);

  font-size: 13px;

  animation: floatY 6s ease-in-out infinite;
}

.floating-info strong {
  display: block;
  font-size: 16px;
  margin-top: 4px;
  color: var(--accent2);
}

/* FLOATING BUTTON GROUP */

.floating-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;

  animation: floatY 5s ease-in-out infinite;
}

/* FLOAT ANIMATION */

@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* RESPONSIVE */

@media(max-width:768px){
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-floating-ui {
    align-items: center;
  }
}
/* =====================================
🔥 FINAL LAYOUT FIX (OVERRIDES EVERYTHING)
===================================== */

/* FIX HERO SPACING */

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;

  max-width: var(--max-width);
  margin: 100px auto 40px; /* 🔥 reduced */
  padding: 0 40px;
  gap: 40px;

  min-height: 75vh; /* prevents empty gap */
}

/* FIX FLOATING UI POSITION */

.hero-floating-ui {
  margin-top: 20px;
}

/* FIX PANEL SPACING */

.panel {
  max-width: var(--max-width);
  margin: 60px auto; /* 🔥 fixed */
  padding: 0 40px;
}

/* REMOVE EXTRA GAP AFTER HERO */

.hero + .panel {
  margin-top: 20px;
}

/* FIX DAILY PANEL HEIGHT */

.ai-growth-panel {
  padding: 40px 20px; /* 🔥 reduced from 120px */
}

/* FIX GLASS CARD SIZE */

.glass-card.strong {
  padding: 35px;
}

/* FIX SECTION GLOBAL SPACING */

section {
  margin-top: 50px;
  margin-bottom: 50px;
}

/* FIX FOOTER POSITION */

footer {
  margin-top: 40px;
  padding: 40px 20px;
}

/* FIX BUTTON SIZE ALIGNMENT */

.floating-actions .cta {
  width: 200px;
  text-align: center;
}

/* MOBILE FIX */

@media(max-width:768px){
  .hero {
    flex-direction: column;
    text-align: center;
    min-height: auto;
  }

  .hero-floating-ui {
    align-items: center;
  }
}
.green{color:#00ff9c;}
.red{color:#ff4d6d;}

.spark{
height:20px;
width:100%;
background:linear-gradient(90deg,#00e5ff33,#00e5ff00);
margin-top:4px;
position:relative;
overflow:hidden;
}

.spark::after{
content:"";
position:absolute;
width:40%;
height:100%;
background:linear-gradient(90deg,transparent,#00e5ff,transparent);
animation:move 2s linear infinite;
}

@keyframes move{
0%{left:-40%;}
100%{left:100%;}
}

.bar{
height:6px;
background:#00e5ff;
margin:6px 0;
animation:grow 2s ease;
}

@keyframes grow{
0%{width:0;}
100%{width:100%;}
}
/* BOTTOM NAV */

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;

  display: none;
  justify-content: space-around;
  align-items: center;

  padding: 10px 0;

  background: rgba(5,7,12,0.9);
  backdrop-filter: blur(20px);

  border-top: 1px solid rgba(255,255,255,0.1);

  z-index: 999;
}

.nav-item {
  text-align: center;
  color: #8b949e;
  font-size: 12px;
  text-decoration: none;
}

.nav-item span {
  display: block;
  font-size: 18px;
}

.nav-item.active {
  color: #00d4ff;
}
@media(max-width:768px){
  .bottom-nav {
    display: flex;
  }
}
/* FLOATING CTA */

.fab {
  position: fixed;
  bottom: 80px;
  right: 20px;

  width: 60px;
  height: 60px;

  border-radius: 50%;
  border: none;

  background: linear-gradient(135deg, #00d4ff, #7c5cff);
  color: white;
  font-size: 24px;

  box-shadow: 0 0 20px rgba(0,212,255,0.5);

  z-index: 1000;
}
/* CARD ANIMATION */

.card, .module-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover, .module-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 0 30px rgba(0,212,255,0.3);
}

.card:active, .module-card:active {
  transform: scale(0.96);
}
