/* Accumo — international premium */
@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@400;450;500;600;700&display=swap");

:root {
  /* Palette taken from the Accumo wordmark:
     navy #14204A, swoosh orange #EA5A28 into magenta #87175F. */
  --bg: #F7F8FA;
  --bg-elev: #FFFFFF;
  --bg-soft: #EDEFF5;
  --ink: #0D1330;
  --ink-2: #2C3352;
  --muted: #6C7392;
  --line: #E1E5EF;
  --line-2: #C7CDDF;
  --accent: #14204A;
  --accent-2: #24356F;
  --accent-soft: #E7EBF6;
  /* the swoosh. kept as --gold/--gold-soft so every existing rule follows. */
  --gold: #EA5A28;
  --gold-soft: #FCEBE2;
  --magenta: #87175F;
  --danger: #C22E52;
  --ok: #157A5B;
  --shadow: 0 1px 2px rgba(13,19,48,0.05), 0 20px 50px rgba(13,19,48,0.08);
  --shadow-sm: 0 1px 2px rgba(13,19,48,0.06), 0 8px 24px rgba(13,19,48,0.05);
  --r: 14px;
  --r-lg: 22px;
  --max: 1180px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --serif: "Instrument Serif", Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
  font-weight: 450;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; }

.container { width: min(100% - 2.75rem, var(--max)); margin-inline: auto; }
.container-n { width: min(100% - 2.75rem, 720px); margin-inline: auto; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 248, 250, 0.86);
  backdrop-filter: saturate(1.2) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(247, 248, 250, 0.94); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 1rem;
}
.logo {
  display: flex; align-items: center; gap: 0.55rem;
  font-weight: 600; letter-spacing: -0.03em; font-size: 1.2rem;
}
/* The wordmark. ACCUMO is the company; Accu is the agent — the mark keeps
   that distinction from blurring the way the old split text did. */
.logo-mark { height: 24px; width: auto; display: block; }
.footer .logo-mark { height: 21px; }
@media (max-width: 520px) { .logo-mark { height: 20px; } }
.logo em {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  color: var(--accent); font-size: 1.35rem;
}
.logo-tag {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted); margin-left: 0.15rem;
}
.nav-links { display: flex; align-items: center; gap: 0.15rem 1.5rem; }
.nav-links > a:not(.btn) {
  font-size: 0.875rem; font-weight: 500; color: var(--muted);
  transition: color 0.15s;
}
.nav-links > a:not(.btn):hover,
.nav-links > a.active { color: var(--ink); }
.dropdown { position: relative; }
.dropdown-panel {
  display: none; position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%);
  min-width: 280px; padding: 0.6rem;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow);
}
.dropdown:hover .dropdown-panel,
.dropdown:focus-within .dropdown-panel { display: block; }
.dropdown-panel a {
  display: block; padding: 0.7rem 0.85rem; border-radius: 8px;
  font-size: 0.875rem; font-weight: 500; color: var(--ink-2);
}
.dropdown-panel a:hover { background: var(--bg-soft); }
.dropdown-panel a small {
  display: block; font-size: 0.75rem; font-weight: 450;
  color: var(--muted); margin-top: 0.15rem;
}
.menu-btn {
  display: none; border: 1px solid var(--line-2); background: #fff;
  border-radius: 10px; padding: 0.5rem 0.75rem; font-size: 0.85rem;
  font-weight: 500; cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.72rem 1.2rem; border-radius: 999px; font-size: 0.875rem;
  font-weight: 600; border: 1px solid transparent; cursor: pointer;
  transition: transform 0.12s, background 0.15s, border-color 0.15s, color 0.15s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-2); }
