/* wecando.ai – v3 Stitch Design → Hugo CSS */
/* Fonts: Space Grotesk (Headlines) + Inter (Body) – self-hosted for DSGVO */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
  src: url('/fonts/space-grotesk-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* Stitch v4 — Cyber-Authority palette */
  --primary: #00d4ff;
  --primary-glow: rgba(0, 212, 255, 0.15);
  --secondary: #d2bbff;
  --secondary-container: #6001d1;
  --surface: #111417;
  --surface-low: #191c1f;
  --surface-high: #1d2023;
  --surface-highest: #282a2e;
  --surface-lowest: #0c0e12;
  --on-surface: #e1e2e7;
  --on-surface-variant: #bbc9cf;
  --on-bg: #e1e2e7;
  --on-bg-dim: #8a9499;
  --outline: #3c494e;
  --outline-ghost: rgba(60, 73, 78, 0.2);
  --max-width: 1280px;
  --radius: 0.75rem;
  --radius-sm: 0.375rem;
  /* Gradient for "AI magic" moments */
  --gradient-ai: linear-gradient(135deg, #00d4ff, #6001d1);
  --shadow-ambient: 0 8px 64px rgba(0, 212, 255, 0.05);
}

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

::selection { background: rgba(0, 212, 255, 0.3); }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--surface);
  color: var(--on-surface);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--primary); text-decoration: none; transition: all 0.2s; }
a:hover { color: #00b8e0; }

:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }

/* ========== TICKER ========== */
.ticker-bar {
  width: 100%;
  background: var(--surface-lowest);
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
  padding: 8px 0;
  overflow: hidden;
  position: sticky;
  top: 0;
  z-index: 60;
}
.ticker-content {
  display: inline-block;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  color: var(--primary);
  font-family: 'Space Grotesk', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0 16px;
}
@keyframes ticker {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* ========== NAV ========== */
.site-header {
  position: sticky;
  top: 33px;
  z-index: 50;
  background: rgba(17, 20, 23, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 0.5px solid var(--outline-ghost);
  box-shadow: var(--shadow-ambient);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.03em;
}
.main-nav { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--on-surface-variant);
  letter-spacing: -0.02em;
  transition: color 0.2s;
  padding-bottom: 4px;
}
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link.active { border-bottom: 2px solid var(--primary); }

/* Nav Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { display: flex; align-items: center; gap: 6px; background: none; border: none; cursor: pointer; }
.nav-dropdown-icon { font-size: 0.85rem; }
.nav-dropdown-arrow { font-size: 0.6rem; transition: transform 0.2s; }
.nav-dropdown:hover .nav-dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 12px); right: 0; width: 280px;
  background: rgba(25, 28, 31, 0.95); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 0.5px solid var(--outline-ghost); border-radius: var(--radius);
  padding: 8px; box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 212, 255, 0.05);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu:hover { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: var(--radius-sm);
  color: var(--on-surface); transition: all 0.15s; text-decoration: none;
}
.nav-dropdown-item:hover { background: rgba(0, 212, 255, 0.06); color: var(--on-surface); }
.ndi-icon { font-size: 1.2rem; width: 32px; text-align: center; flex-shrink: 0; }
.ndi-text { display: flex; flex-direction: column; }
.ndi-text strong { font-size: 0.88rem; font-weight: 600; }
.ndi-text small { font-size: 0.72rem; color: var(--on-surface-variant); margin-top: 1px; }

/* Light mode dropdown */
body.light-mode .nav-dropdown-menu { background: rgba(255, 255, 255, 0.95); box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
body.light-mode .nav-dropdown-item:hover { background: rgba(0, 136, 170, 0.06); }
.nav-icons { display: flex; align-items: center; gap: 8px; }
.nav-icon-btn {
  background: none;
  border: none;
  color: var(--primary);
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 1.2rem;
  line-height: 1;
}
.nav-icon-btn:hover { background: var(--surface-high); }
.nav-login-btn { font-size: 1rem; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; }
.nav-user-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gradient-ai); color: #fff;
  font-family: 'Space Grotesk', sans-serif; font-weight: 900; font-size: 0.8rem;
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; padding: 0;
}
.nav-user-avatar:hover { opacity: 0.85; color: #fff; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 10px; min-width: 44px; min-height: 44px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--on-surface); margin: 5px 0; transition: 0.3s; }

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: 80px 32px 60px;
  max-width: var(--max-width);
  margin: 0 auto 120px;
  overflow: hidden;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1) 0%, rgba(10, 10, 10, 0) 70%);
  z-index: -1;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-size: 40px 40px;
  background-image:
    linear-gradient(to right, rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  mask-image: radial-gradient(ellipse at center, black, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 80%);
  z-index: -2;
}
.hero-content { max-width: 800px; position: relative; }
.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.text-gradient {
  background: var(--gradient-ai);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.25rem;
  color: var(--on-surface-variant);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--surface);
  padding: 16px 32px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 1rem;
  box-shadow: 0 8px 32px rgba(0, 212, 255, 0.2);
}
.btn-primary:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn-primary:active { transform: scale(0.97); }
.btn-outline {
  padding: 16px 32px;
  font-weight: 700;
  border: 1px solid var(--outline);
  border-radius: var(--radius-sm);
  background: none;
  color: var(--on-surface);
  cursor: pointer;
  transition: all 0.2s;
  font-size: 1rem;
}
.btn-outline:hover { background: var(--surface-high); }

