/* AX1S Infra — gedeelde stijl voor blog/insight-pagina's */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg:            #08090f;
  --bg2:           #0b0d16;
  --card:          rgba(70,140,255,0.055);
  --card-border:   rgba(90,150,255,0.20);
  --card-shadow:   0 6px 22px -12px rgba(0,112,243,0.35);
  --faint:         rgba(255,255,255,0.06);
  --divider:       rgba(255,255,255,0.07);
  --accent:        #0070f3;
  --accent-light:  #4da3ff;
  --accent-bg:     rgba(0,112,243,0.09);
  --accent-border: rgba(0,112,243,0.22);
  --text:          #e8eaf0;
  --muted:         #b7c0cd;
}
html { scroll-behavior: smooth; }
body { font-family: 'Manrope', sans-serif; background: var(--bg); color: var(--muted); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
#bg-canvas { position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.85; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(8,9,15,0.88); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--divider); height: 68px;
}
.nav-inner { max-width: 1160px; margin: 0 auto; padding: 0 32px; height: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { height: 38px; width: auto; display: block; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--muted); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta { font-size: 13px; font-weight: 700; color: #fff; background: var(--accent); border-radius: 8px; padding: 10px 22px; transition: background 0.2s; }
.nav-cta:hover { background: #0060d0; }

/* SECTION SHELL */
section { position: relative; z-index: 1; }
.section-inner { max-width: 900px; margin: 0 auto; padding: 42px 32px; position: relative; z-index: 1; }
.label { font-size: 11px; font-weight: 700; color: var(--accent-light); letter-spacing: 0.14em; text-transform: uppercase; display: block; margin-bottom: 12px; }
hr { border: none; border-top: 1px solid var(--divider); position: relative; z-index: 1; }

/* ARTICLE HEADER */
.article-head { padding-top: 128px; padding-bottom: 32px; }
.back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 24px; transition: color 0.2s; }
.back-link:hover { color: var(--accent-light); }
.stag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); background: #fff; border: 1px solid rgba(0,112,243,0.25); border-radius: 4px; padding: 3px 9px; margin-bottom: 14px; }
.article-head h1 { font-size: 38px; font-weight: 800; color: var(--text); letter-spacing: -0.8px; line-height: 1.18; margin-bottom: 16px; }
.article-meta { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.author-avatar { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.15); }

/* BANNER */
.article-banner {
  height: 320px; margin: 0 32px 8px; border-radius: 20px;
  max-width: 900px; margin-left: auto; margin-right: auto;
  border: 1px solid var(--card-border);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  position: relative; z-index: 1;
}
.article-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ARTICLE BODY */
.article-body { padding-top: 40px; padding-bottom: 8px; }
.article-body h2 { font-size: 22px; font-weight: 800; color: var(--text); letter-spacing: -0.3px; margin: 40px 0 14px; }
.article-body h2:first-child { margin-top: 0; }
.article-body p { font-size: 15px; line-height: 1.85; color: var(--muted); margin-bottom: 18px; }
.article-body ul { margin: 0 0 20px 0; display: flex; flex-direction: column; gap: 10px; }
.article-body li { list-style: none; display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.7; color: var(--muted); }
.article-body li iconify-icon { color: var(--accent-light); flex-shrink: 0; margin-top: 3px; }
.article-body strong { color: var(--text); font-weight: 700; }
.pull-note {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--card-border); border-radius: 12px;
  padding: 18px 20px; margin: 28px 0; box-shadow: var(--card-shadow);
}
.pull-note iconify-icon { color: var(--accent-light); flex-shrink: 0; margin-top: 2px; }
.pull-note p { margin: 0; font-size: 14px; color: var(--muted); }

/* CTA */
.article-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  background: var(--card); border: 1px solid var(--card-border); border-radius: 16px;
  padding: 28px 32px; margin-top: 40px; box-shadow: var(--card-shadow);
}
.article-cta h3 { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.article-cta p { font-size: 13px; color: var(--muted); }
.btn-primary { font-size: 14px; font-weight: 700; color: #fff; background: var(--accent); border-radius: 8px; padding: 13px 26px; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; transition: background 0.2s, transform 0.15s; }
.btn-primary:hover { background: #0060d0; transform: translateY(-1px); }
.article-cta-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.article-cta-secondary { font-size: 12px; color: var(--muted); transition: color 0.2s; }
.article-cta-secondary:hover { color: var(--accent-light); }

/* RELATED */
.related-title { font-size: 18px; font-weight: 800; color: var(--text); margin-bottom: 18px; }
.blog-scroll { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 6px; scrollbar-width: none; }
.blog-scroll::-webkit-scrollbar { display: none; }
.blog-card {
  flex: 0 0 260px; scroll-snap-align: start;
  background: linear-gradient(160deg, rgba(255,255,255,0.07), rgba(70,140,255,0.04));
  border: 1px solid rgba(255,255,255,0.16); border-radius: 16px;
  overflow: hidden; box-shadow: var(--card-shadow); display: flex; flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.blog-card:hover { border-color: var(--accent-border); transform: translateY(-3px); }
.blog-card-media { height: 100px; display: flex; align-items: center; justify-content: center; background: var(--accent-bg); color: var(--accent-light); flex-shrink: 0; overflow: hidden; }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.blog-card-body h3 { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.35; }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; }
.blog-card-more {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; color: var(--accent-light);
}
.blog-card-more iconify-icon { transition: transform 0.2s; }
.blog-card:hover .blog-card-more iconify-icon { transform: translateX(3px); }
.blog-card-avatar-sm { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.18); flex-shrink: 0; }

/* FOOTER */
footer { border-top: 1px solid var(--divider); background: var(--bg2); position: relative; z-index: 1; }
.footer-inner { max-width: 1160px; margin: 0 auto; padding: 48px 32px; display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; }
.footer-logo { height: 30px; width: auto; display: block; margin-bottom: 14px; }
.footer-sub { font-size: 12px; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.tier-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--card); border: 1px solid var(--card-border); border-radius: 6px; padding: 6px 12px; font-size: 11px; font-weight: 600; color: var(--muted); }
.tier-badge iconify-icon { color: var(--accent-light); }
.copy { font-size: 11px; color: var(--muted); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .article-head { padding-top: 96px; }
  .article-head h1 { font-size: 28px; }
  .article-banner { height: 200px; margin-left: 16px; margin-right: 16px; border-radius: 16px; }
  .section-inner { padding: 32px 20px; }
  .article-cta { flex-direction: column; align-items: flex-start; }
}
