/* ═══════════════════════════════════════════════════════
   Atlanza Blog — Shared Stylesheet
   ═══════════════════════════════════════════════════════

   TABLE OF CONTENTS
   1. Reset & Variables
   2. Nav
   3. Glass utilities
   4. Labels / Badges
   5. Blog Index — Hero
   6. Blog Index — Categories
   7. Blog Index — Featured Post
   8. Blog Index — Posts Grid
   9. Article Page — Layout
   10. Article — Prose
   11. Article — Sidebar
   12. Related Posts
   13. Category Pages
   14. Content Calendar
   15. Footer
   16. Animations
   ═══════════════════════════════════════════════════════ */

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

:root {
  --emerald: #10b981;
  --emerald-dim: #059669;
  --emerald-glow: rgba(16,185,129,0.18);
  --blue: #3b82f6;
  --amber: #f59e0b;
  --violet: #8b5cf6;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-100: #f1f5f9;
  --white5:  rgba(255,255,255,0.05);
  --white8:  rgba(255,255,255,0.08);
  --white10: rgba(255,255,255,0.10);
  --white20: rgba(255,255,255,0.20);
}

html { scroll-behavior: smooth; }

body {
  background: var(--slate-950);
  color: var(--slate-300);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: ''; position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0; opacity: .35;
}

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

/* ── NAV ──────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  background: rgba(2,6,23,.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--white5);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-size: 21px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--slate-100); text-decoration: none;
}
.nav-logo span { color: var(--emerald); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: var(--slate-400); text-decoration: none; font-size: 13px; letter-spacing: .04em; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--slate-100); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta a { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; color: var(--slate-400); text-decoration: none; transition: color .2s; }
.nav-cta a:hover { color: var(--slate-100); }
.nav-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; background: var(--emerald); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  border: none; border-radius: 12px; cursor: pointer; text-decoration: none;
  transition: background .2s, box-shadow .2s;
  box-shadow: 0 0 20px var(--emerald-glow);
}
.nav-btn:hover { background: var(--emerald-dim); box-shadow: 0 0 36px rgba(16,185,129,.35); }
@media(max-width:768px){ .nav-links { display: none; } }

/* ── GLASS ────────────────────────────────────────────── */
.glass {
  background: rgba(15,23,42,.65); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--white10); border-radius: 24px;
}
.glass-sm {
  background: rgba(15,23,42,.5); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--white8); border-radius: 16px;
}

/* ── LABELS / BADGES ──────────────────────────────────── */
.label { font-size: 10px; letter-spacing: .25em; text-transform: uppercase; font-weight: 600; }
.badge {
  display: inline-block; padding: 4px 12px; border-radius: 100px;
  font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
}
.badge-green  { background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.2); color: var(--emerald); }
.badge-blue   { background: rgba(59,130,246,.1);  border: 1px solid rgba(59,130,246,.2);  color: var(--blue); }
.badge-amber  { background: rgba(245,158,11,.1);  border: 1px solid rgba(245,158,11,.2);  color: var(--amber); }
.badge-violet { background: rgba(139,92,246,.1);  border: 1px solid rgba(139,92,246,.2);  color: var(--violet); }

