/* ===================================================
   BASE VARIABLES & SETUP
=================================================== */
:root {
  --bg-base: #fafcff;
  --bg-gradient:
    radial-gradient(circle at 15% 50%, rgba(124, 58, 237, 0.08), transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(13, 148, 136, 0.06), transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(124, 58, 237, 0.05), transparent 50%);
  --ink: #111827;
  --muted: #4b5563;
  --violet: #7c3aed;
  --violet-glow: rgba(124, 58, 237, 0.4);
  --teal: #0d9488;
  --teal-glow: rgba(13, 148, 136, 0.4);
  --indigo: #2563eb;
  --indigo-glow: rgba(37, 99, 235, 0.4);
  --card-bg: rgba(255, 255, 255, 0.65);
  --card-border: rgba(0, 0, 0, 0.06);
  --card-hover-border: rgba(124, 58, 237, 0.2);
  --glass-blur: blur(24px);
}

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

html {
  cursor: auto;
}

body {
  background-color: var(--bg-base);
  background-image: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

/* ===================================================
   KEYFRAME ANIMATIONS
=================================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

@keyframes toastSlide {
  from { transform: translateX(120%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

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

@keyframes barGrow {
  from { height: 0; }
  to   { height: var(--h); }
}

@keyframes pulseRing {
  0%   { transform: scale(1);    opacity: 0.6; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* ===================================================
   PARTICLES CANVAS
=================================================== */
#particlesCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Everything above the canvas */
.topbar,
header,
section,
footer,
.mobileMenu,
.toast,
#scrollProgress {
  position: relative;
  z-index: 1;
}

/* ===================================================
   CUSTOM CURSOR — GLOW SPOTLIGHT
=================================================== */
#cursorGlow {
  position: fixed;
  top: 0;
  left: 0;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.13) 0%,
    rgba(13, 148, 136, 0.07) 40%,
    transparent 70%
  );
  /* transform manejado 100% por JS — sin left/top, sin overflow */
  transform: translate(-9999px, -9999px);
  transition: width 0.4s ease, height 0.4s ease, opacity 0.3s ease;
  will-change: transform;
  mix-blend-mode: multiply;
  filter: blur(2px);
}

#cursorGlow.over-interactive {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.18) 0%,
    rgba(13, 148, 136, 0.10) 40%,
    transparent 70%
  );
}

/* ===================================================
   SCROLL PROGRESS BAR
=================================================== */
#scrollProgress {
  position: fixed !important;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--violet), var(--teal));
  z-index: 9997;
  transition: width 0.08s linear;
  border-radius: 0 99px 99px 0;
  box-shadow: 0 0 8px rgba(124, 58, 237, 0.5);
}

/* ===================================================
   TOAST NOTIFICATION
=================================================== */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(124, 58, 237, 0.04);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 9996;
  transform: translateX(130%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s;
  max-width: 340px;
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toastIcon {
  font-size: 24px;
  flex-shrink: 0;
}

.toastText {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.toastText strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.toastText span {
  font-size: 13px;
  color: var(--teal);
  font-weight: 500;
}

.toastClose {
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 16px;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  flex-shrink: 0;
  line-height: 1;
}

.toastClose:hover {
  color: var(--ink);
  background: rgba(0,0,0,0.05);
}

/* ===================================================
   TOPBAR / NAVBAR
=================================================== */
.topbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--card-border);
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.topbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
  padding: 10px clamp(20px, 4vw, 56px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.2s;
}

.brand:hover {
  transform: scale(1.02);
}

.brandLogo {
  width: 60px;
  height: auto;
  object-fit: contain;
}

.brandName {
  display: flex;
  flex-direction: column;
}

.brandName strong {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.brandName span {
  font-size: 10px;
  color: var(--teal);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.topNav {
  display: flex;
  gap: 32px;
}

.topNav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  transition: color 0.2s;
}

.topNav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: linear-gradient(90deg, var(--violet), var(--teal));
  transition: width 0.3s;
}

.topNav a:hover {
  color: var(--ink);
}

.topNav a:hover::after {
  width: 100%;
}

.topActions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navLink {
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.navLink:hover {
  color: var(--violet);
}

/* ===================================================
   HAMBURGER BUTTON
=================================================== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.2s;
  transform-origin: center;
}

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

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

/* ===================================================
   MOBILE MENU OVERLAY
=================================================== */
.mobileMenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(250, 252, 255, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobileMenu.open {
  transform: translateX(0);
}

.mobileMenuClose {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--ink);
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  border-radius: 8px;
  transition: background 0.2s;
}

.mobileMenuClose:hover {
  background: rgba(0,0,0,0.05);
}

.mobileNav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.mobileNav a {
  font-size: 30px;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: color 0.2s;
}

.mobileNav a:hover {
  color: var(--violet);
}

.mobileNav .btn {
  margin-top: 8px;
  font-size: 18px;
}

/* ===================================================
   BUTTONS
=================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease, background 0.3s ease;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.btnSmall {
  padding: 10px 24px;
  font-size: 14px;
}

.btnPrimary {
  background: linear-gradient(135deg, var(--violet), var(--teal));
  color: #fff;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.btnPrimary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(13, 148, 136, 0.4);
  filter: brightness(1.1);
}

.btnSecondary {
  background: rgba(0, 0, 0, 0.03);
  color: var(--ink);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
}

.btnSecondary:hover {
  background: rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
  border-color: rgba(0,0,0,0.15);
}

/* Ripple Effect */
.rippleEffect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  pointer-events: none;
  animation: rippleAnim 0.7s ease-out forwards;
  transform: scale(0);
}

.btnSecondary .rippleEffect {
  background: rgba(124, 58, 237, 0.12);
}

/* ===================================================
   GENERAL SECTION
=================================================== */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px clamp(20px, 4vw, 40px);
}

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

