/* Javix — dark plum ground, heliotrope accent, serif display, cards. */
:root {
  --bg: #0d0b12; --card: #17141d; --card2: #1e1a26; --line: #272132;
  --fg: #f2f0f7; --dim: #94909e; --faint: #6f6b79;
  /* one hue, three lightness steps — no gradients, no glow */
  --acc: #b0a0d8; --acc-bright: #c6b8e6; --acc-solid: #8e79c4;
  --acc-dim: rgba(176, 160, 216, .12);
  --font-display: "Instrument Serif", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  color-scheme: dark;
}
* { margin: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  background: var(--bg); color: var(--fg);
  font: 16px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--acc); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

.wrap { max-width: 1060px; margin: 0 auto; padding: 0 22px; }

/* ---------- nav ---------- */
nav {
  position: sticky; top: 0; z-index: 10;
  background: rgba(13, 11, 18, .68);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  /* the rule is transparent at rest and only draws once content passes
     under it — a hairline over the hero looks like a seam, not a bar */
  border-bottom: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease;
}
nav.scrolled { background: rgba(13, 11, 18, .88); border-bottom-color: var(--line); }
.nav-in { display: flex; align-items: center; gap: 20px; height: 64px; }

.brand { display: flex; align-items: center; gap: 9px; color: var(--fg); }
.brand:hover { text-decoration: none; }
.brand img, .brand svg { width: 26px; height: 26px; border-radius: 7px; display: block; }
/* wordmark matches the hero: same serif, single weight, optical size bump
   because a 400-weight serif needs more px than an 18px bold sans to hold */
.brand span {
  font-family: var(--font-display); font-weight: 400; font-size: 23px;
  letter-spacing: -.01em; line-height: 1;
}

.nav-links { display: flex; gap: 2px; margin-left: auto; align-items: center; }
/* padded hit targets with a hover plate — even optical spacing, and the
   link no longer shifts underline-on-hover */
