/*
Theme Name: AI Tools Review
Theme URI: https://tools.buildwithpijush.com
Description: High-converting AI tool review site theme with built-in affiliate tracking and A/B testing
Version: 1.0.0
Author: Pijush Mahato
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --bg:          #0a0e14;
  --bg2:         #111822;
  --bg3:         #1a2332;
  --border:      #1e2d3d;
  --border2:     #2a3f56;
  --accent:      #f97316;   /* Orange - primary CTA */
  --accent2:     #22d3ee;   /* Cyan - highlights */
  --accent3:     #4ade80;   /* Green - scores/positive */
  --text:        #cbd5e1;
  --text-dim:    #64748b;
  --text-bright: #f1f5f9;
  --white:       #ffffff;
  --red:         #ef4444;
  --yellow:      #fbbf24;

  --font-display: 'Clash Display', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --radius:    6px;
  --radius-lg: 12px;
  --shadow:    0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.6);

  --max-w: 1140px;
  --content-w: 760px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent2); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--text-bright);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 500; }

p { margin-bottom: 1.25rem; }
strong { color: var(--text-bright); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.layout-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

@media (max-width: 900px) {
  .layout-sidebar { grid-template-columns: 1fr; }
}

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  background: rgba(10,14,20,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-bright) !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-logo span { color: var(--accent); }

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* Navigation */
#primary-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

#primary-nav li a {
  color: var(--text-dim);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: all 0.2s;
}

#primary-nav li a:hover,
#primary-nav li.current-menu-item a {
  color: var(--text-bright);
  background: var(--bg3);
}

.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 8px 16px !important;
}

.nav-cta:hover { background: #ea6c0a !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px;
  border-radius: var(--radius);
  cursor: pointer;
}

@media (max-width: 768px) {
  #primary-nav { display: none; }
  .nav-toggle { display: flex; }
  #primary-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    padding: 16px;
    gap: 4px;
  }
}

/* ============================================================
   HERO (Homepage)
   ============================================================ */
.hero {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.3);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0 auto 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-dim);
  max-width: 520px;
  margin: 0 auto 40px;
}

.hero-search {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
}

.hero-search input {
  flex: 1;
  background: var(--bg2);
  border: 1px solid var(--border2);
  color: var(--text-bright);
  padding: 14px 18px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.hero-search input:focus { border-color: var(--accent); }

.hero-search button {
  background: var(--accent);
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.hero-search button:hover { background: #ea6c0a; }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-bright);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================================
   TOOL CARDS (index/archive)
   ============================================================ */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.tool-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.tool-card:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
}

.tool-card-image {
  aspect-ratio: 16/9;
  background: var(--bg3);
  overflow: hidden;
}

.tool-card-image img { width: 100%; height: 100%; object-fit: cover; }

.tool-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }

.tool-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.tool-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}

.badge-review  { background: rgba(34,211,238,0.1); color: var(--accent2); }
.badge-compare { background: rgba(249,115,22,0.1); color: var(--accent); }
.badge-list    { background: rgba(74,222,128,0.1); color: var(--accent3); }
.badge-new     { background: rgba(251,191,36,0.1); color: var(--yellow); }

.tool-card-score {
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent3);
}

.tool-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.tool-card h3 a { color: var(--text-bright) !important; }
.tool-card h3 a:hover { color: var(--accent) !important; }

.tool-card p {
  font-size: 0.875rem;
  color: var(--text-dim);
  margin-bottom: 16px;
  flex: 1;
}

.tool-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-dim);
}

.tool-card-price { color: var(--accent3); font-weight: 600; }

/* ============================================================
   CTA BUTTONS (Revenue Engine)
   ============================================================ */
.aitools-cta { margin: 32px 0; }

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white) !important;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.cta-btn:hover {
  background: #ea6c0a;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(249,115,22,0.4);
}

.cta-top .cta-btn { font-size: 1.125rem; padding: 16px 32px; }
.cta-sub {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 8px;
}

/* Sticky CTA bar (mobile) */
.cta-sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  z-index: 999;
  align-items: center;
  gap: 12px;
}

.cta-sticky .cta-btn { flex: 1; justify-content: center; }

