/* ─── Qevora Labs — Blog Stylesheet ──────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ─── Variables — aligned exactly with main site ─────────────────────────── */
:root {
  --bg:           #07060f;
  --bg-2:         #0e0b1a;
  --bg-3:         #150f26;
  --violet:       #7c3aed;
  --primary:      #9333ea;
  --primary-l:    #a855f7;
  --cyan:         #c084fc;
  --gradient:     linear-gradient(135deg, #7c3aed 0%, #9333ea 50%, #c084fc 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(124,58,237,0.2) 0%, rgba(147,51,234,0.15) 50%, rgba(192,132,252,0.2) 100%);
  --text:         #f0e8ff;
  --text-sec:     #c4b5fd;
  --text-muted:   #8b7ab8;
  --border:       rgba(168,85,247,0.18);
  --glass-bg:     rgba(255,255,255,0.04);
  --glass-border: rgba(168,85,247,0.2);
  --shadow:       0 8px 32px rgba(147,51,234,0.25);
  --shadow-glow:  0 0 40px rgba(147,51,234,0.35);
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.4);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.5);
  --radius:       16px;
  --nav-height:   72px;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  touch-action: pan-y;
}
a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button, input, textarea { font-family: inherit; border: none; outline: none; }

/* ─── Background Effects — exact match with main site ────────────────────── */
.bg-blobs {
  position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none;
  will-change: transform;
}
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: 0.4; transform: translateZ(0);
}
.blob-1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(147,51,234,0.45), transparent 70%);
  top: -10%; right: -5%;
}
.blob-2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(124,58,237,0.35), transparent 70%);
  bottom: 20%; left: -10%;
}
.blob-3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(192,132,252,0.3), transparent 70%);
  top: 50%; right: 20%;
}
.grid-overlay {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(168,85,247,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,85,247,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  will-change: transform;
}

/* ─── Container ─────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }

/* ─── Navbar — exact match with main site ────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; height: var(--nav-height);
  background: rgba(7,6,15,0.88);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(168,85,247,0.15);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  transition: background-color var(--transition), box-shadow var(--transition);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; }
.logo-img { width: 38px; height: 38px; object-fit: contain; border-radius: 8px; filter: drop-shadow(0 0 8px rgba(147,51,234,0.5)); }
.logo-text .accent { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); position: relative; transition: color var(--transition); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--gradient); border-radius: 2px; transition: width var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active, .nav-links a[style] { color: var(--cyan) !important; }
.nav-links a.active::after { width: 100%; }
.nav-cta { padding: 10px 20px; font-size: 0.85rem; }

/* ─── Buttons — exact match with main site ───────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; font-family: var(--font-display); font-size: 0.95rem; font-weight: 600;
  border-radius: 12px; cursor: pointer; border: none;
  transition: all var(--transition); text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--gradient); color: #fff; box-shadow: 0 4px 20px rgba(147,51,234,0.4); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(147,51,234,0.55); }
.btn-glow { box-shadow: 0 0 20px rgba(147,51,234,0.4); }
.btn-glow:hover { box-shadow: 0 0 30px rgba(147,51,234,0.5), 0 6px 20px rgba(147,51,234,0.35); }
.btn-secondary { background: rgba(255,255,255,0.06); color: var(--text); border: 1px solid rgba(168,85,247,0.25); }
.btn-secondary:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-2px); box-shadow: 0 0 20px rgba(192,132,252,0.2); }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }

/* ─── Glass ─────────────────────────────────────────────────────────────── */
.glass { background: var(--glass-bg); border: 1px solid var(--glass-border); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-radius: var(--radius); }

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

/* ─── Section Tag — exact match with main site ───────────────────────────── */
.section-tag {
  display: inline-block; font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--cyan); background: rgba(192,132,252,0.12); border: 1px solid rgba(192,132,252,0.2);
  padding: 6px 16px; border-radius: 9999px; margin-bottom: 16px;
}

