:root {
  --ink: #171722;
  --muted: #656475;
  --paper: #fbfaf7;
  --white: #ffffff;
  --line: #dedce7;
  --coral: #ff6b57;
  --coral-dark: #9b2f23;
  --mint: #91e4c8;
  --mint-dark: #165f4c;
  --yellow: #ffd86a;
  --blue: #6b86ff;
  --lavender: #c8b9ff;
  --shadow: 0 18px 45px rgba(36, 30, 67, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* { box-sizing: border-box; min-width: 0; }
html { width: 100%; max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; }
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Trebuchet MS", Candara, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image: linear-gradient(#eceaf1 1px, transparent 1px), linear-gradient(90deg, #eceaf1 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.5;
}
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 200;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
}
.skip-link:focus { top: 12px; }
.wrap { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--coral-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  font-size: 0.8rem;
  font-weight: 750;
}
.kicker::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--coral); }
h1, h2, h3, h4 { margin: 0; line-height: 1.08; letter-spacing: 0; }
h1, h2 { font-family: Baskerville, "Palatino Linotype", Palatino, Georgia, serif; font-weight: 700; }
h1 { font-size: 6.2rem; overflow-wrap: anywhere; }
h2 { font-size: 3.6rem; overflow-wrap: anywhere; }
h3, h4 { overflow-wrap: anywhere; }
h3 { font-size: 1.15rem; }
p { margin: 0; }
.lede { max-width: 720px; color: #4f4e5c; font-size: 1.28rem; line-height: 1.55; }
.section { padding: 92px 0; }
.section-head { display: grid; gap: 14px; margin-bottom: 42px; }
.section-head.row { grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr); align-items: end; }
.section-head.row p { color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(23,23,34,0.12);
  background: rgba(251,250,247,0.94);
  backdrop-filter: blur(16px);
}
.nav-shell { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-size: 1.03rem; font-weight: 850; }
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50% 50% 50% 8px;
  background: var(--coral);
  box-shadow: 3px 3px 0 var(--ink);
  color: white;
  font-family: Georgia, serif;
}
.nav-links { display: flex; align-items: center; gap: 7px; }
.nav-links a { padding: 8px 10px; border-radius: 6px; color: #4d4c58; text-decoration: none; font-size: 0.92rem; font-weight: 700; }
.nav-links a:hover, .nav-links a[aria-current="page"] { background: white; color: var(--ink); }
.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 6px; background: white; cursor: pointer; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { content: ""; display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--ink); }

.button-row { max-width: 100%; display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  max-width: 100%;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 16px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--coral);
  box-shadow: 4px 4px 0 var(--ink);
  color: var(--ink);
  text-decoration: none;
  font-weight: 850;
  text-align: center;
  white-space: normal;
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.button:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.button.secondary { background: var(--white); }
.button.small { min-height: 38px; padding: 7px 12px; font-size: 0.86rem; box-shadow: 3px 3px 0 var(--ink); }

.hero { padding: 72px 0 54px; overflow: hidden; }
.hero-copy { width: 100%; max-width: 100%; display: grid; justify-items: center; gap: 20px; text-align: center; }
.hero-copy > * { min-width: 0; }
.hero-copy > * { animation: settle-in 620ms both; }
.hero-copy > :nth-child(2) { animation-delay: 70ms; }
.hero-copy > :nth-child(3) { animation-delay: 140ms; }
.hero-copy > :nth-child(4) { animation-delay: 210ms; }
.hero-copy > :nth-child(5) { animation-delay: 280ms; }
.hero h1 { max-width: 1000px; }
.hero h1 .ink-swipe { position: relative; display: inline-block; z-index: 0; }
.hero h1 .ink-swipe::after { content: ""; position: absolute; left: -2%; right: -2%; bottom: 8%; height: 22%; z-index: -1; background: var(--yellow); transform: rotate(-1.4deg); }
.hero .lede { margin-inline: auto; }
.proof-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px 36px; margin-top: 4px; color: var(--muted); font-size: 0.88rem; }
.proof-row strong { color: var(--ink); }

