

:root {
  /* Premium Dark Mode & Glassmorphism Palette */
  --primary: #8b5cf6;       /* Electric Violet */
  --primary-dark: #6d28d9;
  --primary-light: #a78bfa;
  --secondary: #10b981;     /* Emerald */
  --secondary-dark: #059669;
  --secondary-light: #34d399;
  --accent: #f43f5e;        /* Rose */
  
  --vivid-purple: #8b5cf6;
  --vivid-pink: #ec4899;
  --vivid-blue: #3b82f6;
  --vivid-emerald: #10b981;
  --vivid-cyan: #06b6d4;
  --gold-elite: #f59e0b;
  --gold-glow: rgba(245, 158, 11, 0.25);
  
  --gradient: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  --gradient-aurora: linear-gradient(-45deg, #09090b, #18181b, #09090b, #18181b);
  --gradient-soft: linear-gradient(135deg, rgba(139,92,246,0.1) 0%, rgba(236,72,153,0.1) 100%);
  --gradient-hero: linear-gradient(135deg, #09090b, #18181b, #09090b);

  --bg: #09090b;            /* Zinc 950 */
  --bg-secondary: #18181b;  /* Zinc 900 */
  --bg-card: rgba(24, 24, 27, 0.6);
  --bg-card-hover: rgba(39, 39, 42, 0.8);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(139, 92, 246, 0.4);

  --text: #f4f4f5;          /* Zinc 50 */
  --text-muted: #a1a1aa;    /* Zinc 400 */
  --text-dim: #52525b;      /* Zinc 600 */

  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.6);
  --shadow-purple: 0 8px 32px rgba(139, 92, 246, 0.15);

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

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.18s ease;

  --nav-height: 70px;
  --section-pad: 100px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  word-break: break-word;
  overflow-wrap: break-word;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }
input, textarea, select { font-family: inherit; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 99px; }

::selection { background: rgba(124,58,237,0.40); color: #fff; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: var(--section-pad) 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gradient-soft);
  border: 1px solid var(--border-hover);
  color: var(--secondary-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 16px;
  box-shadow: 0 0 16px rgba(124,58,237,0.18);
  white-space: nowrap;
}

.badge svg { width: 14px; height: 14px; }

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}

.section-title span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 560px;
}

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 99px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  background-size: 200% auto;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(124,58,237,0.35);
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 28px rgba(124,58,237,0.55);
  background-position: right center;
}

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

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

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

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 40px rgba(0,0,0,0.6), 0 0 24px rgba(124,58,237,0.20);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(3, 7, 17, 0.72);
  backdrop-filter: blur(36px) saturate(180%);
  -webkit-backdrop-filter: blur(36px) saturate(180%);
  border-bottom: 1px solid rgba(124,58,237,0.20);
  box-shadow: inset 0 -1px 0 rgba(124,58,237,0.08);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(3, 7, 17, 0.97);
  box-shadow: 0 10px 30px rgba(0,0,0,0.8), inset 0 -1px 0 rgba(124,58,237,0.18);
  border-bottom: 1px solid rgba(124,58,237,0.32);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.nav-logo:hover { opacity: 0.88; }

.nav-logo svg {
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-logo:hover svg { transform: scale(1.08) rotate(-3deg); }

/* legacy .logo-icon kept for any inline usage â€” now hidden */
.logo-icon { display: none; }



.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}









.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta .btn-primary {
  box-shadow: 0 4px 15px rgba(124,58,237,0.45);
  animation: nav-pulse 3s infinite alternate;
}

@keyframes nav-pulse {
  0% { box-shadow: 0 4px 15px rgba(124,58,237,0.38); }
  100% { box-shadow: 0 4px 25px rgba(6,182,212,0.55); }
}

.nav-roadmap-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
  color: #ffffff !important;
  font-weight: 800 !important;
  padding: 6px 14px !important;
  font-size: 0.85rem;
  white-space: nowrap;
  border-radius: 99px;
  box-shadow: 0 4px 15px rgba(124,58,237,0.38);
  transition: all 0.3s ease;
  margin-left: 8px;
}
.nav-roadmap-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124,58,237,0.55);
  filter: brightness(1.1);
  color: #ffffff !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  border-radius: 8px;
  transition: var(--transition-fast);
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: #ffffff;
  border-radius: 99px;
  transition: var(--transition);
  display: block;
}

.hamburger:hover { background: rgba(255,255,255,0.1); }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(3, 7, 17, 0.96);
  backdrop-filter: blur(36px) saturate(180%);
  border-bottom: 1px solid rgba(124,58,237,0.22);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  padding: 24px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-120%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav a {
  padding: 14px 18px;
  border-radius: 12px;
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--transition-fast);
  text-align: center;
}

.mobile-nav a.saved-link {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: left;
}

.mobile-nav a:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08);
}

.mobile-nav a.active {
  color: #fff !important;
  font-weight: 700 !important;
  background: linear-gradient(90deg, rgba(124,58,237,0.18), rgba(6,182,212,0.12));
  border: 1px solid rgba(124,58,237,0.28);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.mobile-nav .nav-roadmap-btn {
  margin: 10px 0 0 0;
  justify-content: center;
  font-size: 1.05rem;
  padding: 12px !important;
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
  border: none;
  color: #ffffff !important;
}
.mobile-nav .nav-roadmap-btn:hover {
  transform: translateY(-2px);
  color: #ffffff !important;
  background: linear-gradient(135deg, #6d28d9, #0891b2);
}

.mobile-nav .btn {
  margin-top: 8px;
  justify-content: center;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 0;
  overflow: hidden;
}

.hero-bg::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(124,58,237,0.20) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  border-radius: 50%;
  animation: pulse-glow 6s ease-in-out infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6,182,212,0.14) 0%, transparent 70%);
  bottom: -100px;
  right: -80px;
  border-radius: 50%;
  animation: pulse-glow 8s ease-in-out infinite reverse;
}

