/* =============================================
   Forever Development - Ana Stil Dosyası
   Dark Mode | Glassmorphism | Neon Effects
   ============================================= */

/* --- CSS Değişkenleri --- */
:root {
  /* Brand colors */
  --purple: #7c3aed;
  --purple-light: #9d5ff5;
  --purple-dark: #5b21b6;
  --purple-deep: #4c1d95;
  --purple-soft: #a78bfa;
  --neon-blue: #00d4ff;
  --neon-blue-dk: #0099cc;
  --cyan-deep: #0891b2;

  /* Backgrounds (refined with depth) */
  --bg-primary: #07070e;
  --bg-secondary: #0c0c18;
  --bg-elevated: #14141f;
  --bg-card: rgba(255, 255, 255, 0.035);
  --bg-card-hover: rgba(255, 255, 255, 0.07);

  /* Borders (more subtle, premium) */
  --border: rgba(255, 255, 255, 0.08);
  --border-soft: rgba(255, 255, 255, 0.06);
  --border-glow: rgba(124, 58, 237, 0.4);

  /* Text (premium contrast scale) */
  --text-primary: #f0f0f5;
  --text-secondary: #a0a0b5;
  --text-muted: #60607a;
  --text-faded: rgba(255, 255, 255, 0.35);

  /* Semantic */
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;

  /* Glass */
  --glass-bg: rgba(15, 15, 26, 0.8);
  --glass-border: rgba(124, 58, 237, 0.2);

  /* Layout */
  --navbar-height: 72px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Premium layered shadows */
  --shadow-glow: 0 0 30px rgba(124, 58, 237, 0.3);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-elev-1: 0 1px 2px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-elev-2: 0 4px 12px rgba(0, 0, 0, 0.35), 0 2px 4px rgba(0, 0, 0, 0.25);
  --shadow-elev-3: 0 20px 40px rgba(0, 0, 0, 0.4), 0 10px 20px rgba(0, 0, 0, 0.3);
  --shadow-inset-glow: inset 0 1px 0 rgba(255, 255, 255, 0.06);

  /* Easing curves (premium feel) */
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-premium: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  /* Lenis devraldığında native smooth scroll devre dışı (mobil için kalır) */
  font-size: 16px;
}

html.lenis, html.lenis body { height: auto; }
html.lenis { scroll-behavior: auto !important; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--bg-primary);
  /* Subtle dot grid + soft top glow — clean, not overwhelming */
  background-image:
    radial-gradient(ellipse 100% 45% at 50% -2%, rgba(124,58,237,.09) 0%, transparent 68%),
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.032) 1px, transparent 0);
  background-size: auto, 30px 30px;
  color: var(--text-primary);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Premium typography — headings */
h1, h2, h3, h4 {
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h1 { letter-spacing: -0.035em; }

/* Premium reveal animation utility */
.reveal-premium {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-premium), transform 0.9s var(--ease-premium);
  will-change: opacity, transform;
}
.reveal-premium.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay support (use data-stagger=index on parent or .stagger-N on child) */
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }
.stagger-5 { transition-delay: 0.40s; }
.stagger-6 { transition-delay: 0.48s; }

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Dark mode select & option */
select,
select option {
  background: #1a1a2e !important;
  color: #f0f0f5 !important;
}

select option:checked {
  background: rgba(124, 58, 237, 0.3) !important;
}

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

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

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

::-webkit-scrollbar-thumb {
  background: var(--purple);
  border-radius: 3px;
}

/* --- Background Particles --- */
.bg-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Background orbs — very subtle, non-overwhelming */
.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-particle 28s infinite ease-in-out;
  opacity: 0.018;
  filter: blur(60px);
}

.particle:nth-child(1) {
  width: 500px; height: 500px;
  background: var(--purple);
  top: -150px; left: -150px;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  width: 380px; height: 380px;
  background: var(--neon-blue);
  top: 25%; right: -100px;
  animation-delay: -9s;
}

.particle:nth-child(3) {
  width: 320px; height: 320px;
  background: var(--purple-dark);
  bottom: 5%; left: 15%;
  animation-delay: -18s;
}

.particle:nth-child(4) {
  width: 260px; height: 260px;
  background: var(--neon-blue);
  top: 55%; left: 55%;
  animation-delay: -5s;
}

.particle:nth-child(5) {
  width: 420px; height: 420px;
  background: var(--purple);
  bottom: -120px; right: 15%;
  animation-delay: -13s;
}

@keyframes float-particle {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(25px, -35px) scale(1.05); }
  66%       { transform: translate(-18px, 22px) scale(0.95); }
}

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* =============================================
   NAV
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-height);
  background: rgba(7, 7, 14, 0.75);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(7, 7, 14, 0.95);
  border-bottom-color: rgba(124,58,237,.18);
  box-shadow: 0 1px 0 rgba(124,58,237,.12), 0 8px 32px rgba(0,0,0,.5);
}

.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Orbitron', sans-serif;
}

.brand-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--purple), var(--neon-blue));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.5);
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #fff 0%, var(--neon-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: rgba(124, 58, 237, 0.15);
}

.nav-link.active {
  color: var(--purple-light);
}

.navbar-auth {
  margin-left: auto;
}

/* Navbar Toggle (Mobile) */
.navbar-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition);
  margin-left: auto;
}

.navbar-toggle:hover {
  background: var(--bg-card);
  border-color: var(--purple);
}