.nav-links a {
  color: var(--dim); font-size: 14px; font-weight: 500;
  padding: 8px 12px; border-radius: 9px;
  transition: color .15s ease, background-color .15s ease;
}
.nav-links a:hover { color: var(--fg); background: var(--card); text-decoration: none; }
.nav-links a.cta {
  margin-left: 12px; color: var(--bg); background: var(--acc);
  padding: 8px 16px; border-radius: 9px; font-weight: 600;
}
.nav-links a.cta:hover { background: var(--acc-bright); }
.brand:focus-visible, .nav-links a:focus-visible {
  outline: 2px solid var(--acc); outline-offset: 3px; border-radius: 9px;
}
@media (prefers-reduced-motion: reduce) { nav, .nav-links a { transition: none; } }
.icn { fill: none; stroke: var(--acc); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- hero ---------- */
header.hero { text-align: center; padding: clamp(72px, 8vw, 104px) 0 clamp(32px, 4.5vw, 56px); }
.hero .logo {
  width: 108px; height: 108px; margin: 0 auto 22px; border-radius: 26px;
  background: var(--card); display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
}
.hero .logo svg { width: 66px; height: 66px; }
.hero h1 { font-size: clamp(38px, 7vw, 56px); letter-spacing: -.03em; }
.hero .tag { font-size: clamp(17px, 3vw, 21px); color: var(--dim); margin: 10px auto 6px; max-width: 640px; }
.hero .sub { color: var(--faint); font-size: 15px; max-width: 560px; margin: 0 auto; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 13px 22px; border-radius: 13px;
  background: var(--acc); color: var(--bg); font-weight: 600; font-size: 16px;
}
.btn:hover { text-decoration: none; background: var(--acc-bright); }
.btn.ghost { background: var(--card2); color: var(--fg); }
.btn .ct { background: rgba(0, 0, 0, .18); border-radius: 7px; padding: 1px 8px; font-size: 13.5px; font-variant-numeric: tabular-nums; }
.btn.ghost .ct { background: rgba(255, 255, 255, .08); }

/* ---------- sections ---------- */
section { padding: clamp(72px, 8.5vw, 118px) 0 10px; }
.kicker { color: var(--acc); font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; }
h2 { font-size: clamp(26px, 4.5vw, 34px); letter-spacing: -.02em; margin: 10px 0 12px; }
.lead { color: var(--dim); max-width: 680px; margin-bottom: clamp(30px, 3.4vw, 42px); }

/* ---------- feature grid ---------- */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.feat { background: var(--card); border-radius: 16px; padding: 18px; }
.feat .ic {
  width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 19px; margin-bottom: 12px; background: var(--acc-dim);
}
.feat h3 { font-size: 16px; margin-bottom: 4px; }
.feat p { font-size: 13.5px; color: var(--dim); }

/* ---------- screenshots ---------- */
.shots { display: flex; gap: 16px; overflow-x: auto; padding: 8px 2px 18px; scroll-snap-type: x mandatory; }
.shots figure { flex: 0 0 auto; scroll-snap-align: center; text-align: center; }
.shots img {
  width: min(240px, 62vw); height: auto; border-radius: 22px;
  border: 1px solid var(--line); display: block; background: var(--card);
}
.shots figcaption { color: var(--faint); font-size: 13px; margin-top: 8px; }

/* ---------- embedded live demo ---------- */
.demo-wrap { display: flex; justify-content: center; padding: 10px 0 6px; }
.phone {
  width: 384px; max-width: 92vw; height: min(720px, 78vh); border-radius: 42px;
  border: 10px solid var(--card2); overflow: hidden; background: #000;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .55);
}
.phone iframe { width: 100%; height: 100%; border: 0; display: block; }
.demo-note { text-align: center; color: var(--faint); font-size: 13.5px; margin-top: 14px; }

/* ---------- flavors ---------- */
.duo { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 16px; }
.card {
  background: var(--card); border-radius: 18px; padding: 24px; border: 1px solid transparent;
}
.card.hl { border-color: rgba(176, 160, 216, .38); }
.card h3 { font-size: 20px; margin-bottom: 4px; display: flex; gap: 9px; align-items: center; }
.card .for { color: var(--faint); font-size: 13.5px; margin-bottom: 14px; }
.card ul { list-style: none; padding: 0; margin: 0 0 18px; }
.card li { padding: 6px 0 6px 26px; position: relative; font-size: 14.5px; color: var(--dim); }
.card li::before { content: "✓"; position: absolute; left: 2px; color: var(--acc); font-weight: 700; }
.card li.no::before { content: "—"; color: var(--faint); }
.card .btn { width: 100%; justify-content: center; }
.meta { font-size: 12.5px; color: var(--faint); margin-top: 10px; text-align: center; }

/* ---------- story / quote ---------- */
.story {
  background: linear-gradient(160deg, var(--card) 0%, #13101a 100%);
  border-radius: 20px; padding: clamp(24px, 5vw, 44px); margin-top: 6px;
}
.story blockquote { font-size: clamp(18px, 3vw, 23px); line-height: 1.5; letter-spacing: -.01em; max-width: 760px; }
.story blockquote strong { color: var(--acc); font-weight: 600; }
.story .who { color: var(--faint); margin-top: 16px; font-size: 14.5px; }

/* ---------- open source strip ---------- */
.os { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 4px; }
.stat { background: var(--card); border-radius: 14px; padding: 16px 22px; min-width: 130px; }
.stat b { display: block; font-size: 24px; font-variant-numeric: tabular-nums; }
.stat span { color: var(--faint); font-size: 13px; }

/* ---------- docs / prose pages ---------- */
.prose { max-width: 760px; padding: clamp(52px, 5.5vw, 76px) 0 20px; }
.prose h1 { font-size: clamp(30px, 5vw, 40px); letter-spacing: -.02em; margin-bottom: 8px; }
.prose > p.lead { margin-bottom: 34px; }
.prose h2 { font-size: 24px; margin: 44px 0 10px; }
.prose h3 { font-size: 17.5px; margin: 26px 0 8px; }
.prose p, .prose li { color: #c7c7cc; font-size: 15.5px; }
.prose ul, .prose ol { padding-left: 22px; margin: 10px 0; }
.prose li { margin: 5px 0; }
.note {
  background: var(--acc-dim); border-left: 3px solid var(--acc);
  border-radius: 0 10px 10px 0; padding: 12px 16px; margin: 16px 0; font-size: 14.5px;
}
pre {
  background: #0b0910; border: 1px solid var(--line); border-radius: 12px;
  padding: 16px; overflow-x: auto; font-size: 13.5px; line-height: 1.55; margin: 14px 0;
}
code { font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; }
p code, li code { background: var(--card2); border-radius: 6px; padding: 1.5px 6px; font-size: 13.5px; }
.toc { display: flex; gap: 10px; flex-wrap: wrap; margin: 18px 0 6px; }
.toc a { background: var(--card); border-radius: 999px; padding: 7px 15px; font-size: 13.5px; color: var(--dim); }
.toc a:hover { color: var(--fg); text-decoration: none; }

/* ---------- timeline ---------- */
.tl { list-style: none; padding: 0; margin: 26px 0; position: relative; }
.tl::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: var(--line); }
.tl li { position: relative; padding: 0 0 26px 34px; }
.tl li::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 12px; height: 12px;
  border-radius: 50%; background: var(--bg); border: 3px solid var(--acc);
}
.tl b { display: block; font-size: 16.5px; color: var(--fg); }
.tl .when { color: var(--faint); font-size: 13px; }
.tl p { margin-top: 4px; }

/* ---------- footer ---------- */
footer { border-top: 1px solid var(--line); margin-top: clamp(80px, 8.5vw, 116px); padding: 34px 0 52px; }
.foot { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; color: var(--faint); font-size: 14px; }
.foot .links { margin-left: auto; display: flex; gap: 16px; flex-wrap: wrap; }
.foot a { color: var(--dim); }

@media (max-width: 640px) {
  .nav-links { gap: 2px; }
  .nav-links a.hide-s { display: none; }
  .nav-in { gap: 12px; height: 56px; }
  .brand span { font-size: 20px; }
  .nav-links a.cta { margin-left: 6px; padding: 7px 13px; }
  header.hero { padding-top: 56px; }
}

/* ---------- Javix additions — muscle map, activation legend, pricing ---------- */
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 14px; }
.muscle { background: var(--card); border-radius: 16px; padding: 18px 18px 16px; }
.muscle h3 { font-size: 15.5px; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.muscle h3 span { color: var(--faint); font-weight: 500; font-size: 12.5px; margin-left: auto; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chips i {
  font-style: normal; font-size: 12.5px; color: var(--dim);
  background: var(--card2); border-radius: 999px; padding: 4px 11px;
}
.chips i.on { background: var(--acc-dim); color: var(--acc); }

.legend { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 4px; }
.legend span { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--dim); }
.legend b { width: 12px; height: 12px; border-radius: 4px; display: block; }

.price { display: flex; align-items: baseline; gap: 8px; margin: 2px 0 14px; }
.price b { font-size: 34px; letter-spacing: -.02em; }
.price span { color: var(--faint); font-size: 14px; }
.card .group { color: var(--fg); font-size: 13px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; margin: 16px 0 2px; }
.card .group:first-of-type { margin-top: 0; }
.badge { background: var(--acc-dim); color: var(--acc); font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; border-radius: 999px; padding: 3px 9px; }

/* ---------- landing type — a step up from the docs pages, same scale ---------- */
.hero h1 { font-size: clamp(44px, 8.5vw, 72px); font-weight: 800; letter-spacing: -.04em; }
.hero .tag { font-size: clamp(18px, 3.2vw, 24px); max-width: 660px; text-wrap: balance; }
.hero .sub { font-size: 15.5px; }
h2 { font-size: clamp(30px, 5.2vw, 42px); line-height: 1.12; text-wrap: balance; }
.lead { font-size: 16.5px; max-width: 700px; }
.story blockquote { font-size: clamp(20px, 3.4vw, 27px); }

/* ---------- app store / play store badges ---------- */
.stores { display: flex; gap: 13px; flex-wrap: wrap; justify-content: center; margin-top: 30px; }
.stores.left { justify-content: flex-start; }
.store { display: block; border-radius: 9px; line-height: 0; transition: transform .16s ease, filter .16s ease; }
.store:hover { transform: translateY(-2px); filter: brightness(1.25); text-decoration: none; }
.store:focus-visible { outline: 2px solid var(--acc); outline-offset: 4px; }
.store svg { height: 58px; width: auto; display: block; }
.stores.sm .store svg { height: 48px; }
.store-note { color: var(--faint); font-size: 13.5px; margin-top: 16px; text-align: center; }
@media (prefers-reduced-motion: reduce) { .store { transition: none; } .store:hover { transform: none; } }
@media (max-width: 640px) {
  .store svg { height: 50px; }
}

/* ---------- display type: serif headlines over the system sans body ----------
   Instrument Serif has a single 400 weight, so every heading declares it
   explicitly — otherwise the browser fakes a bold and smears the stems. */
h1, h2, .prose h1, .prose h2, .story blockquote {
  font-family: var(--font-display); font-weight: 400; font-synthesis-weight: none;
}
.hero h1 { font-weight: 400; letter-spacing: -.02em; line-height: .92; }
h2 { font-weight: 400; letter-spacing: -.015em; }
.prose h1 { font-weight: 400; letter-spacing: -.015em; }
.prose h2 { font-weight: 400; font-size: 28px; }
.story blockquote { font-weight: 400; letter-spacing: 0; line-height: 1.32; }
.story blockquote strong { font-weight: 400; font-style: italic; color: var(--acc); }

/* ---------- feature cards — title, role, two numbers, tags, corner link ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 14px; }
.fcard {
  position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: 18px; padding: 22px 22px 20px; transition: border-color .16s ease;
}
.fcard:hover { border-color: rgba(176, 160, 216, .38); }
.fcard h3 { font-size: 21px; letter-spacing: -.02em; padding-right: 44px; }
.fcard .role { color: var(--dim); font-size: 14px; margin-top: 3px; }
.fcard .stats { display: flex; gap: 36px; margin: 22px 0 16px; }
.fcard .stats b { display: block; font-size: 26px; font-weight: 700; letter-spacing: -.02em;
  font-variant-numeric: tabular-nums; line-height: 1.1; }
.fcard .stats i { font-style: normal; color: var(--acc); font-size: 15px; vertical-align: super; margin-left: 1px; }
.fcard .stats span { display: block; color: var(--faint); font-size: 12.5px; margin-top: 3px; }
.go {
  position: absolute; top: 18px; right: 18px; width: 34px; height: 34px; border-radius: 50%;
  background: var(--card2); color: var(--dim);
  display: flex; align-items: center; justify-content: center; transition: background .16s ease, color .16s ease;
}
.go.on { background: var(--acc); color: var(--bg); }
.fcard:hover .go, .go:hover { background: var(--acc); color: var(--bg); text-decoration: none; }
.go:focus-visible { outline: 2px solid var(--acc); outline-offset: 3px; }

/* the smaller supporting grids drop their icons and match the same card edge */
.feat { border: 1px solid var(--line); padding: 20px; }
.feat h3 { font-size: 16.5px; margin-bottom: 5px; }
@media (prefers-reduced-motion: reduce) { .fcard, .go { transition: none; } }

/* ---------- exercise animations (cdn.javix.app) ---------- */
/* The clips are 360×360 line-art on transparency, so they sit straight on the ground —
   no plate, no card behind them. */
.demo { display: block; width: 100%; height: auto; }

/* marquee band under the hero */
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent); }
.track { display: flex; width: max-content; gap: 8px; animation: roll 64s linear infinite; }
.track figure { flex: 0 0 auto; width: 132px; }
@keyframes roll { to { transform: translateX(-50%); } }
.marquee:hover .track { animation-play-state: paused; }
.band-note { text-align: center; color: var(--faint); font-size: 13.5px; margin-top: 10px; }