/* Trust Bar */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
  border-top: 0.5px solid var(--outline-ghost);
  border-bottom: 0.5px solid var(--outline-ghost);
  margin-bottom: 40px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(173, 170, 170, 0.8);
}
.trust-icon { color: var(--primary); font-size: 1.1rem; }

/* Search */
.hero-search {
  position: relative;
  max-width: 640px;
  margin-bottom: 24px;
}
.hero-search input {
  width: 100%;
  background: var(--surface-low);
  border: 1px solid var(--outline);
  padding: 20px 24px 20px 56px;
  border-radius: var(--radius);
  color: var(--on-surface);
  font-size: 1.1rem;
  transition: all 0.2s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.hero-search input::placeholder { color: rgba(173, 170, 170, 0.4); }
.hero-search input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15); }
.hero-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--on-surface-variant);
  font-size: 1.3rem;
  transition: color 0.2s;
}
.hero-search:focus-within .hero-search-icon { color: var(--primary); }

/* Hero Eyebrow */
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  opacity: 0.8;
}

/* Tools Showcase */
.hp-tools { max-width: var(--max-width); margin: 0 auto 120px; padding: 0 32px; }
.hp-tools-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.hp-tool-card {
  background: rgba(25, 28, 31, 0.6);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 0.5px solid var(--outline-ghost);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s;
  color: var(--on-surface);
}
.hp-tool-card:hover {
  border-color: rgba(0, 212, 255, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 212, 255, 0.08);
  color: var(--on-surface);
}
.hp-tool-icon { font-size: 1.8rem; display: block; margin-bottom: 12px; }
.hp-tool-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem; font-weight: 700;
  margin-bottom: 6px;
}
.hp-tool-card p {
  font-size: 0.78rem;
  color: var(--on-surface-variant);
  line-height: 1.4;
}

/* Light mode tools */
body.light-mode .hp-tool-card { background: rgba(255,255,255,0.6); }

/* ========== CATEGORIES ========== */
.categories { max-width: var(--max-width); margin: 0 auto 120px; padding: 0 32px; }
.category-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.category-card {
  position: relative;
  background: var(--surface-low);
  padding: 40px;
  border-radius: var(--radius);
  border: 0.5px solid var(--outline-ghost);
  transition: all 0.3s;
  display: block;
  color: var(--on-surface);
}
.category-card:hover {
  background: var(--surface-high);
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.25);
  box-shadow: 0 16px 64px rgba(0, 212, 255, 0.08);
  color: var(--on-surface);
}
.category-icon { color: var(--primary); font-size: 2.2rem; margin-bottom: 24px; display: block; }
.category-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: block;
}
.category-desc { font-size: 0.75rem; color: var(--on-surface-variant); font-weight: 500; }
.category-count {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(173, 170, 170, 0.4);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 8px;
  border-radius: 4px;
}