/* ─── Blog Hero ──────────────────────────────────────────────────────────── */
.blog-hero {
  position: relative; z-index: 1;
  padding: calc(var(--nav-height) + 60px) 0 80px;
  text-align: center;
}
.blog-hero-tag { margin-bottom: 24px; }
.blog-hero h1 {
  font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; line-height: 1.2; letter-spacing: -0.03em; margin-bottom: 20px;
  max-width: 860px; margin-left: auto; margin-right: auto;
}
.blog-hero .lead { font-size: 1.1rem; color: var(--text-muted); max-width: 620px; margin: 0 auto 32px; }
.article-meta {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap; font-size: 0.85rem; color: var(--text-muted); font-family: var(--font-display);
}
.article-meta span { display: flex; align-items: center; gap: 6px; }
.meta-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--primary); }

/* ─── Article Body ───────────────────────────────────────────────────────── */
.article-wrapper { position: relative; z-index: 1; padding: 0 0 80px; }
.article-body { font-size: 1.05rem; color: #d4c9f0; line-height: 1.85; }
.article-body h2 { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; color: var(--text); margin: 56px 0 20px; letter-spacing: -0.02em; }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; color: var(--text); margin: 32px 0 12px; }
.article-body p { margin-bottom: 20px; }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 20px; }
.article-body li { margin-bottom: 10px; }
.article-body strong { color: var(--text); font-weight: 600; }
.article-body a { color: var(--text-sec); text-decoration: underline; }
.article-body a:hover { color: var(--cyan); }

/* ─── Callout / Stat Boxes ───────────────────────────────────────────────── */
.callout { padding: 24px 28px; border-radius: var(--radius); margin: 32px 0; border-left: 4px solid var(--primary); background: rgba(147,51,234,0.08); }
.callout.highlight { border-left-color: var(--primary-l); background: rgba(168,85,247,0.1); }
.callout.info { border-left-color: var(--cyan); background: rgba(192,132,252,0.08); }
.callout p { margin: 0; color: var(--text); }
.callout strong { color: var(--text-sec); }
.callout a { color: var(--cyan); text-decoration: underline; }
.callout a:hover { color: var(--text-sec); }