.sectionTitle {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.sectionTitle span {
  background: linear-gradient(135deg, var(--violet), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sectionHeader p {
  color: var(--muted);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* ===================================================
   HERO
=================================================== */
.hero {
  text-align: center;
  padding-top: 150px;
  position: relative;
}

.heroBgGlow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.14) 0%, transparent 60%);
  filter: blur(90px);
  z-index: 0;
  pointer-events: none;
}

.heroContent {
  max-width: 850px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  padding: 8px 16px;
  border-radius: 99px;
  background: rgba(13, 148, 136, 0.09);
  border: 1px solid rgba(13, 148, 136, 0.2);
  box-shadow: 0 0 20px rgba(13, 148, 136, 0.1);
}

.heroTitle {
  font-size: clamp(44px, 6.5vw, 80px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -2px;
  /* Altura fija de 2 líneas — evita que el typing animation mueva la página */
  min-height: 2.25em;
}

.heroTitle span {
  background: linear-gradient(135deg, var(--violet), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: block; /* siempre en su propia línea, estable */
}

/* Typing cursor blinking after span */
#typingText::after {
  content: '|';
  font-weight: 300;
  animation: blink 0.9s step-end infinite;
  margin-left: 3px;
  opacity: 0.8;
}

.heroBody {
  font-size: clamp(16px, 2vw, 21px);
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.heroActions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ===================================================
   DASHBOARD MOCKUP (HERO)
=================================================== */
.heroMockup {
  max-width: 900px;
  margin: 0 auto;
  animation: float 6s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.mockupApp {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 20px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(124, 58, 237, 0.06);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.mockupHeader {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(249,250,251,0.6);
}

.mockupTitle {
  font-size: 11px;
  font-weight: 600;
  color: #9ca3af;
  letter-spacing: 0.4px;
}

.mockupHeader .dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.mockupHeader .dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockupHeader .dots span:nth-child(1) { background: #ff5f56; }
.mockupHeader .dots span:nth-child(2) { background: #ffbd2e; }
.mockupHeader .dots span:nth-child(3) { background: #27c93f; }

.mockupBody {
  display: flex;
  height: 320px;
}

.mockupSidebar {
  width: 72px;
  border-right: 1px solid rgba(0, 0, 0, 0.04);
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(255,255,255,0.5);
}

.ms-item {
  width: 100%;
  height: 28px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.04);
  transition: background 0.3s;
}

.ms-item.active {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.18), rgba(13, 148, 136, 0.15));
  border: 1px solid rgba(124, 58, 237, 0.2);
}

.mockupContent {
  flex-grow: 1;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(249, 250, 251, 0.5);
}

.mockupRow {
  display: flex;
  gap: 14px;
}

.mockupCard {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  padding: 14px 16px;
  overflow: hidden;
}

.m1 { flex: 1; min-height: 110px; }
.m2 { flex: 2; min-height: 110px; }
.m3 { flex: 1; min-height: 130px; }

.mcLabel {
  font-size: 9px;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.mcNumber {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}

.mcTrend {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 99px;
  display: inline-block;
}

.mcTrend.up {
  color: #059669;
  background: rgba(5, 150, 105, 0.1);
}

/* Mini Bar Chart */
.mcChart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 44px;
  margin-top: 10px;
}

.chartBar {
  flex: 1;
  height: var(--h);
  border-radius: 4px 4px 0 0;
  background: rgba(124, 58, 237, 0.12);
  animation: barGrow 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.chartBar.active {
  background: linear-gradient(180deg, var(--violet), var(--teal));
}

/* Activity List */
.mcActivity {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.actItem {
  display: flex;
  align-items: center;
  gap: 8px;
}

.actDot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.actDot.teal   { background: var(--teal); }
.actDot.violet { background: var(--violet); }

.actItem span {
  font-size: 10px;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===================================================
   ENRICHED PRODUCT CARDS — NEW ELEMENTS
=================================================== */
.cardTopRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cardBadge {
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 99px;
  letter-spacing: 0.3px;
}

.tealBadge {
  background: rgba(13, 148, 136, 0.1);
  color: var(--teal);
  border: 1px solid rgba(13, 148, 136, 0.2);
}

.violetBadge {
  background: rgba(124, 58, 237, 0.1);
  color: var(--violet);
  border: 1px solid rgba(124, 58, 237, 0.2);
}

.indigoBadge {
  background: rgba(37, 99, 235, 0.1);
  color: var(--indigo);
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.cardTag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.tealTag   { color: var(--teal); }
.violetTag { color: var(--violet); }
.indigoTag { color: var(--indigo); }

/* Move cardIcon into cardTopRow — no bottom margin needed */
.cardTopRow .cardIcon { margin-bottom: 0; }

.cardFeatures {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cardFeatures li {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.checkTeal   { color: var(--teal);   font-weight: 800; font-size: 15px; flex-shrink: 0; }
.checkViolet { color: var(--violet); font-weight: 800; font-size: 15px; flex-shrink: 0; }
.checkIndigo { color: var(--indigo); font-weight: 800; font-size: 15px; flex-shrink: 0; }

.tealCardBtn {
  border-color: rgba(13, 148, 136, 0.25) !important;
  color: var(--teal) !important;
  font-size: 14px !important;
}

.tealCardBtn:hover {
  background: rgba(13, 148, 136, 0.08) !important;
  border-color: var(--teal) !important;
}

.violetCardBtn {
  border-color: rgba(124, 58, 237, 0.25) !important;
  color: var(--violet) !important;
  font-size: 14px !important;
}

.violetCardBtn:hover {
  background: rgba(124, 58, 237, 0.08) !important;
  border-color: var(--violet) !important;
}

.indigoCardBtn {
  border-color: rgba(37, 99, 235, 0.25) !important;
  color: var(--indigo) !important;
  font-size: 14px !important;
}

.indigoCardBtn:hover {
  background: rgba(37, 99, 235, 0.08) !important;
  border-color: var(--indigo) !important;
}

/* ===================================================
   PRODUCT SHOWCASE SECTIONS
=================================================== */
.showcaseSection {
  padding: 80px clamp(20px, 4vw, 60px);
  background: rgba(255, 255, 255, 0.4);
  border-top: 1px solid var(--card-border);
  position: relative;
  z-index: 1;
}

.showcaseSectionAlt {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.03), rgba(13, 148, 136, 0.03));
}

.showcaseInner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.showcaseReverse {
  direction: rtl;
}

.showcaseReverse > * {
  direction: ltr;
}

/* Showcase UI Mockup Shell */
.sMockupShell {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(13, 148, 136, 0.15);
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.1), 0 0 0 1px rgba(13, 148, 136, 0.06);
  overflow: hidden;
}

.violetShell {
  border-color: rgba(124, 58, 237, 0.15);
  box-shadow: 0 30px 70px rgba(0,0,0,0.1), 0 0 0 1px rgba(124, 58, 237, 0.06);
}

.indigoShell {
  border-color: rgba(37, 99, 235, 0.15);
  box-shadow: 0 30px 70px rgba(0,0,0,0.1), 0 0 0 1px rgba(37, 99, 235, 0.06);
}

.sMockupHeader {
  background: rgba(249, 250, 251, 0.8);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sMockupTitle {
  font-size: 11px;
  font-weight: 600;
  color: #9ca3af;
  letter-spacing: 0.3px;
}

.sMockupBody {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Calendar header */
.sCalHeader {
  display: flex;
  gap: 8px;
}

.sCalDay {
  flex: 1;
  text-align: center;
  padding: 8px 4px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  background: rgba(0,0,0,0.02);
  cursor: default;
}

.sCalDay.active {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.15), rgba(124, 58, 237, 0.1));
  color: var(--teal);
  border: 1px solid rgba(13, 148, 136, 0.2);
}

/* Appointment List */
.sApptList {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sAppt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(249, 250, 251, 0.6);
  border: 1px solid transparent;
}

.sAppt.done {
  opacity: 0.55;
}

.sAppt.active {
  background: rgba(13, 148, 136, 0.06);
  border-color: rgba(13, 148, 136, 0.2);
}

.sApptTime {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  min-width: 36px;
}

.sApptInfo {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.sApptInfo strong {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}

.sApptInfo span {
  font-size: 10px;
  color: var(--muted);
}

.sApptStatus {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 99px;
}

.sApptStatus.done    { background: rgba(0,0,0,0.06); color: #6b7280; }
.sApptStatus.active  { background: rgba(13, 148, 136, 0.12); color: var(--teal); }
.sApptStatus.pending { background: rgba(245, 158, 11, 0.1); color: #d97706; }

/* Mockup bottom stats */
.sMockupStat {
  display: flex;
  justify-content: space-around;
  padding: 14px;
  background: rgba(249, 250, 251, 0.8);
  border-radius: 12px;
  border: 1px solid var(--card-border);
}

.sStatItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.sStatItem span:last-child {
  font-size: 10px;
  color: var(--muted);
  font-weight: 500;
}

.sStatNum {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.tealNum   { color: var(--teal); }
.indigoNum { color: var(--indigo); }

/* ===================================================
   HISTORIA CLINICA MOCKUP COMPONENTS
=================================================== */

/* Patient row */
.hcPatientRow {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(37, 99, 235, 0.05);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 12px;
}

.hcAvatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.hcPatientInfo {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hcPatientInfo strong {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}

.hcPatientInfo span {
  font-size: 10px;
  color: var(--muted);
}

.hcStatusBadge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  background: rgba(37, 99, 235, 0.12);
  color: var(--indigo);
  border-radius: 99px;
  white-space: nowrap;
}

/* Interop connectors */
.hcConnectors {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hcConnector {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(249, 250, 251, 0.8);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 10px;
}

.hcConnectorActive {
  background: rgba(37, 99, 235, 0.05);
  border-color: rgba(37, 99, 235, 0.18);
}

.hcConnIcon {
  font-size: 16px;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

.hcConnector > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hcConnector strong {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
}

.hcConnector span {
  font-size: 9px;
  color: var(--muted);
}

.hcConnDot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.12);
  flex-shrink: 0;
}

.hcConnDot.active {
  background: var(--indigo);
  box-shadow: 0 0 6px rgba(37, 99, 235, 0.6);
  animation: pulseRing 1.8s ease-out infinite;
}

/* Timeline */
.hcTimeline {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hcEvent {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(249, 250, 251, 0.6);
  border-radius: 10px;
  border: 1px solid transparent;
}

.hcEventDot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hcEventDot.indigo { background: var(--indigo); }
.hcEventDot.teal   { background: var(--teal); }
.hcEventDot.amber  { background: #f59e0b; }

.hcEventInfo {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hcEventInfo strong {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
}

.hcEventInfo span {
  font-size: 9px;
  color: var(--muted);
}

.hcEventTag {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 99px;
  white-space: nowrap;
}

.hcEventTag.normal { background: rgba(5, 150, 105, 0.1);  color: #059669; }
.hcEventTag.signed { background: rgba(37, 99, 235, 0.1);  color: var(--indigo); }
.hcEventTag.alert  { background: rgba(245, 158, 11, 0.12); color: #d97706; }

/* T7 Panel Mockup */
.t7PatientCard {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(124, 58, 237, 0.05);
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 12px;
}

.t7Avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--teal));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.t7PatientCard strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  display: block;
}

.t7PatientCard span {
  font-size: 10px;
  color: var(--muted);
}

.t7SessionBadge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  background: rgba(124, 58, 237, 0.12);
  color: var(--violet);
  border-radius: 99px;
  white-space: nowrap;
}

.t7Progress { display: flex; flex-direction: column; gap: 6px; }

.t7ProgLabel {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}

.t7ProgBar {
  height: 6px;
  background: rgba(0,0,0,0.06);
  border-radius: 99px;
  overflow: hidden;
}

.t7ProgFill {
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, var(--violet), var(--teal));
  border-radius: 99px;
}

.t7Params {
  display: flex;
  justify-content: space-around;
  padding: 12px;
  background: rgba(124, 58, 237, 0.04);
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: 12px;
}

.t7Param {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.t7ParamVal {
  font-size: 16px;
  font-weight: 800;
  color: var(--violet);
  letter-spacing: -0.5px;
}

.t7Param span:last-child {
  font-size: 9px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.t7Photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.t7Photo {
  height: 80px;
  border-radius: 12px;
  display: flex;
  align-items: flex-end;
  padding: 8px 10px;
  position: relative;
  overflow: hidden;
}

.t7Photo.before {
  background: linear-gradient(135deg, #e5e7eb, #d1d5db);
}

.t7Photo.after {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.2), rgba(124, 58, 237, 0.2));
}

.t7Photo span {
  font-size: 9px;
  font-weight: 700;
  color: rgba(0,0,0,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Showcase Text Side */
.showcaseTag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 20px;
}

.tealTag2 {
  background: rgba(13, 148, 136, 0.1);
  color: var(--teal);
  border: 1px solid rgba(13, 148, 136, 0.2);
}

.violetTag2 {
  background: rgba(124, 58, 237, 0.1);
  color: var(--violet);
  border: 1px solid rgba(124, 58, 237, 0.2);
}

.indigoTag2 {
  background: rgba(37, 99, 235, 0.1);
  color: var(--indigo);
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.showcaseTitle {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.15;
}

.tealGradient {
  background: linear-gradient(135deg, var(--teal), #059669);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.violetGradient {
  background: linear-gradient(135deg, var(--violet), #9333ea);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.indigoGradient {
  background: linear-gradient(135deg, var(--indigo), #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.showcaseBody {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.showcaseFeats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sFeat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.sFeatIcon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.sFeatIcon.teal {
  background: rgba(13, 148, 136, 0.1);
  border: 1px solid rgba(13, 148, 136, 0.15);
}

.sFeatIcon.violet {
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.15);
}

.sFeatIcon.indigo {
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.sFeat strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
}

.sFeat p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* Showcase CTAs */
.showcaseBtn {
  margin-top: 32px;
}

.violetBtn {
  background: linear-gradient(135deg, var(--violet), #9333ea) !important;
}

.indigoBtn {
  background: linear-gradient(135deg, var(--indigo), #7c3aed) !important;
}

/* Showcase responsive */
@media (max-width: 900px) {
  .showcaseInner {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }

  .showcaseReverse {
    direction: ltr;
  }
}

/* ===================================================
   DISCOVER CARDS (SOLUCIONES)
=================================================== */
.cardsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
}

.discoverCard {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 36px;
  padding: 48px 40px;
  backdrop-filter: var(--glass-blur);
  transition: transform 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.discoverCard::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}

.cardGlow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
  opacity: 0.25;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.tealGlow   { background: var(--teal); }
.violetGlow { background: var(--violet); }
.indigoGlow { background: var(--indigo); }

.discoverCard:hover {
  transform: translateY(-12px);
  border-color: rgba(13, 148, 136, 0.25);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.08), inset 0 0 20px rgba(255, 255, 255, 0.8);
}

.discoverCard:hover .cardGlow {
  opacity: 0.5;
  transform: scale(1.3);
}

.cardIcon {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
  transition: all 0.5s ease;
}

.tealIcon {
  background: rgba(13, 148, 136, 0.1);
  color: var(--teal);
  border: 1px solid rgba(13, 148, 136, 0.2);
}

.violetIcon {
  background: rgba(124, 58, 237, 0.1);
  color: var(--violet);
  border: 1px solid rgba(124, 58, 237, 0.2);
}

.indigoIcon {
  background: rgba(37, 99, 235, 0.1);
  color: var(--indigo);
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.discoverCard:hover .cardIcon {
  background: linear-gradient(135deg, var(--violet), var(--teal));
  color: #fff;
  border-color: transparent;
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 15px 30px rgba(13, 148, 136, 0.35);
}

.discoverCard h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.5px;
}

.discoverCard p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  position: relative;
  z-index: 1;
  flex-grow: 1;
  margin-bottom: 40px;
}

.cardBtn {
  position: relative;
  z-index: 1;
  background: transparent;
  border: 2px solid rgba(0, 0, 0, 0.1);
  color: var(--ink);
  padding: 14px 28px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
  align-self: flex-start;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.discoverCard:hover .cardBtn {
  border-color: var(--teal);
  background: rgba(13, 148, 136, 0.06);
  color: var(--teal);
}

/* ===================================================
   BENTO GRID (BENEFICIOS)
=================================================== */
.bentoGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.bentoItem {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 40px 30px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.bentoItem:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 58, 237, 0.2);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
}

.bentoIcon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(13, 148, 136, 0.1);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid rgba(13, 148, 136, 0.1);
  transition: background 0.3s, transform 0.3s;
}

.bentoItem:hover .bentoIcon {
  background: rgba(13, 148, 136, 0.15);
  transform: scale(1.05);
}

.bentoItem h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.bentoItem p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* ===================================================
   TESTIMONIALS
=================================================== */
.testimoGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.testimoCard {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimoCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.07);
}

.stars {
  color: #f59e0b;
  font-size: 20px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.testimoCard p {
  font-size: 18px;
  color: var(--ink);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 30px;
  font-weight: 500;
}

.client {
  display: flex;
  align-items: center;
  gap: 16px;
}

.clientAvatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--violet));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.clientInfo {
  display: flex;
  flex-direction: column;
}

.clientInfo strong {
  font-size: 16px;
  font-weight: 700;
}

.clientInfo span {
  font-size: 14px;
  color: var(--muted);
}

/* ===================================================
   FINAL CTA
=================================================== */
.finalCta {
  text-align: center;
  padding: 80px 40px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(13, 148, 136, 0.05));
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.ctaGlow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(13, 148, 136, 0.1) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.ctaTitle {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.ctaBody {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.ctaActions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ===================================================
   CONTACT SECTION
=================================================== */
.contactGrid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.contactInfo {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 8px;
}

.contactItem {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contactIcon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(13, 148, 136, 0.09);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(13, 148, 136, 0.15);
  flex-shrink: 0;
  transition: background 0.3s, transform 0.3s;
}

.contactItem:hover .contactIcon {
  background: rgba(13, 148, 136, 0.15);
  transform: scale(1.05);
}

.contactItem > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 4px;
}

.contactItem strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contactItem span {
  font-size: 15px;
  color: var(--muted);
  font-weight: 500;
}

.contactForm {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--card-border);
  border-radius: 28px;
  padding: 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.formRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.formGroup {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.formGroup label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.3px;
}

.formGroup input,
.formGroup textarea {
  padding: 14px 18px;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: none;
  cursor: text;
}

.formGroup input:focus,
.formGroup textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.1);
}

.formGroup input::placeholder,
.formGroup textarea::placeholder {
  color: #9ca3af;
}

.contactSubmitBtn {
  width: 100%;
  transition: background 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* ===================================================
   FOOTER
=================================================== */
.footer {
  padding: 60px 40px 40px;
  border-top: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: var(--glass-blur);
  position: relative;
  z-index: 1;
}

.footerContent {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.footerLinks {
  display: flex;
  gap: 30px;
}

.footerLinks a {
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s;
}

.footerLinks a:hover {
  color: var(--teal);
}

.footer > p {
  text-align: center;
  color: #9ca3af;
  font-size: 14px;
}

/* ===================================================
   REVEAL ANIMATION
=================================================== */
.reveal {
  opacity: 0;
  visibility: hidden;
}

.reveal.active {
  opacity: 1;
  visibility: visible;
  animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* ===================================================
   RESPONSIVE — MOBILE
=================================================== */
@media (max-width: 768px) {
  .topNav,
  .navLink {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding-top: 130px;
  }

  .heroTitle {
    font-size: 40px;
  }

  .section {
    padding: 80px 20px;
  }

  .discoverCard {
    padding: 40px 24px;
  }

  .mockupApp {
    display: none;
  }

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

  .contactGrid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .toast {
    bottom: 16px;
    right: 16px;
    left: 16px;
    max-width: none;
  }
}

/* Hide glow cursor on touch devices */
@media (hover: none) {
  #cursorGlow {
    display: none;
  }
}