/* ==========================================================================
   Negative Reviews Pro — main.css
   Premium investigative consumer-intelligence design system
   ========================================================================== */

:root {
	/* Colors injected via Customizer via wp_add_inline_style. */
	--nrv-charcoal: #111827;
	--nrv-graphite: #1f2937;
	--nrv-slate:    #374151;
	--nrv-red:      #dc2626;
	--nrv-amber:    #f59e0b;
	--nrv-white:    #f9fafb;

	--nrv-charcoal-2: #0b1220;
	--nrv-bg:         #f9fafb;
	--nrv-bg-soft:    #f1f3f7;
	--nrv-card:       #ffffff;
	--nrv-text:       #111827;
	--nrv-text-2:     #4b5563;

	--nrv-font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
	--nrv-font-head: 'Manrope', 'Inter', system-ui, sans-serif;

	--nrv-radius:    16px;
	--nrv-radius-lg: 24px;
	--nrv-radius-sm: 10px;

	--nrv-shadow-sm: 0 1px 2px rgba(17,24,39,0.06), 0 1px 3px rgba(17,24,39,0.05);
	--nrv-shadow:    0 8px 24px rgba(17,24,39,0.08), 0 2px 6px rgba(17,24,39,0.04);
	--nrv-shadow-lg: 0 20px 50px rgba(17,24,39,0.18), 0 10px 24px rgba(17,24,39,0.08);
	--nrv-glow:      0 0 0 1px rgba(220,38,38,0.18), 0 12px 30px rgba(220,38,38,0.18);

	--nrv-gradient-warn: linear-gradient(135deg, var(--nrv-red), var(--nrv-amber));
	--nrv-gradient-warm: linear-gradient(135deg, var(--nrv-amber), var(--nrv-red));
	--nrv-gradient-bg:   linear-gradient(180deg, #0b1220 0%, #111827 50%, #1f2937 100%);

	--nrv-container: 1200px;
	--nrv-step-1: clamp(0.875rem, 0.85rem + 0.2vw, 1rem);
	--nrv-step-2: clamp(1rem,    0.95rem + 0.3vw, 1.125rem);
	--nrv-step-3: clamp(1.25rem, 1.1rem + 0.8vw,  1.5rem);
	--nrv-step-4: clamp(1.75rem, 1.4rem + 1.6vw,  2.5rem);
	--nrv-step-5: clamp(2.25rem, 1.7rem + 2.8vw,  3.75rem);
	--nrv-step-6: clamp(3rem,    2.2rem + 4vw,    5rem);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--nrv-font-body);
	font-size: var(--nrv-step-2);
	line-height: 1.6;
	color: var(--nrv-text);
	background: var(--nrv-bg);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; }
a { color: var(--nrv-red); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--nrv-charcoal); }

h1, h2, h3, h4, h5 { font-family: var(--nrv-font-head); line-height: 1.18; letter-spacing: -0.015em; margin: 0 0 .5em; }
h1 { font-size: var(--nrv-step-5); font-weight: 800; }
h2 { font-size: var(--nrv-step-4); font-weight: 700; }
h3 { font-size: var(--nrv-step-3); font-weight: 700; }

.nrv-container { max-width: var(--nrv-container); margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .nrv-container { padding: 0 32px; } }

