/* 数治网 shuzhi.me 官网简化版 2.0 — Academy 2.0 风格主题 */
/* 配色来自 iDigi Academy v2.0 English：cyan-500 #0ea5e9 / teal-500 #14b8a6 渐变 */

:root {
  --gradient-start: #0ea5e9;
  --gradient-end: #14b8a6;
  --bg-primary: #ffffff;
  --bg-secondary: #fafafb;
  --bg-tertiary: #f4f4f5;
  --text-primary: #131313;
  --text-secondary: #555555;
  --text-tertiary: #888888;
  --surface: #ffffff;
  --surface-border: rgba(0,0,0,0.04);
  --border-color: rgba(0,0,0,0.08);
  --radius: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --radius-2xl: 1.5rem;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 8px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

html.en .lang-zh { display: none !important; }
html:not(.en) .lang-en { display: none !important; }

.gradient-text {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-bg {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
}
.gradient-border {
  border-image: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)) 1;
}

.container-main { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 72px 0; }
@media (min-width: 768px) { .section-padding { padding: 96px 0; } }

.section-header { margin-bottom: 48px; text-align: center; }
.section-header.left { text-align: left; }
.section-header .eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
@media (min-width: 768px) { .section-header h2 { font-size: 36px; } }
.section-header p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.section-header.left p { margin-left: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-lg);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
  border: 0;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: #fff;
  box-shadow: 0 4px 14px rgba(20,184,166,.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(20,184,166,.35); }
.btn-outline {
  background: transparent;
  color: var(--gradient-end);
  border: 1px solid var(--gradient-end);
}
.btn-outline:hover { background: rgba(20,184,166,.08); }
.btn-white {
  background: #fff;
  color: var(--gradient-end);
}
.btn-white:hover { box-shadow: 0 8px 22px rgba(0,0,0,.12); }
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}
.btn-ghost:hover { background: var(--bg-secondary); }

/* Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: 64px;
  transition: all .3s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--surface-border);
}
.navbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar .logo-mark {
  width: 36px; height: 36px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 14px;
}
.navbar .logo-text { font-weight: 700; font-size: 17px; line-height: 1.2; }
.navbar .logo-text small { display: block; font-size: 11px; font-weight: 500; color: var(--text-tertiary); }

.nav-links { display: none; align-items: center; gap: 4px; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gradient-end); }

.nav-actions { display: flex; align-items: center; gap: 8px; }
.lang-btn {
  padding: 7px 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
}
.nav-toggle {
  display: flex;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 64px 0 0 0;
  z-index: 40;
  background: var(--bg-primary);
  padding: 24px 20px;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
}
.mobile-menu a:hover { background: var(--bg-secondary); color: var(--gradient-end); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(14,165,233,.10) 0%, transparent 50%),
              radial-gradient(ellipse at bottom left, rgba(20,184,166,.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.hero .eyebrow { display: inline-block; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.hero h1 { font-size: 34px; font-weight: 800; line-height: 1.15; letter-spacing: -0.03em; margin-bottom: 22px; }
@media (min-width: 768px) { .hero h1 { font-size: 48px; } }
.hero h1 .highlight { background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero h1 .line2 { display: block; font-size: 22px; font-weight: 600; letter-spacing: 0; margin-top: 12px; color: var(--text-secondary); -webkit-text-fill-color: currentColor; background: none; }
.hero .sub { color: var(--text-secondary); font-size: 17px; line-height: 1.75; max-width: 560px; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 40px; }
.hero-stats .num { font-size: 26px; font-weight: 800; background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-stats .label { font-size: 13px; color: var(--text-tertiary); margin-top: 2px; }

.floating-cards { display: none; }
@media (min-width: 1024px) {
  .floating-cards { display: flex; flex-direction: column; gap: 16px; align-items: flex-end; }
}
.floating-card {
  width: 280px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  animation: float 4s ease-in-out infinite;
}
.floating-card:nth-child(2) { animation-delay: .5s; }
.floating-card:nth-child(3) { animation-delay: 1s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.floating-card .head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.floating-card .icon {
  width: 40px; height: 40px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.floating-card h3 { font-size: 15px; font-weight: 700; }
.floating-card .tags { display: flex; flex-wrap: wrap; gap: 6px; }
.floating-card .tag { font-size: 12px; padding: 4px 10px; border-radius: 999px; background: rgba(20,184,166,.1); color: var(--gradient-end); }

/* Cards */
.card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  display: flex; align-items: center; justify-content: center;
  color: #fff; margin-bottom: 20px;
}
.card h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.card h4 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.card p { color: var(--text-secondary); font-size: 14.5px; line-height: 1.7; }
.card .subtitle { color: var(--text-tertiary); font-size: 13px; margin-bottom: 10px; }
.card .link { display: inline-flex; align-items: center; gap: 4px; margin-top: 14px; font-size: 14px; font-weight: 600; color: var(--gradient-end); }

