:root {
  --bg: #0e0b1e;
  --bg-soft: #171331;
  --text: #f4f1ff;
  --text-muted: #b3add4;
  --pink: #ff3cac;
  --cyan: #00e0ff;
  --yellow: #ffd23f;
  --purple: #784bff;
  --card: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.1);
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* ---- Animated background blobs ---- */
.blobs {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.blob {
  position: absolute;
  width: 45vmax;
  height: 45vmax;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  animation: float 18s ease-in-out infinite;
}
.blob-1 { background: var(--pink);   top: -10%;  left: -10%; }
.blob-2 { background: var(--cyan);   bottom: -15%; right: -5%; animation-delay: -6s; }
.blob-3 { background: var(--purple); top: 30%;  left: 40%;  animation-delay: -12s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(6%, 8%) scale(1.08); }
  66%      { transform: translate(-6%, -4%) scale(0.95); }
}

/* ---- Header ---- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem;
}
.logo {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.logo-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--cyan));
  box-shadow: 0 0 14px var(--pink);
}
.nav a {
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 1.6rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav a:hover { color: var(--text); }

/* ---- Hero ---- */
.hero {
  max-width: 760px;
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cyan);
  border: 1px solid var(--card-border);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  margin-bottom: 1.6rem;
  background: var(--card);
}
.hero-title {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: clamp(3rem, 12vw, 6rem);
  line-height: 1.02;
  margin-bottom: 1.2rem;
}
.gradient-text {
  background: linear-gradient(120deg, var(--pink), var(--yellow) 40%, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-tagline {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 2.4rem;
}

/* ---- Buttons ---- */
.cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  box-shadow: 0 8px 30px rgba(255, 60, 172, 0.35);
}
.btn-secondary {
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--card-border);
}
.btn:hover { transform: translateY(-3px); }
.btn-primary:hover { box-shadow: 0 12px 38px rgba(255, 60, 172, 0.5); }

.cta-note {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---- Features ---- */
.features {
  max-width: 1000px;
  margin: 2rem auto 5rem;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.25);
}
.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}
.feature-card h3 {
  font-family: "Fredoka", sans-serif;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* ---- Footer ---- */
.site-footer {
  text-align: center;
  padding: 2.5rem 1.5rem 3rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--card-border);
}

@media (prefers-reduced-motion: reduce) {
  .blob { animation: none; }
  html { scroll-behavior: auto; }
}