/* ========== VS COMPARISONS ========== */
.comparisons { max-width: var(--max-width); margin: 0 auto 120px; padding: 0 32px; }
.section-header {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-header::after {
  content: '';
  flex: 1;
  height: 2px;
  background: rgba(51, 51, 51, 0.3);
  border-radius: 1px;
}
.vs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.vs-card {
  background: var(--surface-high);
  padding: 24px;
  border-radius: var(--radius);
  border: 0.5px solid var(--outline-ghost);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}
.vs-card:hover { border-color: rgba(0, 212, 255, 0.4); box-shadow: 0 8px 32px rgba(0, 212, 255, 0.08); }
.vs-names { display: flex; align-items: center; justify-content: space-between; width: 100%; margin-bottom: 8px; }
.vs-name { font-size: 0.875rem; font-weight: 700; color: var(--on-surface-variant); }
.vs-badge-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
.vs-line { position: absolute; width: 1px; height: 40px; background: linear-gradient(to bottom, transparent, rgba(0, 212, 255, 0.4), transparent); }
.vs-badge {
  position: relative;
  z-index: 1;
  font-size: 0.6rem;
  font-weight: 900;
  background: var(--surface-lowest);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--primary);
  padding: 4px 8px;
  border-radius: 4px;
}
.vs-hover-text {
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}
.vs-card:hover .vs-hover-text { opacity: 1; transform: translateY(0); }

/* ========== ARTICLE GRID ========== */
.articles { max-width: var(--max-width); margin: 0 auto 120px; padding: 0 32px; }
.articles-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
.articles-header h2 { font-family: 'Space Grotesk', sans-serif; font-size: 1.8rem; font-weight: 900; }
.articles-all { color: var(--primary); font-weight: 700; display: flex; align-items: center; gap: 8px; transition: gap 0.2s; }
.articles-all:hover { gap: 12px; }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.article-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: rgba(25, 28, 31, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 24px;
  border-radius: var(--radius);
  border: 0.5px solid var(--outline-ghost);
  transition: all 0.3s;
}
.article-card:hover { border-color: rgba(0, 212, 255, 0.4); box-shadow: 0 16px 48px rgba(0, 212, 255, 0.06); }
.article-card a { color: var(--on-surface); }