/* User Menu */
.user-menu {
  position: relative;
}

.user-menu-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 8px 14px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
}

.user-menu-btn:hover {
  border-color: var(--purple);
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.2);
}

.user-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
}

.user-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  min-width: 180px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.user-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: var(--text-secondary);
  font-size: 0.88rem;
  transition: var(--transition);
}

.user-dropdown a:hover {
  background: var(--bg-card);
  color: #fff;
}

.user-dropdown a.danger:hover {
  color: var(--danger);
}

.user-dropdown a i {
  width: 16px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--neon-blue);
  color: var(--neon-blue);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.btn-discord {
  background: linear-gradient(135deg, #5865F2, #7289DA);
  color: #fff;
  box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4);
}

.btn-discord:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(88, 101, 242, 0.6);
}

.btn-neon {
  background: transparent;
  border: 1px solid var(--neon-blue);
  color: var(--neon-blue);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.2), inset 0 0 10px rgba(0, 212, 255, 0.05);
}

.btn-neon:hover {
  background: rgba(0, 212, 255, 0.1);
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.5), inset 0 0 15px rgba(0, 212, 255, 0.1);
  transform: translateY(-2px);
}

.btn-danger {
  background: var(--danger);
  color: #fff;
}

.btn-success {
  background: var(--success);
  color: #fff;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--navbar-height) + 60px) 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 600px 500px at 10% 50%, rgba(124, 58, 237, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 90% 30%, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  color: var(--purple-light);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  animation: pulse-glow 3s ease-in-out infinite;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.2)
  }

  50% {
    box-shadow: 0 0 25px rgba(124, 58, 237, 0.5)
  }
}

.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, var(--neon-blue) 50%, var(--purple-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease both;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  margin-bottom: 36px;
  animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s 0.3s ease both;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.hero-feature i {
  color: var(--neon-blue);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.4s ease both;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
  animation: fadeInUp 0.8s 0.6s ease both;
}

.hero-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.hero-stat:hover {
  border-color: var(--purple);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
}

.hero-stat-value {
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(135deg, var(--purple-light), var(--neon-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-top: 4px;
}

/* =============================================
   SECTIONS
   ============================================= */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  color: var(--purple-light);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
}

/* Divider */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple) 30%, var(--neon-blue) 70%, transparent);
  margin: 0;
  opacity: 0.3;
}

/* =============================================
   PRODUCT CARDS — Yeni Tasarım
   ============================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}

.product-card {
  /* Clean glassmorphism base */
  background: linear-gradient(160deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease, border-color .3s ease;
  --mx: 50%; --my: 50%;
}

/* Top shimmer line — revealed on hover */
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,.7), rgba(0,212,255,.5), transparent);
  opacity: 0;
  transition: opacity .35s;
  z-index: 2;
}

/* Mouse tracking radial glow */
.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(124,58,237,.1), transparent 58%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
  z-index: 1;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124,58,237,.32);
  box-shadow:
    0 22px 56px rgba(0,0,0,.5),
    0 0 0 1px rgba(124,58,237,.1),
    inset 0 1px 0 rgba(255,255,255,.06);
}

.product-card:hover::before { opacity: 1; }
.product-card:hover::after  { opacity: 1; }

/* ── Card Image ── */
.product-card-image {
  height: 164px;
  background: linear-gradient(145deg, rgba(12,12,24,1) 0%, rgba(124,58,237,.14) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.04);
}

/* Bottom fade on image */
.product-card-image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 52px;
  background: linear-gradient(transparent, rgba(7,7,14,.9));
  pointer-events: none;
}

.product-card-image.no-image {
  font-size: 3.2rem;
}

/* Featured badge */
.product-featured-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: linear-gradient(135deg, var(--purple), var(--neon-blue));
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  z-index: 3;
  box-shadow: 0 2px 12px rgba(124,58,237,.5);
}

/* ── Card Body ── */
.product-card-body {
  padding: 18px 20px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.product-category {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--purple-light);
  opacity: .75;
}

.product-card-title {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.35;
  color: var(--text-primary);
}

.product-card-desc {
  color: var(--text-secondary);
  font-size: .82rem;
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Features list */
.product-features-list {
  margin-bottom: 14px;
}

.product-features-list li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.45);
  font-size: .78rem;
  padding: 3px 0;
}

.product-features-list li i {
  color: var(--neon-blue);
  font-size: .72rem;
  min-width: 12px;
  opacity: .8;
}

/* ── Card Footer ── */
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  border-top: 1px solid rgba(255,255,255,.05);
  background: rgba(0,0,0,.18);
  position: relative;
  z-index: 2;
}

/* ── Price ── */
.product-price {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  background: linear-gradient(135deg, #a78bfa, #67e8f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.product-price small {
  font-size: .62rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  display: block;
  margin-top: 2px;
  color: var(--text-muted);
  -webkit-text-fill-color: var(--text-muted);
}

/* =============================================
   WHY US SECTION
   ============================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.why-card {
  background: linear-gradient(150deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.015) 100%);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px;
  padding: 30px 26px;
  text-align: center;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
  --mx: 50%; --my: 50%;
}

/* Mouse tracking glow */
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(124,58,237,.1), transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}

/* Bottom accent bar */
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple), var(--neon-blue), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .35s ease;
}

.why-card:hover {
  border-color: rgba(124,58,237,.28);
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(0,0,0,.4), 0 0 0 1px rgba(124,58,237,.08);
}