@keyframes panMesh {
  0% { transform: translateY(0) translateX(0); }
  100% { transform: translateY(60px) translateX(60px); }
}

.hero-grid {
  position: absolute;
  inset: -120px;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  animation: panMesh 20s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  background: rgba(10, 10, 19, 0.4);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 48px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.38);
  color: var(--secondary-light);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 7px 18px;
  border-radius: 99px;
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease both;
  box-shadow: 0 0 20px rgba(124,58,237,0.18), inset 0 1px 0 rgba(255,255,255,0.08);
  white-space: nowrap;
}

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

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

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: #fff;
  margin-bottom: 20px;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero h1 .highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero p {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 36px;
  max-width: 600px;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  animation: fadeInUp 0.7s ease 0.4s both;
}

.hero-stat span:first-child {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat span:last-child {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.problem-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}

.problem-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.problem-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.problem-icon.blue { background: rgba(124,58,237,0.14); }
.problem-icon.purple { background: rgba(6,182,212,0.14); }
.problem-icon.green { background: rgba(52,211,153,0.13); }
.problem-icon.orange { background: rgba(139,92,246,0.14); }

.problem-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: #e2e8f0;
}

.problem-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
  color: inherit;
}

.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: var(--transition);
}

.cat-card:hover::before { opacity: 0.06; }

.cat-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--border-hover);
  box-shadow: 0 16px 40px rgba(0,0,0,0.6), 0 0 24px rgba(124,58,237,0.22);
}

.cat-emoji {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
  position: relative;
  z-index: 1;
}

.cat-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.cat-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

