/* ===========================
   Global Styles & Reset
   =========================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #00f0ff;
  --primary-pink: #ff006e;
  --primary-purple: #a855f7;
  --secondary: #ec4899;
  --accent: #06b6d4;
  --bg-dark: #0f0b1e;
  --bg-darker: #08050e;
  --bg-card: #1a1530;
  --text-light: #ffffff;
  --text-muted: #9ca3af;
  --border: #2d1b4e;
  --success: #10b981;
  --gradient-1: linear-gradient(135deg, #00f0ff 0%, #a855f7 100%);
  --gradient-2: linear-gradient(135deg, #ff006e 0%, #ec4899 100%);
  --gradient-3: linear-gradient(135deg, #06b6d4 0%, #00f0ff 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Sora', sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.section-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  text-align: center;
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary);
}

/* ===========================
   Navigation Bar
   =========================== */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 11, 30, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 240, 255, 0.1);
  padding: 1.2rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.02em;
}

.logo-icon {
  font-size: 2rem;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  text-transform: none;
}

.nav-links a:hover {
  color: var(--primary);
}

@media (max-width: 768px) {
  .nav-links {
    gap: 1.5rem;
    font-size: 0.9rem;
  }
}

/* ===========================
   Buttons
   =========================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  text-decoration: none;
  font-size: 1rem;
  font-family: 'Space Grotesk', sans-serif;
  text-transform: none;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--gradient-2);
  color: var(--text-light);
  box-shadow: 0 20px 40px rgba(255, 0, 110, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-1);
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(255, 0, 110, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: inset 0 0 20px rgba(0, 240, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(0, 240, 255, 0.1);
  border-color: var(--secondary);
  color: var(--secondary);
  transform: translateY(-4px);
}

.btn-large {
  padding: 1.1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-icon {
  font-size: 1.3rem;
}

/* ===========================
   Hero Section
   =========================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  margin-top: 80px;
  overflow: hidden;
  background: radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.2) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(0, 240, 255, 0.15) 0%, transparent 50%);
}

.hero-bg {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 0, 110, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: float 8s ease-in-out infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: float 10s ease-in-out infinite reverse;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
}

.hero-title {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-title strong {
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 450px;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-trust {
  color: var(--text-muted);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-visual {
  position: relative;
  height: 450px;
  perspective: 1000px;
}

.floating-card {
  position: absolute;
  background: linear-gradient(135deg, rgba(26, 21, 48, 0.8) 0%, rgba(42, 23, 70, 0.6) 100%);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 1.2rem;
  padding: 2rem;
  backdrop-filter: blur(20px);
  animation: floatSmooth 5s ease-in-out infinite;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), inset 0 0 60px rgba(0, 240, 255, 0.05);
}

.card-1 {
  width: 280px;
  top: 0;
  right: 0;
  animation-delay: 0s;
}

.card-2 {
  width: 290px;
  bottom: 0;
  left: 0;
  animation-delay: 1.5s;
}

@keyframes floatSmooth {
  0%, 100% { transform: translateY(0) rotateX(0); }
  50% { transform: translateY(-25px) rotateX(5deg); }
}

.card-header {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.card-value {
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.card-time {
  color: var(--text-muted);
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-visual {
    height: 300px;
  }
}

/* ===========================
   Stats Section
   =========================== */

.stats-section {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.stat-card {
  background: linear-gradient(135deg, rgba(26, 21, 48, 0.6) 0%, rgba(42, 23, 70, 0.4) 100%);
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: 1.5rem;
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.5), transparent);
}

.stat-card:hover {
  border-color: rgba(255, 0, 110, 0.3);
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(255, 0, 110, 0.2);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-value {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.stat-label {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.stat-bar {
  height: 6px;
  background: rgba(0, 240, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(0, 240, 255, 0.2);
}

.stat-progress {
  height: 100%;
  background: var(--gradient-2);
  border-radius: 3px;
  animation: slideIn 1s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 20px rgba(255, 0, 110, 0.5);
}

@keyframes slideIn {
  from { width: 0 !important; }
}

/* ===========================
   Features Section
   =========================== */

.features-section {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  background: linear-gradient(135deg, rgba(26, 21, 48, 0.6) 0%, rgba(42, 23, 70, 0.4) 100%);
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: 1.5rem;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.5), transparent);
}

.feature-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 0, 110, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  border-color: rgba(255, 0, 110, 0.3);
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(255, 0, 110, 0.2);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
  position: relative;
  z-index: 1;
  letter-spacing: -0.01em;
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

/* ===========================
   How It Works Section
   =========================== */

.how-it-works {
  padding: 7rem 0;
  background: radial-gradient(circle at 50% 100%, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center;
}

.step-card {
  background: linear-gradient(135deg, rgba(26, 21, 48, 0.6) 0%, rgba(42, 23, 70, 0.4) 100%);
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.5), transparent);
}

.step-card:hover {
  border-color: rgba(255, 0, 110, 0.3);
  transform: translateY(-10px);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--text-light);
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);
}

