/* ============================================
   MY TOOLS PACK — GLASSMORPHISM DESIGN SYSTEM
   ============================================ */

/* ---------- Google Fonts Import ---------- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ---------- CSS Variables / Tokens ---------- */
:root {
  --bg-primary: #06060f;
  --bg-secondary: #0d0d1f;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-bg-hover: rgba(255, 255, 255, 0.09);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-border-hover: rgba(168, 85, 247, 0.5);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);

  --accent-purple: #a855f7;
  --accent-cyan: #06b6d4;
  --accent-pink: #ec4899;
  --accent-orange: #f97316;
  --accent-green: #22c55e;
  --accent-blue: #3b82f6;

  --gradient-main: linear-gradient(135deg, #a855f7, #ec4899);
  --gradient-cyan: linear-gradient(135deg, #06b6d4, #3b82f6);
  --gradient-warm: linear-gradient(135deg, #f97316, #ec4899);

  --text-primary: #f0f0ff;
  --text-secondary: rgba(240, 240, 255, 0.65);
  --text-muted: rgba(240, 240, 255, 0.35);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-med: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ---------- Particle Canvas ---------- */
#particleCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

/* ---------- Animated Orbs ---------- */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
  animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #a855f7, transparent 70%);
  top: -150px; left: -150px;
  animation-delay: 0s;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #ec4899, transparent 70%);
  top: 30%; right: -100px;
  animation-delay: -5s;
}
.orb-3 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, #06b6d4, transparent 70%);
  bottom: 10%; left: 20%;
  animation-delay: -10s;
}
.orb-4 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #f97316, transparent 70%);
  bottom: -100px; right: 30%;
  animation-delay: -15s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.05); }
  50% { transform: translate(-20px, 30px) scale(0.95); }
  75% { transform: translate(40px, 20px) scale(1.02); }
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--accent-purple), var(--accent-pink));
  border-radius: 10px;
}

/* ---------- Glassmorphism Utility ---------- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
}

/* ---------- Gradient Text ---------- */
.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.accent { color: var(--accent-purple); }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(6, 6, 15, 0.6);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid var(--glass-border);
  transition: background var(--transition-med);
}
.navbar.scrolled {
  background: rgba(6, 6, 15, 0.9);
  border-bottom-color: rgba(168, 85, 247, 0.2);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
}
.logo-icon {
  width: 38px; height: 38px;
  background: var(--gradient-main);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

.nav-links { display: flex; align-items: center; gap: 2rem; }

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  transition: color var(--transition-fast);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--gradient-main);
  border-radius: 2px;
  transition: width var(--transition-med);
}
.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}
.nav-cta:hover {
  background: rgba(168, 85, 247, 0.15);
  border-color: var(--accent-purple);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
  transform: translateY(-1px);
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: var(--gradient-main);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 30px rgba(168, 85, 247, 0.4);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(168, 85, 247, 0.55); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
  color: var(--text-primary);
  transform: translateY(-2px);
}

/* ---------- Hero Section ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-height) + 40px) 2rem 60px;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-purple);
  width: fit-content;
  animation: fadeInDown 0.8s ease both;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--accent-purple);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  animation: fadeInUp 0.9s 0.1s ease both;
}
.title-line { display: block; }

.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  animation: fadeInUp 0.9s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s 0.3s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 20px 28px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  width: fit-content;
  animation: fadeInUp 0.9s 0.4s ease both;
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }
.stat-divider { width: 1px; height: 36px; background: var(--glass-border); }

/* ---------- Hero Visual (Right Side) ---------- */
.hero-visual {
  flex: 1;
  max-width: 460px;
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1s 0.5s ease both;
}