/* ── BLOG INDEX — HERO ────────────────────────────────── */
.blog-hero {
  padding: 160px 0 80px;
  position: relative; overflow: hidden;
  text-align: center;
}
.blog-hero-glow {
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,.1) 0%, transparent 70%);
  pointer-events: none;
}
.blog-hero h1 {
  font-size: clamp(36px,5vw,62px); font-weight: 900;
  color: var(--slate-100); letter-spacing: -.025em; line-height: 1.08;
  margin-bottom: 16px; position: relative;
}
.blog-hero h1 span {
  background: linear-gradient(135deg, var(--emerald), #34d399);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.blog-hero p {
  font-size: 18px; color: var(--slate-400); font-weight: 300; line-height: 1.75;
  max-width: 560px; margin: 0 auto; position: relative;
}

/* ── BLOG INDEX — CATEGORIES ──────────────────────────── */
.categories {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap; padding: 32px 0 56px;
}
.cat-btn {
  padding: 8px 18px; background: var(--white5); border: 1px solid var(--white8);
  border-radius: 100px; font-size: 12px; font-weight: 600; letter-spacing: .06em;
  color: var(--slate-400); cursor: pointer; transition: all .2s; text-decoration: none;
}
.cat-btn:hover, .cat-btn.active { background: rgba(16,185,129,.1); border-color: rgba(16,185,129,.3); color: var(--emerald); }

/* ── BLOG INDEX — FEATURED ────────────────────────────── */
.featured-post {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; margin-bottom: 48px; overflow: hidden;
  transition: transform .2s, border-color .2s;
}
.featured-post:hover { transform: translateY(-2px); border-color: var(--white20); }
@media(max-width:800px){ .featured-post { grid-template-columns: 1fr; } }
.featured-img {
  min-height: 280px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(16,185,129,.15), rgba(59,130,246,.1));
  display: flex; align-items: center; justify-content: center;
}
.featured-img-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px; opacity: .3;
}
.featured-img-content { position: relative; z-index: 1; text-align: center; }
.featured-img-label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--emerald); margin-bottom: 8px; }
.featured-img-title { font-size: 18px; font-weight: 700; color: var(--slate-100); max-width: 220px; line-height: 1.4; }
.featured-body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.featured-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.post-date { font-size: 11px; letter-spacing: .08em; color: var(--slate-500); }
.featured-body h2 { font-size: 24px; font-weight: 800; color: var(--slate-100); letter-spacing: -.015em; line-height: 1.3; margin-bottom: 12px; }
.featured-body h2 a { color: inherit; text-decoration: none; transition: color .2s; }
.featured-body h2 a:hover { color: var(--emerald); }
.featured-excerpt { font-size: 14px; color: var(--slate-400); line-height: 1.75; margin-bottom: 24px; }
.read-more {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--emerald); text-decoration: none; transition: gap .2s;
}
.read-more:hover { gap: 12px; }

/* ── BLOG INDEX — GRID ────────────────────────────────── */
.posts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 80px; }
@media(max-width:900px){ .posts-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:560px){ .posts-grid { grid-template-columns: 1fr; } }

.post-card { overflow: hidden; transition: transform .2s, border-color .2s; }
.post-card:hover { transform: translateY(-3px); border-color: var(--white20); }
.post-card-img {
  height: 160px; background: linear-gradient(135deg, rgba(16,185,129,.12), rgba(59,130,246,.08));
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; border-radius: 22px 22px 0 0; border-bottom: 1px solid var(--white8);
}
.post-card-body { padding: 24px; }
.post-card-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.post-card h3 { font-size: 16px; font-weight: 700; color: var(--slate-100); letter-spacing: -.01em; line-height: 1.4; margin-bottom: 10px; }
.post-card h3 a { color: inherit; text-decoration: none; transition: color .2s; }
.post-card h3 a:hover { color: var(--emerald); }
.post-card p { font-size: 13px; color: var(--slate-400); line-height: 1.7; margin-bottom: 16px; }
.post-card .read-more { font-size: 11px; }

/* ── ARTICLE PAGE — LAYOUT ────────────────────────────── */
.article-page { padding-top: 90px; }
.article-header {
  padding: 60px 0 56px;
  border-bottom: 1px solid var(--white5);
  position: relative; overflow: hidden;
}
.article-header-glow {
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,.08) 0%, transparent 70%);
  pointer-events: none;
}
.article-header-inner { max-width: 800px; }
.article-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; font-size: 12px; color: var(--slate-500); }
.article-breadcrumb a { color: var(--slate-400); text-decoration: none; transition: color .2s; }
.article-breadcrumb a:hover { color: var(--emerald); }
.article-breadcrumb span { color: var(--slate-600); }
.article-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.article-header h1 {
  font-size: clamp(28px,4.5vw,52px); font-weight: 900;
  color: var(--slate-100); letter-spacing: -.025em; line-height: 1.1;
  margin-bottom: 20px;
}
.article-intro {
  font-size: 18px; color: var(--slate-400); font-weight: 300; line-height: 1.75;
}
.article-author { display: flex; align-items: center; gap: 12px; margin-top: 28px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--emerald), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff;
}
.author-name { font-size: 14px; font-weight: 600; color: var(--slate-100); }
.author-role { font-size: 12px; color: var(--slate-400); }

/* ── ARTICLE — BODY LAYOUT ────────────────────────────── */
.article-body {
  display: grid; grid-template-columns: 1fr 300px;
  gap: 56px; padding: 56px 0 80px; align-items: start;
}
@media(max-width:960px){ .article-body { grid-template-columns: 1fr; } }