.canvas-frame {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 510px;
  margin-top: 54px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background-color: #fdfcff;
  background-image: radial-gradient(#c9c7d1 1.1px, transparent 1.1px);
  background-size: 22px 22px;
  box-shadow: 10px 12px 0 var(--ink), var(--shadow);
  overflow: hidden;
}
.canvas-toolbar { height: 52px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 0 16px; border-bottom: 2px solid var(--ink); background: white; }
.canvas-title { display: flex; align-items: center; gap: 9px; font-size: 0.86rem; font-weight: 800; }
.dot-set { display: flex; gap: 6px; }
.dot-set i { width: 9px; height: 9px; display: block; border: 1px solid var(--ink); border-radius: 50%; }
.dot-set i:nth-child(1) { background: var(--coral); }
.dot-set i:nth-child(2) { background: var(--yellow); }
.dot-set i:nth-child(3) { background: var(--mint); }
.canvas-actions { display: flex; gap: 8px; }
.canvas-actions button { padding: 6px 9px; border: 1px solid var(--line); border-radius: 5px; background: var(--paper); color: var(--ink); cursor: pointer; font-size: 0.75rem; font-weight: 800; }
.map-stage { position: absolute; inset: 54px 0 0; width: 100%; max-width: 100%; overflow: hidden; }
.map-line { position: absolute; height: 3px; background: var(--ink); transform-origin: left center; opacity: 0.82; }
.line-a { width: 29%; left: 49%; top: 49%; transform: rotate(-29deg); }
.line-b { width: 26%; left: 49%; top: 50%; transform: rotate(20deg); }
.line-c { width: 26%; left: 27%; top: 51%; transform: rotate(159deg); }
.line-d { width: 21%; left: 51%; top: 50%; transform: rotate(147deg); }
.map-node {
  position: absolute;
  min-width: 142px;
  padding: 12px 14px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: white;
  box-shadow: 4px 4px 0 rgba(23,23,34,0.95);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: left;
}
.map-node small { display: block; margin-top: 4px; color: #5f5d6d; font-weight: 600; }
.node-core { left: 50%; top: 50%; z-index: 3; transform: translate(-50%,-50%); background: var(--yellow); font-size: 1rem; }
.node-one { left: 9%; top: 20%; background: #f1ebff; }
.node-two { right: 8%; top: 14%; background: #dcf9ef; }
.node-three { right: 6%; bottom: 14%; background: #ffe4df; }
.node-four { left: 11%; bottom: 16%; background: #e5eaff; }
.canvas-note { position: absolute; left: 18px; bottom: 16px; max-width: 230px; padding: 9px 11px; border: 1px solid var(--line); background: white; color: var(--muted); font-size: 0.74rem; }

.tool-strip { border-block: 1px solid var(--line); background: white; }
.tool-list { display: grid; grid-template-columns: repeat(5, 1fr); }
.tool-list a { display: grid; gap: 8px; padding: 22px 18px; border-right: 1px solid var(--line); text-decoration: none; }
.tool-list a:last-child { border-right: 0; }
.tool-list strong { font-size: 0.95rem; }
.tool-list span { color: var(--muted); font-size: 0.78rem; }
.tool-icon { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; background: var(--yellow); font-weight: 900; }
.tool-list a:nth-child(2) .tool-icon { background: var(--mint); }
.tool-list a:nth-child(3) .tool-icon { background: var(--lavender); }
.tool-list a:nth-child(4) .tool-icon { background: #ffd7d0; }
.tool-list a:nth-child(5) .tool-icon { background: #dfe5ff; }

.feature-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.feature-card { position: relative; min-height: 240px; padding: 28px; border: 1px solid var(--line); background: rgba(255,255,255,0.9); overflow: hidden; }
.feature-card:nth-child(1) { grid-column: span 7; }
.feature-card:nth-child(2) { grid-column: span 5; background: var(--mint); }
.feature-card:nth-child(3) { grid-column: span 4; background: #fff3cc; }
.feature-card:nth-child(4) { grid-column: span 8; }
.feature-card p { max-width: 540px; margin-top: 14px; color: #5f5d69; }
.feature-card .count { position: absolute; right: 20px; bottom: 8px; font-family: Georgia, serif; font-size: 5rem; line-height: 1; color: rgba(23,23,34,0.11); }
.branch-list { display: grid; gap: 9px; margin-top: 20px; }
.branch-list span { width: fit-content; padding: 7px 10px; border: 1px solid var(--ink); background: white; font-size: 0.78rem; font-weight: 800; }
.branch-list span:nth-child(2) { margin-left: 38px; }
.branch-list span:nth-child(3) { margin-left: 18px; }

.workflow { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 54px; align-items: start; }
.workflow-sticky { position: sticky; top: 100px; display: grid; gap: 18px; }
.steps { border-top: 1px solid var(--line); }
.step { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.step-num { width: 38px; height: 38px; display: grid; place-items: center; border: 2px solid var(--ink); border-radius: 50%; background: var(--white); font-size: 0.82rem; font-weight: 900; }
.step p { margin-top: 8px; color: var(--muted); }

.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.article-card { min-height: 310px; display: flex; flex-direction: column; border: 1px solid var(--line); background: white; text-decoration: none; overflow: hidden; }
.article-card:hover .article-arrow { transform: translate(4px,-4px); }
.article-visual { min-height: 132px; display: grid; place-items: center; border-bottom: 1px solid var(--line); background: var(--yellow); }
.article-card:nth-child(2n) .article-visual { background: var(--mint); }
.article-card:nth-child(3n) .article-visual { background: var(--lavender); }
.mini-map { position: relative; width: 150px; height: 78px; }
.mini-map i { position: absolute; width: 42px; height: 22px; border: 2px solid var(--ink); border-radius: 5px; background: white; }
.mini-map i:nth-child(1) { left: 53px; top: 28px; background: var(--coral); }
.mini-map i:nth-child(2) { left: 0; top: 0; }
.mini-map i:nth-child(3) { right: 0; bottom: 0; }
.article-body { flex: 1; display: flex; flex-direction: column; gap: 10px; padding: 22px; }
.article-body p { color: var(--muted); font-size: 0.9rem; }
.article-meta { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 16px; color: var(--coral-dark); font-size: 0.76rem; font-weight: 850; text-transform: uppercase; }
.article-arrow { font-size: 1.3rem; transition: transform 150ms ease; }

.cta-band { padding: 44px 0; border-block: 2px solid var(--ink); background: var(--coral); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-inner h2 { max-width: 700px; font-size: 3.3rem; }

.site-footer { padding: 56px 0 30px; background: var(--ink); color: white; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr; gap: 44px; }
.footer-grid p { max-width: 380px; margin-top: 12px; color: #b8b6c4; }
.footer-links { display: grid; align-content: start; gap: 8px; }
.footer-links strong { margin-bottom: 5px; color: var(--yellow); font-size: 0.78rem; text-transform: uppercase; }
.footer-links a { width: fit-content; color: #dcdae3; text-decoration: none; }
.footer-bottom { margin-top: 42px; padding-top: 22px; border-top: 1px solid #373640; color: #9e9ca9; font-size: 0.8rem; }

.page-hero { padding: 72px 0 48px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,0.76); }
.page-hero .wrap { display: grid; gap: 18px; }
.page-hero h1 { max-width: 960px; font-size: 5.2rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; color: var(--muted); font-size: 0.82rem; }
.breadcrumbs a { color: var(--coral-dark); }

.tool-page-grid { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 54px; align-items: start; }
.tool-copy { display: grid; gap: 26px; }
.tool-copy h2 { margin-top: 24px; font-size: 2.9rem; }
.tool-copy h3 { margin-top: 10px; }
.tool-copy p, .tool-copy li { color: #555360; }
.tool-copy ul, .tool-copy ol { margin: 0; padding-left: 22px; }
.tool-copy li + li { margin-top: 8px; }
.tool-demo { position: sticky; top: 98px; padding: 22px; border: 2px solid var(--ink); border-radius: var(--radius); background: white; box-shadow: 7px 7px 0 var(--ink); }
.tool-demo-label { margin-bottom: 14px; font-size: 0.75rem; font-weight: 900; text-transform: uppercase; }
.drop-zone { min-height: 184px; display: grid; place-items: center; padding: 26px; border: 2px dashed #aaa6b6; background: var(--paper); text-align: center; }
.drop-zone strong { display: block; }
.drop-zone span { color: var(--muted); font-size: 0.82rem; }
.demo-branches { display: grid; gap: 8px; margin-top: 16px; }
.demo-branches div { padding: 9px 11px; border-left: 4px solid var(--coral); background: #fff0ed; font-size: 0.82rem; font-weight: 750; }
.demo-branches div:nth-child(2) { border-color: var(--mint-dark); background: #e7faf4; margin-left: 20px; }
.demo-branches div:nth-child(3) { border-color: var(--blue); background: #edf0ff; margin-left: 8px; }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price-card { position: relative; padding: 30px; border: 2px solid var(--ink); background: white; }
.price-card.featured { background: var(--yellow); box-shadow: 8px 8px 0 var(--ink); }
.price { margin: 24px 0 6px; font-family: Georgia, serif; font-size: 3.4rem; line-height: 1; }
.price span { font-family: "Trebuchet MS", Candara, sans-serif; font-size: 0.9rem; }
.price-card ul { margin: 25px 0 0; padding: 22px 0 0; border-top: 1px solid var(--line); list-style: none; }
.price-card li { position: relative; padding-left: 22px; color: #54525e; }
.price-card li + li { margin-top: 8px; }
.price-card li::before { content: "+"; position: absolute; left: 0; color: var(--coral-dark); font-weight: 900; }
.save-tag { position: absolute; right: 16px; top: 16px; padding: 5px 8px; border: 1px solid var(--ink); background: var(--coral); font-size: 0.7rem; font-weight: 900; text-transform: uppercase; }

.faq-list { border-top: 2px solid var(--ink); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 0; border: 0; background: transparent; color: var(--ink); cursor: pointer; text-align: left; font-weight: 850; }
.faq-question span:last-child { font-size: 1.4rem; }
.faq-answer { display: none; max-width: 760px; padding: 0 0 24px; color: var(--muted); }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question span:last-child { transform: rotate(45deg); }

.library-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.library-item { min-height: 176px; display: flex; flex-direction: column; justify-content: space-between; padding: 20px; border: 1px solid var(--line); background: white; text-decoration: none; }
.library-item:nth-child(3n+1) { border-top: 5px solid var(--coral); }
.library-item:nth-child(3n+2) { border-top: 5px solid var(--mint-dark); }
.library-item:nth-child(3n) { border-top: 5px solid var(--blue); }
.library-item p { margin-top: 8px; color: var(--muted); font-size: 0.86rem; }
.library-item span { color: var(--coral-dark); font-size: 0.75rem; font-weight: 850; }

.article-shell { width: min(calc(100% - 40px), 900px); margin: 0 auto; padding: 68px 0 100px; }
.article-header { display: grid; gap: 18px; padding-bottom: 34px; border-bottom: 2px solid var(--ink); }
.article-header h1 { font-size: 4.8rem; }
.article-header .lede { font-size: 1.15rem; }
.article-content { display: grid; gap: 18px; padding-top: 42px; }
.article-content h2 { margin-top: 30px; font-size: 2.55rem; }
.article-content h3 { margin-top: 18px; }
.article-content p, .article-content li { color: #4f4d59; }
.article-content ul, .article-content ol { margin: 0; padding-left: 24px; }
.article-content li + li { margin-top: 8px; }
.article-content blockquote { margin: 18px 0; padding: 20px 24px; border-left: 6px solid var(--coral); background: white; font-family: Georgia, serif; font-size: 1.35rem; }
.article-content table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.article-content th, .article-content td { padding: 12px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.article-content th { background: var(--yellow); }
.article-aside { margin: 30px 0; padding: 22px; border: 2px solid var(--ink); background: #eefbf7; box-shadow: 5px 5px 0 var(--ink); }

.legal { padding: 68px 0 100px; }
.legal .narrow { display: grid; gap: 20px; }
.legal h1 { margin-bottom: 18px; font-size: 4.8rem; }
.legal h2 { margin-top: 28px; font-size: 1.8rem; }
.legal p, .legal li { color: #504f59; }
.legal ul { margin: 0; padding-left: 22px; }

.not-live { padding: 12px 14px; border: 1px solid #e4b23a; background: #fff7d8; color: #644e15; font-size: 0.83rem; }

@media (max-width: 900px) {
  h1 { font-size: 4.5rem; }
  h2 { font-size: 3rem; }
  .page-hero h1 { font-size: 4.2rem; }
  .article-header h1, .legal h1 { font-size: 4rem; }
  .nav-toggle { display: block; }
  .nav-links { position: absolute; left: 20px; right: 20px; top: 61px; display: none; align-items: stretch; flex-direction: column; padding: 12px; border: 1px solid var(--line); background: var(--paper); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 11px 12px; }
  .section-head.row, .workflow, .tool-page-grid { grid-template-columns: 1fr; }
  .workflow-sticky, .tool-demo { position: static; }
  .tool-list { grid-template-columns: repeat(2, 1fr); }
  .tool-list a { border-bottom: 1px solid var(--line); }
  .tool-list a:nth-child(2n) { border-right: 0; }
  .tool-list a:last-child { grid-column: 1 / -1; }
  .feature-card:nth-child(n) { grid-column: span 6; }
  .article-grid, .library-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  h1 { font-size: 2.55rem; line-height: 1.03; }
  h2 { font-size: 2.35rem; }
  .lede { font-size: 1.08rem; }
  .page-hero h1 { font-size: 2.5rem; line-height: 1.04; }
  .tool-copy h2 { font-size: 2.25rem; }
  .article-header h1, .legal h1 { font-size: 2.45rem; line-height: 1.05; }
  .article-content h2 { font-size: 2rem; }
  .cta-inner h2 { font-size: 2.4rem; }
  .wrap, .narrow, .article-shell { width: min(calc(100% - 28px), var(--max)); }
  .hero h1 .ink-swipe { display: inline; }
  .hero h1 .ink-swipe::after { left: 0; right: 0; }
  .hero .button-row { width: 100%; }
  .hero .button { flex: 1 1 100%; width: 100%; }
  .section { padding: 68px 0; }
  .hero { padding-top: 50px; }
  .canvas-frame { min-height: 470px; margin-top: 38px; box-shadow: 3px 4px 0 var(--ink); }
  .canvas-actions button:nth-child(-n+2) { display: none; }
  .map-node { width: 116px; min-width: 0; max-width: calc(50% - 18px); padding: 9px; font-size: 0.7rem; overflow-wrap: anywhere; }
  .node-core { width: 128px; }
  .node-core { left: 51%; top: 46%; }
  .node-one { left: 3%; top: 16%; }
  .node-two { right: 3%; top: 13%; }
  .node-three { right: 2%; bottom: 17%; }
  .node-four { left: 4%; bottom: 18%; }
  .canvas-note { left: 10px; right: 10px; bottom: 8px; max-width: none; }
  .tool-list { grid-template-columns: 1fr; }
  .tool-list a { border-right: 0; }
  .tool-list a:last-child { grid-column: auto; }
  .feature-card:nth-child(n) { grid-column: 1 / -1; }
  .feature-card { min-height: 210px; }
  .article-grid, .library-grid { grid-template-columns: 1fr; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
  .article-content table { display: block; overflow-x: auto; }
}

@media (max-width: 390px) {
  h1 { font-size: 2.35rem; }
  .page-hero h1 { font-size: 2.3rem; }
  .article-header h1, .legal h1 { font-size: 2.25rem; }
  .canvas-toolbar { padding-inline: 10px; }
  .canvas-title { font-size: 0.74rem; }
  .canvas-actions button { padding-inline: 7px; }
  .map-node { width: 106px; max-width: calc(50% - 14px); font-size: 0.66rem; }
  .node-core { width: 118px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

@keyframes settle-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
