/*
 * NDS Theme - Main Stylesheet
 * Optimized for UX/UI Excellence
 * @package NDS_Theme
 * @since 1.0.0
 */

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--nv-text-primary);
  background-color: var(--nv-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}



/* Page wrapper */
#nds-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--nv-text-primary);
}

h1 {
  font-size: clamp(2.5rem, 10vw, 5rem);
  margin-bottom: 1.25rem;
}

h2 {
  font-size: clamp(2rem, 7vw, 3rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.5rem, 5vw, 2rem);
  margin-bottom: 1rem;
}

h4, h5, h6 {
  margin-bottom: 0.75rem;
}

h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1.25rem;
  color: var(--nv-text-secondary);
  line-height: 1.8;
}

a {
  color: var(--nv-accent);
  text-decoration: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

a:hover {
  opacity: 0.75;
}

/* ===== HEADER ===== */
.nds-header-bar {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

.nds-header {
  background-color: var(--nv-bg);
  border-bottom: 1px solid var(--nv-border);
  border-left: none !important;
  border-right: none !important;
}

:root.light .nds-header {
  background-color: rgba(255, 255, 255, 0.98);
}

.nds-header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nds-identity {
  flex-shrink: 0;
}

.nds-logo-text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--nv-accent);
}

/* Navigation */
.nds-nav-primary {
  flex: 1;
  justify-content: center;
}

.nds-nav-menu {
  list-style: none;
}

.nds-nav-menu li {
  position: relative;
}

.nds-nav-menu a {
  padding: 0.5rem 1rem;
  font-size: 14px;
  font-weight: 500;
  color: var(--nv-text-secondary);
  transition: color 0.3s ease;
}

.nds-nav-menu a:hover {
  color: var(--nv-accent);
  opacity: 1;
}

.nds-header-actions {
  flex-shrink: 0;
}

/* Mobile Menu Toggle */
#nds-mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

#nds-mobile-menu.hidden {
  max-height: 0;
}

#nds-mobile-menu:not(.hidden) {
  max-height: 500px;
}

.nds-mobile-menu-list {
  list-style: none;
}

.nds-mobile-menu-list a {
  display: block;
  padding: 0.75rem 0;
  color: var(--nv-text-secondary);
  font-size: 14px;
  transition: color 0.3s ease;
}

.nds-mobile-menu-list a:hover {
  color: var(--nv-accent);
  opacity: 1;
}

/* ===== MAIN CONTENT ===== */
.nds-main-content {
  flex: 1;
  width: 100%;
}