/* ── ARTICLE — PROSE ──────────────────────────────────── */
.prose { min-width: 0; }
.prose h2 {
  font-size: 26px; font-weight: 800; color: var(--slate-100);
  letter-spacing: -.02em; margin: 48px 0 16px; line-height: 1.3;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: 18px; font-weight: 700; color: var(--slate-100);
  letter-spacing: -.01em; margin: 32px 0 12px; line-height: 1.4;
}
.prose p { font-size: 16px; color: var(--slate-300); line-height: 1.8; margin-bottom: 20px; }
.prose strong { color: var(--slate-100); font-weight: 700; }
.prose a { color: var(--emerald); text-decoration: underline; text-decoration-color: rgba(16,185,129,.4); transition: text-decoration-color .2s; }
.prose a:hover { text-decoration-color: var(--emerald); }
.prose ul, .prose ol { margin: 0 0 20px 20px; }
.prose li { font-size: 16px; color: var(--slate-300); line-height: 1.8; margin-bottom: 8px; }
.prose li strong { color: var(--slate-100); }
.prose blockquote {
  margin: 32px 0; padding: 24px 28px;
  border-left: 3px solid var(--emerald);
  background: rgba(16,185,129,.04); border-radius: 0 12px 12px 0;
  font-size: 17px; color: var(--slate-200); font-style: italic; line-height: 1.7;
}
.prose hr { border: none; border-top: 1px solid var(--white5); margin: 48px 0; }

/* Inline CTA box */
.prose-cta {
  margin: 40px 0; padding: 32px;
  background: rgba(16,185,129,.06); border: 1px solid rgba(16,185,129,.2);
  border-radius: 20px;
}
.prose-cta h4 { font-size: 18px; font-weight: 800; color: var(--slate-100); margin-bottom: 8px; }
.prose-cta p { font-size: 14px; color: var(--slate-400); margin-bottom: 20px; line-height: 1.7; }
.prose-cta a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; background: var(--emerald); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  border-radius: 10px; text-decoration: none; transition: background .2s, box-shadow .2s;
  box-shadow: 0 0 20px var(--emerald-glow);
}
.prose-cta a:hover { background: var(--emerald-dim); }

/* Tool card */
.tool-card {
  margin: 12px 0 28px; padding: 24px 28px;
  background: var(--white5); border: 1px solid var(--white8); border-radius: 16px;
  display: flex; gap: 20px;
}
.tool-num {
  width: 36px; height: 36px; min-width: 36px; border-radius: 10px;
  background: rgba(16,185,129,.12); border: 1px solid rgba(16,185,129,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: var(--emerald);
}
.tool-name { font-size: 16px; font-weight: 700; color: var(--slate-100); margin-bottom: 4px; }
.tool-desc { font-size: 13px; color: var(--slate-400); line-height: 1.65; }
.tool-tag {
  display: inline-block; margin-top: 8px;
  padding: 3px 10px; border-radius: 100px;
  font-size: 9px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  background: rgba(16,185,129,.1); color: var(--emerald); border: 1px solid rgba(16,185,129,.2);
}

/* Step block */
.step-block {
  margin: 12px 0 32px; padding: 28px;
  background: var(--white5); border: 1px solid var(--white8); border-radius: 16px;
}
.step-num {
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 700; color: var(--emerald); margin-bottom: 8px;
}
.step-title { font-size: 18px; font-weight: 700; color: var(--slate-100); margin-bottom: 10px; }
.step-desc { font-size: 14px; color: var(--slate-400); line-height: 1.7; margin: 0; }

/* ── ARTICLE — SIDEBAR ────────────────────────────────── */
.sidebar { position: sticky; top: 110px; }
.toc {
  padding: 24px; background: var(--white5); border: 1px solid var(--white8);
  border-radius: 16px; margin-bottom: 24px;
}
.toc-title { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; color: var(--slate-300); margin-bottom: 16px; }
.toc-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.toc-list li a {
  font-size: 13px; color: var(--slate-400); text-decoration: none; padding: 5px 8px;
  border-radius: 8px; display: block; transition: background .2s, color .2s; line-height: 1.4;
}
.toc-list li a:hover { background: var(--white5); color: var(--slate-100); }
.toc-list li a.active { background: rgba(16,185,129,.1); color: var(--emerald); }
.sidebar-cta {
  padding: 24px; background: rgba(16,185,129,.06);
  border: 1px solid rgba(16,185,129,.2); border-radius: 16px; margin-bottom: 24px;
  text-align: center;
}
.sidebar-cta-title { font-size: 15px; font-weight: 800; color: var(--slate-100); margin-bottom: 8px; line-height: 1.4; }
.sidebar-cta-desc { font-size: 13px; color: var(--slate-400); line-height: 1.6; margin-bottom: 18px; }
.sidebar-cta a {
  display: block; padding: 12px; background: var(--emerald); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  border-radius: 10px; text-decoration: none; transition: background .2s;
}
.sidebar-cta a:hover { background: var(--emerald-dim); }
.sidebar-share { padding: 20px; background: var(--white5); border: 1px solid var(--white8); border-radius: 16px; }
.sidebar-share-title { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--slate-400); margin-bottom: 12px; }
.share-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.share-btn {
  flex: 1; min-width: 80px; padding: 8px 10px; text-align: center;
  background: var(--white5); border: 1px solid var(--white8); border-radius: 8px;
  font-size: 11px; font-weight: 600; color: var(--slate-400); text-decoration: none;
  transition: all .2s; cursor: pointer;
}
.share-btn:hover { background: var(--white10); color: var(--slate-100); }