.why-card:hover::before { opacity: 1; }
.why-card:hover::after  { transform: scaleX(1); }

.why-icon {
  width: 60px; height: 60px;
  background: linear-gradient(145deg, rgba(124,58,237,.18), rgba(0,212,255,.08));
  border: 1px solid rgba(124,58,237,.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  margin: 0 auto 18px;
  transition: all .3s;
}

.why-card:hover .why-icon {
  box-shadow: 0 0 20px rgba(124,58,237,.4);
  border-color: rgba(124,58,237,.5);
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 9px;
  color: var(--text-primary);
}

.why-card p {
  color: var(--text-secondary);
  font-size: .85rem;
  line-height: 1.65;
}

/* =============================================
   SALE TICKER
   ============================================= */
.sale-ticker {
  background: rgba(15, 15, 26, 0.9);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
}

.sale-ticker::before,
.sale-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
}

.sale-ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-primary), transparent);
}

.sale-ticker::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-primary), transparent);
}

.ticker-track {
  display: flex;
  gap: 40px;
  align-items: center;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  padding: 4px 16px;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 20px;
}

.ticker-item .ticker-name {
  color: var(--purple-light);
  font-weight: 600;
}

.ticker-item .ticker-bot {
  color: var(--neon-blue);
  font-weight: 600;
}

.ticker-item i {
  color: var(--success);
}

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

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

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin: 16px 0 20px;
  line-height: 1.6;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: rgba(124, 58, 237, 0.15);
  border-color: var(--purple);
  color: var(--purple-light);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul a {
  color: var(--text-secondary);
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-links ul a:hover {
  color: var(--purple-light);
  padding-left: 4px;
}

.footer-contact p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact a {
  color: var(--neon-blue);
}

.footer-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.footer-badges span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-badges span i {
  color: var(--success);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb {
  padding: calc(var(--navbar-height) + 20px) 0 20px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.breadcrumb a {
  color: var(--text-secondary);
}

.breadcrumb a:hover {
  color: var(--purple-light);
}

.breadcrumb span {
  margin: 0 8px;
}

/* =============================================
   PAGE HERO
   ============================================= */
.page-hero {
  padding: calc(var(--navbar-height) + 60px) 0 60px;
  text-align: center;
  background: radial-gradient(ellipse 600px 300px at 50% 0%, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
}

.page-hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* =============================================
   FILTER BAR
   ============================================= */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.filter-label {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.filter-btn {
  padding: 7px 18px;
  border-radius: 20px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: rgba(124, 58, 237, 0.15);
  border-color: var(--purple);
  color: var(--purple-light);
}

.filter-search {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
}

.filter-search input {
  background: none;
  border: none;
  color: var(--text-primary);
  outline: none;
  font-size: 0.85rem;
  width: 180px;
}

.filter-search input::placeholder {
  color: var(--text-muted);
}

.filter-search i {
  color: var(--text-muted);
}

/* =============================================
   FORMS
   ============================================= */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  padding: 12px 16px;
  font-size: 0.9rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
  background: rgba(124, 58, 237, 0.05);
}

.form-control::placeholder {
  color: var(--text-muted);
}

select.form-control {
  cursor: pointer;
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

/* =============================================
   GLASS CARDS
   ============================================= */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* =============================================
   BADGES & ALERTS
   ============================================= */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-success {
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-warning {
  background: rgba(245, 158, 11, 0.15);
  color: var(--warning);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-danger {
  background: rgba(239, 68, 68, 0.15);
  color: var(--danger);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.badge-purple {
  background: rgba(124, 58, 237, 0.15);
  color: var(--purple-light);
  border: 1px solid rgba(124, 58, 237, 0.3);
}

.badge-blue {
  background: rgba(0, 212, 255, 0.1);
  color: var(--neon-blue);
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
}

.alert-success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #6ee7b7;
}

.alert-danger {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.alert-warning {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #fcd34d;
}

.alert-info {
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.25);
  color: #67e8f9;
}

/* =============================================
   TABLE
   ============================================= */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead th {
  background: rgba(124, 58, 237, 0.1);
  padding: 14px 16px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

tbody td {
  padding: 14px 16px;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  vertical-align: middle;
}

tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

tbody tr:last-child td {
  border-bottom: none;
}

/* =============================================
   LOGIN PAGE
   ============================================= */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.auth-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.auth-logo {
  font-size: 3rem;
  margin-bottom: 24px;
}

.auth-card h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.auth-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* =============================================
   PRODUCT DETAIL
   ============================================= */
.product-detail {
  padding: 40px 0 80px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.product-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--bg-secondary), rgba(124, 58, 237, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  position: relative;
}

.product-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-info {}

.product-detail-info h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 12px;
}

.product-detail-desc {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.product-detail-features {
  margin-bottom: 32px;
}

.product-detail-features h3 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-item i {
  color: var(--neon-blue);
  width: 16px;
}

.product-buy-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.buy-price {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--neon-blue);
  line-height: 1;
}

.buy-price small {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  display: block;
  margin-top: 4px;
  font-weight: normal;
}

/* =============================================
   PROFILE PAGE
   ============================================= */
.profile-header {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--purple);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
}

.profile-name {
  font-size: 1.4rem;
  font-weight: 700;
}

.profile-role {
  color: var(--purple-light);
  font-size: 0.85rem;
  margin-top: 4px;
}

/* =============================================
   SUCCESS PAGE
   ============================================= */
.success-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 60px;
}

.success-card {
  text-align: center;
  max-width: 520px;
  background: var(--bg-card);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 60px rgba(16, 185, 129, 0.1);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--success);
  margin: 0 auto 24px;
  animation: pulse-success 2s ease-in-out infinite;
}

@keyframes pulse-success {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4)
  }

  50% {
    box-shadow: 0 0 0 16px rgba(16, 185, 129, 0)
  }
}

.license-key-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-family: 'Orbitron', monospace;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--neon-blue);
  cursor: pointer;
  transition: var(--transition);
  user-select: all;
  margin: 16px 0;
}

