
:root {
  --bg-dark: #020205;
  --blue: #00e5ff;
  --magenta: #ff00ff;
  --muted: rgba(255,255,255,0.75);
}

* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; font-family: 'Orbitron', system-ui, sans-serif; color: #f0faff; overflow-x: hidden; }
body {
  background: radial-gradient(circle at 20% 30%, rgba(0,229,255,0.06), transparent 40%),
              radial-gradient(circle at 80% 70%, rgba(255,0,255,0.08), transparent 40%),
              #020205;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Canvas background */
#bgCanvas { position: fixed; inset: 0; z-index: 0; }

.site {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  text-align: center;
  padding: 28px;
}

.logo {
  height: 130px;
  filter: drop-shadow(0 0 30px rgba(0,229,255,0.2)) drop-shadow(0 0 40px rgba(255,0,255,0.12));
}

.hero-title {
  font-size: 2.6rem;
  letter-spacing: 2px;
  margin: 16px 0 8px;
  font-weight: 900;
  background: linear-gradient(90deg, var(--blue), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(0,229,255,0.1), 0 0 30px rgba(255,0,255,0.1);
}

.hero-sub {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 28px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(90deg, rgba(0,229,255,0.15), rgba(255,0,255,0.15));
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  box-shadow: 0 0 20px rgba(0,229,255,0.08), 0 0 30px rgba(255,0,255,0.06);
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}

.cta:hover {
  transform: translateY(-5px) scale(1.03);
  background: linear-gradient(90deg, var(--blue), var(--magenta));
  color: #000;
  box-shadow: 0 0 30px var(--blue), 0 0 60px var(--magenta);
}

/* About block */
.about {
  margin-top: 28px;
  padding: 18px 20px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.0));
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.about-title {
  margin: 0 0 8px;
  font-weight: 800;
  letter-spacing: 1px;
  background: linear-gradient(90deg, var(--blue), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.foot {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-top: 40px;
}

/* Fade-in animation */
.fade-in { animation: fadeIn 0.8s ease-out forwards; }
.fade-item { opacity: 0; transform: translateY(20px); animation: fadeSlide 1.1s ease-out forwards; }
.fade-item:nth-of-type(1){ animation-delay: 0.2s; }
.fade-item:nth-of-type(2){ animation-delay: 0.45s; }
.fade-item:nth-of-type(3){ animation-delay: 0.7s; }
.fade-item:nth-of-type(4){ animation-delay: 0.95s; }

@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }
@keyframes fadeSlide {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 500px) {
  .logo { height: 100px; }
  .hero-title { font-size: 1.9rem; }
  .cta { width: 84%; justify-content: center; font-size: 1rem; }
}