/* one bleeding off the right edge of each feature card */
.fcard.hasanim { overflow: hidden; }
.fcard .cardanim {
  position: absolute; right: -18px; bottom: -14px; width: 168px; height: auto;
  opacity: .5; pointer-events: none; transition: opacity .2s ease, transform .2s ease;
  mask-image: linear-gradient(200deg, transparent 4%, #000 42%);
}
.fcard:hover .cardanim { opacity: .82; transform: scale(1.04); }
.fcard.hasanim h3, .fcard.hasanim .role, .fcard.hasanim .stats, .fcard.hasanim .chips { position: relative; }
.fcard.hasanim .stats { max-width: 74%; }
.fcard.hasanim .chips { max-width: 78%; }

/* the form section's demo tiles */
.demo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; margin-top: 26px; }
.demo-tile { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 8px 8px 0; }
.demo-tile figcaption { padding: 4px 14px 18px; }
.demo-tile b { display: block; font-size: 16px; margin-bottom: 4px; }
.demo-tile figcaption { color: var(--dim); font-size: 13.5px; }

@media (prefers-reduced-motion: reduce) {
  .track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  .fcard:hover .cardanim { transform: none; }
}
@media (max-width: 640px) {
  .track figure { width: 104px; }
  .fcard .cardanim { width: 132px; opacity: .38; }
  .fcard.hasanim .stats, .fcard.hasanim .chips { max-width: 100%; }
}