.license-key-box:hover {
  border-color: var(--neon-blue);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   LOADING
   ============================================= */
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--purple);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Gradient Text Utility */
.gradient-text {
  background: linear-gradient(135deg, var(--purple-light), var(--neon-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

  .product-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar {
    z-index: 2500;
  }

  .navbar .container {
    position: relative;
    flex-wrap: nowrap;
  }

  .navbar-menu {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: calc(100% + 12px);
    left: 12px;
    right: 12px;
    z-index: 2600;
    background: #080812;
    background-image:
      radial-gradient(circle at 12% 0%, rgba(124,58,237,.18), transparent 42%),
      linear-gradient(180deg, rgba(18,18,34,.98), rgba(6,6,14,.99));
    -webkit-backdrop-filter: blur(22px) saturate(130%);
    backdrop-filter: blur(22px) saturate(130%);
    padding: 14px;
    gap: 8px;
    border: 1px solid rgba(124,58,237,.32);
    border-radius: 18px;
    box-shadow: 0 22px 70px rgba(0,0,0,.72), inset 0 1px 0 rgba(255,255,255,.06);
  }

  .navbar-menu.open {
    display: flex;
  }

  .navbar-menu .nav-link {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 13px;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.055);
    color: rgba(240,240,245,.88);
  }

  .navbar-menu .nav-link:hover,
  .navbar-menu .nav-link.active {
    background: linear-gradient(135deg, rgba(124,58,237,.28), rgba(0,212,255,.08));
    border-color: rgba(124,58,237,.38);
    color: #fff;
  }

  .navbar-toggle {
    display: block;
    position: relative;
    z-index: 2700;
    background: rgba(10,10,20,.92);
    border-color: rgba(124,58,237,.55);
    box-shadow: 0 0 22px rgba(124,58,237,.22);
  }

  .navbar-auth {
    margin-left: 0;
    position: absolute;
    top: calc(100% + 224px);
    left: 12px;
    right: 12px;
    z-index: 2601;
    display: none !important;
    justify-content: stretch;
    gap: 8px;
    padding: 10px;
    background: #080812;
    border: 1px solid rgba(124,58,237,.26);
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0,0,0,.58);
  }

  .navbar-menu.open + .navbar-auth {
    display: flex !important;
  }

  .navbar-menu.open + .navbar-auth > * {
    flex: 1;
    justify-content: center;
  }

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

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

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

  .auth-card {
    padding: 32px 24px;
  }

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

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

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

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

/* =============================================
   CLAUDE-STYLE GLOBAL CURSOR GLOW
   ============================================= */
#site-cursor-glow {
  position: fixed;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,.1) 0%, rgba(0,212,255,.04) 35%, transparent 65%);
  pointer-events: none;
  transform: translate(-50%,-50%);
  z-index: 0;
  will-change: left, top;
  mix-blend-mode: screen;
  opacity: 0;
  top: -9999px;
  left: -9999px;
  transition: opacity .35s;
}

/* =============================================
   HERO SLIDER
   ============================================= */
.hero-slider {
  position: relative;
  min-height: calc(100vh - var(--navbar-height));
  display: flex;
  align-items: center;
  padding: calc(var(--navbar-height) + 50px) 0 70px;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  will-change: transform;
}

.hero-orb-1 {
  width: 750px; height: 750px;
  background: radial-gradient(circle, rgba(124,58,237,.2) 0%, transparent 65%);
  top: -220px; left: -180px;
  animation: hoFloat1 22s ease-in-out infinite;
}

.hero-orb-2 {
  width: 580px; height: 580px;
  background: radial-gradient(circle, rgba(0,212,255,.12) 0%, transparent 65%);
  bottom: -130px; right: -130px;
  animation: hoFloat2 28s ease-in-out infinite;
}

.hero-orb-3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(88,101,242,.1) 0%, transparent 65%);
  top: 45%; left: 42%;
  animation: hoFloat1 38s ease-in-out infinite reverse;
}

@keyframes hoFloat1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(42px,-32px) scale(1.04); }
  66%      { transform: translate(-28px,46px) scale(.96); }
}

@keyframes hoFloat2 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(-36px,26px) scale(1.03); }
  66%      { transform: translate(32px,-38px) scale(.97); }
}