/* Card Image Patterns */
.article-img {
  aspect-ratio: 16/9;
  width: 100%;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  background: var(--surface-highest);
}
.article-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}
.pattern-lines { background: repeating-linear-gradient(0deg, transparent, transparent 4px, rgba(0, 212, 255, 0.1) 4px, rgba(0, 212, 255, 0.1) 5px); }
.pattern-circles { background-image: radial-gradient(circle, rgba(0, 212, 255, 0.1) 1px, transparent 1px); background-size: 12px 12px; }
.pattern-diagonal { background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0, 212, 255, 0.05) 10px, rgba(0, 212, 255, 0.05) 11px); }
.article-tag-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: var(--primary);
  color: var(--surface);
  font-size: 0.6rem;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.68rem;
  color: var(--on-surface-variant);
  font-weight: 500;
  margin-bottom: 12px;
}
.meta-dot { width: 3px; height: 3px; background: var(--outline); border-radius: 50%; }
.article-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.article-card:hover h3 { color: var(--primary); }
.article-card p { color: var(--on-surface-variant); font-size: 0.9rem; line-height: 1.6; margin-bottom: 24px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.article-tags { display: flex; gap: 8px; }
.article-tag { font-size: 0.6rem; font-weight: 700; color: rgba(0, 212, 255, 0.7); }
.article-readmore {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0;
  transition: opacity 0.2s;
}
.article-card:hover .article-readmore { opacity: 1; }

/* ========== NEWSLETTER ========== */
.newsletter {
  background: var(--surface-lowest);
  border-top: 0.5px solid var(--outline-ghost);
  border-bottom: 0.5px solid var(--outline-ghost);
  padding: 96px 32px;
  margin-bottom: 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(96, 1, 209, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter h2 { font-family: 'Space Grotesk', sans-serif; font-size: 2.2rem; font-weight: 900; margin-bottom: 16px; }
.newsletter p { color: var(--on-surface-variant); max-width: 540px; margin: 0 auto 40px; }
.newsletter-form { display: flex; gap: 16px; max-width: 500px; margin: 0 auto; }
.newsletter-form input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--outline);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  color: var(--on-surface);
  font-size: 1rem;
  transition: border-color 0.2s;
}
.newsletter-form input:focus { outline: none; border-color: var(--primary); }
.newsletter-form input::placeholder { color: var(--on-surface-variant); }

/* ========== FOOTER ========== */
.site-footer {
  background: var(--surface-lowest);
  border-top: 0.5px solid var(--outline-ghost);
  padding: 80px 32px 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  margin-bottom: 24px;
}
.footer-col a { display: block; color: var(--on-surface-variant); font-size: 0.875rem; margin-bottom: 12px; }
.footer-col a:hover { color: var(--primary); }
.footer-about p { color: var(--on-surface-variant); font-size: 0.875rem; line-height: 1.6; margin-bottom: 16px; }
.footer-brand { font-size: 0.6rem; font-family: monospace; color: rgba(0, 212, 255, 0.4); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 16px; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: var(--on-surface-variant); font-size: 1.2rem; margin-bottom: 0; }
.footer-social a:hover { color: var(--primary); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 80px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(51, 51, 51, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom span { color: var(--on-surface-variant); font-size: 0.75rem; }
.footer-status { display: flex; align-items: center; gap: 8px; }
.status-dot { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ========== SCROLL TO TOP ========== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: rgba(0, 212, 255, 0.2);
  backdrop-filter: blur(12px);
  color: var(--primary);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  z-index: 60;
  font-size: 1.2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--primary); color: var(--surface); }

/* ========== SCROLL ANIMATIONS ========== */
.scroll-reveal { opacity: 0; }

/* Grid children start hidden for GSAP stagger */
.hp-tools-grid > *,
.category-grid > *,
.article-grid > *,
.vs-grid > * { opacity: 0; }

/* Section headers start hidden for GSAP slide */
.section-header,
.articles-header { opacity: 0; }

/* Hero children start hidden for GSAP entrance */
.hero-eyebrow,
#hero h1,
.hero-subtitle,
.hero-buttons,
.hero-search { opacity: 0; }

/* Article page elements start hidden */
.article-hero-img { opacity: 0; }
.article-body { opacity: 0; }

/* Fallback if GSAP fails to load (no-js or CDN down) */
.no-js .scroll-reveal,
.no-js .hero-eyebrow,
.no-js #hero h1,
.no-js .hero-subtitle,
.no-js .hero-buttons,
.no-js .hero-search,
.no-js .hero-gradient,
.no-js .hero-grid,
.no-js .hp-tools-grid > *,
.no-js .category-grid > *,
.no-js .article-grid > *,
.no-js .vs-grid > *,
.no-js .section-header,
.no-js .articles-header,
.no-js .article-hero-img,
.no-js .article-body { opacity: 1; transform: none; }

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ========== ARTICLE PAGE (single.html) ========== */
.article-page { max-width: 760px; margin: 0 auto; padding: 40px 32px 80px; }
.breadcrumbs { font-size: 0.8rem; color: var(--on-surface-variant); margin-bottom: 24px; }
.breadcrumbs a { color: var(--on-surface-variant); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs .sep { margin: 0 8px; }
.article-hero-img { margin-bottom: 32px; border-radius: var(--radius); overflow: hidden; }
.article-hero-img img { width: 100%; height: auto; display: block; border-radius: var(--radius); }
.article-page header { margin-bottom: 40px; }
.article-page header h1 { font-family: 'Space Grotesk', sans-serif; font-size: 2.2rem; font-weight: 900; line-height: 1.2; margin-bottom: 12px; letter-spacing: -0.03em; }
.article-page .article-intro { font-size: 1.15rem; color: var(--on-surface-variant); line-height: 1.6; margin-top: 16px; }
.article-body h2 { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; margin: 56px 0 20px; padding-bottom: 12px; border-bottom: 2px solid transparent; border-image: var(--gradient-ai) 1; letter-spacing: -0.02em; }
.article-body h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.15rem; font-weight: 700; margin: 32px 0 12px; }
.article-body p { margin-bottom: 16px; }
.article-body ul, .article-body ol { margin: 0 0 16px 24px; }
.article-body li { margin-bottom: 6px; }
.article-body blockquote { border-left: 3px solid; border-image: var(--gradient-ai) 1; padding: 16px 24px; margin: 28px 0; background: rgba(0, 212, 255, 0.04); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.article-body code { background: var(--surface-highest); padding: 3px 8px; border-radius: var(--radius-sm); font-size: 0.875em; border: 0.5px solid var(--outline-ghost); }
.article-body pre { background: var(--surface-high); padding: 16px; border-radius: var(--radius-sm); overflow-x: auto; margin: 16px 0; }
.article-body table { width: 100%; border-collapse: collapse; margin: 24px 0; border-radius: var(--radius-sm); overflow: hidden; }
.article-body th, .article-body td { padding: 14px 18px; border: none; border-bottom: 0.5px solid var(--outline-ghost); text-align: left; }
.article-body th { background: var(--surface-highest); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--on-surface-variant); }
.article-body tr:hover td { background: rgba(0, 212, 255, 0.03); }
.article-body img { max-width: 100%; border-radius: var(--radius-sm); margin: 16px 0; }

/* TOC */
.toc { background: rgba(25, 28, 31, 0.5); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 0.5px solid var(--outline-ghost); border-radius: var(--radius); padding: 24px 28px; margin-bottom: 40px; }
.toc h3 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--on-surface-variant); margin-bottom: 12px; }
.toc nav ul { list-style: none; margin: 0; padding: 0; }
.toc nav li { margin-bottom: 6px; }
.toc nav a { color: var(--on-surface-variant); font-size: 0.875rem; }
.toc nav a:hover { color: var(--primary); }

