/* ============================================================================
   Vertex — a GEOMETRIC DESIGN blog. Off-white canvas, two bold accents (violet
   + cyan), a repeating hexagon motif, diagonal-cut section edges via clip-path,
   and "cut-corner" cards (one hard diagonal corner clip — never a rounded or
   folded corner). Precise, symmetric, zero blur/gradient. Syne display + Manrope
   body. Article wrapper = .vx-rt. Colours are tokens for per-site variants.
   ========================================================================== */
:root {
  --vx-bg: #f5f6fa;
  --vx-ink: #12182b;
  --vx-ink-2: #454b60;
  --vx-ink-3: #7d8299;
  --vx-violet: #6d3ff2;
  --vx-cyan: #1fd1c4;
  --vx-accent: var(--vx-violet);
  --vx-line: rgba(18,24,43,.13);
  --vx-line-2: rgba(18,24,43,.06);
  --vx-shadow: rgba(18,24,43,.14);
  --vx-display: "Syne", ui-sans-serif, system-ui, sans-serif;
  --vx-body: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --vx-maxw: 1180px;
  --vx-gut: 26px;
  --vx-cut: 22px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; color: var(--vx-ink); background: var(--vx-bg);
  font-family: var(--vx-body); font-size: 17px; line-height: 1.62;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.vx-wrap { max-width: var(--vx-maxw); margin: 0 auto; padding: 0 var(--vx-gut); position: relative; z-index: 1; }

.vx-bg { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.vx-blob { display: none; }

/* placeholder — flat field with a centred hexagon motif */
.vx-ph { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; background: #ece9fb; position: relative; }
.vx-ph svg { width: 40%; height: 40%; opacity: .9; }
.vx-ph.c1, .vx-ph.c4 { background: #ece9fb; }
.vx-ph.c2, .vx-ph.c5 { background: #e2f9f7; }
.vx-ph.c3, .vx-ph.c6 { background: #eef0f8; }

/* cut-corner panel utility (replaces "glass" — opaque, one hard diagonal clip, no blur) */
.vx-glass { background: #fff; border: 1px solid var(--vx-line); box-shadow: none; clip-path: polygon(0 0, calc(100% - var(--vx-cut)) 0, 100% var(--vx-cut), 100% 100%, 0 100%); }

/* ---------- chips, buttons ---------- */
.vx-chip { display: inline-flex; align-items: center; gap: 7px; font-family: var(--vx-body); font-weight: 700; font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; padding: 6px 13px; background: var(--vx-line-2); color: var(--vx-ink-2); }
.vx-chip.accent { background: var(--vx-violet); color: #fff; }
.vx-btn { display: inline-flex; align-items: center; gap: 9px; font-family: var(--vx-display); font-weight: 700; font-size: 15px; padding: 13px 26px; border: none; background: var(--vx-ink); color: #fff; cursor: pointer; clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%); transition: background .16s ease; }
.vx-btn:hover { background: var(--vx-violet); }
.vx-btn.glass { background: transparent; border: 2px solid var(--vx-ink); color: var(--vx-ink); clip-path: none; padding: 11px 24px; }
.vx-btn.glass:hover { background: var(--vx-ink); color: #fff; }
.vx-btn .ar { transition: transform .2s ease; }
.vx-btn:hover .ar { transform: translateX(3px); }

/* ---------- nav ---------- */
.vx-nav-outer { position: sticky; top: 0; z-index: 50; padding: 0 var(--vx-gut); background: rgba(245,246,250,.94); border-bottom: 1px solid var(--vx-line); }
.vx-nav { max-width: var(--vx-maxw); margin: 0 auto; display: flex; align-items: center; gap: 20px; padding: 16px 0; }
.vx-brand { display: flex; align-items: center; gap: 10px; font-family: var(--vx-display); font-weight: 700; font-size: 21px; letter-spacing: -0.01em; color: var(--vx-ink); }
.vx-brand .vx-logo { width: 28px; height: 28px; }
.vx-nav-links { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.vx-nav-links a { font-weight: 700; font-size: 14px; padding: 9px 14px; color: var(--vx-ink-2); transition: color .14s; }
.vx-nav-links a:hover { color: var(--vx-ink); }
.vx-nav-links a.is-active { color: var(--vx-violet); }
.vx-nav-cta { margin-left: 6px; }
.vx-nav .vx-btn { padding: 9px 20px; font-size: 13px; }

/* ---------- shared bits ---------- */
.vx-kicker { display: inline-block; font-family: var(--vx-body); font-weight: 700; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--vx-violet); }
.vx-meta { font-weight: 600; font-size: 13px; color: var(--vx-ink-3); }
.vx-more { font-weight: 700; font-size: 14px; color: var(--vx-violet); display: inline-flex; align-items: center; gap: 8px; }
.vx-more .ar { transition: transform .2s ease; }
.vx-more:hover .ar { transform: translateX(4px); }

/* ---------- section frame ---------- */
.vx-sec { padding: 60px 0; position: relative; }
.vx-sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 30px; }
.vx-sec-head h2 { font-family: var(--vx-display); font-size: clamp(26px, 3.4vw, 40px); font-weight: 700; letter-spacing: -0.01em; margin: 0; line-height: 1.05; }
.vx-sec-head h2 em { font-style: normal; color: var(--vx-violet); }
.vx-sec-head .vx-sub { color: var(--vx-ink-3); font-weight: 500; margin: 8px 0 0; }

/* ---------- hero — symmetric, diagonal-cut background band ---------- */
.vx-hero { padding: 64px 0 0; text-align: center; position: relative; overflow: hidden; }
.vx-hero::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 340px; background: linear-gradient(180deg, #ece9fb, transparent); clip-path: polygon(0 0, 100% 0, 100% 82%, 0 100%); z-index: -1; }
.vx-hero-inner { max-width: 780px; margin: 0 auto; position: relative; }
.vx-hero .vx-chip { margin-bottom: 22px; }
.vx-hero h1 { font-family: var(--vx-display); font-size: clamp(38px, 6vw, 66px); line-height: 1.06; letter-spacing: -0.015em; font-weight: 700; margin: 0; }
.vx-hero h1 em { font-style: normal; color: var(--vx-violet); }
.vx-hero .vx-lead { font-size: clamp(17px, 1.8vw, 19px); color: var(--vx-ink-2); margin: 24px auto 0; max-width: 46ch; line-height: 1.55; }
.vx-hero-cta { margin-top: 32px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.vx-hero-hex { position: absolute; width: 60px; height: 52px; opacity: .5; }
.vx-hero-hex.h1 { top: 10px; left: 4%; }
.vx-hero-hex.h2 { top: 40px; right: 6%; }
@media (max-width: 900px) { .vx-hero-hex { display: none; } }
.vx-hero-card { max-width: 940px; margin: 44px auto 0; padding: 12px; }
.vx-hero-card-in { display: grid; grid-template-columns: 1.1fr .9fr; gap: 4px; overflow: hidden; }
.vx-hero-card-fig { aspect-ratio: 16/11; overflow: hidden; }
.vx-hero-card-fig .vx-ph, .vx-hero-card-fig img { width: 100%; height: 100%; object-fit: cover; }
.vx-hero-card-body { padding: 26px 26px; display: flex; flex-direction: column; justify-content: center; text-align: left; }
.vx-hero-card-body .vx-chip { align-self: flex-start; margin-bottom: 14px; }
.vx-hero-card-body h3 { font-family: var(--vx-display); font-size: clamp(20px, 2.4vw, 27px); font-weight: 700; line-height: 1.16; letter-spacing: -0.01em; margin: 0 0 12px; }
.vx-hero-card-body p { color: var(--vx-ink-2); font-size: 14.5px; margin: 0 0 16px; }
.vx-hero-card-body .vx-meta { margin-top: auto; }
@media (max-width: 760px) { .vx-hero-card-in { grid-template-columns: 1fr; } .vx-hero-card-fig { aspect-ratio: 16/9; } .vx-hero-card-body { text-align: center; } .vx-hero-card-body .vx-chip { align-self: center; } }

/* ---------- featured grid — cut-corner cards ---------- */
.vx-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.vx-card { display: flex; flex-direction: column; overflow: hidden; position: relative; transition: transform .18s ease; }
.vx-card:hover { transform: translateY(-4px); }
.vx-card-fig { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.vx-card-fig .vx-ph, .vx-card-fig img { width: 100%; height: 100%; object-fit: cover; }
.vx-card-fig .vx-chip { position: absolute; top: 0; left: 0; }
.vx-card-body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 9px; flex: 1; border: 1px solid var(--vx-line); border-top: none; }
.vx-card h3 { font-family: var(--vx-display); font-size: 19px; line-height: 1.2; font-weight: 700; letter-spacing: -0.005em; margin: 0; }
.vx-card:hover h3 { color: var(--vx-violet); }
.vx-card .vx-meta { margin-top: auto; }
@media (max-width: 900px) { .vx-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .vx-grid { grid-template-columns: 1fr; } }

/* ---------- collections — hexagon tags ---------- */
.vx-collections { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.vx-coll { display: flex; align-items: center; gap: 16px; padding: 18px 20px; transition: transform .18s ease; }
.vx-coll:hover { transform: translateY(-3px); }
.vx-coll-ic { width: 42px; height: 36px; flex: none; display: grid; place-items: center; clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%); color: #fff; font-weight: 800; font-size: 14px; }
.vx-coll:nth-child(odd) .vx-coll-ic { background: var(--vx-violet); }
.vx-coll:nth-child(even) .vx-coll-ic { background: var(--vx-cyan); }
.vx-coll h4 { font-family: var(--vx-display); font-size: 17px; font-weight: 700; margin: 0; }
.vx-coll > span:last-child { font-size: 13px; color: var(--vx-ink-3); font-weight: 600; margin-left: auto; }
@media (max-width: 820px) { .vx-collections { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .vx-collections { grid-template-columns: 1fr; } }

/* ---------- map ---------- */
.vx-mapwrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: center; }
.vx-mapwrap .vx-intro h2 { font-family: var(--vx-display); font-size: clamp(26px, 3.4vw, 38px); font-weight: 700; letter-spacing: -0.01em; margin: 14px 0 0; line-height: 1.08; }
.vx-mapwrap .vx-intro h2 em { font-style: normal; color: var(--vx-violet); }
.vx-mapwrap .vx-intro p { color: var(--vx-ink-2); margin: 16px 0 0; max-width: 34ch; }
@media (max-width: 860px) { .vx-mapwrap { grid-template-columns: 1fr; gap: 26px; } }

/* ---------- CTA ---------- */
.vx-cta-box { padding: 54px 40px; text-align: center; position: relative; overflow: hidden; background: var(--vx-ink); clip-path: polygon(0 18px, 100% 0, 100% calc(100% - 18px), 0 100%); }
.vx-cta-box h2 { font-family: var(--vx-display); font-size: clamp(28px, 4vw, 46px); font-weight: 700; letter-spacing: -0.01em; margin: 0; line-height: 1.06; color: #fff; }
.vx-cta-box h2 em { font-style: normal; color: var(--vx-cyan); }
.vx-cta-box p { color: #c3c7de; margin: 14px auto 0; max-width: 42ch; font-weight: 500; }
.vx-cta-form { margin: 26px auto 0; display: flex; gap: 12px; max-width: 460px; flex-wrap: wrap; justify-content: center; }
.vx-cta-form input { flex: 1; min-width: 200px; font-family: var(--vx-body); font-size: 15px; padding: 14px 18px; border: 1px solid #3a4160; background: #1c2340; color: #fff; outline: none; }
.vx-cta-form .vx-btn { background: var(--vx-cyan); color: var(--vx-ink); }
.vx-cta-form .vx-btn:hover { background: #fff; }

/* ---------- footer ---------- */
.vx-foot { margin-top: 40px; padding: 20px var(--vx-gut) 40px; position: relative; z-index: 1; }
.vx-foot-in { max-width: var(--vx-maxw); margin: 0 auto; padding: 44px 0 0; border-top: 1px solid var(--vx-line); }
.vx-foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; }
.vx-foot-brand { display: flex; align-items: center; gap: 10px; font-family: var(--vx-display); font-weight: 700; font-size: 22px; color: var(--vx-ink); }
.vx-foot-brand + p { color: var(--vx-ink-3); font-size: 14px; margin: 14px 0 0; max-width: 30ch; font-weight: 500; }
.vx-foot h5 { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--vx-ink-3); margin: 0 0 14px; }
.vx-foot a { display: block; padding: 5px 0; font-size: 14.5px; color: var(--vx-ink-2); font-weight: 600; transition: color .14s; }
.vx-foot a:hover { color: var(--vx-violet); }
.vx-foot-bottom { margin-top: 36px; padding-top: 18px; border-top: 1px solid var(--vx-line-2); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px; color: var(--vx-ink-3); font-weight: 500; }
@media (max-width: 820px) { .vx-foot-top { grid-template-columns: 1fr 1fr; gap: 26px; } }

/* ============================================================
   Single post — universal post layout: TOC (mandatory) + cut-corner reading card
   ============================================================ */
.vx-article { padding-top: 34px; }
.vx-crumb { display: flex; flex-wrap: wrap; gap: 8px; font-weight: 600; font-size: 13px; color: var(--vx-ink-3); }
.vx-crumb a:hover { color: var(--vx-violet); }
.vx-art-head { max-width: 820px; margin: 20px auto 0; text-align: center; }
.vx-art-head h1 { font-family: var(--vx-display); font-size: clamp(30px, 4.6vw, 50px); line-height: 1.1; letter-spacing: -0.01em; font-weight: 700; margin: 16px 0 0; }
.vx-art-head h1 em { font-style: normal; color: var(--vx-violet); }
.vx-art-head .vx-standfirst { font-size: clamp(17px, 1.8vw, 19px); line-height: 1.5; color: var(--vx-ink-2); margin: 20px auto 0; max-width: 56ch; }
.vx-art-meta { margin: 22px 0 0; display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.vx-art-meta .who { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; }
.vx-art-meta .vx-ava { width: 30px; height: 30px; background: var(--vx-violet); clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%); }
.vx-art-meta .sep { color: var(--vx-ink-3); }
.vx-art-fig { margin: 30px 0 0; padding: 0; }
.vx-art-fig .vx-ph, .vx-art-fig img { width: 100%; aspect-ratio: 16/8; object-fit: cover; }

.vx-art-body { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 46px; margin: 44px 0 0; align-items: start; }

/* Table of contents — REQUIRED */
.vx-toc { position: sticky; top: 96px; align-self: start; padding: 20px; }
.vx-toc-h { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--vx-ink-3); margin-bottom: 12px; }
.vx-toc ol { list-style: none; margin: 0; padding: 0; counter-reset: toc; }
.vx-toc li { counter-increment: toc; }
.vx-toc a { display: grid; grid-template-columns: 22px 1fr; gap: 6px; padding: 8px 10px; margin: 2px 0; font-weight: 700; font-size: 13.5px; line-height: 1.3; color: var(--vx-ink-2); transition: color .14s, background .14s; }
.vx-toc a::before { content: counter(toc, decimal-leading-zero); font-size: 11px; color: var(--vx-violet); font-weight: 800; }
.vx-toc a:hover { background: var(--vx-line-2); }
.vx-toc a.is-active { color: #fff; background: var(--vx-violet); }
.vx-toc a.is-active::before { color: #fff; }

/* article richtext (.vx-rt) */
.vx-rt { background: #fff; border: 1px solid var(--vx-line); padding: 34px 40px; font-size: 18px; line-height: 1.78; color: var(--vx-ink); clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%); }
.vx-rt > *:first-child { margin-top: 0; }
.vx-rt p { margin: 0 0 1.25em; color: #262c3f; }
.vx-rt > p:first-of-type { font-size: 20px; color: var(--vx-ink); }
.vx-rt h2 { font-family: var(--vx-display); font-size: 25px; font-weight: 700; letter-spacing: -0.005em; line-height: 1.24; margin: 1.6em 0 .5em; }
.vx-rt h3 { font-family: var(--vx-display); font-size: 19px; font-weight: 700; margin: 1.5em 0 .4em; }
.vx-rt a { color: var(--vx-violet); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
.vx-rt ul, .vx-rt ol { margin: 0 0 1.3em; padding-left: 0; list-style: none; }
.vx-rt ul li, .vx-rt ol li { margin: .5em 0; padding-left: 1.8em; position: relative; color: #262c3f; }
.vx-rt ul li::before { content: ""; position: absolute; left: 0; top: .55em; width: 10px; height: 10px; background: var(--vx-cyan); clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%); }
.vx-rt ol { counter-reset: li; }
.vx-rt ol li { counter-increment: li; }
.vx-rt ol li::before { content: counter(li); position: absolute; left: 0; top: 0; width: 1.4em; height: 1.4em; display: grid; place-items: center; font-family: var(--vx-body); font-weight: 800; font-size: .7em; color: #fff; background: var(--vx-violet); }
.vx-rt blockquote { margin: 1.7em 0; padding: 22px 26px; background: #ece9fb; font-family: var(--vx-display); font-size: 21px; line-height: 1.34; font-weight: 700; font-style: normal; color: var(--vx-ink); clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%); }
.vx-rt blockquote p { margin: 0; }
.vx-rt img { margin: 1.7em 0; }
.vx-rt figure { margin: 1.7em 0; }
.vx-rt figcaption { font-weight: 600; font-size: 13.5px; color: var(--vx-ink-3); margin-top: 10px; text-align: center; }
.vx-rt code { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: .85em; background: var(--vx-line-2); padding: 2px 7px; }
.vx-rt hr { border: 0; height: 2px; background: var(--vx-violet); margin: 2.2em 0; }

.vx-endmark { max-width: 820px; margin: 34px auto 0; display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.vx-share { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.vx-share .lbl { font-weight: 700; font-size: 13px; color: var(--vx-ink-3); }
.vx-share a { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--vx-line); font-weight: 700; font-size: 13px; transition: background .16s ease, color .16s; }
.vx-share a:hover { background: var(--vx-violet); color: #fff; }

.vx-art-body.no-toc { grid-template-columns: minmax(0, 780px); justify-content: center; }
@media (max-width: 880px) { .vx-art-body { grid-template-columns: 1fr; gap: 22px; } .vx-toc { position: static; } .vx-rt { padding: 26px 22px; } }

.vx-related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 820px) { .vx-related { grid-template-columns: 1fr; } }

/* ---------- archive / blog — cut-corner card grid ---------- */
.vx-arch-head { padding: 46px 0 0; text-align: center; }
.vx-arch-head .vx-chip { margin-bottom: 16px; }
.vx-arch-head h1 { font-family: var(--vx-display); font-size: clamp(36px, 5.6vw, 66px); letter-spacing: -0.02em; line-height: 1.02; font-weight: 700; margin: 0; }
.vx-arch-head h1 em { font-style: normal; color: var(--vx-violet); }
.vx-arch-head p { color: var(--vx-ink-2); max-width: 50ch; margin: 18px auto 0; font-size: 18px; }
.vx-filter { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin: 30px 0 4px; }
.vx-filter a { font-weight: 700; font-size: 12.5px; padding: 9px 16px; border: 1px solid var(--vx-line); color: var(--vx-ink-2); transition: color .14s, background .14s; }
.vx-filter a:hover { background: var(--vx-line-2); color: var(--vx-ink); }
.vx-filter a.on { background: var(--vx-ink); color: #fff; border-color: transparent; }
.vx-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 34px; }
@media (max-width: 900px) { .vx-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .vx-blog-grid { grid-template-columns: 1fr; } }

.vx-pagination { display: flex; gap: 8px; justify-content: center; margin: 46px 0 0; flex-wrap: wrap; }
.vx-pagination .page-numbers { min-width: 40px; text-align: center; padding: 10px 14px; border: 1px solid var(--vx-line); font-weight: 700; font-size: 14px; color: var(--vx-ink-2); }
.vx-pagination .page-numbers.current { background: var(--vx-violet); color: #fff; border-color: transparent; }
.vx-pagination a.page-numbers:hover { background: var(--vx-line-2); }
.vx-empty { padding: 60px 0; text-align: center; color: var(--vx-ink-3); font-weight: 600; }

/* ---------- pages ---------- */
.vx-page { padding: 44px 0 20px; }
.vx-page-lead { max-width: 780px; margin: 0 auto; text-align: center; }
.vx-page-lead .vx-chip { margin-bottom: 14px; }
.vx-page-lead h1 { font-family: var(--vx-display); font-size: clamp(30px, 4.6vw, 52px); line-height: 1.1; letter-spacing: -0.01em; font-weight: 700; margin: 0; }
.vx-page-body { max-width: 780px; margin: 30px auto 0; padding: 34px 40px; font-size: 18px; line-height: 1.78; background: #fff; border: 1px solid var(--vx-line); clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%); }
.vx-page-body .blj-lead, .vx-page-body > p:first-child { font-size: 20px; color: var(--vx-ink-2); }
.vx-page-body p { color: #262c3f; margin: 0 0 1.1em; }
.vx-page-body h2 { font-family: var(--vx-display); font-size: 23px; font-weight: 700; letter-spacing: -0.005em; margin: 1.6em 0 .5em; }
.vx-page-body h3 { font-family: var(--vx-display); font-size: 18px; font-weight: 700; margin: 1.4em 0 .4em; }
.vx-page-body ul { padding-left: 0; list-style: none; }
.vx-page-body li { margin: .5em 0; padding-left: 1.7em; position: relative; color: #262c3f; }
.vx-page-body ul li::before { content: ""; position: absolute; left: 0; top: .58em; width: 9px; height: 9px; background: var(--vx-cyan); clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%); }
.vx-page-body a { color: var(--vx-violet); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.vx-page-body strong { font-weight: 700; }
.blj-chips { display: flex; flex-wrap: wrap; gap: 9px; margin: 6px 0 1.4em; }
.blj-chips span { font-weight: 700; font-size: 12px; padding: 8px 15px; background: var(--vx-line-2); }
.blj-info-card { margin: 1.6em 0; padding: 24px; background: #ece9fb; border-left: 3px solid var(--vx-violet); }
.blj-info-card h3 { margin: 0 0 6px; }
.blj-info-card a { font-weight: 700; font-size: 17px; }
.blj-note { color: var(--vx-ink-3); }

/* ---------- The Map ---------- */
.blj-map { padding: 24px; background: #fff; border: 1px solid var(--vx-line); clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%); }
.blj-map-title { font-family: var(--vx-display); font-size: 17px; font-weight: 700; margin: 0 0 14px; }
.blj-map-search { position: relative; margin: 0 0 14px; }
.blj-map-search input { width: 100%; padding: 12px 42px 12px 16px; border: 1px solid var(--vx-line); background: var(--vx-bg); font-family: var(--vx-body); font-size: 14px; color: var(--vx-ink); outline: none; }
.blj-map-search input:focus { border-color: var(--vx-violet); }
.blj-map-search svg { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); color: var(--vx-ink-3); }
.blj-map-list { display: flex; flex-direction: column; gap: 8px; max-height: 440px; overflow: auto; }
.blj-map-dir { display: flex; align-items: center; justify-content: space-between; padding: 13px 16px; background: var(--vx-violet); color: #fff; font-weight: 700; font-size: 14px; }
.blj-map-entry { display: flex; flex-direction: column; gap: 2px; padding: 12px 14px; border: 1px solid var(--vx-line-2); transition: background .16s ease; }
.blj-map-entry:hover { background: var(--vx-line-2); }
.blj-map-anchor { font-family: var(--vx-display); font-weight: 700; font-size: 15px; color: var(--vx-ink); }
.blj-map-anchor:hover { color: var(--vx-violet); }
.blj-map-host { display: inline-flex; align-items: center; gap: 4px; font-weight: 700; font-size: 12.5px; color: var(--vx-violet); }
.blj-map-src { font-size: 12.5px; color: var(--vx-ink-3); font-weight: 500; }
.blj-map-src:hover { color: var(--vx-ink); }
.blj-map-empty { color: var(--vx-ink-3); padding: 16px 4px; font-weight: 600; }

/* ============================================================
   Motion — precise reveal only. Gated on reduced-motion + ?noanim.
   ============================================================ */
.js-reveal .vx-reveal, .js-reveal .vx-sec-head, .js-reveal .vx-card, .js-reveal .vx-coll,
.js-reveal .vx-mapwrap > *, .js-reveal .vx-cta-box, .js-reveal .vx-hero-card,
.js-reveal .vx-arch-head, .js-reveal .vx-filter, .js-reveal .vx-art-head, .js-reveal .vx-art-fig {
  opacity: 0; transform: translateY(14px);
  transition: opacity .45s ease, transform .45s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.js-reveal .is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js-reveal .vx-reveal, .js-reveal .vx-sec-head, .js-reveal .vx-card, .js-reveal .vx-coll,
  .js-reveal .vx-mapwrap > *, .js-reveal .vx-cta-box, .js-reveal .vx-hero-card,
  .js-reveal .vx-arch-head, .js-reveal .vx-filter, .js-reveal .vx-art-head, .js-reveal .vx-art-fig { opacity: 1; transform: none; transition: none; }
  .vx-card:hover, .vx-coll:hover { transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 720px) {
  :root { --vx-gut: 16px; }
  .vx-nav-links { display: none; }
  .vx-sec-head { flex-direction: column; align-items: flex-start; gap: 8px; }
}