.hero-orb-center {
  width: 120px; height: 120px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem;
  box-shadow: 0 0 60px rgba(168, 85, 247, 0.5), 0 0 120px rgba(168, 85, 247, 0.2);
  animation: heroOrbPulse 3s ease-in-out infinite;
  position: relative; z-index: 2;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--glass-shadow);
  z-index: 3;
}
.fc-1 { top: 20px; left: 10px; animation: floatCard 6s ease-in-out infinite; border-color: rgba(168,85,247,0.3); }
.fc-2 { top: 30px; right: 0; animation: floatCard 6s 1.5s ease-in-out infinite; border-color: rgba(6,182,212,0.3); }
.fc-3 { bottom: 80px; left: 0; animation: floatCard 6s 3s ease-in-out infinite; border-color: rgba(236,72,153,0.3); }
.fc-4 { bottom: 40px; right: 20px; animation: floatCard 6s 4.5s ease-in-out infinite; border-color: rgba(249,115,22,0.3); }

/* ---------- Tools Section ---------- */
.tools-section {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 0.75rem;
}
.section-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* ---------- Controls Bar ---------- */
.controls-bar {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.search-wrap {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
}
.search-icon {
  position: absolute;
  left: 16px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}
.search-input {
  width: 100%;
  padding: 14px 44px 14px 48px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  outline: none;
  transition: all var(--transition-fast);
}
.search-input::placeholder { color: var(--text-muted); }
.search-input:focus {
  border-color: var(--accent-purple);
  background: rgba(168, 85, 247, 0.08);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.15);
}
.search-clear {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 4px;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition-fast);
}
.search-clear.visible { opacity: 1; pointer-events: all; }
.search-clear:hover { color: var(--text-primary); }

.filter-pills {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}
.pill {
  padding: 8px 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  backdrop-filter: blur(10px);
}
.pill:hover {
  border-color: var(--accent-purple);
  color: var(--accent-purple);
  background: rgba(168, 85, 247, 0.08);
}
.pill.active {
  background: var(--gradient-main);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.35);
}

/* ---------- Tools Grid ---------- */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

/* ---------- Tool Card ---------- */
.tool-card {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--transition-med), border-color var(--transition-med), box-shadow var(--transition-med), background var(--transition-med);
  cursor: default;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}
.tool-card.visible {
  animation: cardIn 0.6s ease forwards;
}
.tool-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity var(--transition-med);
  z-index: -1;
}
.tool-card:hover {
  border-color: rgba(168, 85, 247, 0.45);
  background: var(--glass-bg-hover);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(168, 85, 247, 0.15);
  transform: translateY(-6px) scale(1.01);
}
.tool-card:hover::before { opacity: 0.04; }

/* Shine effect on hover */
.tool-card::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  transition: left 0.5s ease;
  pointer-events: none;
}
.tool-card:hover::after { left: 150%; }

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  position: relative;
  flex-shrink: 0;
}

.card-badges { display: flex; gap: 6px; flex-direction: column; align-items: flex-end; }

