/* ==========================================
   KENSTACK — Animations & Keyframes
   ========================================== */

/* ==========================================
   CORE KEYFRAMES
   ========================================== */

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

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

@keyframes float-slow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(2deg); }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.2); }
  50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.5), 0 0 80px rgba(212, 175, 55, 0.15); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spin-reverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes data-pulse {
  0% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: scale(1.5); }
}

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

@keyframes marquee-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@keyframes ticker-up {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes scroll-vertical {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes ripple {
  0% { transform: scale(0); opacity: 0.6; }
  100% { transform: scale(4); opacity: 0; }
}

@keyframes border-rotate {
  from { --angle: 0deg; }
  to { --angle: 360deg; }
}

@keyframes slide-in-bottom {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes counter-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes node-pulse {
  0%, 100% { r: 5; opacity: 0.6; }
  50% { r: 8; opacity: 1; }
}

@keyframes line-draw {
  from { stroke-dashoffset: 1000; }
  to { stroke-dashoffset: 0; }
}

@keyframes data-flow {
  0% { offset-distance: 0%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

@keyframes grow-line {
  from { height: 0; opacity: 0; }
  to { height: 100%; opacity: 1; }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes progress-fill {
  from { width: 0; }
  to { width: var(--target-width); }
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes hero-glow {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}

@keyframes word-reveal {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0% 0 0); }
}

@keyframes orbit {
  from { transform: rotate(0deg) translateX(80px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(80px) rotate(-360deg); }
}

@keyframes particle-float {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.4; }
  25% { transform: translateY(-15px) translateX(8px); opacity: 0.8; }
  75% { transform: translateY(10px) translateX(-6px); opacity: 0.6; }
}

/* ==========================================
   HERO PARTICLE CANVAS
   ========================================== */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #ffffff;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(212,175,55,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(10,10,10,0.04) 0%, transparent 50%);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 36px;
  margin-bottom: 28px;
  font-family: var(--font-body);
  animation: slide-in-bottom 0.8s ease both;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 24px;
  animation: slide-in-bottom 0.8s ease 0.1s both;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold) 0%, #b8960c 40%, var(--gold-light) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 4s ease infinite, slide-in-bottom 0.8s ease 0.1s both;
  display: inline-block;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.75;
  font-weight: 300;
  animation: slide-in-bottom 0.8s ease 0.2s both;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  animation: slide-in-bottom 0.8s ease 0.3s both;
  margin-bottom: 64px;
}

.btn-cta-primary {
  background: var(--text-dark);
  color: white;
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-cta-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

.btn-cta-primary .arrow {
  transition: transform 0.3s ease;
}
.btn-cta-primary:hover .arrow { transform: translateX(4px); }

.btn-cta-secondary {
  background: transparent;
  color: var(--text-dark);
  padding: 15px 28px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: 1.5px solid var(--border-light);
  transition: all 0.3s ease;
}
.btn-cta-secondary:hover {
  border-color: rgba(0,0,0,0.3);
  transform: translateY(-2px);
  background: rgba(0,0,0,0.02);
}

/* ==========================================
   HERO STATS
   ========================================== */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  animation: slide-in-bottom 0.8s ease 0.45s both;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 20px 0;
  max-width: 780px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 36px;
  position: relative;
  gap: 4px;
}

.hero-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background: var(--border-light);
}

.hero-stat .icon {
  font-size: 1.2rem;
  margin-bottom: 2px;
}

.hero-stat .value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.hero-stat .label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
  white-space: nowrap;
}

/* ==========================================
   HEADER
   ========================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
}

.site-header.scrolled {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s ease-in-out infinite;
}
.logo img{
  width: 64px;
}
nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

nav a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: color 0.25s ease;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}

nav a:hover { color: var(--text-dark); }
nav a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ==========================================
   MOBILE NAV
   ========================================== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: color 0.3s;
}

.mobile-nav a:hover { color: var(--gold); }

.mobile-nav .close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
}

/* ==========================================
   TRUSTED SECTION — Grid Layout (Image 2 style)
   ========================================== */
.trusted-section {
  padding: 70px 0 0;
  background: #fff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.trusted-title {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-weight: 500;
}

/* 4-column, 2-row bordered grid like Image 2 */
.trusted-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-light);
  border-left: 1px solid var(--border-light);
}

.trusted-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px 24px;
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s ease;
  cursor: default;
  min-height: 110px;
}

.trusted-cell:hover {
  background: #fafafa;
}

.trusted-cell:hover .company-logo-img {
  filter: none !important;
  opacity: 1;
}

.company-logo-img {
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.55;
  transition: all 0.3s ease;
}

.trusted-cell:hover .company-logo-img {
  filter: grayscale(0);
  opacity: 1;
}

