:root {
  /* Neutrals (warm) */
  --bg: #F7F6F3;
  --surface: #FFFFFF;
  --surface-muted: #F1EFEA;
  --ink: #1A1A1A;
  --ink-soft: #5C5C5C;
  --ink-muted: #9A9A9A;
  --border: #E2E0DB;

  /* Brand — Willie mint (Radix mint) */
  --accent: #396265;          /* mint9 — solid surfaces */
  --accent-fg: #436c6f;       /* mint11 — text/icon on neutral */
  --accent-soft: #cce6e8;     /* mint5 — chips */
  --accent-tint: #e5f4f5;     /* mint3 — info surface */
  --accent-tint-fg: #2a5356;  /* mint10 — text on accent-tint */

  /* Status (Radix-aligned) */
  --warn: #E85D2A;
  --warn-tint: #FFF1EC;
  --warn-tint-fg: #8B3A14;
  --warn-soft: #F9D4C2;
  --warn-soft-fg: #7A3214;
  --success: #30A46C;
  --success-tint: #E9F9EE;
  --success-tint-fg: #18794E;

  /* Diagram entity colors */
  --willie-mint: #396265;
  --ext-orange: #E85D2A;
  --meter-teal: #0A8F7F;
  --dedoubleur-dark: #2C2C2C;

  /* Hero */
  --hero-grad: linear-gradient(135deg, #0d1212 0%, #172a2b 50%, #224447 100%);
  --hero-glow: rgba(57, 98, 101, 0.22);
  --hero-text: rgba(255, 255, 255, 0.72);
  --hero-badge-bg: rgba(255, 255, 255, 0.08);
  --hero-badge-border: rgba(255, 255, 255, 0.14);
  --hero-badge-fg: rgba(255, 255, 255, 0.78);

  /* Shape & elevation */
  --radius: 12px;
  --radius-sm: 8px;
  --radius-xs: 5px;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 4px 24px rgba(0, 0, 0, 0.08);

  /* Nav */
  --nav-bg: #FFFFFF;

  /* Prose links — inline anchors in body copy */
  --link: #1f4144;
  --link-hover: #0d2426;
  --link-underline: rgba(31, 65, 68, 0.4);
}

@media (prefers-color-scheme: dark) {
  :root {
    /* Neutrals — Radix gray dark */
    --bg: #111113;
    --surface: #18181B;
    --surface-muted: #1F1F22;
    --ink: #EDEDED;
    --ink-soft: #A0A0A8;
    --ink-muted: #707078;
    --border: #2E2E32;

    /* Brand — mint stays solid in dark */
    --accent: #396265;
    --accent-fg: #93c7cb;
    --accent-soft: #2d5154;
    --accent-tint: #172a2b;
    --accent-tint-fg: #cdf0f2;

    /* Status */
    --warn: #FF8E72;
    --warn-tint: #2F1A12;
    --warn-tint-fg: #FFC4AA;
    --warn-soft: #4A2818;
    --warn-soft-fg: #FFC4AA;
    --success: #3DD68C;
    --success-tint: #102822;
    --success-tint-fg: #A8E7C5;

    --hero-grad: linear-gradient(135deg, #0a0f10 0%, #14282a 50%, #1f4144 100%);
    --hero-glow: rgba(147, 199, 203, 0.18);

    --shadow: 0 1px 3px rgba(0, 0, 0, 0.35), 0 4px 12px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 4px 24px rgba(0, 0, 0, 0.45);

    --nav-bg: #18181B;

    --link: #cdf0f2;
    --link-hover: #FFFFFF;
    --link-underline: rgba(205, 240, 242, 0.45);
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── SHARED NAV ── */
.wn-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
  font-family: 'DM Sans', system-ui, -apple-system, Segoe UI, sans-serif;
  position: sticky;
  top: 0;
  z-index: 100;
}

.wn-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}

.wn-brand img {
  width: 24px;
  height: 24px;
}

/* ── HERO ── */
.hero {
  background: var(--hero-grad);
  color: white;
  padding: 64px 32px 56px;
  position: relative;
  overflow: hidden;
}

.hero-back {
  position: absolute;
  top: 20px;
  left: 32px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s, gap 0.15s;
  z-index: 2;
}

.hero-back:hover {
  color: rgba(255, 255, 255, 0.9);
  gap: 8px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--hero-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--hero-badge-bg);
  border: 1px solid var(--hero-badge-border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--hero-badge-fg);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-badge svg {
  opacity: 0.7;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.hero p {
  font-size: 17px;
  color: var(--hero-text);
  max-width: 560px;
  line-height: 1.65;
}

/* ── LAYOUT ── */
.container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── OVERVIEW BOX ── */
.overview {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin: -28px 24px 0;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-lg);
}

.overview h2 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-bottom: 20px;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 560px) {
  .overview-grid {
    grid-template-columns: 1fr;
  }
}

.overview-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--bg);
}