.cat-tag {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.cat-tag.blue   { background: rgba(124,58,237,0.14);  color: #a78bfa;  border: 1px solid rgba(124,58,237,0.22); }
.cat-tag.purple { background: rgba(6,182,212,0.12);   color: #67e8f9;  border: 1px solid rgba(6,182,212,0.22); }
.cat-tag.green  { background: rgba(52,211,153,0.12);  color: #34d399;  border: 1px solid rgba(52,211,153,0.22); }
.cat-tag.orange { background: rgba(139,92,246,0.14);  color: #c4b5fd;  border: 1px solid rgba(139,92,246,0.22); }

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.post-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: var(--border-hover);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 24px rgba(124,58,237,0.12);
}

.post-img {
  height: 180px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.post-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(rgba(255, 255, 255, 0.12) 1.5px, transparent 1.5px),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 16px 16px, 16px 16px, 16px 16px;
  background-position: center;
  opacity: 0.95;
  mix-blend-mode: overlay;
  z-index: 1;
  pointer-events: none;
}

.post-img::after {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
  filter: blur(20px);
  opacity: 0.4;
  z-index: 2;
  transition: all 0.5s ease;
  pointer-events: none;
}

.post-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.post-cat {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #a78bfa;
  background: rgba(124,58,237,0.12);
  padding: 3px 10px;
  border-radius: 99px;
}

.post-date {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.post-card h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
  transition: var(--transition-fast);
  flex: 1;
}

.post-card:hover h3 { color: #a78bfa; }

.post-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.post-read {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.lead-magnet {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.lead-inner {
  background: var(--gradient);
  border-radius: var(--radius-xl);
  padding: 60px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.lead-inner::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  top: -150px;
  right: -100px;
}

.lead-inner::after {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  bottom: -100px;
  left: 200px;
}

.lead-text { position: relative; z-index: 1; }

.lead-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
  margin-bottom: 12px;
}

.lead-text p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  max-width: 480px;
}

.lead-form {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.lead-form input {
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 99px;
  padding: 14px 22px;
  color: #fff;
  font-size: 0.95rem;
  width: 260px;
  backdrop-filter: blur(10px);
  transition: var(--transition-fast);
}

.lead-form input::placeholder { color: rgba(255,255,255,0.6); }
.lead-form input:focus {
  outline: none;
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.2);
}

.lead-form button {
  background: #fff;
  color: var(--primary);
  border-radius: 99px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}

.lead-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.2);
}

.search-bar {
  display: flex;
  gap: 12px;
  max-width: 540px;
  margin-bottom: 32px;
}
.search-bar input {
  flex: 1;
  background: rgba(10, 10, 19, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  padding: 14px 24px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}
.search-bar input:focus {
  outline: none;
  border-color: transparent;
  box-shadow: 0 0 0 2px var(--primary), inset 0 2px 4px rgba(0,0,0,0.2);
}
.search-bar input::placeholder { color: var(--text-muted); }

.search-bar button {
  background: var(--gradient);
  color: #fff;
  padding: 14px 28px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(124,58,237,0.3);
}
.search-bar button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 242, 254, 0.5);
}

.tool-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px 8px;
  border-radius: 99px;
  margin-left: 6px;
  vertical-align: middle;
  white-space: nowrap;
}
.badge-new  { background: rgba(124,58,237,0.2);  color: #a78bfa; border: 1px solid rgba(124,58,237,0.3); }
.badge-pick { background: rgba(6,182,212,0.2); color: #a5f3fc; border: 1px solid rgba(6,182,212,0.3); }

.section-divider {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0 4px;
}
.section-divider span {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #a78bfa;
  white-space: nowrap;
}
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.no-results {
  text-align: center;
  padding: 60px 0;
  color: var(--text-muted);
  display: none;
  grid-column: 1 / -1;
}

.tools-count {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.tools-count strong { color: var(--text); }

.compare-banner {
  background: var(--gradient);
  border-radius: var(--radius);
  padding: 28px 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.compare-banner::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  right: -100px; top: -100px;
}
.compare-banner h3 { font-size: 1.3rem; color: #fff; position: relative; z-index: 1; }
.compare-banner p { font-size: 0.9rem; color: rgba(255,255,255,0.8); position: relative; z-index: 1; }
.compare-banner .btn { position: relative; z-index: 1; background: #fff; color: var(--primary); font-weight: 700; white-space: nowrap; flex-shrink: 0; }

.tools-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 99px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(20,20,35,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer;
  white-space: nowrap;
}

.filter-btn:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-1px);
}

.filter-btn.active {
  background: var(--gradient);
  border-color: transparent;
  color: #030711;
  box-shadow: 0 4px 20px rgba(124,58,237,0.40), 0 0 0 1px rgba(124,58,237,0.25);
  transform: translateY(-1px);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.tool-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.tool-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, var(--glow-color, rgba(124,58,237,0.15)) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 0;
}

.tool-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--glow-color, rgba(124,58,237,0.4));
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 30px var(--glow-color, rgba(124,58,237,0.15));
}

.tool-card:hover::before {
  opacity: 1;
}

.tool-card[data-cat="writing"] { --glow-color: rgba(16, 185, 129, 0.25); }
.tool-card[data-cat="video"] { --glow-color: rgba(139, 92, 246, 0.25); }
.tool-card[data-cat="image"] { --glow-color: rgba(59, 130, 246, 0.25); }
.tool-card[data-cat="productivity"] { --glow-color: rgba(6, 182, 212, 0.25); }
.tool-card[data-cat="coding"] { --glow-color: rgba(236, 72, 153, 0.25); }
.tool-card[data-cat="research"] { --glow-color: rgba(20, 184, 166, 0.25); }
.tool-card[data-cat="chatbot"] { --glow-color: rgba(99, 102, 241, 0.25); }
.tool-card[data-cat="study"], .tool-card[data-cat="education"] { --glow-color: rgba(30, 64, 175, 0.25); }
.tool-card[data-cat="social"] { --glow-color: rgba(239, 68, 68, 0.25); }
.tool-card[data-cat="music"] { --glow-color: rgba(168, 85, 247, 0.25); }
.tool-card[data-cat="presentations"] { --glow-color: rgba(14, 165, 233, 0.25); }

.tool-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.tool-logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tool-card:hover .tool-logo {
  transform: scale(1.15) rotate(-5deg);
}

.tool-info h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.tool-info .tool-category {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.tool-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.stars { color: var(--vivid-cyan); font-size: 0.85rem; }
.rating-num { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }

.tool-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  flex: 1;
}

.tool-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

.pros, .cons {
  background: var(--bg);
  border-radius: 10px;
  padding: 12px;
}

.pros-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.cons-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #fca5a5;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.pros li, .cons li {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 2px 0;
}

.pros li::before { content: 'âœ“ '; color: var(--primary); }
.cons li::before { content: 'âœ— '; color: #fca5a5; }

.tool-use-case {
  background: var(--gradient-soft);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: #a78bfa;
  margin-bottom: 16px;
}

.tool-use-case strong { color: var(--text); }

.tool-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}

.tool-pricing {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
}

.tool-pricing.free { background: rgba(16,185,129,0.15); color: var(--primary); }
.tool-pricing.freemium { background: rgba(6,182,212,0.15); color: #a5f3fc; }
.tool-pricing.paid { background: rgba(239,68,68,0.12); color: #fca5a5; }

.blog-hero {
  padding: 100px 0 60px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.blog-search {
  display: flex;
  gap: 12px;
  max-width: 540px;
  margin: 32px 0;
}

.blog-search input {
  flex: 1;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 99px;
  padding: 12px 22px;
  color: var(--text);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.blog-search input:focus {
  outline: none;
  border-color: var(--primary);
}

.blog-search input::placeholder { color: var(--text-dim); }

.blog-search button {
  background: var(--gradient);
  color: #fff;
  padding: 12px 24px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.blog-search button:hover { filter: brightness(1.1); }

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-tag {
  padding: 6px 16px;
  border-radius: 99px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
  white-space: nowrap;
}

.blog-tag:hover,
.blog-tag.active {
  background: rgba(124,58,237,0.12);
  border-color: rgba(124,58,237,0.4);
  color: #a78bfa;
  transform: translateY(-1px);
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  padding: 60px 0;
}

.blog-main { min-width: 0; }

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-post-card {
  display: flex;
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.blog-post-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow);
}

/* Base layout rule — rich visuals are applied via blog.html scoped styles & inline iconGradient */
.blog-post-img {
  width: 200px;
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.blog-post-content {
  padding: 24px;
  flex: 1;
}

.blog-post-content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  transition: var(--transition-fast);
}

.blog-post-card:hover h3 { color: #a78bfa; }

.blog-post-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.blog-sidebar { display: flex; flex-direction: column; gap: 28px; }

.sidebar-card {
  background: rgba(26, 26, 62, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.sidebar-card h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.recent-post {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.recent-post:last-child { border-bottom: none; }

.recent-img {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.recent-info h5 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 4px;
  transition: var(--transition-fast);
}

.recent-post:hover h5 { color: #a78bfa; }

.recent-info span {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.about-hero {
  padding: 120px 0 80px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,0.10) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

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

.about-text h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-img-placeholder {
  background: var(--gradient);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

.about-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.mission-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}

.mission-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.mission-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
}

.mission-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.mission-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 0;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gradient-soft);
  border: 1px solid var(--border-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item h4 { font-size: 0.9rem; margin-bottom: 4px; }
.contact-item p { font-size: 0.875rem; color: var(--text-muted); }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.contact-form h3 {
  font-size: 1.4rem;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.12);
}

.form-group textarea { min-height: 130px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.free-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.free-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #10b981, #059669);
  opacity: 0;
  transition: var(--transition);
}
.free-card:hover {
  border-color: rgba(139,92,246,0.35);
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 40px rgba(16,185,129,0.15), 0 0 20px rgba(16,185,129,0.1);
}
.free-card:hover::before { opacity: 1; }
.free-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
}
.free-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.free-card:hover .free-icon {
  transform: scale(1.15) rotate(-5deg);
}
.free-card-title h3 {
  font-size: 1rem;
  margin-bottom: 2px;
}
.free-card-title .cat-tag {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.free-badge-wrap {
  margin-left: auto;
}
.badge-free-green {
  background: rgba(16,185,129,0.15);
  color: var(--primary);
  border: 1px solid rgba(16,185,129,0.3);
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
}
.free-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.free-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.perk-tag {
  font-size: 0.72rem;
  font-weight: 500;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 4px 11px;
  color: var(--text-muted);
  white-space: nowrap;
  transition: all 0.2s ease;
}
.perk-tag:hover {
  border-color: rgba(124,58,237,0.30);
  color: #a78bfa;
}
.free-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.limit-note {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 64px 0 28px;
}

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

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 16px 0 24px;
  max-width: 260px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
  text-decoration: none;
}

.social-btn:hover {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}

.footer-col h5 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: #e2e8f0;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.footer-col ul li a:hover { color: #a78bfa; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.footer-bottom p { font-size: 0.85rem; color: var(--text-dim); }

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.82rem;
  color: var(--text-dim);
  transition: var(--transition-fast);
}

.footer-legal a:hover { color: var(--text-muted); }

.announce-bar {
  background: var(--gradient);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  z-index: 1001;
}

.announce-bar a {
  text-decoration: underline;
  color: #fff;
  opacity: 0.85;
}

.announce-bar a:hover { opacity: 1; }

.page-hero {
  padding: 110px 0 70px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,0.10) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: #a78bfa; }
.breadcrumb .sep { color: var(--border); }

.elite-search-bar {
  margin: 40px auto 0;
  max-width: 600px;
  background: rgba(0,0,0,0.4) !important;
  display: flex;
  align-items: center;
  border-radius: 99px;
  padding: 6px;
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.5) !important;
}

.elite-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 24px;
  color: #fff;
  font-size: 1.1rem;
  outline: none;
}

.elite-btn {
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
  border: none;
  padding: 14px 36px;
  border-radius: 99px;
  color: #030711;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.elite-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124,58,237,0.45);
}

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

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.08); opacity: 1; }
}

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

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.animate-fade-up {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  /* CSS safety fallback: auto-reveal after 3.5s if JS observer doesn't fire */
  animation: reveal-css-fallback 0.8s ease-out 3.5s forwards;
}

@keyframes reveal-css-fallback {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal.visible {
  opacity: 1;
  transform: none;
  animation: none; /* cancel CSS fallback when JS fires */
}

@media (max-width: 1024px) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.toast {
  position: fixed;
  bottom: 80px;
  right: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  max-width: 320px;
  overflow: hidden;
}

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

.toast-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  background: var(--gradient);
  width: 100%;
}

.toast.show .toast-progress {
  animation: toastProgress 3s linear forwards;
}

@keyframes toastProgress {
  0% { width: 100%; }
  100% { width: 0%; }
}

.toast-icon { font-size: 1.3rem; flex-shrink: 0; }

.toast-text strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.toast-text span { font-size: 0.82rem; color: var(--text-muted); }

.lead-pdf-premium {
  padding: 40px 0;
  position: relative;
}

.lead-card-v2 {
  background: linear-gradient(135deg, rgba(26, 26, 62, 0.4) 0%, rgba(15, 15, 35, 0.6) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 24px;
  padding: 24px 32px;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.6);
}

.lead-card-v2 .lead-grid {
  grid-template-columns: 0.8fr 1.2fr;
}

.premium-list {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.premium-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.premium-list li svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.lead-form-v3 {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.input-container {
  position: relative;
  flex: 1;
}

.lead-form-v3 input {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 12px;
  padding: 14px 20px;
  color: #fff;
  transition: all 0.3s ease;
}

.lead-form-v3 input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.25);
}

.lead-visual .pdf-glow {
  position: absolute;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.15) 0%, transparent 70%);
  filter: blur(40px);
}