.hero-noise {
  position: absolute; inset: 0; pointer-events: none; z-index: 1; opacity: .022;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.hslider-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Text slides */
.hslide-text {
  display: none;
  flex-direction: column;
  animation: hslideIn .6s cubic-bezier(.16,1,.3,1) both;
}
.hslide-text.active { display: flex; }

@keyframes hslideIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hslide-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 100px;
  font-size: .78rem; font-weight: 600; letter-spacing: .8px;
  margin-bottom: 22px; width: fit-content;
}
.hslide-badge.discord { background: rgba(88,101,242,.12); border: 1px solid rgba(88,101,242,.28); color: #818cf8; }
.hslide-badge.fivem   { background: rgba(239,68,68,.12);  border: 1px solid rgba(239,68,68,.28);  color: #f87171; }
.hslide-badge.trust   { background: rgba(16,185,129,.12); border: 1px solid rgba(16,185,129,.28); color: #34d399; }

.hslide-badge .sbdot { width: 6px; height: 6px; border-radius: 50%; animation: sbBlink 1.5s ease-in-out infinite; }
.hslide-badge.discord .sbdot { background: #818cf8; }
.hslide-badge.fivem   .sbdot { background: #f87171; }
.hslide-badge.trust   .sbdot { background: #34d399; }
@keyframes sbBlink { 0%,100%{opacity:1} 50%{opacity:.25} }

.hslide-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem,4.5vw,3.3rem);
  font-weight: 900; line-height: 1.15; margin-bottom: 18px; color: #fff;
}

.hslide-title .acc-discord { background: linear-gradient(135deg,#818cf8,#5865F2); -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text; }
.hslide-title .acc-fivem   { background: linear-gradient(135deg,#fca5a5,#ef4444); -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text; }
.hslide-title .acc-trust   { background: linear-gradient(135deg,#6ee7b7,#10b981); -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text; }

.hslide-desc {
  color: rgba(255,255,255,.38); font-size: 1rem; font-weight: 300;
  line-height: 1.82; margin-bottom: 28px; max-width: 480px;
}

.hslide-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }

/* Slide progress bars */
.slide-bars { display: flex; gap: 10px; margin-bottom: 44px; }
.slide-bar {
  height: 3px; flex: 1; max-width: 72px; border-radius: 2px;
  background: rgba(255,255,255,.1); cursor: pointer; position: relative; overflow: hidden;
}
.slide-bar .sfill {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--purple), var(--neon-blue));
  border-radius: 2px; transform: scaleX(0); transform-origin: left;
}
.slide-bar.active .sfill { animation: sfillAnim 4.4s linear forwards; }
@keyframes sfillAnim { from{transform:scaleX(0)} to{transform:scaleX(1)} }

/* Stats row */
.hero-stats-row { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.hstat-v2 { text-align: left; }
.hstat-v2-num {
  font-family: 'Orbitron', sans-serif; font-size: 1.55rem; font-weight: 700;
  background: linear-gradient(135deg,#a78bfa,#67e8f9);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.hstat-v2-lbl { color: rgba(255,255,255,.32); font-size: .73rem; margin-top: 3px; }
.hstat-divider { width: 1px; height: 32px; background: rgba(255,255,255,.08); }

/* ── Floating visual cards (right column) ── */
.hslider-visual { position: relative; height: 500px; }

.hv-card {
  position: absolute;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 20px 22px;
  cursor: default;
  transition: box-shadow .4s;
}

.hv-main {
  width: 290px; top: 28px; left: 50%;
  border-color: rgba(124,58,237,.22);
  animation: hvF1 7s ease-in-out infinite;
}
.hv-discord {
  width: 218px; top: 0; left: -10px;
  border-color: rgba(88,101,242,.18);
  animation: hvF2 8s ease-in-out infinite;
}
.hv-fivem {
  width: 218px; bottom: 16px; right: 0;
  border-color: rgba(239,68,68,.18);
  animation: hvF3 9s ease-in-out infinite;
}

@keyframes hvF1 {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-15px); }
}
@keyframes hvF2 {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-11px) rotate(-2deg); }
}
@keyframes hvF3 {
  0%,100% { transform: translateY(0) rotate(2deg); }
  50%      { transform: translateY(-10px) rotate(2deg); }
}

.hv-card:hover { box-shadow: 0 24px 80px rgba(0,0,0,.55); }

.hv-label { font-size:.66rem; font-weight:700; letter-spacing:1.8px; text-transform:uppercase; color:rgba(255,255,255,.3); margin-bottom:10px; }
.hv-product-list { display:flex; flex-direction:column; gap:7px; margin-top:4px; }
.hv-product-item {
  display:flex; align-items:center; justify-content:space-between;
  padding:8px 10px; border-radius:10px;
  background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.05);
}
.hv-product-name { color:rgba(255,255,255,.65); font-size:.78rem; }
.hv-product-price { font-family:'Orbitron',sans-serif; font-size:.74rem; color:#a78bfa; }
.hv-stat-row { display:flex; align-items:center; gap:10px; }
.hv-stat-val { font-family:'Orbitron',sans-serif; font-size:1.1rem; font-weight:700; }
.hv-stat-lbl { font-size:.7rem; color:rgba(255,255,255,.32); margin-top:2px; }
.hv-stat-bar { margin-top:12px; height:3px; border-radius:2px; opacity:.65; }

/* ── Card mouse tracking (pcard + why-item) ── */
.pcard, .why-item { --mx:50%; --my:50%; }

.pcard::before {
  background: radial-gradient(circle at var(--mx) var(--my), rgba(124,58,237,.12), transparent 55%) !important;
}

.why-item {
  position: relative; overflow: hidden;
}
.why-item::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(124,58,237,.09), transparent 55%);
  opacity: 0; transition: opacity .3s;
}
.why-item:hover::before { opacity: 1; }
.why-item:hover { transform: translateY(-4px); border-color: rgba(124,58,237,.2); box-shadow: 0 14px 40px rgba(0,0,0,.35); }


/* Improve product card transition */
.pcard { transition: transform .28s cubic-bezier(.34,1.56,.64,1), box-shadow .28s ease, border-color .28s ease; }

@media(max-width:900px) {
  .hslider-grid { grid-template-columns: 1fr; gap: 40px; }
  .hslider-visual { display: none; }
}
@media(max-width:600px) {
  .hero-stats-row { gap: 14px; }
  .hslide-ctas { flex-direction: column; }
  .slide-bars { margin-bottom: 28px; }
}

/* =============================================
   ENHANCED ANIMATION SYSTEM v2
   Aurora · Grid · Glitch · Neon Borders
   ============================================= */

/* ── Aurora animated body overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 15% 15%, rgba(124,58,237,.1) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 80%, rgba(0,212,255,.07) 0%, transparent 60%),
    radial-gradient(ellipse 45% 40% at 70% 30%, rgba(88,101,242,.06) 0%, transparent 60%);
  animation: auroraShift 18s ease-in-out infinite alternate;
  will-change: transform, opacity;
}

@keyframes auroraShift {
  0%   { transform: scale(1)    rotate(0deg);    opacity: .9; }
  33%  { transform: scale(1.06) rotate(.8deg);   opacity: 1;  }
  66%  { transform: scale(.97)  rotate(-.6deg);  opacity: .85;}
  100% { transform: scale(1.04) rotate(.4deg);   opacity: 1;  }
}

/* ── Animated neon grid overlay ── */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(124,58,237,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,.028) 1px, transparent 1px);
  background-size: 56px 56px;
  animation: gridPulse 10s ease-in-out infinite;
}

.bg-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,.018) 3px,
    rgba(0,0,0,.018) 6px
  );
  pointer-events: none;
}