/* ── RELATED POSTS ────────────────────────────────────── */
.related {
  padding: 56px 0 80px;
  border-top: 1px solid var(--white5);
}
.related h2 {
  font-size: 22px; font-weight: 800; color: var(--slate-100); letter-spacing: -.015em;
  margin-bottom: 32px;
}
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
@media(max-width:900px){ .related-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:560px){ .related-grid { grid-template-columns: 1fr; } }

/* ── FOOTER ────────────────────────────────────────────── */
footer { border-top: 1px solid var(--white5); padding: 48px 0 32px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-bottom: 24px; }
.footer-logo { font-size: 18px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--slate-100); text-decoration: none; }
.footer-logo span { color: var(--emerald); }
.footer-links-row { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links-row a { font-size: 13px; color: var(--slate-400); text-decoration: none; transition: color .2s; }
.footer-links-row a:hover { color: var(--slate-100); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; border-top: 1px solid var(--white5); padding-top: 20px; }
.footer-copy { font-size: 12px; color: var(--slate-500); }

/* ── CATEGORY PAGE ──────────────────────────────────────── */
.cat-hero {
  padding: 150px 0 64px; position: relative; overflow: hidden;
}
.cat-hero-glow {
  position: absolute; top: -120px; right: -80px;
  width: 600px; height: 600px; border-radius: 50%; pointer-events: none;
}
.cat-hero-glow.green { background: radial-gradient(circle, rgba(16,185,129,.12) 0%, transparent 70%); }
.cat-hero-glow.blue  { background: radial-gradient(circle, rgba(59,130,246,.12) 0%, transparent 70%); }
.cat-hero-glow.amber { background: radial-gradient(circle, rgba(245,158,11,.12) 0%, transparent 70%); }
.cat-hero-glow.violet{ background: radial-gradient(circle, rgba(139,92,246,.12) 0%, transparent 70%); }
.cat-hero-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; font-size: 12px; color: var(--slate-500); }
.cat-hero-breadcrumb a { color: var(--slate-400); text-decoration: none; transition: color .2s; }
.cat-hero-breadcrumb a:hover { color: var(--emerald); }
.cat-hero-badge { margin-bottom: 16px; }
.cat-hero h1 { font-size: clamp(32px,5vw,56px); font-weight: 900; color: var(--slate-100); letter-spacing: -.025em; line-height: 1.08; margin-bottom: 16px; }
.cat-hero p { font-size: 17px; color: var(--slate-400); font-weight: 300; line-height: 1.75; max-width: 600px; margin-bottom: 32px; }
.cat-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.cat-stat-num { font-size: 28px; font-weight: 900; color: var(--slate-100); line-height: 1; }
.cat-stat-num span { color: var(--emerald); }
.cat-stat-label { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-500); margin-top: 4px; }

.cat-body { padding: 0 0 80px; }
.cat-section-title { font-size: 14px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-400); margin-bottom: 24px; padding-bottom: 12px; border-bottom: 1px solid var(--white5); }
.cat-featured { margin-bottom: 48px; }
.cat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 48px; }
@media(max-width:900px){ .cat-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:560px){ .cat-grid { grid-template-columns: 1fr; } }

.other-cats { padding: 48px 0; border-top: 1px solid var(--white5); }
.other-cats h2 { font-size: 18px; font-weight: 800; color: var(--slate-100); margin-bottom: 20px; }
.other-cats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
@media(max-width:800px){ .other-cats-grid { grid-template-columns: 1fr 1fr; } }
.other-cat-card {
  padding: 20px; background: var(--white5); border: 1px solid var(--white8);
  border-radius: 14px; text-decoration: none; transition: border-color .2s, transform .2s;
  display: flex; align-items: center; gap: 12px;
}
.other-cat-card:hover { border-color: var(--white20); transform: translateY(-2px); }
.other-cat-icon { font-size: 22px; }
.other-cat-name { font-size: 13px; font-weight: 700; color: var(--slate-100); margin-bottom: 2px; }
.other-cat-count { font-size: 11px; color: var(--slate-500); }