/* Sticky TOC Layout (Desktop) */
@media (min-width: 1100px) {
  .article-page { max-width: 1080px; }
  .article-with-toc { display: grid; grid-template-columns: 220px 1fr; gap: 48px; align-items: start; }
  .toc-sticky {
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--outline-ghost) transparent;
  }
  .toc-sticky::-webkit-scrollbar { width: 3px; }
  .toc-sticky::-webkit-scrollbar-thumb { background: var(--outline-ghost); border-radius: 3px; }
}
@media (max-width: 1099px) {
  .article-with-toc { display: block; }
  .toc-sticky { position: static; }
}

/* Article Tags */
.article-page-tags { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 8px; }
.tag-pill { background: var(--surface-high); color: var(--on-surface-variant); padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; }
.tag-pill:hover { background: rgba(0, 212, 255, 0.1); color: var(--primary); }

/* Affiliate Box */
.affiliate-box {
  background: var(--surface-low);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}
.affiliate-box.disclaimer { border-color: var(--outline); }
.affiliate-box.disclaimer p { color: var(--on-surface-variant); font-size: 0.85rem; margin: 0; }
.affiliate-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.affiliate-header h4 { margin: 0; font-size: 1.1rem; font-family: 'Space Grotesk', sans-serif; font-weight: 700; }
.affiliate-rating { color: #ff9100; font-weight: 700; }
.affiliate-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; }
.affiliate-price { font-weight: 600; color: var(--on-surface-variant); }

/* Comparison Table Shortcode */
.comparison-table { overflow-x: auto; margin: 24px 0; }
.comparison-table table { min-width: 500px; }
.btn-sm { padding: 6px 14px; font-size: 0.8rem; }

/* Related Articles */
.related-articles { margin-top: 60px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.05); }
.related-articles h3 { font-family: 'Space Grotesk', sans-serif; margin-bottom: 20px; }

