/* =========================================
   BASE / GLOBAL
========================================= */

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #050816;
  overflow-x: hidden;
}

a {
  text-decoration: none !important;
  color: inherit;
}

/* =========================================
   RESET
========================================= */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================================
   TYPOGRAPHY
========================================= */

.spendly-deading {
  font-size: 50px !important;
  line-height: 1.57 !important;
  font-weight: 500 !important;
  font-style: italic !important;
  width: 100% !important;
}

/* =========================================
   HERO SECTION
========================================= */

.lionex-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;

  display: flex;
  justify-content: center;
  align-items: center;

  background: radial-gradient(circle at top, #0b122e 0%, #050816 70%);
}

/* =========================================
   BACKGROUND GLOW
========================================= */

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;

  width: 500px;
  height: 500px;

  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;

  animation: floatGlow 8s ease-in-out infinite;
}

.hero-bg::before {
  background: #2152f8;
  top: -100px;
  left: -100px;
}

.hero-bg::after {
  background: #3d6bff;
  bottom: -150px;
  right: -150px;
  animation-delay: 3s;
}

@keyframes floatGlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(40px); }
}

/* =========================================
   GRID OVERLAY
========================================= */

.hero-grid {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);

  background-size: 60px 60px;

  mask-image: radial-gradient(circle, white 30%, transparent 90%);
}

/* =========================================
   HERO CONTENT
========================================= */

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  z-index: 10;

  width: 100%;
  max-width: 1000px;
  padding: 20px;

  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
}

/* =========================================
   ANIMATED TAGLINE
========================================= */

.animated-tagline {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 14px;
  margin-bottom: 18px;

  color: white;
  font-size: 22px;
  font-weight: 600;
}

.animated-tagline span {
  animation: fadeUp 2s infinite;
}

.animated-tagline span:nth-child(1) { animation-delay: 0s; }
.animated-tagline span:nth-child(3) { animation-delay: 0.3s; }
.animated-tagline span:nth-child(5) { animation-delay: 0.6s; }

@keyframes fadeUp {
  0%, 100% { opacity: 0.5; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-6px); }
}

/* =========================================
   HERO TEXT
========================================= */

.hero-badge {
  color: #2152f8;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 5px;
  margin-bottom: 24px;
}

.hero-title {
  color: white;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.5;
  font-weight: 800;
  margin-bottom: 42px;
}

/* =========================================
   BUTTONS
========================================= */

.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 600;
  transition: 0.3s ease;
}

.primary-btn {
  background: #2152f8;
  color: white;
  box-shadow: 0 0 30px rgba(33, 82, 248, 0.4);
}

.primary-btn:hover {
  transform: translateY(-3px);
}

.secondary-btn {
  color: white;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
}

.secondary-btn:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-3px);
}

/* =========================================
   CUSTOM CURSOR
========================================= */

.tech-cursor {
  position: fixed;
  width: 28px;
  height: 28px;

  border: 1px solid rgba(33, 82, 248, 0.9);
  border-radius: 50%;

  pointer-events: none;
  z-index: 999999;

  transform: translate(-50%, -50%);
}

.cursor-core {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 6px;
  height: 6px;

  background: #2152f8;
  border-radius: 50%;

  transform: translate(-50%, -50%);

  box-shadow: 0 0 12px #2152f8, 0 0 24px #2152f8;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px) {

  .hero-title {
    font-size: 42px;
  }

  .animated-tagline {
    font-size: 18px;
    gap: 10px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    max-width: 240px;
    text-align: center;
  }
}