/* ═══════════════════════════════════════════════════════════
   NOVURA — Design System & Styles
   Dark premium SaaS landing page
   Inspired by Vercel, Linear, Stripe
   ═══════════════════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

:root {
  /* Colors */
  --bg: #07080C;
  --bg-subtle: #0C0E14;
  --bg-card: #0F1119;
  --bg-card-hover: #141620;
  --border: rgba(255, 255, 255, .06);
  --border-hover: rgba(255, 255, 255, .1);

  --text: #E4E4E7;
  --text-muted: #71717A;
  --text-dim: #52525B;

  --accent-1: #3B82F6;
  /* electric blue */
  --accent-2: #6366F1;
  /* indigo */
  --accent-3: #818CF8;
  /* light indigo */
  --accent-4: #C084FC;
  /* purple */
  --accent-green: #34D399;

  --gradient: linear-gradient(135deg, var(--accent-1), var(--accent-2), var(--accent-4));
  --gradient-text: linear-gradient(135deg, #60A5FA 0%, #818CF8 40%, #C084FC 100%);

  /* Sizing */
  --max-w: 1200px;
  --nav-h: 72px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-xs: 6px;

  /* Fonts */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea {
  font-family: inherit;
}

.hide-mobile {
  display: inline;
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none;
  }
}

/* ── Gradient Text ────────────────────────────────────── */
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Animations ───────────────────────────────────────── */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInUp .7s cubic-bezier(.16, 1, .3, 1) forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s cubic-bezier(.16, 1, .3, 1), transform .6s cubic-bezier(.16, 1, .3, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Navigation ───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(7, 8, 12, .6);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: background .3s, box-shadow .3s;
}

.nav--scrolled {
  background: rgba(7, 8, 12, .85);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -.02em;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gradient);
  color: #fff;
  font-weight: 800;
  font-size: .9rem;
}

.logo-text {
  color: #fff;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s;
  position: relative;
}

.nav__link:hover {
  color: #fff;
}

.nav__link--cta {
  padding: 8px 20px;
  border-radius: 999px;
  background: rgba(99, 102, 241, .15);
  color: var(--accent-3);
  border: 1px solid rgba(99, 102, 241, .25);
  transition: background .2s, color .2s, border-color .2s;
}

.nav__link--cta:hover {
  background: rgba(99, 102, 241, .25);
  color: #fff;
  border-color: rgba(99, 102, 241, .4);
}

/* Nav right group */
.nav__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Language Switcher */
.lang-switcher {
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .04);
  color: var(--text-muted);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
}

.lang-switcher:hover {
  color: #fff;
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, .08);
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform .3s, opacity .3s;
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    background: rgba(7, 8, 12, .97);
    backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
  }

  .nav__links.open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav__link {
    font-size: 1.1rem;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav__toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 40px) 24px 60px;
  overflow: hidden;
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 20%, transparent 100%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .35;
  pointer-events: none;
}

.hero__glow--1 {
  width: 600px;
  height: 600px;
  background: var(--accent-2);
  top: -100px;
  right: -150px;
  opacity: .15;
}

.hero__glow--2 {
  width: 500px;
  height: 500px;
  background: var(--accent-1);
  bottom: -100px;
  left: -100px;
  opacity: .1;
}

.hero__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .03);
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(52, 211, 153, .4);
  }

  50% {
    opacity: .7;
    box-shadow: 0 0 0 6px rgba(52, 211, 153, 0);
  }
}

.hero__title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.04em;
  color: #fff;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-size: .93rem;
  font-weight: 600;
  transition: all .25s cubic-bezier(.16, 1, .3, 1);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 0 20px rgba(99, 102, 241, .25), inset 0 1px 0 rgba(255, 255, 255, .15);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 30px rgba(99, 102, 241, .35), inset 0 1px 0 rgba(255, 255, 255, .2);
}

.btn--ghost {
  color: var(--text-muted);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .03);
}

.btn--ghost:hover {
  color: #fff;
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, .06);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.btn__arrow {
  width: 18px;
  height: 18px;
  transition: transform .2s;
}

.btn:hover .btn__arrow {
  transform: translateX(3px);
}

/* ── Social Proof (Hero) ─────────────────────────────── */
.hero__proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 64px;
  flex-wrap: wrap;
}

.hero__proof-item {
  text-align: center;
}

.hero__proof-number {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
}

.hero__proof-suffix {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-3);
}