@keyframes gridPulse {
  0%,100% { opacity: .55; }
  50%     { opacity: 1; }
}

/* ── Boost particle visibility ── */
.particle { opacity: .055 !important; }

.particle:nth-child(1) { animation-duration: 22s; }
.particle:nth-child(2) { animation-duration: 30s; }
.particle:nth-child(3) { animation-duration: 26s; }

/* ── Enhanced hero orbs ── */
.hero-orb-1 {
  background: radial-gradient(circle, rgba(124,58,237,.28) 0%, rgba(88,101,242,.12) 40%, transparent 65%) !important;
}
.hero-orb-2 {
  background: radial-gradient(circle, rgba(0,212,255,.2) 0%, rgba(6,182,212,.09) 40%, transparent 65%) !important;
}
.hero-orb-3 {
  background: radial-gradient(circle, rgba(167,139,250,.18) 0%, rgba(124,58,237,.07) 40%, transparent 65%) !important;
}

/* ── Neon floating particles (JS-spawned) ── */
.neon-particle {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: neonFloat linear infinite;
}

@keyframes neonFloat {
  0%   { transform: translateY(110vh) scale(0);   opacity: 0; }
  6%   { opacity: 1; }
  88%  { opacity: .55; }
  100% { transform: translateY(-20px) scale(.45); opacity: 0; }
}

/* ── Glitch keyframes ── */
@keyframes glitch1 {
  0%,82%,100% { clip-path: none; transform: none; filter: none; }
  83% { clip-path: inset(38% 0 54% 0); transform: translate(-3px,0); filter: hue-rotate(80deg); }
  85% { clip-path: inset(6% 0 88% 0);  transform: translate(3px,0);  }
  87% { clip-path: inset(68% 0 18% 0); transform: translate(-2px,0); filter: hue-rotate(-40deg); }
  89% { clip-path: none; transform: none; filter: none; }
}

@keyframes glitch2 {
  0%,80%,100% { clip-path: none; transform: none; opacity: 0; }
  81% { clip-path: inset(22% 0 62% 0); transform: translate(5px,0);  opacity: .65; }
  84% { clip-path: inset(76% 0 8% 0);  transform: translate(-5px,0); opacity: .5; }
  88% { clip-path: none; opacity: 0; }
}

/* ── Glitch on hero title (JS adds .glitch-on) ── */
.hslide-title { position: relative; }

.hslide-title.glitch-on {
  animation: glitch1 9s ease-in-out infinite;
}
.hslide-title.glitch-on::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: var(--neon-blue);
  animation: glitch2 9s ease-in-out infinite;
  pointer-events: none;
  background: none;
  -webkit-text-fill-color: var(--neon-blue);
  background-clip: unset;
}

/* ── Animated gradient card border glow ── */
@keyframes cardBorderGlow {
  0%,100% {
    box-shadow:
      0 0 0 1px rgba(124,58,237,.45),
      0 22px 56px rgba(0,0,0,.5),
      0 0 28px rgba(124,58,237,.2);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(0,212,255,.55),
      0 22px 64px rgba(0,0,0,.55),
      0 0 40px rgba(0,212,255,.25);
  }
}

.pcard:hover {
  animation: cardBorderGlow 2.8s ease-in-out infinite !important;
}
.product-card:hover {
  animation: cardBorderGlow 2.8s ease-in-out infinite !important;
}
.why-item:hover {
  animation: cardBorderGlow 2.8s ease-in-out infinite !important;
}