/* ── CONTENT CALENDAR ───────────────────────────────────── */
.calendar-hero {
  padding: 150px 0 60px; position: relative; overflow: hidden; text-align: center;
}
.calendar-hero-glow {
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(16,185,129,.08) 0%, transparent 70%);
  pointer-events: none;
}
.calendar-hero h1 { font-size: clamp(32px,5vw,56px); font-weight: 900; color: var(--slate-100); letter-spacing: -.025em; margin-bottom: 16px; position: relative; }
.calendar-hero p { font-size: 17px; color: var(--slate-400); font-weight: 300; max-width: 560px; margin: 0 auto; line-height: 1.75; position: relative; }

.cal-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; padding: 40px 0 60px; }
@media(max-width:700px){ .cal-stats { grid-template-columns: repeat(2,1fr); } }
.cal-stat { padding: 24px; text-align: center; }
.cal-stat-num { font-size: 36px; font-weight: 900; color: var(--slate-100); letter-spacing: -.03em; line-height: 1; margin-bottom: 6px; }
.cal-stat-num span { color: var(--emerald); }
.cal-stat-label { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-400); }

.cal-legend { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 32px; }
.cal-legend-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--slate-400); }
.cal-legend-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.cal-legend-dot.published { background: var(--emerald); }
.cal-legend-dot.soon { background: var(--amber); }
.cal-legend-dot.planned { background: var(--slate-600); }

.cal-month { margin-bottom: 48px; }
.cal-month-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; background: var(--white5); border: 1px solid var(--white8);
  border-radius: 14px 14px 0 0; margin-bottom: 1px;
}
.cal-month-name { font-size: 14px; font-weight: 800; color: var(--slate-100); letter-spacing: .04em; }
.cal-month-count { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--slate-500); }
.cal-posts { display: flex; flex-direction: column; gap: 1px; }
.cal-post {
  display: grid; grid-template-columns: 140px 1fr auto auto;
  gap: 20px; align-items: center;
  padding: 16px 20px; background: rgba(15,23,42,.5);
  border: 1px solid var(--white5); border-top: none;
  transition: background .2s;
}
.cal-post:last-child { border-radius: 0 0 14px 14px; }
.cal-post:hover { background: rgba(15,23,42,.8); }
@media(max-width:800px){ .cal-post { grid-template-columns: 1fr; gap: 8px; } }
.cal-post-date { font-size: 11px; letter-spacing: .08em; color: var(--slate-500); font-variant-numeric: tabular-nums; }
.cal-post-title { font-size: 14px; font-weight: 600; color: var(--slate-200); line-height: 1.4; }
.cal-post-title a { color: inherit; text-decoration: none; transition: color .2s; }
.cal-post-title a:hover { color: var(--emerald); }
.cal-post-cat { }
.cal-post-status {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 100px;
  font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  white-space: nowrap;
}
.cal-post-status.published { background: rgba(16,185,129,.1); color: var(--emerald); border: 1px solid rgba(16,185,129,.2); }
.cal-post-status.soon { background: rgba(245,158,11,.1); color: var(--amber); border: 1px solid rgba(245,158,11,.2); }
.cal-post-status.planned { background: var(--white5); color: var(--slate-500); border: 1px solid var(--white8); }

.cal-cluster-map { margin-bottom: 60px; }
.cal-cluster-map h2 { font-size: 22px; font-weight: 800; color: var(--slate-100); margin-bottom: 28px; }
.cluster-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
@media(max-width:900px){ .cluster-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:560px){ .cluster-grid { grid-template-columns: 1fr; } }
.cluster-card { padding: 24px; }
.cluster-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.cluster-card-icon { font-size: 22px; }
.cluster-card-name { font-size: 14px; font-weight: 800; color: var(--slate-100); }
.cluster-card-count { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-500); margin-top: 2px; }
.cluster-post-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.cluster-post-list li { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--slate-400); line-height: 1.5; }
.cluster-post-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--emerald); flex-shrink: 0; }
.cluster-post-list li.soon::before { background: var(--amber); }
.cluster-post-list li.planned::before { background: var(--slate-600); }
.cluster-post-list li a { color: inherit; text-decoration: none; transition: color .2s; }
.cluster-post-list li a:hover { color: var(--emerald); }

/* ── FADE UP ────────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; }
