* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #0b1020;
  color: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Background glow */
.background {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, #6366f1, transparent 45%),
    radial-gradient(circle at 85% 80%, #22d3ee, transparent 45%);
  filter: blur(140px);
  z-index: -2;
}

/* Glass base */
.glass {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 30px 90px rgba(0,0,0,0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* HERO */
.hero {
  max-width: 1200px;
  margin: 5rem auto;
  padding: 4rem;
  display: flex;
  gap: 4rem;
  align-items: center;
}

.hero-image img {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255,255,255,0.3);
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-text p {
  max-width: 520px;
  opacity: 0.85;
}

/* Floating cards */
.float-cards {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.float-card {
  padding: 1rem 1.5rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  animation: float 6s ease-in-out infinite;
}

.float-card:nth-child(2) { animation-delay: 1s; }
.float-card:nth-child(3) { animation-delay: 2s; }

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

/* SECTIONS */
.section {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 3rem;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* CONTACT */
.contact {
  text-align: center;
}

.socials {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.socials a {
  font-size: 2rem;
  color: white;
  opacity: 0.7;
  transition: 0.3s ease;
}

.socials a:hover {
  opacity: 1;
  transform: scale(1.15);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  transition: 1s ease;
}

/* Cursor glow */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99,102,241,0.25), transparent 60%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: -1;
}

/* Hover depth */
.glass:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 130px rgba(0,0,0,0.7);
}

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