.floating-pdf {
  width: 100%;
  max-width: 180px;
  animation: float-pdf 5s infinite ease-in-out;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

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

.trust-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  opacity: 0.7;
}

@media (max-width: 992px) {
  .lead-card-v2 .lead-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .lead-card-v2 .lead-visual { order: -1; }
  .premium-list { align-items: center; }
  .lead-form-v3 { flex-direction: column; max-width: 400px; margin-left: auto; margin-right: auto; }
}

.lead-premium {
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.lead-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 24px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.5);
}

.lead-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.1) 0%, transparent 70%);
  z-index: 0;
}

.lead-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.lead-info h2 {
  font-size: 1.75rem;
  line-height: 1.1;
  margin-bottom: 16px;
  font-weight: 800;
}

.lead-info h2 span {
  background: var(--gradient-aurora);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead-info p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.lead-form-v2 {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  max-width: 540px;
}

.input-wrap {
  position: relative;
  flex: 1;
}

.lead-form-v2 input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px 24px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.lead-form-v2 input:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.05);
}

.input-glow {
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  background: linear-gradient(90deg, #7c3aed, #06b6d4);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  filter: blur(8px);
}

.lead-form-v2 input:focus + .input-glow {
  opacity: 0.3;
}

.lead-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.trust-faces {
  display: flex;
  margin-right: 4px;
}

.face {
  width: 32px;
  height: 32px;
  background: var(--bg-secondary);
  border: 2px solid var(--bg-card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -10px;
}

.face:first-child { margin-left: 0; }

.lead-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.toolkit-orb {
  position: absolute;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(124,58,237,0.2) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  animation: pulse-orb 4s infinite ease-in-out;
}

.floating-asset {
  width: 100%;
  max-width: 180px;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
  animation: float-toolkit 6s infinite ease-in-out;
}

@keyframes float-toolkit {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes pulse-orb {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

@media (max-width: 992px) {
  .lead-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .lead-info h2 { font-size: 2.5rem; }
  .lead-info p { margin-left: auto; margin-right: auto; }
  .lead-form-v2 { flex-direction: column; margin-left: auto; margin-right: auto; }
  .lead-trust { justify-content: center; }
  .lead-card { padding: 40px; border-radius: 30px; }
}
@keyframes aurora-flow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.aurora-bg {
  background: var(--gradient-aurora);
  background-size: 400% 400%;
  animation: aurora-flow 15s ease infinite;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

@media (max-width: 1024px) {
  
  .nav-links, .nav-cta { display: none !important; }
  .hamburger { display: flex !important; }
  
  
  .hero-bg::before, .hero-bg::after { display: none !important; }
  .page-hero::before { display: none !important; }
  
  
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { display: none; }
  
  
  .about-grid, .contact-layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 992px) {
  :root { --section-pad: 60px; }
  
  
  .hero h1 { font-size: clamp(2.2rem, 5vw, 3rem); }
  .hero-content { display: flex; flex-direction: column; align-items: center; text-align: center; margin: 0 auto; }
  .hero-stats { justify-content: center; }
  
  
  .tools-grid, .posts-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
  .categories-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-container { padding: 0 16px; }
  
  .hero { padding-top: calc(var(--nav-height) + 20px); min-height: auto; padding-bottom: 60px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.5rem); }
  .hero-stats { gap: 16px; justify-content: center; flex-wrap: wrap; }
  
  
  .search-bar, .blog-search { max-width: 100% !important; flex-direction: column; width: 100%; }
  .search-bar input, .blog-search input { width: 100%; }
  .search-bar button, .blog-search button { width: 100%; }
  
  
  .tools-filter { flex-wrap: wrap; justify-content: center; }

  
  .tools-grid, .free-grid, .posts-grid, .problem-grid, .mission-grid, .tool-pros-cons { grid-template-columns: 1fr !important; }
  
  .blog-post-card { flex-direction: column; }
  .blog-post-img { width: 100%; height: 200px; }
  
  
  .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-brand .nav-logo { justify-content: center; }
  .footer-brand p { margin: 16px auto 24px; }
  .footer-socials { justify-content: center; }
  .footer-col ul { align-items: center; }
  
  
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .section-title { font-size: clamp(1.8rem, 6vw, 2.2rem); text-align: center; }
}

@media (max-width: 480px) {
  .navbar .nav-logo { font-size: 1.05rem; gap: 8px; }
  .nav-logo span { display: inline; }
  
  
  .hero-actions { flex-direction: column; width: 100%; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; margin-bottom: 10px; }
  
  .search-bar { flex-direction: column; width: 100%; }
  .search-bar button { width: 100%; }
  
  .elite-search-bar {
    flex-direction: column;
    border-radius: 16px;
    padding: 12px;
    background: rgba(0,0,0,0.6) !important;
  }
  .elite-input {
    width: 100%;
    margin-bottom: 12px;
    padding: 12px 16px;
  }
  .elite-btn {
    width: 100%;
    border-radius: 12px;
  }
  
  .categories-grid { grid-template-columns: 1fr; }
  
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; gap: 10px; }
  .social-links { justify-content: center; margin-top: 14px; }
  
  .scroll-top { bottom: 16px; right: 16px; width: 38px; height: 38px; font-size: 0.9rem; }
  .announce-bar { font-size: 0.75rem; padding: 10px 16px; }
  .trust-bar { flex-direction: column; align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 768px) {

  
  .hero-bg::before,
  .hero-bg::after {
    animation: none !important;
    
  }

  
  .hero-grid {
    animation: none !important;
    
  }

  
  .hero-badge,
  .hero h1,
  .hero p,
  .hero-actions,
  .hero-stats {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  
  .navbar {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    background: rgba(9, 9, 11, 0.97) !important;
  }

  .mobile-nav {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    background: rgba(9, 9, 11, 0.98) !important;
  }

  
  .hero-content {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    background: rgba(9, 9, 11, 0.90) !important;
  }

  
  .nav-cta .btn-primary {
    animation: none !important;
  }

  
  .card:hover,
  .cat-card:hover,
  .post-card:hover,
  .tool-card:hover {
    transform: none !important;
  }
}

section {
  contain: layout style;
}
.footer {
  contain: content;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ULTRA-SMALL SCREENS  â”€â”€  200px â€“ 299px
   Complete A-Z responsiveness fix for tiny viewports
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 299px) {

  /* â”€â”€ 1. GLOBAL SAFETY NET â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  html, body { overflow-x: hidden !important; max-width: 100vw !important; }
  * { box-sizing: border-box !important; min-width: 0 !important; }
  img, video, iframe, embed, object { max-width: 100% !important; height: auto !important; }

  /* â”€â”€ 2. BASE FONT SCALE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  html { font-size: 13px !important; }

  /* â”€â”€ 3. CONTAINERS & LAYOUT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .container,
  .nav-container,
  .hero-container,
  .section-header { padding-left: 10px !important; padding-right: 10px !important; }

  /* â”€â”€ 4. NAVBAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .navbar { padding: 0 10px !important; min-height: 56px !important; }
  .nav-logo { font-size: 0.88rem !important; gap: 5px !important; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 140px !important; }
  .nav-logo img, .nav-logo svg { width: 22px !important; height: 22px !important; flex-shrink: 0 !important; }
  .nav-cta { display: none !important; }
  .hamburger { width: 36px !important; height: 36px !important; }

  /* â”€â”€ 5. HERO SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .hero { padding-left: 10px !important; padding-right: 10px !important; }
  .hero h1 { font-size: 1.4rem !important; line-height: 1.2 !important; margin-bottom: 10px !important; }
  .hero p  { font-size: 0.8rem !important; line-height: 1.5 !important; margin-bottom: 14px !important; }
  .hero-badge { font-size: 0.68rem !important; padding: 4px 8px !important; margin-bottom: 10px !important; }
  .hero-stats { gap: 8px !important; flex-wrap: wrap !important; justify-content: center !important; }
  .stat-number { font-size: 1.1rem !important; }
  .stat-label  { font-size: 0.62rem !important; }
  .hero-content { padding: 0 !important; }

  /* â”€â”€ 6. BUTTONS â€“ FULL WIDTH, WRAP-SAFE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .btn, .btn-primary, .btn-secondary, .btn-outline {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: normal !important;
    word-break: break-word !important;
    width: 100% !important;
    font-size: 0.78rem !important;
    padding: 9px 12px !important;
    border-radius: 10px !important;
  }
  .hero-actions {
    flex-direction: column !important;
    gap: 8px !important;
    width: 100% !important;
    align-items: stretch !important;
  }

  /* â”€â”€ 7. SEARCH & INPUT BARS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .search-bar,
  .elite-search-bar,
  .blog-search,
  .lead-form,
  .lead-form-v2,
  .lead-form-v3 {
    width: 100% !important;
    flex-direction: column !important;
    gap: 8px !important;
    padding: 10px !important;
  }
  .search-bar input,
  .elite-input,
  .blog-search input,
  .lead-form input,
  input[type="email"],
  input[type="text"] {
    width: 100% !important;
    min-width: 0 !important;
    font-size: 0.78rem !important;
    padding: 9px 10px !important;
  }
  .search-bar button,
  .elite-btn,
  .blog-search button,
  .lead-form button {
    width: 100% !important;
    font-size: 0.78rem !important;
    padding: 9px !important;
  }

  /* â”€â”€ 8. GRIDS â€“ ALL SINGLE COLUMN â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .tools-grid,
  .free-grid,
  .posts-grid,
  .categories-grid,
  .problem-grid,
  .mission-grid,
  .tool-pros-cons,
  .blog-grid,
  .footer-grid,
  .lead-grid,
  .form-row,
  .bento-grid,
  .hero-bento { grid-template-columns: 1fr !important; gap: 10px !important; }

  /* â”€â”€ 9. CARDS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .card,
  .tool-card,
  .cat-card,
  .post-card,
  .free-card,
  .bento-item {
    padding: 12px !important;
    border-radius: 12px !important;
  }
  .card-icon, .tool-icon, .cat-icon { font-size: 1.4rem !important; width: 36px !important; height: 36px !important; }

  /* â”€â”€ 10. SECTION TITLES & TEXT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .section-title  { font-size: 1.25rem !important; line-height: 1.2 !important; }
  .section-subtitle, .section-desc { font-size: 0.76rem !important; }
  h2 { font-size: 1.2rem !important; }
  h3 { font-size: 1rem !important; }
  p  { font-size: 0.8rem !important; }

  /* â”€â”€ 11. ANNOUNCE BAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .announce-bar { font-size: 0.66rem !important; padding: 7px 10px !important; }

  /* â”€â”€ 12. MOBILE NAV MENU â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .mobile-nav { padding: 64px 10px 20px !important; }
  .mobile-nav a { font-size: 0.95rem !important; padding: 10px 0 !important; }

  /* â”€â”€ 13. FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .footer { padding: 40px 10px 20px !important; }
  .footer-bottom {
    flex-direction: column !important;
    gap: 8px !important;
    font-size: 0.68rem !important;
    text-align: center !important;
  }
  .footer-legal {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 6px !important;
    font-size: 0.68rem !important;
  }
  .footer-socials { justify-content: center !important; gap: 8px !important; }
  .social-link { width: 32px !important; height: 32px !important; font-size: 0.75rem !important; }

  /* â”€â”€ 14. SCROLL-TOP BUTTON â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .scroll-top { width: 30px !important; height: 30px !important; font-size: 0.75rem !important; bottom: 10px !important; right: 10px !important; }

  /* â”€â”€ 15. FILTER TABS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .tools-filter, .filter-tabs { gap: 6px !important; flex-wrap: wrap !important; justify-content: center !important; }
  .filter-btn { font-size: 0.68rem !important; padding: 5px 10px !important; }

  /* â”€â”€ 16. BLOG POST IMAGE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .blog-post-img { height: 140px !important; }

  /* â”€â”€ 17. CONTACT FORM â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .contact-form { padding: 16px 10px !important; }

  /* â”€â”€ 18. TRUST BAR / TABLE OF CONTENTS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .trust-bar { flex-direction: column !important; align-items: center !important; gap: 8px !important; }

}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   EXTREME MICRO SCREENS  â”€â”€  < 240px
   Hide text logo, ultra-compact everything
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 239px) {

  /* â”€â”€ 1. FONT SCALE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  html { font-size: 12px !important; }

  /* â”€â”€ 2. NAVBAR: COMPACT LOGO (show name, just smaller) â”€â”€â”€ */
  .nav-logo { max-width: 140px !important; gap: 5px !important; }
  .nav-logo span { font-size: 0.62rem !important; letter-spacing: -0.01em !important; }
  .logo-icon { width: 18px !important; height: 18px !important; font-size: 0.7rem !important; border-radius: 5px !important; flex-shrink: 0 !important; }
  .navbar { padding: 0 8px !important; }
  .container, .nav-container { padding-left: 8px !important; padding-right: 8px !important; }

  /* â”€â”€ 3. HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .hero h1 { font-size: 1.1rem !important; }
  .hero p  { font-size: 0.75rem !important; }
  .hero-badge { display: none !important; }
  .hero-stats { display: none !important; }

  /* â”€â”€ 4. BUTTONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .btn, .btn-primary, .btn-secondary, .btn-outline {
    font-size: 0.72rem !important;
    padding: 8px 12px !important;
    white-space: normal !important;
    text-align: center !important;
    line-height: 1.4 !important;
    justify-content: center !important;
  }

  /* â”€â”€ 5. ALL GRID GAPS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .tools-grid, .free-grid, .posts-grid, .categories-grid,
  .problem-grid, .mission-grid, .footer-grid, .blog-grid,
  .bento-grid, .hero-bento { gap: 8px !important; }

  /* â”€â”€ 6. SECTION TITLES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .section-title { font-size: 1.05rem !important; }
  .section-subtitle { font-size: 0.7rem !important; }

  /* â”€â”€ 7. CARDS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .card, .tool-card, .cat-card, .post-card, .free-card {
    padding: 10px !important;
    border-radius: 10px !important;
  }

  /* â”€â”€ 8. FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .footer { padding: 30px 8px 16px !important; }
  .footer-bottom { font-size: 0.62rem !important; }
  .footer-legal  { font-size: 0.62rem !important; }

  /* â”€â”€ 9. ANNOUNCE BAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .announce-bar { display: none !important; }

}

/* â”€â”€ Medium desktop nav fix (prevents overflow with many links) â”€â”€ */
@media (max-width: 1200px) and (min-width: 769px) {
  .nav-links { gap: 2px; }
  
  .nav-roadmap-btn { padding: 8px 14px !important; font-size: 0.82rem !important; }
}
@media (max-width: 1050px) and (min-width: 769px) {
  
  .nav-links a:nth-child(n+7) { display: none; } /* hide About/Contact on very tight screens */
}



/* --- Premium Utilities --- */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.glass-panel:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-purple);
}
.mesh-bg {
  background-color: var(--bg);
  background-image: 
    radial-gradient(at 0% 0%, rgba(139, 92, 246, 0.15) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(236, 72, 153, 0.15) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(16, 185, 129, 0.1) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(59, 130, 246, 0.15) 0px, transparent 50%);
}
.hover-lift {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-4px);
}
.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.badge-glass {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  color: var(--text);
  padding: 6px 12px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}


/* --- MIGRATED FROM INDEX.HTML --- */
body { font-family: 'Inter', sans-serif; }
  /* -- AURORA HERO ---------------------------- */
  .home-hero {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-secondary) 40%, var(--bg) 100%);
    background-size: 400% 400%;
    animation: aurora-flow 18s ease infinite;
    padding: 120px 0 80px;
  }
  @keyframes aurora-flow {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  .home-hero::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
  }
  .hero-orb {
    position: absolute; border-radius: 50%; pointer-events: none; opacity: 0.5; will-change: transform;
  }
  .hero-orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(139,92,246,0.5) 0%, rgba(139,92,246,0) 70%);  top: -150px; left: -150px; animation: orb1 10s ease-in-out infinite; }
  .hero-orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(59,130,246,0.4) 0%, rgba(59,130,246,0) 70%);  top: 100px;  right: -100px; animation: orb2 13s ease-in-out infinite; }
  .hero-orb-3 { width: 350px; height: 350px; background: radial-gradient(circle, rgba(139,92,246,0.35) 0%, rgba(139,92,246,0) 70%); bottom: -80px; left: 35%; animation: orb1 15s ease-in-out infinite reverse; }
  @keyframes orb1 { 0%,100%{transform:translate3d(0,0,0)} 50%{transform:translate3d(40px,-30px,0)} }
  @keyframes orb2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,40px)} }
  .home-hero .container  { position: relative; z-index: 2; }
  .home-hero-content     { max-width: 780px; }
  /* Shimmer badge */
  .home-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, rgba(139,92,246,0.18), rgba(139,92,246,0.05));
    border: 1px solid rgba(139,92,246,0.4); color: var(--primary-light);
    font-weight: 700; padding: 8px 20px; border-radius: 99px;
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.16em;
    margin-bottom: 28px; box-shadow: 0 0 40px rgba(139,92,246,0.15);
    position: relative; overflow: hidden;
  }
  .home-badge::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 4s infinite;
  }
  .home-badge .pulse-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--primary);
    box-shadow: 0 0 0 0 rgba(139,92,246,0.6);
    animation: pulse 2s infinite;
  }
  @keyframes pulse  { 0%{box-shadow:0 0 0 0 rgba(139,92,246,0.6)} 70%{box-shadow:0 0 0 8px rgba(139,92,246,0)} 100%{box-shadow:0 0 0 0 rgba(139,92,246,0)} }
  @keyframes shimmer { 0%{left:-100%} 20%{left:200%} 100%{left:200%} }
  /* Hero title */
  .home-hero h1 {
    font-size: clamp(2.8rem, 7vw, 5.2rem); font-weight: 900;
    line-height: 1.04; letter-spacing: -0.035em;
    color: #fff; margin: 0 0 20px;
  }
  .home-hero h1 .highlight {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-light) 40%, var(--primary) 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .home-hero p {
    color: rgba(255,255,255,0.65); font-size: 1.15rem; font-weight: 500;
    line-height: 1.65; max-width: 580px; margin: 0 0 40px;
  }
  /* Hero CTA buttons */
  .hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
  .btn-hero-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--vivid-cyan));
    color: #fff; font-weight: 800; font-size: 1rem;
    padding: 16px 32px; border-radius: 14px; text-decoration: none;
    box-shadow: 0 8px 30px rgba(139,92,246,0.4);
    transition: all 0.25s ease; border: none; font-family: 'Inter', sans-serif;
  }
  .btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(139,92,246,0.5); filter: brightness(1.08); }
  .btn-hero-outline {
    display: inline-flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.85); font-weight: 700; font-size: 1rem;
    padding: 16px 32px; border-radius: 14px; text-decoration: none;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    transition: all 0.25s ease; backdrop-filter: blur(8px);
  }
  .btn-hero-outline:hover { border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.1); transform: translateY(-2px); }
  /* Hero stats */
  .home-hero-stats {
    display: flex; gap: 40px; flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 36px;
  }
  .h-stat { display: flex; flex-direction: column; gap: 4px; }
  .h-stat-num {
    font-size: 2.2rem; font-weight: 900; color: #fff;
    letter-spacing: -0.03em; line-height: 1;
  }
  .h-stat-lbl { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.5); }
  /* Enhance Blog Cards on Home Page */
  .post-card {
    background: var(--bg-card) !important;
    border: 1px solid rgba(139,92,246,0.25) !important;
    backdrop-filter: blur(12px) !important;
    border-radius: 18px !important;
    transition: transform 0.35s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
  }
  .post-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 16px 40px rgba(0,0,0,0.4) !important;
    border-color: rgba(139,92,246,0.3) !important;
  }
  /* -- LIVE STATS TICKER ---------------------- */
  .stats-bar {
    background: var(--bg-card);
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0; overflow: hidden;
    backdrop-filter: blur(20px);
  }
  .stats-bar-inner {
    display: flex; align-items: center; gap: 28px;
    white-space: nowrap; width: max-content;
    animation: ticker 50s linear infinite;
  }
  .stats-bar-inner:hover { animation-play-state: paused; }
  @keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
  .stat-chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 18px; border-radius: 99px;
    font-size: 0.875rem; font-weight: 600; color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  }
  .stat-dot { width: 8px; height: 8px; border-radius: 50%; box-shadow: 0 0 8px currentColor; flex-shrink: 0; }
  /* -- TOOL PREVIEW CARDS -------------------- */
  .home-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px; margin-top: 0;
  }
  .home-tool-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px; padding: 28px;
    display: flex; flex-direction: column; gap: 14px;
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative; overflow: hidden;
  }
  .home-tool-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
  }
  .home-tool-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: rgba(139,92,246,0.25);
  }
  .htc-header { display: flex; gap: 14px; align-items: center; }
  .htc-logo {
    width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; background: rgba(139,92,246,0.12);
    border: 1px solid rgba(139,92,246,0.2);
  }
  .htc-name { font-size: 1.05rem; font-weight: 800; color: #fff; margin: 0 0 3px; }
  .htc-cat  { font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.5); }
  .htc-rating { display: flex; align-items: center; gap: 8px; }
  .htc-stars { color: var(--primary-light); font-size: 0.95rem; letter-spacing: 1px; }
  .htc-score { font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.5); }
  .htc-desc  { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.55; margin: 0; }
  .btn-htc {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    padding: 10px 20px; border-radius: 10px; font-weight: 800; font-size: 0.88rem;
    background: linear-gradient(135deg, var(--primary), var(--vivid-cyan));
    color: #fff; text-decoration: none; margin-top: auto;
    box-shadow: 0 4px 15px rgba(139,92,246,0.3); transition: all 0.2s;
    border: none; cursor: pointer; font-family: 'Inter', sans-serif;
  }
  .btn-htc:hover { transform: translateY(-2px); filter: brightness(1.1); }
  @media(max-width: 640px) {
    .home-hero   { padding: 90px 0 60px; }
    .home-hero h1 { font-size: 2.5rem; }
    .home-hero p  { font-size: 1rem; }
    .hero-cta-row { flex-direction: column; }
    .btn-hero-primary, .btn-hero-outline { width: 100%; justify-content: center; }
    .home-hero-stats { gap: 24px; }
    .h-stat-num  { font-size: 1.8rem; }
  }