@media (max-width: 768px) {
  .cta-sticky { display: flex; }
  body { padding-bottom: 80px; }
}

/* ============================================================
   SCORE BOX (Sidebar Widget)
   ============================================================ */
.score-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.score-overall {
  text-align: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.score-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent3);
  line-height: 1;
}

.score-label {
  font-size: 1rem;
  color: var(--text-dim);
}

.score-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.score-name {
  width: 90px;
  font-size: 0.8rem;
  color: var(--text-dim);
  flex-shrink: 0;
}

.score-bar {
  flex: 1;
  height: 4px;
  background: var(--bg3);
  border-radius: 2px;
  overflow: hidden;
}

.score-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent2), var(--accent3));
  border-radius: 2px;
  transition: width 0.8s ease;
}

.score-val {
  width: 24px;
  font-size: 0.8rem;
  color: var(--text-bright);
  font-weight: 600;
  text-align: right;
  flex-shrink: 0;
}

/* ============================================================
   TOOL INFO BOX (Sidebar)
   ============================================================ */
.tool-info-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 24px;
}

.tool-info-box h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.tool-info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
  gap: 12px;
}

.tool-info-row:last-child { border-bottom: none; }
.tool-info-label { color: var(--text-dim); flex-shrink: 0; }
.tool-info-value { color: var(--text-bright); text-align: right; }
.tool-info-value.positive { color: var(--accent3); }
.tool-info-value.price { color: var(--accent); font-weight: 600; }

/* ============================================================
   PROS/CONS
   ============================================================ */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

@media (max-width: 600px) { .pros-cons { grid-template-columns: 1fr; } }

.pros, .cons {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.pros { border-top: 3px solid var(--accent3); }
.cons { border-top: 3px solid var(--red); }

.pros h4 { color: var(--accent3); margin-bottom: 12px; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.1em; }
.cons h4 { color: var(--red); margin-bottom: 12px; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.1em; }

.pros ul, .cons ul { list-style: none; }
.pros ul li, .cons ul li {
  padding: 6px 0;
  font-size: 0.875rem;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  border-bottom: 1px solid var(--border);
}

.pros ul li:last-child, .cons ul li:last-child { border-bottom: none; }
.pros ul li::before { content: '✓'; color: var(--accent3); flex-shrink: 0; }
.cons ul li::before { content: '✗'; color: var(--red); flex-shrink: 0; }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 0.875rem;
}

.comparison-table th {
  background: var(--bg3);
  color: var(--text-bright);
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 16px;
  text-align: left;
  border: 1px solid var(--border);
}

.comparison-table th.winner-col {
  background: rgba(249,115,22,0.1);
  border-color: var(--accent);
  color: var(--accent);
}

.comparison-table td {
  padding: 12px 16px;
  border: 1px solid var(--border);
  color: var(--text);
  vertical-align: top;
}

.comparison-table td.winner-col { background: rgba(249,115,22,0.05); }
.comparison-table tr:hover td { background: var(--bg2); }

.check { color: var(--accent3); }
.cross { color: var(--red); }
.partial { color: var(--yellow); }

/* ============================================================
   VERDICT BOX
   ============================================================ */
.verdict-box {
  background: linear-gradient(135deg, rgba(249,115,22,0.1), rgba(34,211,238,0.05));
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 40px 0;
}

.verdict-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 12px;
}

.verdict-text {
  font-size: 1.125rem;
  color: var(--text-bright);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ============================================================
   QUICK PICKS (Best-of lists)
   ============================================================ */
.quick-picks {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 32px 0;
}

.quick-picks h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.quick-pick-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}

.quick-pick-item:last-child { border-bottom: none; }
.quick-pick-rank {
  width: 24px;
  height: 24px;
  background: var(--bg3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dim);
  flex-shrink: 0;
}

.quick-pick-rank.rank-1 { background: rgba(249,115,22,0.2); color: var(--accent); }
.quick-pick-name { flex: 1; color: var(--text-bright); font-weight: 500; }
.quick-pick-score { color: var(--accent3); font-weight: 600; }

/* ============================================================
   ARTICLE CONTENT STYLES
   ============================================================ */
