/* 
  Theme: Neon Glass / Cyberpunk
  Author: Antigravity for Reseller Chile Hosting
*/

:root {
  /* Fonts */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing & Layout */
  --container-width: 1200px;
  --header-height: 80px;
  --border-radius-lg: 24px;
  --border-radius-md: 16px;
  --border-radius-sm: 8px;

  /* Animation */
  --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dark Theme (Default) */
[data-theme="dark"] {
  --bg-body: #050511;
  --bg-gradient: radial-gradient(circle at 15% 50%, rgba(76, 29, 149, 0.15), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(6, 182, 212, 0.15), transparent 25%);

  --text-main: #ffffff;
  --text-muted: #94a3b8;
  --text-accent: #22d3ee;

  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-highlight: rgba(255, 255, 255, 0.15);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);

  --primary: #06b6d4;
  /* Cyan */
  --primary-glow: rgba(6, 182, 212, 0.5);
  --secondary: #8b5cf6;
  /* Violet */
  --surface: #0f172a;
}

/* Light Theme */
[data-theme="light"] {
  --bg-body: #f8fafc;
  --bg-gradient: radial-gradient(circle at 15% 50%, rgba(224, 231, 255, 0.8), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(207, 250, 254, 0.8), transparent 25%);

  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-accent: #0891b2;

  --glass-bg: rgba(255, 255, 255, 0.6);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-highlight: rgba(255, 255, 255, 0.8);
  --glass-shadow: 0 8px 32px 0 rgba(148, 163, 184, 0.15);

  --primary: #0891b2;
  /* Darker Cyan */
  --primary-glow: rgba(8, 145, 178, 0.3);
  --secondary: #7c3aed;
  /* Violet */
  --surface: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg-body);
  color: var(--text-main);
  transition: background var(--transition-smooth), color var(--transition-smooth);
  overflow-x: hidden;
  position: relative;
  /* Hide default cursor to use custom cursor */
  cursor: none;
}

/* Dynamic Background */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 15% 50%, rgba(76, 29, 149, 0.2), transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(6, 182, 212, 0.2), transparent 40%);
  background-size: 200% 200%;
  animation: gradientMove 15s ease infinite;
  z-index: -1;
  pointer-events: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-body);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--bg-body), var(--secondary), var(--primary));
  border-radius: 5px;
  border: 1px solid var(--glass-border);
}

/* =========================================
   Chatbot Widget
   ========================================= */
.chatbot-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  border: none;
  box-shadow: 0 4px 20px var(--primary-glow);
  font-size: 2rem;
  cursor: pointer;
  z-index: 2000;
  transition: transform 0.3s, opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px var(--primary-glow);
}

.chatbot-toggle.hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0);
}

.chatbot-window {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 380px;
  height: 500px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  z-index: 2000;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.chatbot-window.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.chatbot-header {
  padding: 15px 20px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.chatbot-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chatbot-status {
  display: block;
  font-size: 0.75rem;
  opacity: 0.9;
}

.chatbot-status::before {
  content: "•";
  color: #10B981;
  margin-right: 4px;
}

.chatbot-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.8;
}

.chatbot-close:hover {
  opacity: 1;
}

.chatbot-messages {
  flex-grow: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.message {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.message.bot {
  background: rgba(255, 255, 255, 0.1);
  align-self: flex-start;
  border-radius: 12px 12px 12px 0;
  color: var(--text-main);
}

.message.user {
  background: var(--primary);
  align-self: flex-end;
  border-radius: 12px 12px 0 12px;
  color: white;
}

.message.error {
  background: rgba(239, 68, 68, 0.2);
  color: #F87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.chatbot-input-area {
  padding: 15px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  gap: 10px;
}

.chatbot-input-area input {
  flex-grow: 1;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 10px 15px;
  color: var(--text-main);
  outline: none;
}

.chatbot-input-area input:focus {
  border-color: var(--primary);
}

.chatbot-input-area button {
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 20px;
  padding: 0 20px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
}

.chatbot-input-area button:hover {
  background: var(--secondary);
}

/* Typing Animation */
.typing span {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--text-muted);
  border-radius: 50%;
  animation: typing 1s infinite;
  margin: 0 2px;
}

.typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }

  50% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .chatbot-window {
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
    border-radius: 0;
  }
}