.trusted-cell-name {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

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


/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials-section {
  background: var(--bg-dark);
  padding: 100px 0;
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-header h2 { color: white; }
.testimonials-header p { color: var(--text-lighter); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  height: 720px;
  overflow: hidden;
}

.testimonials-grid::before,
.testimonials-grid::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 10;
  pointer-events: none;
}

.testimonials-grid::before {
  top: 0;
  background: linear-gradient(to bottom, var(--bg-dark), transparent);
}

.testimonials-grid::after {
  bottom: 0;
  background: linear-gradient(to top, var(--bg-dark), transparent);
}

.testimonials-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonials-col-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: scroll-vertical 24s linear infinite;
}

.testimonials-col:nth-child(2) .testimonials-col-inner {
  animation-direction: reverse;
  animation-duration: 20s;
}

.testimonials-col:nth-child(3) .testimonials-col-inner {
  animation-duration: 28s;
}

.testimonials-col-inner:hover { animation-play-state: paused; }

.testimonial-card {
  background: var(--bg-dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all 0.3s ease;
  cursor: default;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,0.25);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(212,175,55,0.1);
}

.testimonial-card.video-card {
  background: var(--bg-dark-2);
  padding: 0;
  overflow: hidden;
}

.video-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1a1a, #0e0e0e);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.video-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(212,175,55,0.1) 0%, transparent 50%),
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.01) 10px, rgba(255,255,255,0.01) 20px);
}

.play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(212,175,55,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  color: #000;
  box-shadow: 0 4px 20px rgba(212,175,55,0.4);
}

.testimonial-card.video-card:hover .play-btn {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(212,175,55,0.6);
}

.video-info {
  padding: 16px;
}

.video-info .client-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
}

.video-info .client-role {
  font-size: 0.75rem;
  color: var(--text-lighter);
}

.testimonial-quote {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  margin-bottom: 18px;
  font-weight: 300;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.author-info .name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
}

.author-info .role {
  font-size: 0.72rem;
  color: var(--text-lighter);
}

.stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
  background: linear-gradient(180deg, #060606 0%, #0a0a0a 100%);
  padding: 60px 0 40px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.4), transparent);
}

.footer-wordmark {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 11rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.08);
  text-align: center;
  line-height: 0.85;
  margin-bottom: 60px;
  user-select: none;
  position: relative;
}

.footer-wordmark::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(212,175,55,0.06) 50%, transparent 70%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 2s ease-in-out infinite;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer-col p,
.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 2;
  display: block;
  transition: color 0.25s ease;
}

.footer-col a:hover { color: var(--gold); }

.footer-col .contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 2;
  transition: color 0.25s ease;
}

.footer-col .contact-item:hover { color: rgba(255,255,255,0.8); }

.footer-col .contact-item .icon { font-size: 0.9rem; width: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 24px 0;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

.footer-bottom .footer-links {
  display: flex;
  gap: 24px;
}

.footer-bottom .footer-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  transition: color 0.25s ease;
}

.footer-bottom .footer-links a:hover { color: var(--gold); }

/* Social links in footer */
.social-link {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5) !important;
  line-height: 2.2;
  transition: color 0.25s ease !important;
}
.social-link i { font-size: 1rem; width: 18px; text-align: center; }
.social-link:hover { color: var(--gold) !important; }

/* FA icon sizing in tech reel */
.tech-icon i { font-size: 1rem; }

/* FA icon sizing in workflow steps */
.step-node i { font-size: 0.95rem; color: var(--text-muted); }
.workflow-step.active .step-node i { color: var(--gold); }

/* FA icon in section labels / card labels */
.card-label i { opacity: 0.8; }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  nav, .header-actions .btn { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .hero-stat:nth-child(odd)::after {
    display: block;
  }

  .hero-stat:nth-child(even)::after {
    display: none;
  }

  .hero-stat:nth-child(1),
  .hero-stat:nth-child(2) {
    border-bottom: 1px solid var(--border-light);
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card-chart,
  .bento-card-tech,
  .bento-card-workflow,
  .bento-card-neural {
    grid-column: 1;
    grid-row: auto;
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
    height: 480px;
  }

  .testimonials-col:last-child { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid .footer-col:last-child { grid-column: span 2; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn-cta-primary, .btn-cta-secondary { justify-content: center; }

  .testimonials-grid {
    grid-template-columns: 1fr;
    height: 500px;
  }

  .testimonials-col:nth-child(2) { display: none; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid .footer-col:last-child { grid-column: span 1; }

  .workflow-steps { justify-content: flex-start; }

  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ==========================================
   CURSOR GLOW
   ========================================== */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  z-index: 1;
  mix-blend-mode: multiply;
}
