:root {
  --bg-dark: #0b0d12;
  --primary: #6d5dfc;
  --secondary: #2dd4ff;
  --accent: #ff5cf0;
  --text: #0f172a;
  --muted: #64748b;
}

/* RESET */
* {
  box-sizing: border-box;
}

/* BODY */
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(
      1200px 600px at 10% 0%,
      rgba(109, 93, 252, 0.12),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 90% 20%,
      rgba(45, 212, 255, 0.12),
      transparent 55%
    ),
    #ffffff;
}

/* HEADER */
.header {
  padding: 1rem 2rem;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 42px;
  width: auto;
}

/* HERO WRAP — FULL BLEED, LIGHT */
.hero-wrap {
  position: relative;
  overflow: hidden;
  padding: 7rem 2rem 6rem;
  background: #f9fafb;
}

/* LIGHT BLOB */
.hero-wrap::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  top: -200px;
  right: -200px;
  background: radial-gradient(
    circle,
    rgba(109, 93, 252, 0.18),
    rgba(109, 93, 252, 0.08),
    transparent 65%
  );
  filter: blur(40px);
  z-index: 0;
  animation: blobFloat 22s ease-in-out infinite;
}

/* MICRO MOVIMENTO */
@keyframes blobFloat {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-40px, 30px);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* HERO CONTENT */
.hero {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: auto;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--secondary),
    var(--accent)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 62ch;
}

/* CTA */
.cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--secondary)
  );
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 12px 32px rgba(109, 93, 252, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(109, 93, 252, 0.45);
}

/* SECTIONS */
section {
  padding: 4rem 2rem;
}

.services,
.about,
.contact {
  max-width: 960px;
  margin: auto;
}

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

/* LIST */
ul {
  padding-left: 1.2rem;
}

ul li {
  margin-bottom: 0.6rem;
}

/* CURSOR GLOW — CHICCA 1 */
#cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(109, 93, 252, 0.55),
    rgba(45, 212, 255, 0.35),
    transparent 70%
  );
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

/* FOOTER */
.footer {
  padding: 2rem;
  text-align: center;
  border-top: 1px solid #e5e7eb;
  font-size: 0.9rem;
}

.footer a {
  color: var(--primary);
  text-decoration: none;
}

/* MOBILE SAFETY */
@media (max-width: 768px) {
  .hero-wrap {
    padding: 5rem 1.5rem 4rem;
  }

  #cursor {
    display: none;
  }
}