/* Chatbot Light Theme Overrides */
[data-theme="light"] .chatbot-window {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .message.bot {
  background: rgba(0, 0, 0, 0.05);
  color: var(--text-main);
}

[data-theme="light"] .message.error {
  background: rgba(239, 68, 68, 0.1);
  color: #DC2626;
  border-color: rgba(239, 68, 68, 0.2);
}

[data-theme="light"] .chatbot-input-area input {
  background: rgba(0, 0, 0, 0.05);
  color: var(--text-main);
  border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .chatbot-input-area input:focus {
  border-color: var(--primary);
  background: white;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  margin-top: 0;
  line-height: 1.1;
}

p {
  line-height: 1.6;
  color: var(--text-muted);
}

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

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

.container {
  width: min(var(--container-width), 92%);
  margin: 0 auto;
}

/* Utility Utilities */
.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Glassmorphism Card */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-top: 1px solid var(--glass-highlight);
  border-radius: var(--border-radius-md);
  box-shadow: var(--glass-shadow);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1rem;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: 0 4px 20px var(--primary-glow);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  opacity: 0;
  z-index: -1;
  transition: opacity var(--transition-fast);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  box-shadow: 0 8px 30px var(--primary-glow);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: var(--surface);
  border-color: var(--primary);
}

/* Header */
.site-header {
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(var(--bg-body), 0.7);
  /* Fallback */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  transition: background 0.3s;
}

.scrolled .site-header {
  background: rgba(5, 5, 17, 0.9);
  /* More solid on scroll for legibility */
}

[data-theme="light"] .scrolled .site-header {
  background: rgba(255, 255, 255, 0.9);
}


.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: auto;
  max-height: 70px;
  /* Increased from 45px to be more visible */
  max-width: 280px;
  /* Prevent it from getting too wide */
  object-fit: contain;
  filter: drop-shadow(0 0 8px var(--primary-glow));
  transition: filter 0.3s;
}

[data-theme="dark"] .logo-img {
  filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}


.main-nav {
  display: flex;
  scale: 1;
  /* For mobile menu transition if needed later */
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  position: relative;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.nav-link:hover {
  opacity: 1;
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Theme Toggle */
.theme-toggle {
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.2s;
}

.theme-toggle:hover {
  background: var(--glass-border);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 50px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero p {
  font-size: 1.25rem;
  max-width: 500px;
  margin-bottom: 40px;
}

/* Hero Visuals */
/* Hero Visual Animation */
.hero-visual {
  position: relative;
  perspective: 1000px;
}

.visual-card {
  position: relative;
  z-index: 2;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.visual-card img {
  border-radius: 12px;
  filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.4));
}

.visual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 140%;
  background: conic-gradient(from 0deg, var(--primary), var(--secondary), var(--primary));
  filter: blur(80px);
  opacity: 0.3;
  z-index: -1;
  animation: spin 10s linear infinite;
  border-radius: 50%;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotateX(2deg) rotateY(-2deg);
  }

  50% {
    transform: translateY(-20px) rotateX(5deg) rotateY(-5deg);
  }
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Animated Background Gradient */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Services */
.services-section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.1));
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
  border: 1px solid var(--glass-border);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.service-link {
  margin-top: auto;
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link:hover {
  gap: 10px;
}

/* Arrow movement */

/* Pricing Dynamic Grid */
.pricing-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.2), transparent);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* FAQ */
.faq-section {
  padding: 100px 0;
}