.overview-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.overview-item-text h3 {
  font-size: 14px;
  font-weight: 600;
}

.overview-item-text p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ── PREREQS ── */
.prereqs {
  margin: 40px auto;
  max-width: 780px;
  padding: 0 24px;
}

.prereqs-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow);
}

.prereqs-box h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.prereqs-box > p {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.prereqs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.prereq-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  background: var(--bg);
  border: 1px solid var(--border);
}

.prereq-tag svg {
  color: var(--accent-fg);
}

/* ── WIRE LEGEND ── */
.legend {
  margin: 0 auto 40px;
  max-width: 780px;
  padding: 0 24px;
}

.legend-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 32px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.legend-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  white-space: nowrap;
}

.legend-items {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}

.wire-sample {
  width: 36px;
  height: 6px;
  border-radius: 3px;
}

.wire-black {
  background: var(--ink);
}

.wire-white {
  background: #D4D4D4;
  border: 1px solid #BBB;
}

/* ── STEPS ── */
.steps {
  padding: 0 24px 60px;
  max-width: 780px;
  margin: 0 auto;
}

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px 0;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: white;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'JetBrains Mono', monospace;
}

.step-header h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.step-body {
  padding: 16px 32px 28px;
}

.step-body p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 8px;
}

.step-diagram {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 36px 32px;
  display: flex;
  justify-content: center;
}

.step-diagram svg {
  max-width: 100%;
  height: auto;
}

/* ── CALLOUTS ── */
.callout {
  display: flex;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  line-height: 1.55;
  margin-top: 12px;
}

.callout svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.callout-warn {
  background: var(--warn-tint);
  color: var(--warn-tint-fg);
}

.callout-tip {
  background: var(--success-tint);
  color: var(--success-tint-fg);
}

.callout-info {
  background: var(--accent-tint);
  color: var(--accent-tint-fg);
}

/* ── VERIFICATION ── */
.verification {
  background: var(--surface);
  border: 2px solid var(--success);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.verification h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--success);
  margin-bottom: 14px;
}

.check-list {
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.check-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--success);
}

/* ── DIAGRAM COLOR CODES ── */
.c-meter { fill: var(--meter-teal); }
.c-willie { fill: var(--willie-mint); }
.c-ext { fill: var(--ext-orange); }
.c-dedoubleur { fill: var(--dedoubleur-dark); }

/* ── FOOTER ── */
.footer {
  text-align: center;
  padding: 32px 24px 48px;
  font-size: 13px;
  color: var(--ink-muted);
}

/* ── GLOSSARY ── */
.glossary {
  margin: 0 auto 40px;
  max-width: 780px;
  padding: 0 24px;
}

.glossary-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 32px;
  box-shadow: var(--shadow);
}

.glossary-box h2 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  margin-bottom: 16px;
}

.glossary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}

@media (max-width: 560px) {
  .glossary-grid {
    grid-template-columns: 1fr;
  }
}

.glossary-item {
  font-size: 14px;
  padding: 6px 0;
}

.glossary-item strong {
  font-weight: 600;
  color: var(--ink);
}

.glossary-item span {
  color: var(--ink-soft);
}

/* ── OUTPUT MAP ── */
.output-map {
  margin: 0 auto 40px;
  max-width: 780px;
  padding: 0 24px;
}

.output-map-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 32px;
}

.output-map-box h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.output-map-box > p {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.output-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
}

.output-row:last-child {
  margin-bottom: 0;
}

.output-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: var(--radius-xs);
  white-space: nowrap;
}

.output-arrow {
  color: var(--ink-muted);
  font-size: 18px;
}

.output-target {
  font-size: 15px;
  font-weight: 600;
}

.row-ext {
  background: var(--warn-tint);
}

.row-ext .output-label {
  background: var(--warn-soft);
  color: var(--warn-soft-fg);
}

.row-ext .output-target {
  color: var(--warn);
}

.row-willie {
  background: var(--accent-tint);
}

.row-willie .output-label {
  background: var(--accent-soft);
  color: var(--accent-tint-fg);
}

.row-willie .output-target {
  color: var(--accent-fg);
}

