/* WealthWise blog — shared styles */
* { box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: #0a0f1a;
  color: #e2e8f0;
  margin: 0;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
header.site {
  background: rgba(10, 15, 26, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: sticky;
  top: 0;
  z-index: 10;
}
.site-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand { font-size: 18px; font-weight: 700; color: #fff; text-decoration: none; }
.brand .emoji { margin-right: 6px; }
nav a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  margin-left: 24px;
  transition: color .15s;
}
nav a:hover { color: #818cf8; }

.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #818cf8;
  background: rgba(129, 140, 248, 0.1);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 16px;
}

h1.post-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

.meta {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 24px;
}

article p { margin: 18px 0; color: #cbd5e1; }
article h2 { color: #fff; font-size: 26px; margin-top: 40px; margin-bottom: 12px; font-weight: 700; }
article h3 { color: #e2e8f0; font-size: 19px; margin-top: 28px; margin-bottom: 8px; font-weight: 700; }
article ul, article ol { color: #cbd5e1; padding-left: 24px; }
article li { margin: 8px 0; }
article strong { color: #fff; font-weight: 700; }
article em { color: #a5b4fc; font-style: normal; font-weight: 600; }
article a { color: #818cf8; text-decoration: underline; text-decoration-color: rgba(129, 140, 248, 0.4); }
article a:hover { text-decoration-color: #818cf8; }

article blockquote {
  border-left: 3px solid #818cf8;
  margin: 24px 0;
  padding: 4px 20px;
  color: #94a3b8;
  font-style: italic;
  background: rgba(129, 140, 248, 0.05);
  border-radius: 0 8px 8px 0;
}

article table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}
article th, article td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
article th { color: #818cf8; font-weight: 700; text-transform: uppercase; font-size: 12px; letter-spacing: 0.5px; }

article pre {
  background: #1e293b;
  padding: 16px;
  border-radius: 8px;
  overflow-x: auto;
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-box {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
  border: 1px solid rgba(129, 140, 248, 0.2);
  border-radius: 16px;
  padding: 28px;
  margin: 40px 0;
  text-align: center;
}
.cta-box h3 { color: #fff; margin-top: 0; }
.cta-box p { color: #cbd5e1; }
.cta-box a {
  display: inline-block;
  background: #6366f1;
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 12px;
  transition: background .15s;
}
.cta-box a:hover { background: #4f46e5; text-decoration: none; }

footer.site {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 32px 24px;
  text-align: center;
  color: #64748b;
  font-size: 13px;
}
footer.site a { color: #94a3b8; }

.disclaimer {
  margin-top: 48px;
  padding: 16px;
  font-size: 12px;
  color: #64748b;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border-left: 3px solid #64748b;
}
