/* Minimal, responsive article styling to match the landing look (no frameworks) */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

:root{
  --bg: #0c0b10;
  --text: #f6f4ff;
  --muted: #c9c6d4;
  --card: rgba(255,255,255,0.06);
  --outline: rgba(255,255,255,0.18);
  --grad: linear-gradient(135deg, #ff7a59, #9b5cff);
  --shadow: 0 20px 40px rgba(0,0,0,.35);
  --radius: 18px;
  --container: 980px;
  --gap: clamp(16px, 2.4vw, 28px);
  --h1: clamp(34px, 6vw, 64px);
  --h2: clamp(22px, 3vw, 36px);
  --lead: clamp(16px, 1.8vw, 20px);
}

body {
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(255,122,89,0.25), transparent 60%),
    radial-gradient(900px 500px at -10% 10%, rgba(155,92,255,0.30), transparent 55%),
    var(--bg);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Inter, "Helvetica Neue", Arial;
  line-height: 1.5;
}

.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: saturate(120%) blur(10px);
  background: linear-gradient(to bottom, rgba(12,11,16,0.85), rgba(12,11,16,0.35));
  border-bottom: 1px solid var(--outline);
}
.site-header .container { display: flex; align-items: center; gap: var(--gap); padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; }
.brand-badge { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--grad); color: #12091a; box-shadow: var(--shadow); }
.nav { margin-left: auto; display: flex; gap: 16px; }
.nav-link { padding: 8px 10px; border-radius: 10px; }
.nav-link:hover { background: var(--card); }
.socials { display: flex; gap: 10px; }
.social svg { width: 22px; height: 22px; fill: var(--muted); }
.social:hover svg { fill: white; }

/* Hero */
.hero { padding: clamp(24px, 4vw, 48px) 0; }
.hero-grid { display: grid; gap: var(--gap); grid-template-columns: 1.1fr 0.9fr; align-items: center; }
.hero-copy .eyebrow { color: var(--muted); letter-spacing: .12em; text-transform: uppercase; font-size: .85rem; margin: 0 0 6px; }
.hero-copy h1 { font-size: var(--h1); margin: 0 0 10px; }
.hero-copy .lead { font-size: var(--lead); color: var(--muted); }
.quick-tags { list-style: none; display: flex; gap: 10px; padding: 0; margin: 14px 0 0; }
.quick-tags li { padding: 6px 10px; border-radius: 999px; background: rgba(255,255,255,0.08); border: 1px solid var(--outline); font-weight: 700; }
.hero-art { border: 1px solid var(--outline); border-radius: calc(var(--radius) + 6px); overflow: hidden; box-shadow: var(--shadow); background: linear-gradient(145deg, rgba(255,122,89,0.25), rgba(155,92,255,0.25)); }

/* Article body */
.prose { display: grid; gap: clamp(18px, 2.2vw, 24px); padding-bottom: 56px; }
.prose h2 { font-size: var(--h2); margin: 18px 0 6px; }
.prose p { color: var(--text); margin: 0; }
.prose ul, .prose ol { margin: 0; padding-left: 20px; color: var(--muted); }
.bullets li, .prose li { margin: 6px 0; }

.callout, .risks, .levels, .author {
  background: var(--card);
  border: 1px solid var(--outline);
  border-radius: var(--radius);
  padding: clamp(14px, 2vw, 20px);
  box-shadow: var(--shadow);
}

.levels { display: grid; gap: 8px; color: var(--muted); }
.levels span { font-weight: 800; color: white; }

.disclaimer { color: var(--muted); font-size: 0.95rem; border-left: 4px solid rgba(255,255,255,0.25); padding-left: 12px; }

.author { display: grid; grid-template-columns: 56px 1fr; gap: 12px; align-items: center; }
.author img { width: 56px; height: 56px; border-radius: 14px; background: rgba(255,255,255,0.1); }

.site-footer { padding: 28px 0; border-top: 1px solid var(--outline); background: rgba(255,255,255,0.03); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 10px; color: var(--muted); }

/* Responsive */
@media (max-width: 980px){
  .hero-grid { grid-template-columns: 1fr; }
}