.step-card h3 {
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  font-size: 1.3rem;
}

.step-card p {
  color: var(--text-muted);
  font-size: 1rem;
}

.step-arrow {
  font-size: 2.5rem;
  color: var(--primary);
  text-align: center;
  animation: bounce 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .step-arrow {
    display: none;
  }
}

/* ===========================
   Pricing Section
   =========================== */

.pricing-section {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pricing-card {
  background: linear-gradient(135deg, rgba(26, 21, 48, 0.6) 0%, rgba(42, 23, 70, 0.4) 100%);
  border: 1.5px solid rgba(0, 240, 255, 0.15);
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.5), transparent);
}

.pricing-card.featured {
  border-color: rgba(255, 0, 110, 0.4);
  background: linear-gradient(135deg, rgba(255, 0, 110, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
  transform: scale(1.08);
  box-shadow: 0 20px 60px rgba(255, 0, 110, 0.25);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-2);
  color: var(--text-light);
  padding: 0.6rem 1.5rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);
}

.pricing-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-card h3 {
  margin-bottom: 1.2rem;
  color: var(--text-light);
  letter-spacing: -0.01em;
  font-size: 1.3rem;
}

.pricing-highlight {
  font-size: 2.8rem;
  font-weight: 800;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.pricing-card p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1rem;
}

.pricing-card:hover {
  border-color: rgba(255, 0, 110, 0.4);
  transform: translateY(-15px);
}

.pricing-card.featured:hover {
  box-shadow: 0 30px 60px rgba(255, 0, 110, 0.3);
}

/* ===========================
   Social Proof Section
   =========================== */

.social-proof {
  padding: 7rem 0;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.05) 0%, rgba(0, 240, 255, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.testimonial {
  background: linear-gradient(135deg, rgba(26, 21, 48, 0.6) 0%, rgba(42, 23, 70, 0.4) 100%);
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: 1.5rem;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  position: relative;
}

.testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.5), transparent);
}

.testimonial:hover {
  border-color: rgba(255, 0, 110, 0.3);
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(255, 0, 110, 0.15);
}

.stars {
  color: #ffd700;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  letter-spacing: 3px;
}

.testimonial p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.8;
  font-size: 1rem;
}

.author {
  color: var(--primary);
  font-weight: 600;
}

/* ===========================
   CTA Section
   =========================== */

.cta-section {
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 0, 110, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
  border-top: 1px solid rgba(0, 240, 255, 0.1);
  border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

.cta-section h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  letter-spacing: -0.02em;
}

.cta-section > .container > p:first-of-type {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

.cta-subtitle {
  margin-top: 2rem;
  color: var(--text-muted);
  font-size: 1rem;
}

.cta-subtitle .link {
  color: var(--primary);
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-subtitle .link:hover {
  color: var(--secondary);
}

/* ===========================
   Footer
   =========================== */

.footer {
  background: var(--bg-darker);
  border-top: 1px solid rgba(0, 240, 255, 0.1);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.footer-section h4 {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-section p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0, 240, 255, 0.1);
  color: var(--text-muted);
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

/* ===========================
   Responsive Design
   =========================== */

@media (max-width: 1024px) {
  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .pricing-card:hover {
    transform: translateY(-10px);
  }
  
  .nav-links {
    gap: 0.5rem;
    font-size: 0.85rem;
  }
  
  .cta-section h2 {
    font-size: 2rem;
  }
}

/* ===========================
   Scrollbar Styling
   =========================== */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-2);
  border-radius: 5px;
  box-shadow: inset 0 0 10px rgba(255, 0, 110, 0.5);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-1);
}