/* The clips ship on an opaque near-black plate, not transparency — screen blending drops
   the plate and keeps the white line-art and the orange activation on our own ground. */
.demo, .cardanim { mix-blend-mode: screen; }
#band { padding-top: 8px; }
.fcard .cardanim { width: 150px; right: -12px; bottom: -10px; }
.fcard .stats { gap: 26px; }
.fcard .stats span { font-size: 12px; }
.fcard.hasanim .stats, .fcard.hasanim .chips { max-width: 66%; }
.demo-tile { overflow: hidden; }
@media (max-width: 640px) { .fcard.hasanim .stats, .fcard.hasanim .chips { max-width: 100%; } }

/* The clips are flattened onto #151120, with no alpha channel. `lighten` keeps every pixel
   brighter than our surface and drops the plate; the band matches the plate outright. */
.demo, .cardanim { mix-blend-mode: lighten; }
.marquee { background: #151120; border-block: 1px solid var(--line); padding: 6px 0; }
.fcard .cardanim { right: -20px; bottom: -12px; width: 156px; opacity: .62; }
.fcard:hover .cardanim { opacity: .95; }
.fcard.hasanim .stats, .fcard.hasanim .chips { max-width: 62%; }
.demo-tile .demo { border-radius: 12px; }

.split { align-items: start; }
.figure{
  background-color: white !important;
}
/* ---------- demos on white ---------- */
/* The gifs are the originals: dark line-art and salmon activation on a #fdfdfd ground.
   Each one sits on its own white tile and multiplies into it, so the near-white plate
   disappears and the figure keeps its full contrast against the plum page. */
.demo, .cardanim { mix-blend-mode: multiply; }
.marquee { background: none; border-block: 0; padding: 0; }
.track { gap: 12px; }
.track figure {
  width: 128px; background: #fff; border-radius: 16px; padding: 6px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .06);
}
.fcard .cardanim {
  position: static; width: 100%; opacity: 1; mask-image: none; transform: none;
}
.fcard .animtile {
  position: absolute; right: -14px; bottom: -14px; width: 148px; padding: 5px;
  background: #fff; border-radius: 18px; pointer-events: none;
  transition: transform .2s ease; transform: rotate(-3deg);
}
.fcard:hover .animtile { transform: rotate(-3deg) scale(1.05); }
.fcard:hover .cardanim { opacity: 1; transform: none; }
.demo-tile { background: var(--card); padding: 10px 10px 0; }
.demo-tile .demo { background: #fff; border-radius: 12px; padding: 6px; }
@media (prefers-reduced-motion: reduce) { .fcard:hover .animtile { transform: rotate(-3deg); } }
@media (max-width: 640px) {
  .track figure { width: 104px; }
  .fcard .animtile { width: 118px; }
}

/* A blended element cannot carry its own white — multiply would fold it into the dark card.
   The white lives on the wrapper, and the image multiplies against that. */
.demo-tile .demo { background: none; border-radius: 0; padding: 0; }
.plate { display: block; background: #fff; border-radius: 13px; padding: 8px; }

/* second marquee, above the footer — runs the other way so the two don't read as one loop */
.marquee.rev { margin-top: 26px; }
.marquee.rev .track { animation-duration: 78s; animation-direction: reverse; }
#more { padding-bottom: 34px; }

/* ---------- blog ---------- */
.blog-hero { padding-bottom: 6px; }
.blog-hero h1 { font-size: clamp(40px, 7vw, 64px); }
.blog-hero .sub { max-width: 620px; margin-top: 14px; }

.posts { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
.post-card {
  display: flex; flex-direction: column; background: var(--card);
  border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  color: var(--fg); transition: border-color .16s ease, transform .16s ease;
}
.post-card:hover { text-decoration: none; border-color: rgba(176, 160, 216, .38); transform: translateY(-2px); }
.post-card > img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.post-body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.post-card h3 { font-size: 21px; letter-spacing: -.01em; }
.post-excerpt { color: var(--dim); font-size: 14.5px; flex: 1; }
.post-meta { color: var(--faint); font-size: 13px; font-variant-numeric: tabular-nums; }
.post-author { color: var(--dim); font-size: 13.5px; font-weight: 600; }
.post-author span { color: var(--faint); font-weight: 400; }

.post { max-width: 760px; padding: 42px 22px 10px; }
.post h1 { font-size: clamp(34px, 5.6vw, 52px); letter-spacing: -.02em; margin: 10px 0 0; }
.post-lede { color: var(--dim); font-size: 19px; margin-top: 14px; }
.byline { display: flex; align-items: center; gap: 12px; margin: 26px 0 24px; }
.byline img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.byline b { display: block; font-size: 15px; }
.byline span { color: var(--faint); font-size: 13.5px; font-variant-numeric: tabular-nums; }
.post-cover img, .post-fig img { width: 100%; height: auto; border-radius: 16px; border: 1px solid var(--line); display: block; }
.post-cover { margin-bottom: 34px; }
.post-fig { margin: 26px 0; }
.post-fig figcaption { color: var(--faint); font-size: 13px; margin-top: 8px; text-align: center; }
.post .prose { max-width: none; padding: 0; }
.post .prose p { margin: 16px 0; }
.post .prose h2 { font-size: 27px; margin: 40px 0 6px; }
.blog-hero + section { padding-top: 18px; }