/* --- Free Grid Utilities --- */
.free-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.free-tool-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(16,185,129,0.15);
}
.free-tool-card:hover {
  border-color: rgba(16,185,129,0.4);
}
.free-tool-card .icon {
  font-size: 2.2rem;
}
.free-tool-card .title {
  font-weight: 700;
  color: var(--text);
  margin: 0 0 4px;
  font-size: 1.1rem;
}
.free-tool-card .desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}
.free-tool-card .badge-free {
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(16,185,129,0.15);
  color: var(--vivid-emerald);
  padding: 4px 10px;
  border-radius: 99px;
  width: fit-content;
  border: 1px solid rgba(16,185,129,0.25);
  margin-top: auto;
}

/* --- Premium Navbar Links --- */
.nav-links a.nav-link {
  padding: 8px 16px;
  border-radius: 12px;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  text-decoration: none;
}

.nav-links a.nav-link:hover {
  color: var(--text) !important;
  background: rgba(255, 255, 255, 0.04);
}

.nav-links a.nav-link.active {
  color: var(--text) !important;
  font-weight: 700 !important;
}

.nav-links a.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background: var(--primary);
  border-radius: 99px;
  box-shadow: 0 0 10px var(--primary-light);
}

.nav-bookmark-count {
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.1);
}

.nav-roadmap-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: var(--text);
  padding: 8px 20px;
  border-radius: 99px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-left: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.nav-roadmap-btn:hover {
  background: rgba(139, 92, 246, 0.15);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
  color: #fff;
}

.logo-dot {
  color: var(--primary);
  text-shadow: 0 0 12px var(--primary-light);
}

.site-logo-svg path {
  fill: var(--primary);
}

.nav-logo span {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.4rem;
}