/* ── Button shimmer sweep ── */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%; left: -80%;
  width: 45%; height: 200%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.18), transparent);
  transform: skewX(-18deg);
  animation: btnShimmer 3.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btnShimmer {
  0%   { left: -80%; opacity: 0; }
  15%  { opacity: 1; }
  55%  { left: 130%; opacity: 0; }
  100% { left: 130%; opacity: 0; }
}

/* ── Badge enhanced pulse ── */
.hero-badge, .hslide-badge {
  animation: badgeEnhanced 3.5s ease-in-out infinite !important;
}
@keyframes badgeEnhanced {
  0%,100% { box-shadow: 0 0 0 0 rgba(124,58,237,0), 0 0 10px rgba(124,58,237,.2); }
  50%     { box-shadow: 0 0 0 9px rgba(124,58,237,.05), 0 0 24px rgba(124,58,237,.38); }
}

/* ── Nav — enhanced scroll glow ── */
.navbar.scrolled {
  background: rgba(7,7,14,.97) !important;
  border-bottom-color: rgba(124,58,237,.22) !important;
  box-shadow:
    0 1px 0 rgba(124,58,237,.14),
    0 8px 32px rgba(0,0,0,.55),
    0 0 80px rgba(124,58,237,.06) !important;
}

/* ── Section titles — subtle glow ── */
.section-title { text-shadow: 0 0 50px rgba(124,58,237,.18); }
.hslide-title  { text-shadow: 0 0 60px rgba(124,58,237,.12); }

/* ── Stagger for product grid cards ── */
.products-grid > *:nth-child(1) { transition-delay: 0s !important; }
.products-grid > *:nth-child(2) { transition-delay: .09s !important; }
.products-grid > *:nth-child(3) { transition-delay: .18s !important; }
.products-grid > *:nth-child(4) { transition-delay: .27s !important; }

.why-grid-dev > *:nth-child(1) { transition-delay: 0s !important; }
.why-grid-dev > *:nth-child(2) { transition-delay: .08s !important; }
.why-grid-dev > *:nth-child(3) { transition-delay: .16s !important; }
.why-grid-dev > *:nth-child(4) { transition-delay: .24s !important; }
.why-grid-dev > *:nth-child(5) { transition-delay: .32s !important; }
.why-grid-dev > *:nth-child(6) { transition-delay: .40s !important; }

/* Reset stagger delay on hover so 3D tilt is instant on all cards */
.products-grid > *:hover,
.why-grid-dev > *:hover {
  transition-delay: 0s !important;
}

/* ── Reveal — smoother bounce in ── */
.reveal {
  opacity: 0;
  transform: translateY(36px) scale(.98);
  transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ═══════════════════════════════════════════════
   CARD EFFECTS: neon border · shimmer · entrance
═══════════════════════════════════════════════ */

/* ── 1. Neon border cycle (cyan → purple → magenta) ── */
@keyframes neonBorderCycle {
  0%,100% {
    border-color: rgba(0,212,255,.55);
    box-shadow: 0 0 0 1px rgba(0,212,255,.22),
                0 20px 52px rgba(0,0,0,.5),
                0 0 24px rgba(0,212,255,.18);
  }
  40% {
    border-color: rgba(124,58,237,.65);
    box-shadow: 0 0 0 1px rgba(124,58,237,.32),
                0 22px 56px rgba(0,0,0,.5),
                0 0 30px rgba(124,58,237,.22);
  }
  70% {
    border-color: rgba(255,41,168,.5);
    box-shadow: 0 0 0 1px rgba(255,41,168,.25),
                0 22px 56px rgba(0,0,0,.5),
                0 0 24px rgba(255,41,168,.18);
  }
}

.pcard:hover,
.product-card:hover,
.stitch-card:hover,
.why-item:hover {
  animation: neonBorderCycle 2.2s ease-in-out infinite !important;
}

/* ── 2. Shimmer sweep keyframe ── */
@keyframes shimmerSwipe {
  from { left: -75%; }
  to   { left: 130%; }
}

/* product-card: replace top line with full diagonal sweep */
.product-card::before {
  top: 0 !important; left: -75% !important;
  width: 55% !important; height: 100% !important;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255,255,255,.04) 40%,
    rgba(255,255,255,.09) 50%,
    rgba(255,255,255,.04) 60%,
    transparent 100%
  ) !important;
  transform: skewX(-15deg) !important;
  z-index: 3 !important;
}
.product-card:hover::before {
  opacity: 1 !important;
  animation: shimmerSwipe .65s ease-out forwards !important;
}

/* pcard: shimmer via ::after */
.pcard { overflow: hidden !important; }
.pcard::after {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 55%; height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255,255,255,.04) 40%,
    rgba(255,255,255,.09) 50%,
    rgba(255,255,255,.04) 60%,
    transparent 100%
  );
  transform: skewX(-15deg);
  pointer-events: none;
  z-index: 3;
  opacity: 0;
}
.pcard:hover::after {
  opacity: 1;
  animation: shimmerSwipe .65s ease-out forwards;
}

/* stitch-card: shimmer via ::before */
.stitch-card::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 55%; height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255,255,255,.05) 40%,
    rgba(255,255,255,.11) 50%,
    rgba(255,255,255,.05) 60%,
    transparent 100%
  );
  transform: skewX(-15deg);
  pointer-events: none;
  z-index: 3;
  opacity: 0;
}
.stitch-card:hover::before {
  opacity: 1;
  animation: shimmerSwipe .65s ease-out forwards;
}