.btn-dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-dark:hover { background: #222; }
.btn-ghost {
  background: transparent; color: var(--ink); border-color: var(--line-2);
}
.btn-ghost:hover { background: #fff; border-color: var(--ink); }
.btn-light {
  background: #fff; color: var(--accent); border-color: #fff;
}
.btn-lg { padding: 0.9rem 1.45rem; font-size: 0.92rem; }

/* Hero */
.hero {
  padding: 5.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 85% 10%, rgba(20, 32, 74, 0.09), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(234, 90, 40, 0.07), transparent 50%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: ""; width: 18px; height: 1px; background: var(--accent);
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 3.65rem);
  line-height: 1.08; letter-spacing: -0.02em; font-weight: 400;
  margin-bottom: 1.35rem; color: var(--ink);
}
.hero h1 em { font-style: italic; color: var(--accent); }
.lead {
  font-size: 1.08rem; color: var(--muted); max-width: 34rem;
  line-height: 1.65; margin-bottom: 1.85rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.25rem; }
.trust-row {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem;
  font-size: 0.8rem; color: var(--muted); font-weight: 500;
}
.trust-row span { display: inline-flex; align-items: center; gap: 0.4rem; }
.trust-row span::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent);
}

/* Product mock */
.mock {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow); overflow: hidden;
}
.mock-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 1.15rem; border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #FFFFFF, #F2F4F9);
}
.mock-dots { display: flex; gap: 6px; }
.mock-dots i {
  width: 9px; height: 9px; border-radius: 50%; background: var(--line-2);
}
.mock-title { font-size: 0.75rem; font-weight: 500; color: var(--muted); }
.mock-body { padding: 1.15rem; }
.mock-tabs {
  display: flex; gap: 0.35rem; margin-bottom: 1rem;
  border-bottom: 1px solid var(--line); padding-bottom: 0.65rem;
}
.mock-tabs span {
  font-size: 0.72rem; font-weight: 600; padding: 0.35rem 0.7rem;
  border-radius: 999px; color: var(--muted);
}
.mock-tabs span.on { background: var(--accent-soft); color: var(--accent); }
.mock-row {
  display: grid; grid-template-columns: 1fr auto; gap: 0.75rem;
  align-items: center; padding: 0.8rem 0.9rem; margin-bottom: 0.5rem;
  border: 1px solid var(--line); border-radius: 10px; background: var(--bg);
  font-size: 0.84rem;
}
.mock-row strong { font-weight: 600; color: var(--ink-2); display: block; }
.mock-row small { color: var(--muted); font-size: 0.75rem; }
.pill {
  display: inline-block; vertical-align: middle;
  font-size: 0.68rem; font-weight: 650; letter-spacing: 0.02em;
  padding: 0.28rem 0.55rem; border-radius: 999px; white-space: nowrap;
}
.card-num .pill { margin-left: 0.5rem; }
.pill-ok { background: #E5F3EB; color: var(--ok); }
.pill-warn { background: var(--gold-soft); color: #A33C12; }
.pill-soft { background: var(--bg-soft); color: var(--muted); }
.mock-foot {
  margin-top: 0.85rem; padding: 0.75rem 0.9rem;
  border-radius: 10px; background: var(--accent); color: #fff;
  font-size: 0.8rem; display: flex; justify-content: space-between; gap: 0.5rem;
}
.mock-foot span { opacity: 0.85; }

/* Sections */
section { padding: 5rem 0; }
.section-head { max-width: 40rem; margin-bottom: 2.75rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-label {
  font-size: 0.72rem; font-weight: 650; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem;
}
.section-head h2 {
  font-family: var(--serif); font-size: clamp(1.9rem, 3.2vw, 2.55rem);
  line-height: 1.15; letter-spacing: -0.02em; font-weight: 400;
  margin-bottom: 0.85rem;
}
.section-head p { color: var(--muted); font-size: 1.05rem; line-height: 1.65; }

/* Claim band */
.claim {
  background: var(--accent); color: #fff; border-radius: var(--r-lg);
  padding: 2.5rem 2.75rem; position: relative; overflow: hidden;
}
.claim::after {
  content: ""; position: absolute; right: -40px; top: -40px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.claim p {
  font-family: var(--serif); font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  line-height: 1.35; max-width: 48rem; position: relative;
}
.claim .meta {
  margin-top: 1.25rem; font-size: 0.85rem; opacity: 0.75;
  font-family: var(--font); font-weight: 500;
}

/* Product cards */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.5rem 1.45rem; transition: border-color 0.15s, box-shadow 0.15s;
  height: 100%; display: flex; flex-direction: column;
}
.card:hover { border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.card.featured {
  grid-column: span 1;
  background: linear-gradient(165deg, #fff 0%, var(--accent-soft) 140%);
  border-color: #C5DDD6;
}
.card-num {
  font-size: 0.72rem; font-weight: 650; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 1rem;
}
.card h3 {
  font-size: 1.2rem; font-weight: 650; letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
}
.card p {
  color: var(--muted); font-size: 0.92rem; line-height: 1.55;
  flex: 1; margin-bottom: 1.15rem;
}
.card .who {
  font-size: 0.75rem; font-weight: 600; color: var(--accent);
  margin-bottom: 0.45rem;
}
.card a.more {
  font-size: 0.875rem; font-weight: 600; color: var(--ink);
  display: inline-flex; align-items: center; gap: 0.35rem;
}
.card a.more:hover { color: var(--accent); }
.card a.more::after { content: "→"; transition: transform 0.15s; }
.card a.more:hover::after { transform: translateX(3px); }

/* Accu highlight */
.accu-panel {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem;
  align-items: center; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 2.5rem; box-shadow: var(--shadow-sm);
}
.accu-panel h3 {
  font-family: var(--serif); font-size: 2rem; font-weight: 400;
  margin-bottom: 0.85rem;
}
.accu-list { margin-top: 1.25rem; }
.accu-list li {
  display: flex; gap: 0.75rem; padding: 0.65rem 0;
  border-bottom: 1px solid var(--line); font-size: 0.92rem; color: var(--ink-2);
}
.accu-list li:last-child { border-bottom: 0; }
.accu-list strong { min-width: 7.5rem; color: var(--accent); font-weight: 600; }
.config-box {
  background: var(--bg); border: 1px solid var(--line); border-radius: 12px;
  padding: 1.15rem; font-size: 0.82rem; font-family: ui-monospace, monospace;
  color: var(--ink-2); line-height: 1.7;
}
.config-box .k { color: var(--accent); }
.config-box .c { color: var(--muted); }

/* Dual audience */
.split-aud {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem;
}
.aud {
  border-radius: var(--r-lg); padding: 2.25rem; min-height: 280px;
  display: flex; flex-direction: column;
}
.aud-bank {
  background: var(--ink); color: #fff;
}
.aud-firm {
  background: #fff; border: 1px solid var(--line); color: var(--ink);
}
.aud h3 {
  font-family: var(--serif); font-size: 1.75rem; font-weight: 400;
  margin: 0.5rem 0 0.85rem;
}
.aud p { font-size: 0.95rem; opacity: 0.8; line-height: 1.6; flex: 1; margin-bottom: 1.25rem; }
.aud-bank .btn-light:hover { background: var(--accent-soft); }
.aud-firm .btn-primary { margin-top: auto; }

/* Steps */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  background: #fff;
}
.step {
  padding: 1.5rem 1.35rem; border-right: 1px solid var(--line);
}
.step:last-child { border-right: 0; }
.step .n {
  font-family: var(--serif); font-size: 1.65rem; color: var(--accent);
  margin-bottom: 0.65rem;
}
.step h4 { font-size: 0.95rem; font-weight: 650; margin-bottom: 0.4rem; }
.step p { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }

/* Diff table */
.diff {
  width: 100%; border-collapse: collapse; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  font-size: 0.9rem;
}
.diff th, .diff td {
  text-align: left; padding: 1rem 1.15rem; border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.diff th {
  background: var(--bg-soft); font-size: 0.72rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted); font-weight: 650;
}
.diff tr:last-child td { border-bottom: 0; }
.diff td:first-child { font-weight: 600; color: var(--ink-2); width: 28%; }
.diff .you { color: var(--accent); font-weight: 600; }

/* Compliance calendar — same treatment, narrower first and last columns
   so the middle column carries the sentence. */
.cmp {
  width: 100%; border-collapse: collapse; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  font-size: 0.9rem;
}
.cmp th, .cmp td {
  text-align: left; padding: 0.95rem 1.15rem; border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.cmp th {
  background: var(--bg-soft); font-size: 0.72rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted); font-weight: 650;
}
.cmp tr:last-child td { border-bottom: 0; }
.cmp td:first-child { font-weight: 650; color: var(--ink); white-space: nowrap; width: 15%; }
.cmp td:last-child {
  white-space: nowrap; width: 20%; font-weight: 600; color: var(--accent);
  font-variant-numeric: tabular-nums;
}
/* Tables must scroll inside their own box rather than push the page sideways. */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
@media (max-width: 640px) {
  .cmp { font-size: 0.82rem; min-width: 520px; }
  .cmp th, .cmp td { padding: 0.75rem 0.85rem; }
}

/* Institutions */
.inst-hero {
  background: var(--ink); color: #fff; padding: 4.5rem 0 3.5rem;
}
.inst-hero .eyebrow { color: #A8C4BE; }
.inst-hero .eyebrow::before { background: #A8C4BE; }
.inst-hero h1 {
  font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.1rem);
  font-weight: 400; line-height: 1.12; margin-bottom: 1.15rem;
}
.inst-hero .lead { color: rgba(255,255,255,0.72); max-width: 38rem; }
.badge-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.badge {
  font-size: 0.75rem; font-weight: 600; padding: 0.4rem 0.75rem;
  border-radius: 999px; border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85);
}
.matrix {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px;
  max-width: 280px;
}
.matrix i {
  aspect-ratio: 1; border-radius: 4px; background: #2A4A42;
  font-size: 0; display: block;
}
.matrix i.l { background: #3D7A65; }
.matrix i.m { background: #C4A35A; }
.matrix i.h { background: #C47A4A; }
.matrix i.vh { background: #B85A4A; }
.matrix i.eh { background: #8B3A3A; }

.feature-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.feature {
  padding: 1.35rem; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r);
}
.feature h4 { font-size: 0.98rem; font-weight: 650; margin-bottom: 0.4rem; }
.feature p { font-size: 0.88rem; color: var(--muted); line-height: 1.55; }

/* Page hero light */
.page-hero {
  padding: 4rem 0 2.75rem; border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-family: var(--serif); font-size: clamp(2.1rem, 3.5vw, 2.9rem);
  font-weight: 400; line-height: 1.12; letter-spacing: -0.02em;
  margin-bottom: 0.9rem;
}
.page-hero .lead { margin-bottom: 0; max-width: 38rem; }

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--accent) 0%, #0A1233 100%);
  color: #fff; border-radius: var(--r-lg); padding: 3rem 2.75rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.5rem;
}
.cta h2 {
  font-family: var(--serif); font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 400; margin-bottom: 0.45rem;
}
.cta p { opacity: 0.8; max-width: 28rem; font-size: 0.95rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }

/* Footer */
.footer {
  border-top: 1px solid var(--line); padding: 3.5rem 0 2rem; margin-top: 1rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem;
  margin-bottom: 2.75rem;
}
.footer p { font-size: 0.9rem; color: var(--muted); max-width: 18rem; margin-top: 0.75rem; line-height: 1.55; }
.footer h4 {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); font-weight: 650; margin-bottom: 0.9rem;
}
.footer a {
  display: block; font-size: 0.9rem; color: var(--ink-2); margin-bottom: 0.45rem;
  font-weight: 500;
}
.footer a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 1.35rem; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
  font-size: 0.8rem; color: var(--muted);
}

/* Form */
.form { max-width: 34rem; display: grid; gap: 1rem; }
.form label {
  display: grid; gap: 0.4rem; font-size: 0.85rem; font-weight: 600; color: var(--ink-2);
}
.form input, .form select, .form textarea {
  padding: 0.8rem 0.95rem; border: 1px solid var(--line-2); border-radius: 10px;
  background: #fff; color: var(--ink);
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: 2px solid rgba(20, 32, 74, 0.25); border-color: var(--accent);
}
.form textarea { min-height: 130px; resize: vertical; }
.note { font-size: 0.85rem; color: var(--muted); }

/* Proposal strip — institutional pages */
.proposal-strip {
  background: var(--gold-soft); border: 1px solid #F0D9C9;
  border-radius: var(--r); padding: 1.25rem 1.5rem;
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
  justify-content: space-between; margin-bottom: 2.5rem;
}
.proposal-strip p { font-size: 0.9rem; color: var(--ink-2); max-width: 36rem; }
.proposal-strip strong { color: var(--ink); }

/* List check */
.list-check li {
  position: relative; padding-left: 1.35rem; margin-bottom: 0.7rem;
  color: var(--muted); font-size: 0.95rem;
}
.list-check li::before {
  content: ""; position: absolute; left: 0; top: 0.5rem;
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
}

.panel {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.75rem;
}
.panel h3 {
  font-family: var(--serif); font-size: 1.45rem; font-weight: 400;
  margin-bottom: 1rem;
}

/* Mobile */
@media (max-width: 960px) {
  .hero-grid, .grid-2, .grid-3, .grid-4, .split-aud, .accu-panel,
  .footer-grid, .feature-grid, .steps {
    grid-template-columns: 1fr;
  }
  .steps .step { border-right: 0; border-bottom: 1px solid var(--line); }
  .steps .step:last-child { border-bottom: 0; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 1rem 1.35rem 1.35rem; gap: 0.85rem;
  }
  .dropdown-panel {
    position: static; transform: none; box-shadow: none;
    border: 0; padding: 0.25rem 0 0.25rem 0.75rem; display: block;
    background: transparent; min-width: 0;
  }
  .menu-btn { display: inline-flex; }
  .hero { padding-top: 3.25rem; }
  .claim, .cta, .accu-panel { padding: 1.75rem; }
}

/* Long-form article typography — resources section */
.article { max-width: 40rem; }
.article h1 { font-family: var(--serif); font-size: 2rem; font-weight: 400;
  letter-spacing: -0.02em; margin: 2.5rem 0 1rem; }
.article h2 { font-family: var(--serif); font-size: 1.55rem; font-weight: 400;
  letter-spacing: -0.02em; margin: 2.75rem 0 0.85rem; color: var(--ink); }
.article h3 { font-size: 1.05rem; font-weight: 650; margin: 2rem 0 0.6rem; color: var(--ink); }
.article p { font-size: 1.02rem; line-height: 1.75; color: var(--ink-2); margin-bottom: 1.15rem; }
.article a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.article code { font-size: 0.9em; background: var(--bg-soft); padding: 0.12em 0.4em; border-radius: 5px; }
.article .art-list { margin: 0 0 1.35rem; padding-left: 0; }
.article .art-list li {
  position: relative; padding-left: 1.4rem; margin-bottom: 0.6rem;
  font-size: 1.02rem; line-height: 1.7; color: var(--ink-2);
}
.article .art-list li::before {
  content: ""; position: absolute; left: 0.3rem; top: 0.75em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
}
.article .pull {
  border-left: 3px solid var(--gold); padding: 0.15rem 0 0.15rem 1.25rem;
  margin: 1.75rem 0; font-family: var(--serif); font-size: 1.25rem;
  line-height: 1.55; color: var(--ink);
}
.article .table-wrap { margin: 1.75rem 0; }
.article em { font-style: italic; }