/* ===== GLASSMORPHISM ENGINE ===== */
.nv-glass {
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  background-color: rgba(12, 15, 20, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

:root.light .nv-glass {
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

/* Glass Variants */
.nv-glass-surface {
  backdrop-filter: blur(20px);
  background-color: rgba(8, 11, 16, 0.8);
  border: 1px solid var(--nv-border);
}

:root.light .nv-glass-surface {
  background-color: rgba(255, 255, 255, 0.85);
}

/* ===== CARDS ===== */
.nv-card {
  border: 1px solid var(--nv-border);
  background-color: var(--nv-card-bg);
  border-radius: 1.5rem;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.nv-card-glass {
  border: 1px solid var(--nv-border);
  border-radius: 1.5rem;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  background-color: rgba(12, 15, 20, 0.5);
}

:root.light .nv-card-glass {
  background-color: rgba(255, 255, 255, 0.4);
}

.nv-card:hover {
  border-color: var(--nv-accent);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.5);
  transform: translateY(-8px) scale(1.01);
}

:root.light .nv-card:hover {
  box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.15);
}

/* ===== BUTTONS ===== */
button, .nds-button-primary, .nds-button-secondary {
  font-family: var(--font-sans);
  font-weight: 600;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nds-button-primary {
  background-color: var(--nv-accent);
  color: var(--nv-bg);
  padding: 0.875rem 1.75rem;
  font-size: 14px;
}

.nds-button-primary:hover {
  box-shadow: 0 8px 24px rgba(255, 179, 0, 0.3);
  transform: translateY(-2px);
}

.nds-button-secondary {
  background-color: transparent;
  color: var(--nv-accent);
  border: 1px solid var(--nv-accent);
  padding: 0.875rem 1.75rem;
  font-size: 14px;
}

.nds-button-secondary:hover {
  background-color: var(--nv-accent);
  color: var(--nv-bg);
}

/* ===== FORMS ===== */
input, textarea, select {
  font-family: var(--font-sans);
  background-color: var(--nv-card-bg);
  color: var(--nv-text-primary);
  border: 1px solid var(--nv-border);
  border-radius: 0.5rem;
  padding: 0.875rem 1rem;
  font-size: 14px;
  transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--nv-accent);
  box-shadow: 0 0 0 3px rgba(255, 179, 0, 0.1);
}

/* ===== ARTICLE ===== */
.nds-article-wrapper {
  display: flex;
  flex-direction: column;
}

.nds-article-hero {
  background-color: var(--nv-bg);
}

.nds-article-content {
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
}

.nds-article-content h2,
.nds-article-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.nds-article-content p {
  margin-bottom: 1.5rem;
}

.nds-article-content strong {
  color: var(--nv-text-primary);
  font-weight: 600;
}

.nds-article-content a {
  text-decoration: underline;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.nds-article-content a:hover {
  opacity: 0.75;
}

/* ===== FOOTER ===== */
.nds-footer {
  background-color: var(--nv-bg);
  border-top: 1px solid var(--nv-border);
  margin-top: auto;
}

:root.light .nds-footer {
  background-color: rgba(255, 255, 255, 0.98);
}

.nds-footer-brand {
  space-y: 1rem;
}

.nds-footer-column {
  space-y: 1.5rem;
}

.nds-footer-heading {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  display: block;
  color: var(--nv-text-muted);
  font-weight: 600;
}

.nds-footer-text {
  font-size: 14px;
  color: var(--nv-text-secondary);
  line-height: 1.8;
  transition: color 0.3s ease;
}

.nds-footer-link {
  color: var(--nv-text-secondary);
  transition: color 0.3s ease;
  text-decoration: none;
}

.nds-footer-link:hover {
  color: var(--nv-accent);
}

/* ===== UTILITIES ===== */
.nv-fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.nv-glow-amber {
  box-shadow: 0 0 12px var(--nv-accent);
}

:root.light .nv-glow-amber {
  box-shadow: 0 0 12px var(--nv-accent-glow);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes techPulse {
  0%, 100% {
    opacity: 1;
    filter: brightness(100%);
  }
  50% {
    opacity: 0.6;
    filter: brightness(150%);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nds-nav-menu {
    gap: 0.5rem;
  }

  .nds-nav-menu a {
    padding: 0.5rem 0.75rem;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .nds-nav-primary {
    display: none;
  }

  .nds-header-main {
    height: 64px;
  }

  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--nv-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--nv-accent);
  border-radius: 5px;
  opacity: 0.3;
}

::-webkit-scrollbar-thumb:hover {
  opacity: 0.5;
}

/* Firefox scrollbar */
* {
  scrollbar-color: var(--nv-accent) var(--nv-bg);
  scrollbar-width: thin;
}

/* ===== MARQUEE (CAPACIDADES TÉCNICAS) ===== */
@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scroll-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.animate-scroll-left  { animation: scroll-left  60s linear infinite; }
.animate-scroll-right { animation: scroll-right 60s linear infinite; }

.animate-scroll-left:hover,
.animate-scroll-right:hover { animation-play-state: paused; }

.mask-edges {
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(251, 160, 29, 0.4);
  color: var(--nv-text-primary);
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  white-space: nowrap;
}

:root.light .marquee-item {
  background: #ffffff;
  border-color: var(--nv-accent);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.marquee-item:hover {
  background: var(--nv-accent);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(251, 160, 29, 0.25);
}

/* ===== FAQ ACCORDION ===== */
.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-content {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-item.active .faq-icon {
  background-color: var(--nv-accent);
  box-shadow: 0 4px 20px var(--nv-accent-glow);
}

.faq-item.active .faq-icon-inner {
  transform: rotate(45deg);
}

.faq-item.active h3 {
  color: var(--nv-accent);
}

/* ===== PROGRESS TRACK ===== */
.nv-progress-track {
  background: rgba(255, 255, 255, 0.06);
}

:root.light .nv-progress-track {
  background: rgba(9, 9, 11, 0.08);
}

/* ===== SCROLL INDICATOR ===== */
.nds-scroll-indicator {
  animation: ndsScrollBob 2.5s ease-in-out infinite;
}

@keyframes ndsScrollBob {
  0%, 100% { transform: translateY(0);   opacity: 0.4; }
  50%       { transform: translateY(5px); opacity: 0.8; }
}

/* ===== LAZY LOADING — Scroll-triggered entrance ===== */

/* Base state: hidden. JS adds .is-visible when element enters viewport */
.nds-rise {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1),
              transform 0.75s cubic-bezier(0.16,1,0.3,1);
  transition-delay: var(--rise-delay, 0s);
  will-change: opacity, transform;
}
.nds-rise.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered card children — parent gets .nds-stagger, children animate sequentially */
.nds-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1),
              transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.nds-stagger.is-visible > *:nth-child(1)  { opacity: 1; transform: none; transition-delay: 0.00s; }
.nds-stagger.is-visible > *:nth-child(2)  { opacity: 1; transform: none; transition-delay: 0.08s; }
.nds-stagger.is-visible > *:nth-child(3)  { opacity: 1; transform: none; transition-delay: 0.16s; }
.nds-stagger.is-visible > *:nth-child(4)  { opacity: 1; transform: none; transition-delay: 0.24s; }
.nds-stagger.is-visible > *:nth-child(5)  { opacity: 1; transform: none; transition-delay: 0.32s; }
.nds-stagger.is-visible > *:nth-child(6)  { opacity: 1; transform: none; transition-delay: 0.40s; }
.nds-stagger.is-visible > *:nth-child(n+7){ opacity: 1; transform: none; transition-delay: 0.48s; }

/* Lazy images — native loading="lazy" + JS fade-in on load */
img {
  transition: opacity 0.5s ease;
}
img.nds-img-loading {
  opacity: 0;
}
img.nds-img-loaded {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .nds-rise,
  .nds-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
  img { transition: none; }
}

/* ===== HERO SECTION — PREMIUM MICRO-ANIMATIONS ===== */

/* Entrance: staggered reveal */
.nds-hero-badge  { animation: nds-rise 0.8s cubic-bezier(0.16,1,0.3,1) 0.10s both; }
.nds-hero-h1     { animation: nds-rise 0.9s cubic-bezier(0.16,1,0.3,1) 0.22s both; }
.nds-hero-h2     { animation: nds-rise 0.9s cubic-bezier(0.16,1,0.3,1) 0.36s both; }
.nds-hero-desc   { animation: nds-rise 0.9s cubic-bezier(0.16,1,0.3,1) 0.50s both; }
.nds-hero-cta    { animation: nds-rise 0.9s cubic-bezier(0.16,1,0.3,1) 0.64s both; }
.nds-hero-panel  { animation: nds-rise 1.0s cubic-bezier(0.16,1,0.3,1) 0.40s both; }
.nds-hero-sidebar{ animation: nds-softin 1.4s ease 0.9s both; }

@keyframes nds-rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes nds-softin {
  from { opacity: 0; }
  to   { opacity: 0.4; }
}

/* H1 amber text: ambient glow breathe */
.nds-hero-accent {
  animation: nds-glow-breathe 4s ease-in-out 1.2s infinite;
}
@keyframes nds-glow-breathe {
  0%, 100% { text-shadow: none; }
  50%       { text-shadow: 0 0 40px rgba(251,191,36,0.35), 0 0 80px rgba(251,191,36,0.1); }
}

/* Description border: grow from top */
.nds-hero-line {
  transform-origin: top;
  animation: nds-line-grow 1s cubic-bezier(0.16,1,0.3,1) 0.6s both;
}
@keyframes nds-line-grow {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}

/* Primary CTA button */
.nds-hero-btn-primary {
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease;
}
.nds-hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(251,191,36,0.3), 0 12px 28px rgba(251,191,36,0.15);
}
.nds-btn-sweep {
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
  background-size: 250% 100%;
  background-position: 200% center;
}
.nds-hero-btn-primary:hover .nds-btn-sweep {
  animation: nds-sweep 0.55s ease forwards;
}
@keyframes nds-sweep {
  to { background-position: -50% center; }
}

/* Ghost CTA button */
.nds-hero-btn-ghost {
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease,
              background 0.3s ease, transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.nds-hero-btn-ghost:hover {
  border-color: rgba(251,191,36,0.45) !important;
  color: var(--nv-accent) !important;
  background: rgba(251,191,36,0.03);
  transform: translateY(-2px);
}

/* HUD card */
.nds-hud-card {
  transition: border-color 0.6s ease, box-shadow 0.6s ease;
}
.nds-hud-card:hover {
  border-color: rgba(251,191,36,0.18) !important;
  box-shadow: 0 0 80px rgba(251,191,36,0.06), 0 40px 80px rgba(0,0,0,0.25);
}

/* Scan line sweep */
.nds-scan {
  animation: nds-scan-move 6s ease-in-out 1.5s infinite;
}
@keyframes nds-scan-move {
  0%   { top:  6%; opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { top: 94%; opacity: 0; }
}

/* Progress bars: animated fill */
.nds-bar {
  width: 0;
  animation: nds-bar-grow 1s cubic-bezier(0.16,1,0.3,1) both;
}
.nds-metric-row:nth-child(1) .nds-bar { animation-delay: 0.85s; }
.nds-metric-row:nth-child(2) .nds-bar { animation-delay: 1.05s; }
.nds-metric-row:nth-child(3) .nds-bar { animation-delay: 1.25s; }
@keyframes nds-bar-grow { to { width: var(--w); } }

/* Metric numbers: fade-up reveal */
.nds-counter {
  animation: nds-counter-in 0.5s cubic-bezier(0.16,1,0.3,1) both;
}
.nds-metric-row:nth-child(1) .nds-counter { animation-delay: 0.80s; }
.nds-metric-row:nth-child(2) .nds-counter { animation-delay: 1.00s; }
.nds-metric-row:nth-child(3) .nds-counter { animation-delay: 1.20s; }
@keyframes nds-counter-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .animate-scroll-left,
  .animate-scroll-right  { animation: none; }
  .nds-scroll-indicator  { animation: none; opacity: 0.5; }
  .nv-fade-in            { animation: none; opacity: 1; transform: none; }
  .animate-ping          { animation: none; opacity: 1; }
  .animate-bounce        { animation: none; }
  /* Hero */
  .nds-hero-badge, .nds-hero-h1, .nds-hero-h2,
  .nds-hero-desc,  .nds-hero-cta, .nds-hero-panel,
  .nds-hero-sidebar { animation: none; opacity: 1; transform: none; }
  .nds-hero-accent  { animation: none; }
  .nds-hero-line    { animation: none; transform: scaleY(1); }
  .nds-scan         { animation: none; opacity: 0; }
  .nds-bar          { animation: none; width: var(--w); }
  .nds-counter      { animation: none; }
}

/* ===== FOOTER ANIMATIONS ===== */

/* Column entrance — staggered fade+rise triggered by IntersectionObserver */
.nds-footer-col {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
  transition-delay: var(--col-delay, 0s);
}
.nds-footer-col.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Social icon border glow on hover */
.nds-social-icon {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.nds-social-icon:hover {
  border-color: rgba(251,191,36,0.4) !important;
  box-shadow: 0 0 12px rgba(251,191,36,0.12);
}

/* Nav link slide — compensate for the › appearing */
.nds-footer-link {
  transition: color 0.3s ease, transform 0.3s ease;
}

/* CTA button bottom line sweep */
.nds-footer-cta {
  transition: color 0.3s ease, border-color 0.3s ease;
}
.nds-footer-cta:hover {
  border-color: rgba(251,191,36,0.3) !important;
}

@media (prefers-reduced-motion: reduce) {
  .nds-footer-col { opacity: 1; transform: none; transition: none; }
}

/* ===== PROSE — Theme-aware typography ===== */
/* Sobreescribe los colores por defecto de Tailwind Typography
   con los design tokens del tema, respetando dark/light mode */
.prose {
  --tw-prose-body:          var(--nv-text-secondary);
  --tw-prose-headings:      var(--nv-text-primary);
  --tw-prose-lead:          var(--nv-text-secondary);
  --tw-prose-bold:          var(--nv-text-primary);
  --tw-prose-links:         var(--nv-accent);
  --tw-prose-hr:            var(--nv-border);
  --tw-prose-quotes:        var(--nv-text-secondary);
  --tw-prose-quote-borders: var(--nv-accent);
  --tw-prose-code:          var(--nv-text-primary);
  --tw-prose-pre-code:      var(--nv-text-secondary);
  --tw-prose-pre-bg:        var(--nv-card-bg);
  --tw-prose-th-borders:    var(--nv-border);
  --tw-prose-td-borders:    var(--nv-border);
  --tw-prose-counters:      var(--nv-text-muted);
  --tw-prose-bullets:       var(--nv-accent);
  --tw-prose-captions:      var(--nv-text-muted);
  color: var(--nv-text-secondary);
}

.prose a {
  color: var(--nv-accent);
  text-decoration-color: rgba(251, 191, 36, 0.3);
}
.prose a:hover {
  color: var(--nv-accent);
  opacity: 0.8;
}
.prose strong {
  color: var(--nv-text-primary);
}
.prose code {
  color: var(--nv-text-primary);
  background-color: var(--nv-card-bg);
  border: 1px solid var(--nv-border);
  border-radius: 0.25rem;
  padding: 0.1em 0.35em;
}
.prose code::before,
.prose code::after { content: none; }
.prose pre {
  background-color: var(--nv-card-bg);
  border: 1px solid var(--nv-border);
}
.prose blockquote {
  border-left-color: var(--nv-accent);
  color: var(--nv-text-secondary);
}
.prose h1, .prose h2, .prose h3,
.prose h4, .prose h5, .prose h6 {
  color: var(--nv-text-primary);
}
.prose hr {
  border-color: var(--nv-border);
}