/* =============================================
   PREMIUM SMOOTH LAYER (Apple-style refinements)
   Sadece ana sayfada görünür değişiklikler — diğer sayfaları bozmaz
   ============================================= */

/* Animated conic-gradient mesh background — sadece hero için */
.hero-slider {
  position: relative;
}
.hero-slider::before {
  content: '';
  position: absolute;
  inset: -10% -5% -10% -5%;
  z-index: 0;
  background:
    conic-gradient(
      from 0deg at 30% 40%,
      rgba(124,58,237,0.18) 0deg,
      rgba(0,212,255,0.10) 90deg,
      rgba(168,85,247,0.14) 180deg,
      rgba(124,58,237,0.08) 270deg,
      rgba(124,58,237,0.18) 360deg
    );
  filter: blur(60px) saturate(140%);
  opacity: 0.55;
  pointer-events: none;
  animation: meshRotate 40s linear infinite;
  will-change: transform;
}
@keyframes meshRotate {
  from { transform: rotate(0deg) scale(1.05); }
  to   { transform: rotate(360deg) scale(1.05); }
}

/* Hero — refined typography (Apple-scale display) */
.hslide-title {
  font-size: clamp(2.4rem, 6vw, 4.5rem) !important;
  letter-spacing: -0.04em !important;
  line-height: 1.04 !important;
  font-weight: 800 !important;
}

.hslide-desc {
  font-size: clamp(1rem, 1.3vw, 1.2rem) !important;
  line-height: 1.7 !important;
  letter-spacing: 0 !important;
  color: rgba(255,255,255,0.55) !important;
  margin-bottom: 32px !important;
}

/* Hero badge — refined */
.hslide-badge {
  font-size: 0.72rem !important;
  letter-spacing: 1.4px !important;
  text-transform: uppercase !important;
  padding: 8px 18px !important;
  backdrop-filter: blur(12px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(12px) saturate(140%) !important;
}

/* Hero stats — refined typography */
.hstat-v2-num {
  letter-spacing: -0.02em !important;
}

/* Smoother orbs */
.hero-orb {
  filter: blur(120px) !important;
  opacity: 0.85;
}

/* Sticky navbar — refined glass */
.navbar.scrolled {
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  background: rgba(7, 7, 14, 0.72) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Smooth navbar transition */
.navbar {
  transition: background 0.45s var(--ease-premium),
              backdrop-filter 0.45s var(--ease-premium),
              border-color 0.45s var(--ease-premium) !important;
}

/* Cursor glow — refined (larger, softer) */
#site-cursor-glow {
  width: 800px !important;
  height: 800px !important;
  opacity: 0;
  background: radial-gradient(circle,
    rgba(124,58,237,0.12) 0%,
    rgba(0,212,255,0.06) 35%,
    transparent 65%
  ) !important;
  transition: opacity 0.5s var(--ease-premium) !important;
  mix-blend-mode: screen;
}

/* Premium reveal on intersect */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-premium), transform 0.9s var(--ease-premium);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }

/* Premium card refinement — only homepage cards */
.pcard, .stitch-card, .why-item {
  transition: transform 0.6s var(--ease-premium),
              box-shadow 0.6s var(--ease-premium),
              border-color 0.4s var(--ease-premium) !important;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-elev-1), var(--shadow-inset-glow);
}
.pcard:hover, .stitch-card:hover, .why-item:hover {
  box-shadow: var(--shadow-elev-3), var(--shadow-inset-glow);
}

/* Premium magnetic button base */
.btn-discord-hero, .btn-fivem-hero, .btn-primary {
  transition: transform 0.5s var(--ease-premium),
              box-shadow 0.5s var(--ease-premium),
              background 0.3s ease !important;
  will-change: transform;
}

/* Scroll hint — Apple-style minimal arrow */
.premium-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 500;
  pointer-events: none;
  animation: scrollHintFloat 2.4s var(--ease-in-out) infinite;
  z-index: 5;
}
.premium-scroll-hint svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}
@keyframes scrollHintFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50%      { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* Hide native scrollbar more elegantly on premium pages */
.premium-page::-webkit-scrollbar { width: 8px; }
.premium-page::-webkit-scrollbar-thumb { background: rgba(124,58,237,0.3); border-radius: 4px; }
.premium-page::-webkit-scrollbar-thumb:hover { background: rgba(124,58,237,0.5); }

/* View Transitions API — page-to-page smooth fade (Chrome/Edge) */
@supports (view-transition-name: root) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation-duration: 0.45s;
    animation-timing-function: var(--ease-premium);
  }
  ::view-transition-old(root) { animation-name: vt-fade-out; }
  ::view-transition-new(root) { animation-name: vt-fade-in; }
  @keyframes vt-fade-out { to { opacity: 0; } }
  @keyframes vt-fade-in  { from { opacity: 0; } }
}

/* Reduced motion — disable heavy animations */
@media (prefers-reduced-motion: reduce) {
  .hero-slider::before,
  .hero-orb {
    animation: none !important;
  }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .premium-scroll-hint {
    animation: none !important;
  }
}

/* Mobile — disable expensive effects */
@media (max-width: 768px) {
  .hero-slider::before {
    filter: blur(40px) saturate(120%);
    opacity: 0.35;
  }
  #site-cursor-glow {
    display: none !important;
  }
}