/* Grid helpers */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(1, 1fr); }
.grid-3 { grid-template-columns: repeat(1, 1fr); }
.grid-4 { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* Assessment hexagon */
.hexagon-wrap { display: flex; justify-content: center; align-items: center; }
.hexagon-wrap svg { width: 320px; height: 320px; }
.hex-label { position: absolute; text-align: center; font-size: 12px; }
.hex-label strong { display: block; color: var(--text-primary); font-weight: 700; }
.hex-label span { color: var(--gradient-end); font-weight: 700; }

/* Certification levels */
.level-card { position: relative; }
.level-card .bar {
  height: 5px; border-radius: 999px; margin-bottom: 18px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
}
.level-card .bar.solid-teal { background: var(--gradient-end); }
.level-card .bar.solid-sky { background: var(--gradient-start); }
.level-card .bar.dark { background: #131313; }
.level-card .code { font-size: 22px; font-weight: 800; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; margin-bottom: 6px; }
.level-card .eqf { display: inline-block; font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 999px; background: rgba(20,184,166,.1); color: var(--gradient-end); margin-bottom: 10px; }

.phases { display: grid; gap: 20px; }
@media (min-width: 768px) { .phases { grid-template-columns: repeat(3, 1fr); } }
.phase-card { border: 1px solid var(--surface-border); border-radius: var(--radius-xl); padding: 24px; background: var(--surface); }
.phase-card .head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.phase-card .badge { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; }
.phase-card h4 { font-size: 16px; font-weight: 700; }
.phase-card .step { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: var(--radius); border: 1px solid var(--surface-border); margin-bottom: 8px; font-size: 14px; }
.phase-card .step.active { border-color: var(--gradient-end); background: rgba(20,184,166,.04); }
.phase-card .step .dot { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; color: #fff; background: #d4d4d8; }
.phase-card .step.active .dot { background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); }

/* Skills tabs */
.tabs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 8px; margin-bottom: 24px; }
.tab { padding: 10px 18px; border-radius: 999px; font-size: 14px; font-weight: 600; white-space: nowrap; cursor: pointer; border: 1px solid var(--surface-border); background: var(--surface); color: var(--text-secondary); transition: all .2s; }
.tab.active { background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); color: #fff; border-color: transparent; }
.skill-card { border-top: 4px solid transparent; border-image: linear-gradient(90deg, var(--gradient-start), var(--gradient-end)) 1; }
.skill-card .tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0; }
.skill-card .tag { font-size: 12px; padding: 4px 10px; border-radius: 999px; background: rgba(20,184,166,.1); color: var(--gradient-end); }

/* Path cards */
.path-card { border-left: 4px solid; background: var(--surface); border-radius: 0 var(--radius-xl) var(--radius-xl) 0; }
.path-card .route { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-family: ui-monospace, monospace; font-size: 14px; margin-bottom: 12px; }
.path-card .phases-list { display: flex; flex-direction: column; gap: 10px; margin: 18px 0; }
.path-card .phases-list .item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-secondary); }
.path-card .phases-list .badge { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 12px; font-weight: 700; }

/* CTA banner */
.cta-banner { border-radius: var(--radius-2xl); padding: 60px 40px; text-align: center; color: #fff; background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); }
.cta-banner h2 { font-size: 28px; font-weight: 700; margin-bottom: 12px; }
@media (min-width: 768px) { .cta-banner h2 { font-size: 36px; } }
.cta-banner p { color: rgba(255,255,255,.9); max-width: 640px; margin: 0 auto 28px; font-size: 16px; line-height: 1.7; }
.cta-banner .actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* Tables */
.table-wrap { overflow-x: auto; }
.tbl { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--surface); border: 1px solid var(--surface-border); border-radius: var(--radius-xl); overflow: hidden; font-size: 14.5px; }
.tbl th, .tbl td { padding: 14px 16px; border-bottom: 1px solid var(--surface-border); text-align: left; vertical-align: top; }
.tbl th { background: var(--bg-secondary); color: var(--text-primary); font-weight: 700; }
.tbl tr:last-child td { border-bottom: 0; }

/* FAQ */
.faq-item { background: var(--surface); border: 1px solid var(--surface-border); border-radius: var(--radius-xl); padding: 20px 24px; margin-bottom: 14px; }
.faq-item h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.faq-item p { color: var(--text-secondary); font-size: 14.5px; line-height: 1.7; }