.stat-row-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; margin: 32px 0; }
.stat-box {
  padding: 20px; border-radius: 12px; background: var(--glass-bg); border: 1px solid var(--glass-border);
  text-align: center; transition: border-color var(--transition), box-shadow var(--transition);
}
.stat-box:hover { border-color: rgba(168,85,247,0.4); box-shadow: 0 0 20px rgba(147,51,234,0.15); }
.stat-box .stat-num { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; display: block; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-box .stat-label { font-size: 0.82rem; color: var(--text-muted); font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.04em; }

/* ─── Comparison Table ───────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; margin: 32px 0; border-radius: var(--radius); border: 1px solid var(--glass-border); }
.comparison-table { width: 100%; border-collapse: collapse; font-family: var(--font-display); font-size: 0.93rem; }
.comparison-table th { padding: 16px 20px; text-align: left; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; background: rgba(147,51,234,0.15); color: var(--text-sec); }
.comparison-table th:first-child { color: var(--text-muted); }
.comparison-table th.ai-col { color: #86efac; background: rgba(147,51,234,0.2); }
.comparison-table td { padding: 14px 20px; border-top: 1px solid var(--border); color: var(--text-muted); vertical-align: middle; }
.comparison-table td:first-child { color: var(--text); font-weight: 500; }
.comparison-table td.ai-win { color: #86efac; font-weight: 600; }
.comparison-table tr:hover td { background: rgba(255,255,255,0.02); }
.badge-win { display: inline-block; padding: 2px 8px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; background: rgba(134,239,172,0.15); color: #86efac; border: 1px solid rgba(134,239,172,0.3); }

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.faq-section { margin: 48px 0; }
.faq-section h2 { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; margin-bottom: 28px; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; margin-bottom: 12px; overflow: hidden; background: var(--glass-bg); transition: border-color var(--transition), box-shadow var(--transition); }
.faq-item:hover { border-color: rgba(168,85,247,0.35); box-shadow: 0 0 20px rgba(147,51,234,0.1); }
.faq-item details[open] { border-color: rgba(168,85,247,0.45); }
.faq-item details summary {
  padding: 18px 22px; font-family: var(--font-display); font-weight: 600; font-size: 0.97rem; color: var(--text);
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: color var(--transition);
}
.faq-item details summary::-webkit-details-marker { display: none; }
.faq-item details summary::after { content: '+'; font-size: 1.3rem; color: var(--primary); flex-shrink: 0; transition: transform var(--transition), color var(--transition); }
.faq-item details[open] summary { color: var(--cyan); }
.faq-item details[open] summary::after { transform: rotate(45deg); color: var(--cyan); }
.faq-answer { padding: 14px 22px 18px; font-size: 0.97rem; color: var(--text-muted); line-height: 1.8; border-top: 1px solid rgba(168,85,247,0.1); }

/* ─── CTA Box ────────────────────────────────────────────────────────────── */
.cta-box {
  padding: 48px; border-radius: 20px;
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(147,51,234,0.12), rgba(192,132,252,0.1));
  border: 1px solid rgba(168,85,247,0.3); text-align: center; margin: 56px 0 0;
}
.cta-box h2 { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; margin-bottom: 12px; }
.cta-box p { color: var(--text-muted); margin-bottom: 28px; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── Blog Index ─────────────────────────────────────────────────────────── */
.blog-index { position: relative; z-index: 1; padding: 100px 0 80px; }
.blog-index-header { padding: calc(var(--nav-height) + 60px) 0 60px; text-align: center; position: relative; z-index: 1; }
.blog-index-header .blog-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em; color: var(--cyan);
  background: rgba(192,132,252,0.12); border: 1px solid rgba(192,132,252,0.2);
  padding: 6px 20px; border-radius: 9999px; margin-bottom: 24px;
}
.blog-index-header h1 { font-family: var(--font-heading); font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -0.03em; margin: 0 0 16px; }
.blog-index-header p { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ─── Blog Grid ──────────────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; padding-bottom: 80px; position: relative; z-index: 1; }
.blog-card { display: flex; flex-direction: column; padding: 28px; border-radius: var(--radius); background: var(--glass-bg); border: 1px solid var(--glass-border); backdrop-filter: blur(20px); transition: all var(--transition); text-decoration: none; }
.blog-card:hover { border-color: rgba(168,85,247,0.45); transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card-category { font-size: 0.75rem; font-weight: 600; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.cat-core    { color: var(--text-sec); }
.cat-industry { color: #34d399; }
.cat-guide   { color: var(--cyan); }
.blog-card-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(147,51,234,0.15); border: 1px solid rgba(168,85,247,0.25); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--text-sec); }
.blog-card h2 { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; line-height: 1.35; margin-bottom: 12px; color: var(--text); }
.blog-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; flex: 1; margin-bottom: 20px; }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; color: var(--text-muted); font-family: var(--font-display); border-top: 1px solid var(--border); padding-top: 16px; margin-top: auto; }
.read-more { color: var(--text-sec); font-weight: 600; display: flex; align-items: center; gap: 4px; }
.blog-card:hover .read-more { color: var(--cyan); }