/* ── LANDING PAGE ── */
.guides {
  max-width: 780px;
  margin: -28px auto 80px;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

@media (max-width: 640px) {
  .guides-grid {
    grid-template-columns: 1fr;
  }
}

/* ── INTRO (landing) ── */
.intro {
  margin: -28px auto 48px;
  position: relative;
  z-index: 2;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 28px 32px;
}

.intro p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.intro p + p {
  margin-top: 12px;
}

.intro strong {
  color: var(--ink);
  font-weight: 600;
}

/* ── GUIDES SECTION (per-manufacturer) ── */
.guides-section {
  max-width: 780px;
  margin: 0 auto 48px;
  padding: 0 24px;
  scroll-margin-top: 80px;
}

.guides-section-header {
  margin-bottom: 20px;
}

.guides-section-header h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.guides-section-header p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ── FAQ ── */
.faq {
  margin: 56px auto 64px;
  scroll-margin-top: 80px;
}

.faq h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq summary {
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--ink-muted);
  transition: transform 0.2s;
  flex-shrink: 0;
  line-height: 1;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 4px 24px 18px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.faq-answer p + p {
  margin-top: 8px;
}

.faq-answer a {
  color: var(--accent-fg);
  font-weight: 500;
}

.guide-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.guide-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.guide-card-eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--accent-tint);
  color: var(--accent-tint-fg);
}

.guide-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.guide-card-desc {
  font-size: 14px;
  color: var(--ink-soft);
  flex: 1;
  line-height: 1.55;
}

.guide-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  color: var(--accent-fg);
  font-size: 14px;
  font-weight: 600;
}

/* ── CTA BUTTON (mailto, etc.) ── */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px 20px;
  background: var(--accent);
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: filter 120ms ease;
}
.cta-button:hover {
  filter: brightness(0.92);
}
.cta-button svg {
  flex-shrink: 0;
}

/* ══════════════════ ARTICLE (long-form) ══════════════════ */
/* Used by /articles/* pages. Reading-first layout: narrow column, generous
   line-height, plain hierarchy. No dark hero, no card grids. */

.article {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 24px 64px;
  color: var(--ink);
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 32px;
}
.article-back:hover {
  color: var(--ink);
}

.article-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-fg);
  background: var(--accent-tint);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.article-title {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 16px 0 16px;
  color: var(--ink);
}

.article-dek {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 32px;
}

.article-divider {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 0 0 40px;
}

.article-body {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ink);
}
.article-body > * + * {
  margin-top: 20px;
}
.article-body h2 {
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.005em;
  margin: 56px 0 8px;
  color: var(--ink);
}
.article-body h2:first-child {
  margin-top: 0;
}
.article-body h3 {
  font-size: 18px;
  line-height: 1.35;
  margin: 32px 0 4px;
  color: var(--ink);
}
.article-body p {
  margin: 0;
}
.article-body strong {
  color: var(--ink);
  font-weight: 600;
}
.article-body em {
  color: var(--ink-soft);
}
.article-body ol,
.article-body ul {
  padding-left: 0;
  list-style: none;
}
.article-body ol > li,
.article-body ul > li {
  margin-top: 16px;
}
.article-body ol {
  counter-reset: article-counter;
}
.article-body ol > li {
  counter-increment: article-counter;
  position: relative;
  padding-left: 40px;
}
.article-body ol > li::before {
  content: counter(article-counter);
  position: absolute;
  left: 0;
  top: 2px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-tint);
  color: var(--accent-fg);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  font-feature-settings: 'tnum';
}
.article-body ul > li {
  padding-left: 20px;
  position: relative;
}
.article-body ul > li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink-muted);
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.55;
}
.article-body table th,
.article-body table td {
  text-align: left;
  vertical-align: top;
  padding: 14px 12px;
  border-bottom: 1px solid var(--border);
}
.article-body table th {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  border-bottom: 1px solid var(--border);
}
.article-body table tr:last-child td {
  border-bottom: 0;
}
.article-body table td strong {
  display: block;
  margin-bottom: 4px;
}
.article-body blockquote {
  margin: 0;
  padding: 8px 16px;
  border-left: 3px solid var(--accent);
  color: var(--ink-soft);
  font-style: italic;
}
.article-body blockquote p {
  margin: 0;
}
.article-body a {
  color: var(--link);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-decoration-color: var(--link-underline);
  text-underline-offset: 3px;
  transition: color 0.15s, text-decoration-color 0.15s;
}
.article-body a:hover {
  color: var(--link-hover);
  text-decoration-color: var(--link);
}

.article-footer {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--ink-soft);
}
.article-footer a {
  color: var(--link);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--link-underline);
  text-underline-offset: 3px;
}
.article-footer a:hover {
  color: var(--link-hover);
  text-decoration-color: var(--link);
}

/* ── PROSE LINKS — inline anchors in body copy across non-article pages ── */
.intro a,
.faq-answer a {
  color: var(--link);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-decoration-color: var(--link-underline);
  text-underline-offset: 3px;
  transition: color 0.15s, text-decoration-color 0.15s;
}
.intro a:hover,
.faq-answer a:hover {
  color: var(--link-hover);
  text-decoration-color: var(--link);
}

/* ── PRINT ── */
@media print {
  body { background: white; }
  .wn-nav { display: none; }
  .step,
  .overview,
  .prereqs-box,
  .legend-box,
  .glossary-box,
  .output-map-box,
  .verification {
    box-shadow: none;
    break-inside: avoid;
  }
}