.badge-cat {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-featured {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: #fff;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.3px;
  line-height: 1.3;
}
.card-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}
.tag {
  font-size: 0.71rem;
  font-weight: 600;
  padding: 3px 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  color: var(--text-muted);
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-heading);
  transition: all var(--transition-fast);
  color: #fff;
}
.card-link:hover {
  transform: translateX(3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.card-status {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}
.status-live { background: rgba(34, 197, 94, 0.15); color: var(--accent-green); border: 1px solid rgba(34,197,94,0.3); }
.status-wip { background: rgba(251, 191, 36, 0.15); color: #fbbf24; border: 1px solid rgba(251,191,36,0.3); }
.status-beta { background: rgba(6, 182, 212, 0.15); color: var(--accent-cyan); border: 1px solid rgba(6,182,212,0.3); }

/* ---------- Category Colors ---------- */
.cat-social { background: rgba(236, 72, 153, 0.15); color: var(--accent-pink); border: 1px solid rgba(236,72,153,0.3); }
.cat-downloader { background: rgba(6, 182, 212, 0.15); color: var(--accent-cyan); border: 1px solid rgba(6,182,212,0.3); }
.cat-ai { background: rgba(168, 85, 247, 0.15); color: var(--accent-purple); border: 1px solid rgba(168,85,247,0.3); }
.cat-productivity { background: rgba(249, 115, 22, 0.15); color: var(--accent-orange); border: 1px solid rgba(249,115,22,0.3); }
.cat-utility { background: rgba(34, 197, 94, 0.15); color: var(--accent-green); border: 1px solid rgba(34,197,94,0.3); }

.icon-social { background: rgba(236, 72, 153, 0.15); box-shadow: 0 0 20px rgba(236,72,153,0.2); }
.icon-downloader { background: rgba(6, 182, 212, 0.15); box-shadow: 0 0 20px rgba(6,182,212,0.2); }
.icon-ai { background: rgba(168, 85, 247, 0.15); box-shadow: 0 0 20px rgba(168,85,247,0.2); }
.icon-productivity { background: rgba(249, 115, 22, 0.15); box-shadow: 0 0 20px rgba(249,115,22,0.2); }
.icon-utility { background: rgba(34, 197, 94, 0.15); box-shadow: 0 0 20px rgba(34,197,94,0.2); }

.link-social { background: linear-gradient(135deg, #ec4899, #f97316); }
.link-downloader { background: linear-gradient(135deg, #06b6d4, #3b82f6); }
.link-ai { background: linear-gradient(135deg, #a855f7, #ec4899); }
.link-productivity { background: linear-gradient(135deg, #f97316, #eab308); }
.link-utility { background: linear-gradient(135deg, #22c55e, #06b6d4); }

/* ---------- No Results ---------- */
.no-results {
  text-align: center;
  padding: 80px 20px;
}
.no-results-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.no-results h3 { font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: 0.5rem; }
.no-results p { color: var(--text-secondary); }
.hidden { display: none !important; }

/* ---------- About Section ---------- */
.about-section {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 2rem 80px;
}
.about-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 60px;
  display: flex;
  gap: 3rem;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.about-glass::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(168,85,247,0.1), transparent 70%);
  pointer-events: none;
}
.about-text { flex: 1; }
.about-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 1.2rem;
}
.about-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.98rem;
}
.about-glow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  flex-shrink: 0;
}
.mini-card {
  width: 72px; height: 72px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  transition: all var(--transition-med);
  cursor: default;
}
.mini-card:hover {
  transform: scale(1.12) translateY(-3px);
  border-color: var(--accent-purple);
  box-shadow: 0 8px 30px rgba(168,85,247,0.25);
  background: rgba(168,85,247,0.1);
}

/* ---------- Footer ---------- */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--glass-border);
  background: rgba(6,6,15,0.8);
  backdrop-filter: blur(20px);
  padding: 32px 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.85rem; color: var(--text-muted); }
.footer-copy a { color: var(--accent-purple); }
.footer-copy a:hover { text-decoration: underline; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.85rem; color: var(--text-secondary); transition: color var(--transition-fast); }
.footer-links a:hover { color: var(--accent-purple); }

/* ---------- Keyframes ---------- */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
@keyframes heroOrbPulse {
  0%, 100% { box-shadow: 0 0 60px rgba(168,85,247,0.5), 0 0 120px rgba(168,85,247,0.2); transform: scale(1); }
  50% { box-shadow: 0 0 80px rgba(168,85,247,0.7), 0 0 160px rgba(168,85,247,0.3); transform: scale(1.04); }
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero { flex-direction: column; text-align: center; padding-top: calc(var(--nav-height) + 60px); }
  .hero-content { max-width: 100%; align-items: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { margin: 0 auto; }
  .hero-visual { height: 320px; width: 100%; max-width: 360px; }
  .about-glass { flex-direction: column; padding: 40px 28px; }
  .about-glow-grid { margin: 0 auto; }
}
@media (max-width: 640px) {
  .tools-grid { grid-template-columns: 1fr; }
  .nav-links .nav-link { display: none; }
  .about-glass { padding: 32px 20px; }
  .hero-visual { display: none; }
  .footer-inner { justify-content: center; text-align: center; flex-direction: column; }
}
@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 0.8rem; }
  .stat-divider { width: 60px; height: 1px; }
  .filter-pills { gap: 0.4rem; }
  .pill { padding: 6px 14px; font-size: 0.78rem; }
}