/* ─── Article Layout with TOC ────────────────────────────────────────────── */
.article-layout { display: grid; grid-template-columns: 1fr 260px; gap: 48px; align-items: start; padding-bottom: 80px; }
.toc-sidebar { position: sticky; top: calc(var(--nav-height) + 24px); }
.toc-card { padding: 24px; border-radius: var(--radius); background: var(--glass-bg); border: 1px solid var(--glass-border); }
.toc-card h3 { font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-muted); margin-bottom: 16px; }
.toc-list { list-style: none; }
.toc-list li { margin-bottom: 10px; }
.toc-list a { font-size: 0.88rem; color: var(--text-muted); display: block; padding: 6px 10px; border-radius: 8px; transition: all var(--transition); font-family: var(--font-display); border-left: 2px solid transparent; }
.toc-list a:hover { color: var(--text-sec); background: rgba(147,51,234,0.1); border-left-color: var(--primary); }

/* ─── Feature Grid ───────────────────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin: 32px 0; }
.feature-card { padding: 20px; border-radius: 12px; background: var(--glass-bg); border: 1px solid var(--glass-border); transition: border-color var(--transition), box-shadow var(--transition); }
.feature-card:hover { border-color: rgba(168,85,247,0.35); box-shadow: 0 0 16px rgba(147,51,234,0.12); }
.feature-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(147,51,234,0.15); display: flex; align-items: center; justify-content: center; color: var(--text-sec); margin-bottom: 12px; }
.feature-card h4 { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.feature-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ─── Breadcrumb ─────────────────────────────────────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.83rem; color: var(--text-muted); font-family: var(--font-display); margin-bottom: 24px; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--text-sec); }
.breadcrumb-sep { color: var(--border); }

/* ─── Related Posts ──────────────────────────────────────────────────────── */
.related-section { padding: 48px 0; border-top: 1px solid var(--border); }
.related-section h2 { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; margin-bottom: 24px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.related-card { padding: 20px; border-radius: 12px; background: var(--glass-bg); border: 1px solid var(--glass-border); transition: all var(--transition); text-decoration: none; display: block; }
.related-card:hover { border-color: rgba(168,85,247,0.4); transform: translateY(-2px); }
.related-card h3 { font-family: var(--font-heading); font-size: 0.97rem; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.related-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ─── Footer — 4 columns with Blog section ───────────────────────────────── */
.footer { position: relative; z-index: 1; padding: 48px 0 0; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 40px; }
.footer-brand .logo { margin-bottom: 14px; }
.footer-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; max-width: 280px; }
.footer-links h4 { font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-muted); margin-bottom: 16px; }
.footer-links a { display: block; font-size: 0.9rem; color: var(--text-muted); margin-bottom: 10px; transition: color var(--transition); }
.footer-links a:hover { color: var(--text); }
.footer-links .blog-link { color: var(--cyan); font-weight: 500; }
.footer-links .blog-link:hover { color: var(--text-sec); }
.footer-bottom { border-top: 1px solid var(--border); padding: 18px 0; text-align: center; font-size: 0.83rem; color: var(--text-muted); }

/* ─── Animations ─────────────────────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); animation: fadeUp 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ─── Mobile Toggle ──────────────────────────────────────────────────────── */
.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); }

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; }
  .toc-sidebar { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--nav-height); left: 0; right: 0;
    background: rgba(7,6,15,0.97); backdrop-filter: blur(20px);
    padding: 24px; gap: 0; border-bottom: 1px solid rgba(168,85,247,0.15);
    box-shadow: var(--shadow-md); z-index: 999;
  }
  .nav-links.open a { padding: 14px 0; width: 100%; border-bottom: 1px solid rgba(168,85,247,0.08); }
  .nav-cta { display: none; }
  .blog-grid { grid-template-columns: 1fr; }
  .stat-row-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-box { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .table-wrap { font-size: 0.85rem; }
  .grid-overlay { mask-image: none; -webkit-mask-image: none; }
  .blob { filter: blur(60px); }
  .btn-primary:hover, .btn-secondary:hover { transform: none; }
}
@media (max-width: 500px) {
  .blog-hero h1 { font-size: 1.8rem; }
  .blog-index-header h1 { font-size: 2rem; }
  .stat-row-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1 !important; transform: none !important; transition: none !important; }
  * { transition-duration: 0.01ms !important; }
}