/* ========== MOBILE ========== */
@media (max-width: 1024px) {
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .vs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-tools-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero { padding: 48px 16px 40px; margin-bottom: 64px; }
  .main-nav { display: none; position: absolute; top: 60px; left: 0; right: 0; background: var(--surface-low); flex-direction: column; padding: 16px 24px; border-bottom: 0.5px solid var(--outline-ghost); gap: 4px; }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-trigger { width: 100%; justify-content: space-between; padding: 12px 0; }
  .nav-dropdown-menu { position: static; width: 100%; opacity: 1; visibility: visible; transform: none; background: transparent; backdrop-filter: none; border: none; box-shadow: none; padding: 0 0 0 12px; display: none; }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown-item { padding: 10px 12px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .vs-grid { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .newsletter-form { flex-direction: column; }
  .articles, .categories, .comparisons, .hp-tools { margin-bottom: 64px; padding: 0 16px; }
  .hp-tools-grid { grid-template-columns: 1fr; }
  .newsletter { padding: 64px 16px; margin-bottom: 64px; }
  .article-page { padding: 24px 16px 60px; }
  .article-page header h1 { font-size: 1.6rem; }
  .affiliate-footer { flex-direction: column; gap: 12px; align-items: flex-start; }
}

@media (max-width: 480px) {
  .category-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .trust-bar { flex-direction: column; align-items: flex-start; gap: 12px; }
  .article-page header h1 { font-size: 1.35rem; }
  .article-page { padding: 16px 12px 48px; }
  .article-body { font-size: 0.95rem; }
  .article-body h2 { font-size: 1.25rem; }
  .article-body h3 { font-size: 1.1rem; }
  .article-body table { font-size: 0.8rem; display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .article-body pre { font-size: 0.8rem; overflow-x: auto; }
  .article-body blockquote { margin-left: 0; margin-right: 0; padding: 12px 16px; }
  .toc { padding: 16px; }
  .toc h3 { font-size: 1rem; }
  .freebie-cta-box { padding: 20px 16px; }
  .freebie-title { font-size: 1.1rem; }
  .search-overlay { padding-top: 80px; }
}

@media (max-width: 360px) {
  .hero h1 { font-size: 1.5rem; }
  .hero-subtitle { font-size: 0.9rem; }
  .article-page header h1 { font-size: 1.2rem; }
  .nav-icon-btn { padding: 6px; min-width: 36px; min-height: 36px; }
}

/* Screen-reader only utility */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Touch-friendly: ensure all interactive elements are at least 44px */
@media (pointer: coarse) {
  .nav-link { padding: 12px 16px; }
  .tag-pill { padding: 8px 16px; }
  .article-tag { padding: 6px 12px; }
  .btn-primary, .btn-outline { padding: 14px 28px; }
  .toc a { padding: 6px 0; display: inline-block; }
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
  .scroll-reveal,
  .hero-eyebrow,
  #hero h1,
  .hero-subtitle,
  .hero-buttons,
  .hero-search,
  .hero-gradient,
  .hero-grid,
  .hp-tools-grid > *,
  .category-grid > *,
  .article-grid > *,
  .vs-grid > *,
  .section-header,
  .articles-header,
  .article-hero-img,
  .article-body { opacity: 1 !important; transform: none !important; }
  .ticker-content { animation: none; }
  .status-dot { animation: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ========== SEARCH OVERLAY ========== */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.search-overlay.open { opacity: 1; visibility: visible; }
.search-overlay-inner {
  width: 100%;
  max-width: 640px;
  padding: 0 24px;
}
.search-overlay-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.search-overlay-header h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}
.search-close {
  background: none;
  border: none;
  color: var(--on-surface-variant);
  font-size: 2rem;
  cursor: pointer;
  padding: 4px 12px;
  border-radius: 8px;
  transition: all 0.2s;
}
.search-close:hover { color: var(--primary); background: rgba(255,255,255,0.05); }
.search-input {
  width: 100%;
  background: var(--surface-low);
  border: 1px solid var(--outline);
  padding: 20px 24px;
  border-radius: var(--radius);
  color: var(--on-surface);
  font-size: 1.2rem;
  transition: border-color 0.2s;
  margin-bottom: 24px;
}
.search-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15); }
.search-input::placeholder { color: rgba(173, 170, 170, 0.4); }
.search-results { max-height: 400px; overflow-y: auto; }
.search-result-item {
  display: block;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  color: var(--on-surface);
  transition: background 0.2s;
  margin-bottom: 4px;
}
.search-result-item:hover { background: var(--surface-high); color: var(--on-surface); }
.search-result-item strong { display: block; margin-bottom: 4px; font-size: 1rem; }
.search-result-item p { color: var(--on-surface-variant); font-size: 0.8rem; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.search-result-section {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}
.search-hint { color: var(--on-surface-variant); font-size: 0.9rem; text-align: center; padding: 20px; }

/* ========== LIGHT MODE ========== */
body.light-mode {
  --surface: #f8f9fa;
  --surface-low: #ffffff;
  --surface-high: #f0f1f3;
  --surface-highest: #e4e6e8;
  --surface-lowest: #ffffff;
  --on-surface: #111417;
  --on-surface-variant: #555d63;
  --outline: #c4c8cc;
  --outline-ghost: rgba(0, 0, 0, 0.08);
  --primary: #0077aa;
  --secondary: #7c43c9;
  --secondary-container: #eaddff;
  --primary-glow: rgba(0, 119, 170, 0.12);
  --on-bg: #111417;
  --on-bg-dim: #555d63;
  --gradient-ai: linear-gradient(135deg, #0077aa, #7c43c9);
  --shadow-ambient: 0 4px 24px rgba(0, 0, 0, 0.08);
}

/* Light Mode — Header + Ticker */
body.light-mode .site-header { background: rgba(248, 249, 250, 0.9); border-bottom-color: rgba(0, 0, 0, 0.06); }
body.light-mode .ticker-bar { background: #ffffff; border-bottom-color: rgba(0, 119, 170, 0.15); }
body.light-mode .ticker-content { color: var(--primary); }
body.light-mode .nav-toggle span { background: var(--on-surface); }
body.light-mode .nav-link { color: #555d63; }
body.light-mode .nav-link:hover, body.light-mode .nav-link.active { color: var(--primary); }

/* Light Mode — Text + Gradient */
body.light-mode .text-gradient {
  background: var(--gradient-ai);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Light Mode — Hero */
body.light-mode .hero-gradient { background: radial-gradient(circle at 50% 50%, rgba(0, 119, 170, 0.06) 0%, transparent 70%); }
body.light-mode .hero-grid {
  background-image:
    linear-gradient(to right, rgba(0, 119, 170, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 119, 170, 0.05) 1px, transparent 1px);
}
body.light-mode .hero-subtitle { color: #555d63; }
body.light-mode .hero-search input { background: #ffffff; border-color: #d4d8dc; color: #111417; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
body.light-mode .hero-eyebrow { color: var(--primary); }

/* Light Mode — Buttons */
body.light-mode .btn-primary { color: #ffffff; box-shadow: 0 4px 16px rgba(0, 119, 170, 0.2); }
body.light-mode .btn-outline { border-color: #d4d8dc; color: #111417; }
body.light-mode .btn-outline:hover { background: #f0f1f3; }

/* Light Mode — Cards */
body.light-mode .category-card { background: #ffffff; border-color: rgba(0,0,0,0.06); box-shadow: 0 1px 4px rgba(0,0,0,0.04); }
body.light-mode .category-card:hover { box-shadow: 0 8px 32px rgba(0,119,170,0.1); border-color: rgba(0,119,170,0.2); }
body.light-mode .article-card { background: #ffffff; backdrop-filter: none; border-color: rgba(0,0,0,0.06); box-shadow: 0 1px 4px rgba(0,0,0,0.04); }
body.light-mode .article-card:hover { box-shadow: 0 8px 24px rgba(0,119,170,0.08); border-color: rgba(0,119,170,0.2); }
body.light-mode .article-card h3 { color: #111417; }
body.light-mode .article-card:hover h3 { color: var(--primary); }
body.light-mode .article-card p { color: #555d63; }
body.light-mode .vs-card { background: #ffffff; border-color: rgba(0,0,0,0.06); box-shadow: 0 1px 4px rgba(0,0,0,0.04); }
body.light-mode .vs-card:hover { border-color: rgba(0,119,170,0.3); box-shadow: 0 4px 16px rgba(0,119,170,0.08); }
body.light-mode .hp-tool-card { background: #ffffff; backdrop-filter: none; border-color: rgba(0,0,0,0.06); box-shadow: 0 1px 4px rgba(0,0,0,0.04); }
body.light-mode .hp-tool-card:hover { box-shadow: 0 8px 24px rgba(0,119,170,0.1); border-color: rgba(0,119,170,0.2); }

/* Light Mode — Article page */
body.light-mode .toc { background: #ffffff; border-color: rgba(0,0,0,0.06); box-shadow: 0 1px 4px rgba(0,0,0,0.04); }
body.light-mode .article-body th { background: #f0f1f3; color: #555d63; }
body.light-mode .article-body tr:hover td { background: rgba(0,119,170,0.03); }
body.light-mode .article-body blockquote { background: rgba(0,119,170,0.04); }
body.light-mode .article-body code { background: #f0f1f3; border-color: rgba(0,0,0,0.06); }
body.light-mode .article-body pre { background: #f0f1f3; }
body.light-mode .tag-pill { background: #f0f1f3; color: #555d63; }
body.light-mode .tag-pill:hover { background: rgba(0,119,170,0.08); color: var(--primary); }
body.light-mode .affiliate-box { background: #ffffff; border-color: rgba(0,119,170,0.2); }
body.light-mode .affiliate-box.disclaimer { border-color: #d4d8dc; }

/* Light Mode — Trust + Meta */
body.light-mode .trust-bar { border-color: rgba(0,0,0,0.06); }
body.light-mode .trust-item { color: #555d63; }
body.light-mode .article-meta { color: #777e84; }
body.light-mode .category-count { background: rgba(0,0,0,0.04); color: #777e84; }

/* Light Mode — Newsletter */
body.light-mode .newsletter { background: #ffffff; border-color: rgba(0,0,0,0.06); }
body.light-mode .newsletter::before { background: radial-gradient(circle, rgba(124,67,201,0.04) 0%, transparent 70%); }
body.light-mode .newsletter-form input { background: #f8f9fa; border-color: #d4d8dc; color: #111417; }

/* Light Mode — Footer */
body.light-mode .site-footer { background: #f0f1f3; border-color: rgba(0,0,0,0.06); }
body.light-mode .footer-bottom { border-color: rgba(0,0,0,0.06); }

/* Light Mode — Search */
body.light-mode .search-overlay { background: rgba(255,255,255,0.92); }
body.light-mode .search-input { background: #f8f9fa; border-color: #d4d8dc; color: #111417; }
body.light-mode .search-result-item:hover { background: #f0f1f3; }
body.light-mode .search-close { color: #555d63; }
body.light-mode .search-close:hover { color: var(--primary); background: rgba(0,0,0,0.04); }

/* Light Mode — Scroll Top */
body.light-mode .scroll-top { background: rgba(0,119,170,0.1); border-color: rgba(0,119,170,0.2); }
body.light-mode .scroll-top:hover { background: var(--primary); color: #ffffff; }

/* Light Mode — Patterns */
body.light-mode .pattern-lines { background: repeating-linear-gradient(0deg, transparent, transparent 4px, rgba(0, 119, 170, 0.06) 4px, rgba(0, 119, 170, 0.06) 5px); }
body.light-mode .pattern-circles { background-image: radial-gradient(circle, rgba(0, 119, 170, 0.06) 1px, transparent 1px); }
body.light-mode .pattern-diagonal { background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0, 119, 170, 0.04) 10px, rgba(0, 119, 170, 0.04) 11px); }

/* ─── Freebie CTA Box ─────────────────────────────────────── */
.freebie-cta-box {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(0, 212, 255, 0.02));
  border: 1.5px solid rgba(0, 212, 255, 0.25);
  border-radius: 12px;
  padding: 28px 24px;
  margin: 40px 0;
  text-align: center;
  position: relative;
}
.freebie-badge {
  display: inline-block;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #00e676;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.25);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.freebie-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--on-bg);
  margin-bottom: 8px;
}
.freebie-desc {
  color: var(--on-bg-dim);
  font-size: 0.9rem;
  margin-bottom: 14px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.freebie-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 18px;
  max-width: 380px;
  text-align: left;
}
.freebie-list li {
  padding: 4px 0 4px 20px;
  position: relative;
  font-size: 0.85rem;
  color: var(--on-bg-dim);
}
.freebie-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #00e676;
  font-weight: 700;
}
.freebie-btn {
  display: inline-block;
  background: var(--primary, #00d4ff);
  color: #0a0a0a;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.freebie-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}
.freebie-hint {
  font-size: 0.72rem;
  color: var(--on-bg-dim);
  margin-top: 10px;
}
body.light-mode .freebie-cta-box {
  background: linear-gradient(135deg, rgba(0, 119, 170, 0.04), rgba(124, 67, 201, 0.02));
  border-color: rgba(0, 119, 170, 0.15);
}
body.light-mode .freebie-btn { color: #fff; }
body.light-mode .freebie-badge { color: #00875a; background: rgba(0,135,90,0.08); border-color: rgba(0,135,90,0.15); }
body.light-mode .freebie-title { color: #111417; }
body.light-mode .freebie-desc { color: #555d63; }
body.light-mode .freebie-list li { color: #555d63; }
body.light-mode .freebie-hint { color: #777e84; }