/* Skip link */
.screen-reader-text { position: absolute !important; clip: rect(1px,1px,1px,1px); width: 1px; height: 1px; overflow: hidden; }
.skip-link:focus { position: fixed; top: 12px; left: 12px; padding: 10px 16px; background: var(--nrv-charcoal); color: #fff; z-index: 9999; border-radius: 8px; clip: auto; width: auto; height: auto; }

/* Background investigative scan effect */
.nrv-scan-bg { position: fixed; inset: 0; pointer-events: none; z-index: -1; overflow: hidden; }
.nrv-scan-line { position: absolute; height: 1px; width: 100vw; left: -50%; background: linear-gradient(90deg, transparent, rgba(220,38,38,0.16), transparent); animation: nrv-line 18s linear infinite; }
.nrv-scan-line:nth-child(1) { top: 22%; animation-delay: 0s; }
.nrv-scan-line:nth-child(2) { top: 55%; animation-delay: -7s; }
.nrv-scan-line:nth-child(3) { top: 84%; animation-delay: -13s; }
.nrv-scan-particle { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: rgba(220,38,38,0.55); filter: blur(1px); animation: nrv-particle 14s ease-in-out infinite; }
.nrv-scan-particle:nth-child(4) { top: 18%; left: 22%; animation-delay: 0s; }
.nrv-scan-particle:nth-child(5) { top: 72%; left: 78%; animation-delay: -4s; background: rgba(245,158,11,0.55); }
.nrv-scan-particle:nth-child(6) { top: 40%; left: 60%; animation-delay: -9s; background: rgba(249,250,251,0.4); }

@keyframes nrv-line { 0% { transform: translateX(0); opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { transform: translateX(100%); opacity: 0; } }
@keyframes nrv-particle { 0%, 100% { transform: translate(0,0); opacity: .4; } 50% { transform: translate(40px,-30px); opacity: 1; } }

/* ============== Header ============== */
.nrv-header { position: sticky; top: 0; z-index: 200; backdrop-filter: blur(12px); background: rgba(255,255,255,0.9); border-bottom: 1px solid rgba(17,24,39,0.07); }
.nrv-header__inner { display: flex; align-items: center; gap: 24px; min-height: 72px; }
.nrv-header__brand { display: flex; align-items: center; flex-shrink: 0; max-width: 280px; }
.nrv-header__title { display: inline-flex; align-items: center; gap: 12px; font-family: var(--nrv-font-head); font-weight: 800; font-size: 1.15rem; color: var(--nrv-charcoal); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nrv-header__brandname { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 220px; }
.nrv-header__mark { width: 36px; height: 36px; border-radius: 10px; background: var(--nrv-gradient-warn); color: #fff; display: inline-grid; place-items: center; box-shadow: var(--nrv-glow); }
.nrv-header__mark svg { color: #fff; }
.nrv-nav { flex: 1; }
.nrv-nav__menu { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; justify-content: center; }
.nrv-nav__menu li { position: relative; }
.nrv-nav__menu li a { padding: 10px 14px; border-radius: 10px; color: var(--nrv-text); font-weight: 500; white-space: nowrap; }
.nrv-nav__menu li a:hover { background: rgba(220,38,38,0.08); color: var(--nrv-red); }
.nrv-nav__menu .sub-menu { position: absolute; top: 100%; left: 0; min-width: 240px; padding: 8px; margin: 0; list-style: none; background: #fff; border: 1px solid rgba(17,24,39,0.08); border-radius: 12px; box-shadow: var(--nrv-shadow); opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all .18s ease; z-index: 50; }
.nrv-nav__menu .menu-item-has-children:hover > .sub-menu,
.nrv-nav__menu .menu-item-has-children:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nrv-nav__menu .sub-menu li a { display: block; padding: 8px 12px; font-size: 0.9rem; }
.nrv-nav__menu .menu-item-has-children > a::after { content: ' ▾'; font-size: 0.7em; opacity: 0.6; }
.nrv-nav__toggle { display: none; background: transparent; border: 0; width: 44px; height: 44px; padding: 12px; flex-direction: column; justify-content: space-between; }
.nrv-nav__toggle .nrv-nav__bar { display: block; width: 20px; height: 2px; background: var(--nrv-charcoal); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.nrv-header__actions { display: flex; gap: 8px; align-items: center; }

@media (max-width: 900px) {
	.nrv-nav__toggle { display: inline-flex; }
	.nrv-nav__menu { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: #fff; padding: 16px; border-bottom: 1px solid rgba(17,24,39,0.06); box-shadow: var(--nrv-shadow); }
	.nrv-nav.is-open .nrv-nav__menu { display: flex; }
	.nrv-hide-mobile { display: none; }
}

/* ============== Buttons ============== */
.nrv-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 20px; border-radius: 12px; font-weight: 600; font-size: 0.95rem; border: 1px solid transparent; transition: all .2s ease; cursor: pointer; line-height: 1; text-align: center; }
.nrv-btn--primary { background: var(--nrv-gradient-warn); color: #fff !important; box-shadow: 0 8px 24px rgba(220,38,38,0.28); }
.nrv-btn--primary:hover { transform: translateY(-1px); box-shadow: 0 14px 32px rgba(220,38,38,0.36); color: #fff !important; }
.nrv-btn--ghost { background: rgba(17,24,39,0.04); color: var(--nrv-charcoal) !important; border-color: rgba(17,24,39,0.08); }
.nrv-btn--ghost:hover { background: rgba(17,24,39,0.08); }
.nrv-btn--lg { padding: 16px 28px; font-size: 1.05rem; border-radius: 14px; }
.nrv-btn--sm { padding: 8px 14px; font-size: 0.85rem; }
.nrv-btn--block { width: 100%; }

/* ============== Section primitives ============== */
.nrv-section { padding: clamp(48px, 8vw, 96px) 0; position: relative; }
.nrv-section__header { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.nrv-section__eyebrow { display: inline-block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--nrv-red); padding: 4px 12px; background: rgba(220,38,38,0.1); border-radius: 999px; margin-bottom: 12px; }
.nrv-section__title { margin-bottom: 12px; }
.nrv-section__sub { color: var(--nrv-text-2); font-size: var(--nrv-step-2); }

/* ============== Pills / chips ============== */
.nrv-pill { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; background: rgba(17,24,39,0.06); font-size: 0.75rem; font-weight: 600; color: var(--nrv-text); }
.nrv-pill--alt   { background: rgba(220,38,38,0.12); color: var(--nrv-red); }
.nrv-pill--amber { background: rgba(245,158,11,0.16); color: #92400e; }
.nrv-pill--white { background: rgba(255,255,255,0.16); color: #fff; }
.nrv-chip { padding: 12px 20px; border-radius: 999px; background: #fff; border: 1px solid rgba(17,24,39,0.08); color: var(--nrv-charcoal); font-weight: 500; cursor: pointer; transition: all .15s ease; }
.nrv-chip:hover { border-color: var(--nrv-red); transform: translateY(-2px); box-shadow: var(--nrv-shadow-sm); }
.nrv-chip.is-active { background: var(--nrv-gradient-warn); color: #fff; border-color: transparent; }

/* ============== Stats ============== */
.nrv-stat { padding: 14px 16px; border-radius: 14px; background: rgba(255,255,255,0.06); display: flex; flex-direction: column; gap: 4px; border: 1px solid rgba(255,255,255,0.08); }
.nrv-stat__value { font-family: var(--nrv-font-head); font-weight: 700; font-size: 1.4rem; }
.nrv-stat__label { font-size: 0.75rem; opacity: .8; text-transform: uppercase; letter-spacing: 0.06em; }
.nrv-stat--red   .nrv-stat__value { color: var(--nrv-red); }
.nrv-stat--amber .nrv-stat__value { color: var(--nrv-amber); }
.nrv-stat--white .nrv-stat__value { color: var(--nrv-white); }

/* ============== Hero ============== */
.nrv-hero { position: relative; padding: clamp(64px, 10vw, 120px) 0 clamp(80px, 12vw, 140px); color: #fff; background: var(--nrv-gradient-bg); overflow: hidden; }
.nrv-hero--inner { padding: 80px 0 60px; }
.nrv-hero__bg { position: absolute; inset: 0; overflow: hidden; }
.nrv-hero__glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; filter: blur(140px); opacity: .32; }
.nrv-hero__glow--a { top: -100px; left: -100px; background: var(--nrv-red); }
.nrv-hero__glow--b { bottom: -120px; right: -80px; background: var(--nrv-amber); }
.nrv-hero__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%); }
.nrv-hero__scanlines { position: absolute; inset: 0; background-image: repeating-linear-gradient(180deg, transparent 0, transparent 3px, rgba(255,255,255,0.018) 3px, rgba(255,255,255,0.018) 4px); pointer-events: none; }
.nrv-hero__particles { position: absolute; inset: 0; }
.nrv-hero__particle { position: absolute; width: 4px; height: 4px; background: var(--nrv-red); border-radius: 50%; box-shadow: 0 0 12px var(--nrv-red); animation: nrv-hero-particle 14s ease-in-out infinite; top: calc(50% + var(--i) * 22px - 132px); left: calc(50% + var(--i) * 35px - 210px); animation-delay: calc(var(--i) * -0.6s); opacity: .7; }
.nrv-hero__particle:nth-child(odd) { background: var(--nrv-amber); box-shadow: 0 0 12px var(--nrv-amber); }
.nrv-hero__particle:nth-child(3n) { background: #fff; box-shadow: 0 0 12px rgba(255,255,255,0.6); }
@keyframes nrv-hero-particle { 0%,100% { transform: translate(0,0); opacity:.4; } 50% { transform: translate(40px,-30px); opacity:1; } }

.nrv-hero__inner { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; position: relative; }
@media (min-width: 1024px) { .nrv-hero__inner { grid-template-columns: 1.2fr 1fr; gap: 64px; } }
.nrv-hero__eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: rgba(255,255,255,0.08); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.12); font-size: 0.8rem; font-weight: 500; }
.nrv-hero__pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--nrv-red); box-shadow: 0 0 0 0 rgba(220,38,38,0.6); animation: nrv-pulse 2s infinite; }
@keyframes nrv-pulse { 0% { box-shadow: 0 0 0 0 rgba(220,38,38,0.5); } 70% { box-shadow: 0 0 0 12px rgba(220,38,38,0); } 100% { box-shadow: 0 0 0 0 rgba(220,38,38,0); } }
.nrv-hero .nrv-hero__content h1.nrv-hero__title,
.nrv-body .nrv-hero__title {
	margin: 18px 0 18px;
	font-size: clamp(2.25rem, 3.4vw + 1rem, 4rem) !important;
	line-height: 1.08;
	font-weight: 800;
	max-width: 18ch;
	background: linear-gradient(180deg, #ffffff 70%, rgba(255,255,255,0.65));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
@media (min-width: 1280px) { .nrv-hero .nrv-hero__title { max-width: 16ch; } }
.nrv-hero__subtitle { color: rgba(255,255,255,0.78); font-size: var(--nrv-step-2); max-width: 580px; margin-bottom: 28px; }
.nrv-hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.nrv-hero__trust { display: flex; flex-wrap: wrap; gap: 18px; font-size: 0.85rem; color: rgba(255,255,255,0.72); align-items: center; }
.nrv-hero__check { color: var(--nrv-amber); font-weight: 700; }
.nrv-hero__disclosure { margin-top: 24px; font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.nrv-hero__ctas .nrv-btn--ghost { background: rgba(255,255,255,0.08); color: #fff !important; border-color: rgba(255,255,255,0.16); }
.nrv-hero__ctas .nrv-btn--ghost:hover { background: rgba(255,255,255,0.16); }

.nrv-hero__panel { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--nrv-radius-lg); padding: 24px; backdrop-filter: blur(16px); box-shadow: var(--nrv-shadow-lg); color: #fff; }
.nrv-hero__panel-head { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; font-size: 0.85rem; }
.nrv-hero__panel-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--nrv-red); box-shadow: 0 0 12px var(--nrv-red); animation: nrv-pulse 2s infinite; }
.nrv-hero__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 18px; }
.nrv-hero__meter { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.nrv-hero__meter-row { display: grid; grid-template-columns: 1.2fr 2fr 0.7fr; gap: 10px; align-items: center; font-size: 0.85rem; }
.nrv-hero__meter-bar { height: 8px; background: rgba(255,255,255,0.1); border-radius: 999px; overflow: hidden; }
.nrv-hero__meter-fill { display: block; height: 100%; width: var(--w); border-radius: 999px; transition: width 1.2s cubic-bezier(0.22,0.6,0.36,1); }
.nrv-hero__meter-fill--bad  { background: linear-gradient(90deg, var(--nrv-red), var(--nrv-amber)); }
.nrv-hero__meter-fill--good { background: linear-gradient(90deg, var(--nrv-amber), #fde68a); }
.nrv-hero__panel-cta { color: #fff; font-weight: 600; font-size: 0.9rem; }
.nrv-hero__panel-cta:hover { color: var(--nrv-amber); }

/* ============== Mobile sticky CTA ============== */
.nrv-mobile-cta { position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 150; display: none; }
.nrv-mobile-cta__btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 14px 18px; background: var(--nrv-gradient-warn); color: #fff !important; font-weight: 700; border-radius: 14px; box-shadow: 0 12px 30px rgba(220,38,38,0.4); }
@media (max-width: 768px) { .nrv-mobile-cta { display: block; } body { padding-bottom: 80px; } }

/* ============== Footer ============== */
.nrv-footer { background: var(--nrv-charcoal); color: rgba(255,255,255,0.78); padding: 64px 0 32px; margin-top: 80px; }
.nrv-footer__top { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
@media (min-width: 768px) { .nrv-footer__top { grid-template-columns: 1.2fr 2fr; gap: 64px; } }
.nrv-footer__title { color: #fff; font-size: 1.4rem; margin-bottom: 8px; }
.nrv-footer__tag { color: rgba(255,255,255,0.65); max-width: 360px; }
.nrv-footer__cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px; }
.nrv-fwidget__title { color: #fff; font-size: 0.95rem; margin: 0 0 12px; }
.nrv-fwidget ul { list-style: none; padding: 0; margin: 0; }
.nrv-fwidget li { margin-bottom: 8px; }
.nrv-fwidget a { color: rgba(255,255,255,0.72); }
.nrv-fwidget a:hover { color: #fff; }
.nrv-footer__nav { padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
.nrv-footer__menu { display: flex; flex-wrap: wrap; gap: 18px; list-style: none; margin: 0; padding: 0; justify-content: center; }
.nrv-footer__menu a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.nrv-footer__menu a:hover { color: #fff; }
.nrv-footer__disclaimer { padding: 24px 0; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.nrv-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 0.78rem; color: rgba(255,255,255,0.5); padding-top: 16px; }

/* ============== Forms / fields ============== */
.nrv-field { display: flex; flex-direction: column; gap: 6px; font-size: 0.9rem; font-weight: 500; color: var(--nrv-text); }
.nrv-field > span { font-weight: 600; }
.nrv-field input[type=number],
.nrv-field input[type=text],
.nrv-field input[type=email],
.nrv-field input[type=month],
.nrv-field select { width: 100%; padding: 10px 12px; border: 1px solid rgba(17,24,39,0.12); border-radius: 10px; background: #fff; font: inherit; }
.nrv-field input[type=range] { width: 100%; }
.nrv-field output { font-family: var(--nrv-font-head); font-weight: 700; color: var(--nrv-red); }

/* ============== Cards / postgrid ============== */
.nrv-postgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.nrv-postcard { background: #fff; border: 1px solid rgba(17,24,39,0.06); border-radius: var(--nrv-radius); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.nrv-postcard:hover { transform: translateY(-2px); box-shadow: var(--nrv-shadow); }
.nrv-postcard__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.nrv-postcard__body { padding: 20px; }
.nrv-postcard__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.nrv-postcard__title { font-size: 1.15rem; margin: 0 0 8px; }
.nrv-postcard__title a { color: var(--nrv-charcoal); }
.nrv-postcard__title a:hover { color: var(--nrv-red); }
.nrv-postcard__excerpt { color: var(--nrv-text-2); font-size: 0.9rem; margin: 0 0 12px; }
.nrv-postcard__more { font-weight: 600; }

/* ============== Pagination ============== */
.nrv-pagination { margin-top: 40px; }
.nrv-pagination .nav-links { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.nrv-pagination .page-numbers { padding: 8px 14px; border-radius: 10px; background: #fff; border: 1px solid rgba(17,24,39,0.08); color: var(--nrv-text); font-weight: 600; }
.nrv-pagination .page-numbers.current { background: var(--nrv-gradient-warn); color: #fff; border-color: transparent; }

/* ============== Single ============== */
.nrv-single__header { padding: 56px 0 36px; }
.nrv-single__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.nrv-single__lede { font-size: var(--nrv-step-3); color: var(--nrv-text-2); max-width: 720px; }
.nrv-single__author { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.nrv-single__avatar { border-radius: 50%; }
.nrv-single__hero img { width: 100%; max-height: 520px; object-fit: cover; border-radius: 0; }
.nrv-single__layout { display: grid; grid-template-columns: 1fr; gap: 48px; padding: 48px 0; }
@media (min-width: 1024px) { .nrv-single__layout { grid-template-columns: 2.2fr 1fr; } }
.nrv-prose { max-width: 760px; font-size: 1.05rem; line-height: 1.75; }
.nrv-prose h2, .nrv-prose h3 { margin-top: 1.4em; }
.nrv-prose p { margin: 1em 0; }
.nrv-prose ul, .nrv-prose ol { margin: 1em 0 1em 1.4em; }
.nrv-prose blockquote { border-left: 4px solid var(--nrv-red); padding: 4px 16px; color: var(--nrv-text-2); margin: 1.4em 0; background: rgba(220,38,38,0.05); border-radius: 4px; }
.nrv-disclosure { padding: 14px 18px; background: rgba(245,158,11,0.08); border-radius: 12px; font-size: 0.9rem; color: #92400e; }

/* ============== Search ============== */
.nrv-search { display: flex; gap: 8px; max-width: 560px; }
.nrv-search input[type=search] { flex: 1; padding: 14px 18px; border-radius: 12px; border: 1px solid rgba(17,24,39,0.1); background: #fff; font: inherit; }

/* ============== Breadcrumbs ============== */
.nrv-breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0 0 16px; font-size: 0.85rem; color: var(--nrv-text-2); }
.nrv-breadcrumbs li + li::before { content: '›'; margin-right: 8px; opacity: 0.4; }

/* ============== Quick start ============== */
.nrv-quickstart { padding: 40px 0; background: #fff; border-bottom: 1px solid rgba(17,24,39,0.05); }
.nrv-quickstart__head { text-align: center; margin-bottom: 24px; }
.nrv-quickstart__title { font-size: var(--nrv-step-3); }
.nrv-quickstart__chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

/* ============== Empty state ============== */
.nrv-empty { padding: 40px 24px; text-align: center; color: var(--nrv-text-2); background: rgba(17,24,39,0.03); border-radius: 16px; }
