/* novislav.online — original stylesheet. No web fonts, no remote assets, no third-party requests. */

:root{
  --bg:#121212;
  --surface:#1b1b1b;
  --soft:#232323;
  --line:#343434;
  --line-soft:#2a2a2a;
  --ink:#e8e8e8;
  --muted:#a6a6a6;
  --brand:#ff4500;
  --brand-ink:#ffffff;
  --brand-dim:#c73600;
  --brand-tint:rgba(255,69,0,.10);
  --accent:#3fb8a0;
  --warn:#ffb26b;
  --maxw:1180px;
  --measure:72ch;
  --radius:10px;
  --f-sans:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif;
  --f-mono:ui-monospace,SFMono-Regular,Menlo,Consolas,"Liberation Mono",monospace;
}

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:var(--f-sans);
  font-size:clamp(1rem,.97rem + .18vw,1.06rem);
  line-height:1.68;
  min-height:100vh;
  display:flex;
  flex-direction:column;
}
img,svg{max-width:100%;height:auto;display:block}
a{color:var(--brand);text-decoration:underline;text-underline-offset:.15em}
a:hover{color:#ff6a33}
:focus-visible{outline:3px solid var(--warn);outline-offset:2px}

.nv-skip{position:absolute;left:-9999px;top:0}
.nv-skip:focus{left:8px;top:8px;z-index:200;background:var(--brand);color:var(--brand-ink);padding:10px 16px;border-radius:6px;text-decoration:none}

/* ---- Above-the-fold affiliate disclosure bar (first element in the document) ---- */
.nv-adbar{
  background:var(--brand-tint);
  border-bottom:1px solid var(--brand-dim);
  color:var(--ink);
  font-size:.86rem;
  line-height:1.5;
  padding:9px clamp(14px,3vw,32px);
  text-align:center;
}
.nv-adbar strong{color:var(--brand);text-transform:uppercase;letter-spacing:.06em;font-size:.82rem}
.nv-adbar a{color:var(--ink)}

/* ---- Header ---- */
.nv-head{
  border-bottom:1px solid var(--line);
  background:var(--surface);
}
.nv-head-in{
  max-width:var(--maxw);margin:0 auto;
  padding:14px clamp(14px,3vw,32px);
  display:flex;align-items:center;gap:16px;flex-wrap:wrap;
}
.nv-brand{display:inline-flex;align-items:center;gap:10px;color:var(--ink);text-decoration:none;font-weight:700;letter-spacing:-.01em;font-size:1.05rem}
.nv-brand:hover{color:var(--ink);text-decoration:none}
.nv-brand svg{width:30px;height:30px;flex:none}
.nv-kicker{font-size:.72rem;letter-spacing:.16em;text-transform:uppercase;color:var(--muted);border-left:1px solid var(--line);padding-left:16px}
.nv-nav{margin-left:auto;display:flex;gap:clamp(10px,2vw,20px);flex-wrap:wrap}
.nv-nav a{color:var(--muted);font-size:.88rem;text-decoration:none}
.nv-nav a:hover,.nv-nav a[aria-current="page"]{color:var(--brand);text-decoration:underline}

/* ---- Layout ---- */
.nv-wrap{
  width:100%;max-width:var(--maxw);margin:0 auto;flex:1;
  padding:clamp(20px,3vw,44px) clamp(14px,3vw,32px);
  display:grid;gap:clamp(20px,3vw,40px);
  grid-template-columns:minmax(0,1fr) 300px;
  align-items:start;
}
.nv-wrap.nv-solo{grid-template-columns:minmax(0,1fr);max-width:calc(var(--measure) + 10vw)}
.nv-main{min-width:0}
.nv-rail{min-width:0;position:sticky;top:20px}
@media (max-width:900px){
  .nv-wrap{grid-template-columns:minmax(0,1fr)}
  .nv-rail{position:static}
}

/* ---- Typography ---- */
h1,h2,h3,h4{font-weight:700;line-height:1.2;letter-spacing:-.015em;margin:0}
h1{font-size:clamp(1.85rem,1.4rem + 2.2vw,2.75rem);margin-bottom:.4em}
h2{font-size:clamp(1.4rem,1.2rem + .9vw,1.85rem);margin:2em 0 .5em;padding-top:.2em}
h3{font-size:clamp(1.1rem,1.02rem + .4vw,1.3rem);margin:1.6em 0 .4em}
h4{font-size:1rem;margin:1.2em 0 .3em}
p{margin:0 0 1.05em}
.nv-main>p,.nv-main>ul,.nv-main>ol{max-width:var(--measure)}
.nv-lede{font-size:1.14em;color:var(--muted);max-width:var(--measure)}
ul,ol{margin:0 0 1.15em;padding-left:1.3em}
li{margin-bottom:.45em}
.nv-meta{font-size:.87rem;color:var(--muted);margin:0 0 1.4em;padding-bottom:1.2em;border-bottom:1px solid var(--line)}
.nv-meta a{color:var(--muted)}
.nv-byline{color:var(--ink);font-weight:600}
hr.nv-rule{border:0;height:1px;background:linear-gradient(90deg,transparent,var(--line),transparent);margin:2.4em 0}

/* ---- Disclosure box (immediately after the h1) ---- */
.nv-disclose{
  border:1px solid var(--brand-dim);
  border-left:4px solid var(--brand);
  background:var(--brand-tint);
  border-radius:var(--radius);
  padding:clamp(14px,2.2vw,20px);
  margin:0 0 1.8em;
  font-size:.94rem;
}
.nv-disclose h2{margin:0 0 .45em;font-size:1.02rem;color:var(--brand);letter-spacing:.02em;text-transform:uppercase;padding:0}
.nv-disclose p:last-child{margin-bottom:0}

/* ---- Callouts ---- */
.nv-note{
  border:1px solid var(--line);border-left:4px solid var(--accent);
  background:var(--surface);border-radius:var(--radius);
  padding:clamp(14px,2.2vw,20px);margin:1.6em 0;font-size:.95rem;
}
.nv-note h3{margin:0 0 .4em;font-size:1rem;color:var(--accent)}
.nv-note p:last-child,.nv-note ul:last-child{margin-bottom:0}
.nv-warn{border-left-color:var(--warn)}
.nv-warn h3{color:var(--warn)}

/* ---- Facts table ---- */
.nv-tablewrap{overflow-x:auto;margin:1.6em 0}
table.nv-t{border-collapse:collapse;width:100%;font-size:.93rem;background:var(--surface);border-radius:var(--radius);overflow:hidden}
table.nv-t caption{caption-side:bottom;text-align:left;font-size:.84rem;color:var(--muted);padding-top:.7em}
table.nv-t th,table.nv-t td{border-bottom:1px solid var(--line);padding:10px 14px;text-align:left;vertical-align:top}
table.nv-t thead th{background:var(--soft);color:var(--ink);font-size:.82rem;letter-spacing:.05em;text-transform:uppercase}
table.nv-t tbody th{color:var(--muted);font-weight:600;white-space:nowrap}
table.nv-t tr:last-child th,table.nv-t tr:last-child td{border-bottom:0}

/* ---- Figures ---- */
figure.nv-fig{
  margin:2em 0;background:var(--surface);
  border:1px solid var(--line);border-radius:var(--radius);
  padding:clamp(12px,2vw,22px);
}
figure.nv-fig svg,figure.nv-fig img{width:100%;height:auto;border-radius:6px}
figcaption{margin-top:.9em;font-size:.88rem;color:var(--muted);line-height:1.55}
figcaption b{color:var(--ink);font-weight:600}

/* ---- Calls to action ---- */
.nv-cta{margin:2em 0;text-align:center}
.nv-btn{
  display:inline-flex;flex-direction:column;align-items:center;gap:3px;
  background:var(--brand);color:var(--brand-ink);
  border:1px solid var(--brand-dim);border-radius:999px;
  padding:14px 30px;font-weight:700;font-size:1.02rem;line-height:1.25;
  text-decoration:none;max-width:100%;
}
.nv-btn:hover{background:#ff5a1f;color:var(--brand-ink);text-decoration:none}
.nv-btn-out{background:transparent;color:var(--brand);border:2px solid var(--brand)}
.nv-btn-out:hover{background:var(--brand-tint);color:var(--brand)}
.nv-btn-full{display:flex;width:100%;border-radius:8px}
/* the visible partner-link label, rendered inside every commercial button */
.nv-plabel{
  font-size:.7rem;font-weight:600;letter-spacing:.09em;text-transform:uppercase;
  opacity:.92;
}
.nv-btn-out .nv-plabel{color:var(--brand)}
/* the commission note under every call to action */
.nv-commission{
  margin:.7em auto 0;max-width:46ch;
  font-size:.82rem;line-height:1.5;color:var(--muted);
}
.nv-rail .nv-commission{max-width:none}

/* ---- Rail card ---- */
.nv-card{
  background:var(--surface);border:1px solid var(--line);
  border-radius:var(--radius);padding:clamp(16px,2vw,22px);
}
.nv-card+.nv-card{margin-top:18px}
.nv-card h2,.nv-card h3{margin:0 0 .5em;font-size:.82rem;letter-spacing:.12em;text-transform:uppercase;color:var(--muted);padding:0}
.nv-card p{font-size:.92rem}
.nv-card p:last-child{margin-bottom:0}
.nv-toc{list-style:none;margin:0;padding:0;font-size:.92rem}
.nv-toc li{margin-bottom:.5em}
.nv-toc a{color:var(--ink);text-decoration:none}
.nv-toc a:hover{color:var(--brand);text-decoration:underline}

/* ---- Sources ---- */
.nv-src{font-size:.9rem;color:var(--muted)}
.nv-src li{margin-bottom:.6em}
.nv-src a{word-break:break-word}

/* ---- Footer ---- */
.nv-foot{
  border-top:1px solid var(--line);
  background:var(--surface);
  padding:clamp(24px,4vw,40px) clamp(14px,3vw,32px) 28px;
  font-size:.88rem;color:var(--muted);
}
.nv-foot-in{max-width:var(--maxw);margin:0 auto}
.nv-foot-cols{display:grid;gap:24px;grid-template-columns:repeat(auto-fit,minmax(215px,1fr));margin-bottom:22px}
.nv-foot h2{font-size:.78rem;letter-spacing:.12em;text-transform:uppercase;color:var(--ink);margin:0 0 .7em;padding:0}
.nv-foot ul{list-style:none;margin:0;padding:0}
.nv-foot li{margin-bottom:.42em}
.nv-foot a{color:var(--muted);text-decoration:none}
.nv-foot a:hover{color:var(--brand);text-decoration:underline}
.nv-foot address{font-style:normal;line-height:1.6}
.nv-foot-legal{border-top:1px solid var(--line);padding-top:18px;font-size:.82rem;line-height:1.6}
.nv-foot-legal p{margin:0 0 .6em}
.nv-foot-legal p:last-child{margin-bottom:0}

/* ---- 404 ---- */
.nv-404{text-align:center;padding:clamp(30px,8vw,70px) 0}
.nv-404 .nv-code{font-family:var(--f-mono);font-size:clamp(3rem,10vw,5.5rem);color:var(--brand);line-height:1;margin:0 0 .2em}

@media print{
  .nv-rail,.nv-nav{display:none}
  body{background:#fff;color:#000}
}