.hero__proof-label {
  display: block;
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.hero__proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── Scroll Indicator ─────────────────────────────────── */
.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent-3), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }

  50% {
    opacity: .3;
    transform: scaleY(.4);
    transform-origin: top;
  }

  100% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
}

/* ── Logo Bar ─────────────────────────────────────────── */
.logos {
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}

.logos__label {
  text-align: center;
  font-size: .78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 32px;
}

.logos__track {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}

.logos__slide {
  display: flex;
  gap: 64px;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.logos__item {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dim);
  white-space: nowrap;
  letter-spacing: .02em;
  opacity: .5;
  transition: opacity .3s;
}

.logos__item:hover {
  opacity: .8;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── Section Headers ──────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent-3);
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(129, 140, 248, .15);
  background: rgba(129, 140, 248, .05);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Services ─────────────────────────────────────────── */
.services {
  padding: 120px 0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 36px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color .3s, background .3s, transform .3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(129, 140, 248, .3), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.service-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -.01em;
}

.service-card__subtitle {
  font-size: .82rem;
  color: var(--accent-3);
  font-weight: 500;
  margin-bottom: 16px;
}

.service-card__desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-card__list {
  list-style: none;
}

.service-card__list li {
  font-size: .82rem;
  color: var(--text-muted);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, .04);
}

.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  transform: translateY(-50%);
}

@media (max-width: 992px) {
  .services__grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 0 auto;
  }
}

/* ── Approach (Timeline) ──────────────────────────────── */
.approach {
  padding: 120px 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.approach__timeline {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.approach__timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 48px;
  bottom: 48px;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent-2), var(--border));
}

.approach__step {
  display: flex;
  gap: 32px;
  padding: 32px 0;
  align-items: flex-start;
}

.approach__number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 700;
  color: var(--accent-3);
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.approach__content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}

.approach__content p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 640px) {
  .approach__timeline::before {
    left: 20px;
  }

  .approach__number {
    width: 40px;
    height: 40px;
    font-size: .75rem;
  }

  .approach__step {
    gap: 20px;
  }
}

/* ── Why Novura ───────────────────────────────────────── */
.why {
  padding: 120px 0;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why__card {
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color .3s, transform .3s;
}

.why__card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.why__card-icon {
  width: 40px;
  height: 40px;
  color: var(--accent-3);
  margin-bottom: 20px;
}

.why__card-icon svg {
  width: 100%;
  height: 100%;
}

.why__card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.why__card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 992px) {
  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .why__grid {
    grid-template-columns: 1fr;
  }
}

/* ── Tech Stack ───────────────────────────────────────── */
.tech {
  padding: 120px 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.tech__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.tech__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
  transition: border-color .3s, transform .2s;
}

.tech__item:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.tech__icon {
  font-size: 1.2rem;
}

@media (max-width: 992px) {
  .tech__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .tech__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Testimonial ──────────────────────────────────────── */
.testimonial {
  padding: 120px 0;
}

.testimonial__card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 48px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  position: relative;
}

.testimonial__quote {
  width: 40px;
  height: 40px;
  color: var(--accent-2);
  opacity: .3;
  margin: 0 auto 24px;
}

.testimonial__text {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 32px;
}

.testimonial__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .7rem;
  color: #fff;
}

.testimonial__name {
  font-weight: 600;
  font-size: .9rem;
  color: #fff;
}

.testimonial__role {
  font-size: .78rem;
  color: var(--text-muted);
}

/* ── Contact ──────────────────────────────────────────── */
.contact {
  padding: 120px 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
}

.contact__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.contact__glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99, 102, 241, .1) 0%, transparent 70%);
  pointer-events: none;
}

.contact__form {
  margin-top: 48px;
  text-align: left;
}

.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-size: .9rem;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, .15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

@media (max-width: 640px) {
  .contact__row {
    grid-template-columns: 1fr;
  }
}

/* ── Footer ───────────────────────────────────────────── */
.footer {
  padding: 80px 0 0;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

.footer__tagline {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 16px;
}

.footer__links {
  display: flex;
  gap: 64px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col h4 {
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 4px;
}

.footer__col a {
  font-size: .88rem;
  color: var(--text-muted);
  transition: color .2s;
}

.footer__col a:hover {
  color: #fff;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

.footer__bottom p {
  font-size: .8rem;
  color: var(--text-dim);
}

@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    gap: 40px;
  }

  .footer__links {
    flex-direction: column;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ── Custom cursor glow (subtle) ─────────────────────── */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, .06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity .3s;
  opacity: 0;
}

.cursor-glow.active {
  opacity: 1;
}