/* Page hero */
.page-hero {
  position: relative;
  padding: 120px 0 64px;
  background: radial-gradient(ellipse at top right, rgba(14,165,233,.10) 0%, transparent 50%),
              radial-gradient(ellipse at bottom left, rgba(20,184,166,.08) 0%, transparent 50%);
}
.page-hero h1 { font-size: 32px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; }
@media (min-width: 768px) { .page-hero h1 { font-size: 40px; } }
.page-hero .sub { color: var(--text-secondary); font-size: 17px; max-width: 720px; }
.page-hero .actions { margin-top: 24px; display: flex; gap: 14px; flex-wrap: wrap; }

/* Feature row with image */
.feature-row { display: grid; gap: 32px; align-items: center; }
@media (min-width: 900px) { .feature-row { grid-template-columns: 1fr 1fr; } }
.feature-row img { border-radius: var(--radius-xl); box-shadow: var(--shadow); object-fit: cover; width: 100%; height: 280px; }

/* Footer */
.site-footer { background: #0c0c0e; color: #a1a1aa; padding: 64px 0 28px; }
.site-footer h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.05em; }
.site-footer a { color: #a1a1aa; font-size: 14px; display: block; padding: 4px 0; transition: color .2s; }
.site-footer a:hover { color: #fff; }
.site-footer .logo-mark { width: 36px; height: 36px; border-radius: var(--radius); background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 14px; }
.site-footer .bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 640px) { .site-footer .bottom { flex-direction: row; justify-content: space-between; } }

/* Forms */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--text-primary); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border-color); border-radius: var(--radius); background: var(--surface); font-size: 15px; color: var(--text-primary); transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--gradient-end); box-shadow: 0 0 0 3px rgba(20,184,166,.12); }
.form-row { display: grid; gap: 18px; }
@media (min-width: 640px) { .form-row { grid-template-columns: repeat(2, 1fr); } }
.contact-grid { display: grid; gap: 40px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-info .item { display: flex; align-items: flex-start; gap: 14px; }
.contact-info .icon { width: 44px; height: 44px; border-radius: var(--radius); background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.contact-info h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.contact-info p { color: var(--text-secondary); font-size: 14px; line-height: 1.6; }

/* Hero AI chat */
.hero-chat-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-2xl);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero-chat-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
}
.hero-chat-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}
.hero-chat-card .hint {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 16px;
}
.hero-chat-form { display: flex; gap: 10px; margin-bottom: 16px; }
.hero-chat-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  font-size: 15px;
  background: var(--bg-primary);
  color: var(--text-primary);
}
.hero-chat-form input:focus { outline: none; border-color: var(--gradient-end); box-shadow: 0 0 0 3px rgba(20,184,166,.12); }
.hero-chat-form button {
  padding: 12px 22px;
  border-radius: var(--radius-lg);
  border: 0;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.hero-chat-answer {
  min-height: 60px;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 16px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-secondary);
  white-space: pre-wrap;
}
.hero-chat-answer.has-content { color: var(--text-primary); }
.hero-chat-meta { margin-top: 8px; font-size: 12px; color: var(--text-tertiary); }

/* 404 */
.hero-404 { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-404 .code { font-size: 120px; font-weight: 800; line-height: 1; background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 12px; }
.hero-404 h1 { font-size: 32px; font-weight: 800; margin-bottom: 12px; }
.hero-404 p { color: var(--text-secondary); margin-bottom: 28px; }

/* Utilities */
.text-center { text-align: center; }
.mt-6 { margin-top: 24px; }
.mb-4 { margin-bottom: 16px; }

/* ===== Visual regression fixes (2026-09-02) ===== */
/* 徽标副标题必须跟随语言态（修复 .logo-text small 覆盖语言显隐规则） */
html.en .navbar .logo-text small.lang-zh { display: none; }
html:not(.en) .navbar .logo-text small.lang-en { display: none; }

/* 小屏：hero 统计条允许换行，避免 min-content 撑爆视口被裁剪 */
/* 小屏：FDE 页宽表格在区块内横向滚动，不再撑破页面 */
@media (max-width: 767px) {
  .hero-stats { flex-wrap: wrap; column-gap: 28px; row-gap: 16px; }
  .fde-page .fde-block { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ===== 终版增补（2026-09-06） ===== */
.hero-notes { margin: 0 0 22px; display: grid; gap: 8px; }
.hero-note { position: relative; padding-left: 14px; font-size: 13.5px; line-height: 1.9; color: var(--text-tertiary); }
.hero-note::before { content: ""; position: absolute; left: 0; top: 5px; bottom: 5px; width: 3px; border-radius: 2px; background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); }
.narr-item { padding: 10px 0; border-bottom: 1px dashed var(--surface-border); }
.narr-item:last-child { border-bottom: 0; }
.narr-item b { font-size: 14.5px; }
.narr-item p { margin: 4px 0 0; font-size: 13.5px; color: var(--text-secondary); }