.article-content h2 {
  margin: 48px 0 20px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.article-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.article-content h3 { margin: 32px 0 16px; }

.article-content ul, .article-content ol {
  margin: 0 0 1.25rem 1.5rem;
}

.article-content li { margin-bottom: 6px; }

.article-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 16px 20px;
  margin: 24px 0;
  background: var(--bg2);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text);
  font-style: italic;
}

.article-content code {
  background: var(--bg3);
  color: var(--accent2);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.875em;
  font-family: 'Fira Code', monospace;
}

/* ============================================================
   TABLE OF CONTENTS
   ============================================================ */
.toc {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin: 32px 0;
}

.toc-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.toc ol {
  list-style: decimal;
  margin-left: 20px;
}

.toc li { margin-bottom: 6px; }
.toc a { color: var(--text-dim); font-size: 0.875rem; }
.toc a:hover { color: var(--accent); }

/* ============================================================
   EMAIL CAPTURE
   ============================================================ */
.email-capture {
  background: linear-gradient(135deg, var(--bg2), var(--bg3));
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  margin: 48px 0;
}

.email-capture h3 { margin-bottom: 8px; }
.email-capture p { color: var(--text-dim); margin-bottom: 24px; }

.email-form {
  display: flex;
  gap: 8px;
  max-width: 420px;
  margin: 0 auto;
}

.email-form input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border2);
  color: var(--text-bright);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  outline: none;
}

.email-form input:focus { border-color: var(--accent); }

.email-form button {
  background: var(--accent);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.email-form button:hover { background: #ea6c0a; }
.email-note { font-size: 0.75rem; color: var(--text-dim); margin-top: 10px; }

@media (max-width: 480px) {
  .email-form { flex-direction: column; }
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar {
  position: sticky;
  top: 88px;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
  margin-top: 80px;
}

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

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

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

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-dim);
  margin-top: 12px;
  max-width: 280px;
}

.footer-col h5 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: var(--text-dim); font-size: 0.875rem; }
.footer-col ul li a:hover { color: var(--text-bright); }

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

.affiliate-disclosure {
  background: rgba(249,115,22,0.05);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 24px;
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-dim);
  padding: 16px 0;
  flex-wrap: wrap;
}

.breadcrumbs a { color: var(--text-dim); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs .sep { color: var(--border2); }
.breadcrumbs .current { color: var(--text); }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 48px 0;
  flex-wrap: wrap;
}

.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--text-dim);
  transition: all 0.2s;
}

.pagination a:hover { border-color: var(--accent); color: var(--accent); }
.pagination .current { background: var(--accent); border-color: var(--accent); color: white; }

/* ============================================================
   NOTICE / ALERT BOXES
   ============================================================ */
.notice {
  padding: 16px 20px;
  border-radius: var(--radius);
  margin: 20px 0;
  font-size: 0.875rem;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.notice-info  { background: rgba(34,211,238,0.08); border: 1px solid rgba(34,211,238,0.2); color: var(--accent2); }
.notice-warn  { background: rgba(251,191,36,0.08);  border: 1px solid rgba(251,191,36,0.2);  color: var(--yellow); }
.notice-good  { background: rgba(74,222,128,0.08);  border: 1px solid rgba(74,222,128,0.2);  color: var(--accent3); }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-accent  { color: var(--accent); }
.text-dim     { color: var(--text-dim); }
.text-bright  { color: var(--text-bright); }
.text-green   { color: var(--accent3); }
.text-center  { text-align: center; }
.mt-8         { margin-top: 8px; }
.mt-16        { margin-top: 16px; }
.mt-32        { margin-top: 32px; }
.mb-32        { margin-bottom: 32px; }
.hidden       { display: none; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.4s ease forwards; }

.stagger > * { opacity: 0; animation: fadeUp 0.4s ease forwards; }
.stagger > *:nth-child(1) { animation-delay: 0.1s; }
.stagger > *:nth-child(2) { animation-delay: 0.2s; }
.stagger > *:nth-child(3) { animation-delay: 0.3s; }
.stagger > *:nth-child(4) { animation-delay: 0.4s; }
.stagger > *:nth-child(5) { animation-delay: 0.5s; }
.stagger > *:nth-child(6) { animation-delay: 0.6s; }