.faq-item {
  margin-bottom: 16px;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.faq-item summary {
  padding: 20px;
  background: var(--glass-bg);
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  /* Hide default triangle */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary {
  background: rgba(6, 182, 212, 0.1);
  color: var(--primary);
}

.faq-item p {
  padding: 20px;
  margin: 0;
  background: rgba(0, 0, 0, 0.1);
}

/* Contact & Footer */
.footer-logo {
  height: auto;
  max-height: 70px;
  /* Increased from 45px */
  max-width: 280px;
  width: auto;
  object-fit: contain;
  opacity: 1;
  /* Improved visibility */
  transition: 0.3s;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
  /* Default white for dark footer */
}

/* Ensure logo is visible in light mode footer if needed, though footer is usually dark */
[data-theme="light"] .footer-logo {
  filter: none;
  /* Original colors for light theme if footer background is light */
}

.footer-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid var(--glass-border);
  margin-top: 60px;
  flex-wrap: wrap;
  gap: 20px;
}

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

.footer-links a {
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s;
}

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

/* Responsive Media Queries */
/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  padding: 8px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    margin-bottom: 60px;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-row {
    justify-content: center;
  }

  .hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .header-inner {
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
    z-index: 1002;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
    border-left: 1px solid var(--glass-border);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }

  .main-nav.is-open {
    right: 0;
  }

  .main-nav .nav-link {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  /* Adjust button placement inside nav */
  .main-nav .btn {
    margin-top: 20px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 100px;
  }

  .services-section,
  .pricing-section,
  .faq-section,
  .about {
    padding: 60px 0;
  }

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

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}

/* Pulse Text Animation */
.pulse-text {
  animation: pulse-recolor 2s infinite;
}

@keyframes pulse-recolor {
  0% {
    transform: scale(1);
    text-shadow: 0 0 0 rgba(139, 92, 246, 0.4);
  }

  50% {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.8);
  }

  100% {
    transform: scale(1);
    text-shadow: 0 0 0 rgba(139, 92, 246, 0.4);
  }
}

/* =========================================
   Advanced Animations & Effects
   ========================================= */

/* Scroll Reveal */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Text Shine Effect for H1 */
.hero h1 .text-gradient {
  background-size: 200% auto;
  animation: textShine 5s linear infinite;
}

@keyframes textShine {
  to {
    background-position: 200% center;
  }
}

/* Button Pulse/Shine */
.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
  transform: scale(0);
  opacity: 0;
  transition: transform 0.6s, opacity 0.6s;
}

.btn-primary:active::after {
  transform: scale(1);
  opacity: 1;
  transition: 0s;
}

/* 3D Glass Card Hover */
.glass-card {
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease, border-color 0.3s;
}

.glass-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  border-color: var(--primary);
}

.service-icon {
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.service-card:hover .service-icon {
  transform: scale(1.2) rotate(10deg);
  background: var(--primary);
  color: #000;
  box-shadow: 0 0 20px var(--primary-glow);
}

/* Neon flicker for tags */
.hero-tag {
  animation: flicker 4s infinite;
}

@keyframes flicker {

  0%,
  19%,
  21%,
  23%,
  25%,
  54%,
  56%,
  100% {
    box-shadow: 0 0 5px rgba(6, 182, 212, 0.2), inset 0 0 2px rgba(6, 182, 212, 0.1);
  }

  20%,
  24%,
  55% {
    box-shadow: none;
  }
}

/* =========================================
   Custom Interactive Cursor
   ========================================= */

/* Cursor Dot */
.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
}

/* Cursor Outline */
.cursor-outline {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(6, 182, 212, 0.5);
  /* var(--primary) with opacity */
  background-color: rgba(6, 182, 212, 0.05);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
  transition: width 0.2s, height 0.2s, background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

/* Common properties for both */
.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  /* Crucial: clicks pass through */
  z-index: 9999;
}

/* Hover State / Clickable elements */
.cursor-outline.hover-clickable {
  width: 60px;
  height: 60px;
  background-color: rgba(139, 92, 246, 0.1);
  /* var(--secondary) tint */
  border-color: var(--secondary);
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.5);
}

/* Mobile Disable (Keep default cursor on touch devices) */
@media (max-width: 768px) {
  body {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-outline {
    display: none;
  }
}