/* ---------- Tokens ---------- */
:root {
  --bg: #ffffff;
  --bg-soft: #f5f5f3;
  --surface: #ffffff;
  --border: #e6e6e2;
  --border-hi: #111111;
  --ink: #0f0f0f;
  --text: #0f0f0f;
  --muted: #5c5c5c;
  --faint: #8c8c8c;
  --accent: #0f0f0f;
  --ok: #16a34a;           /* green — "available" dot (the only color on the site) */
  --radius: 14px;
  --maxw: 1080px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
.grad { color: var(--ink); }
.hl { color: var(--ink); font-weight: 600; box-shadow: inset 0 -0.5em 0 rgba(15,15,15,0.06); }

main, .nav, .footer { position: relative; z-index: 1; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--maxw); margin: 0 auto; padding: 1.1rem 1.5rem;
}
.nav::after {
  content: ""; position: absolute; left: 1.5rem; right: 1.5rem; bottom: 0;
  height: 1px; background: var(--border);
}
.nav { background: rgba(255,255,255,0.82); backdrop-filter: blur(10px); }
.nav__mark { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 700; letter-spacing: -0.02em; font-size: 1.05rem; }
.nav__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ink); }
.nav__links { display: flex; align-items: center; gap: 1.6rem; }
.nav__links a { color: var(--muted); font-size: 0.92rem; position: relative; transition: color 0.25s ease; }
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -4px; height: 1px;
  background: var(--ink); transition: right 0.3s var(--ease);
}
.nav__links a:not(.nav__cta):hover { color: var(--ink); }
.nav__links a:not(.nav__cta):hover::after { right: 0; }
.nav__cta {
  color: var(--bg) !important; background: var(--ink);
  padding: 0.5rem 1rem; border-radius: 999px;
  transition: transform 0.25s var(--ease), opacity 0.25s ease;
}
.nav__cta:hover { transform: translateY(-1px); opacity: 0.88; }
@media (max-width: 620px) { .nav__links a:not(.nav__cta) { display: none; } }

/* ---------- Layout ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: 6rem 1.5rem; }
.section + .section { border-top: 1px solid var(--border); }
.section__head { margin-bottom: 3rem; }
.section__index {
  font-family: 'JetBrains Mono', monospace; font-size: 0.78rem;
  color: var(--faint); letter-spacing: 0.1em; display: block; margin-bottom: 0.7rem;
}
.section__title { font-size: clamp(1.8rem, 4.8vw, 2.7rem); font-weight: 600; letter-spacing: -0.035em; }
.section__lead { color: var(--muted); margin-top: 0.6rem; max-width: 46ch; font-size: 1.02rem; }

/* ---------- Hero ---------- */
.hero {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(3rem, 9vh, 6rem) 1.5rem 4.5rem;
  display: grid; grid-template-columns: 1.2fr 0.85fr; gap: 2.5rem; align-items: center;
}
.hero__copy { min-width: 0; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: 'JetBrains Mono', monospace; font-size: 0.8rem;
  color: var(--muted); padding: 0.4rem 0.9rem; border: 1px solid var(--border);
  border-radius: 999px; margin-bottom: 1.6rem;
}
.hero__status { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 0 color-mix(in srgb, var(--ok) 60%, transparent); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero__title { font-size: clamp(2.8rem, 9vw, 5.5rem); line-height: 1.0; font-weight: 700; letter-spacing: -0.045em; }
.hero__tagline { margin-top: 1.5rem; color: var(--muted); font-size: clamp(1.05rem, 2.4vw, 1.4rem); max-width: 46ch; line-height: 1.5; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2.4rem; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 2.5rem; margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.hero__stats dt { font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 700; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.hero__stats dt .unit { font-size: 0.5em; color: var(--muted); font-weight: 500; }
.hero__stats dd { color: var(--faint); font-size: 0.85rem; font-family: 'JetBrains Mono', monospace; }

/* Hero portrait */
.hero__portrait { position: relative; display: flex; justify-content: center; align-items: flex-end; }
.hero__portrait img {
  position: relative; z-index: 2; width: 100%; max-width: 25rem; height: auto; display: block;
  -webkit-mask-image: linear-gradient(to bottom, #000 80%, transparent 99%);
  mask-image: linear-gradient(to bottom, #000 80%, transparent 99%);
  filter: drop-shadow(0 18px 38px rgba(0,0,0,0.16));
  animation: floatY 7s var(--ease) infinite alternate;
}
@keyframes floatY { from { transform: translateY(0); } to { transform: translateY(-10px); } }
.hero__portrait-disc {
  position: absolute; z-index: 1; bottom: 6%; left: 50%; transform: translateX(-50%);
  width: 84%; aspect-ratio: 1; border-radius: 50%;
  background: var(--bg-soft); border: 1px solid var(--border);
}
@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; gap: 1rem; }
  .hero__portrait { order: -1; max-width: 17rem; margin-bottom: 0.5rem; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.5rem; border-radius: 999px;
  font-family: inherit; font-size: 0.95rem; font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), translate 0.35s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  will-change: transform, translate;
}
.btn--primary { color: var(--bg); background: var(--ink); }
.btn--primary:hover { transform: translateY(-2px); background: #000; }
.btn--ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--ghost:hover { transform: translateY(-2px); background: var(--ink); color: var(--bg); }
.btn--block { width: 100%; justify-content: center; margin-top: auto; }

/* ---------- Shared tag chips ---------- */
.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tags span {
  font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; color: var(--muted);
  padding: 0.25rem 0.6rem; border: 1px solid var(--border); border-radius: 999px;
  background: var(--bg-soft);
}

/* ---------- Clients strip ---------- */
.clients {
  max-width: var(--maxw); margin: 0 auto; padding: 1.6rem 1.5rem; border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2rem;
}
.clients__label { font-family: 'JetBrains Mono', monospace; font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); }
.clients__list { list-style: none; display: flex; flex-wrap: wrap; gap: 1rem 2.2rem; }
.clients__list li { color: var(--muted); font-weight: 600; font-size: 1.02rem; letter-spacing: -0.01em; transition: color 0.25s ease; }
.clients__list li:hover { color: var(--ink); }

/* ---------- Solutions ---------- */
.solutions { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr)); gap: 1.2rem; }
.solution {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface); padding: 1.6rem;
  transition: transform 0.4s var(--ease), border-color 0.4s ease, box-shadow 0.4s ease;
}
.solution:hover { transform: translateY(-4px); border-color: var(--border-hi); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.solution__icon { display: inline-flex; align-items: center; justify-content: center; width: 2.6rem; height: 2.6rem; border-radius: 10px; font-size: 1.15rem; color: var(--ink); background: var(--bg-soft); border: 1px solid var(--border); margin-bottom: 1rem; }
.solution__title { font-size: 1.15rem; font-weight: 600; letter-spacing: -0.02em; }
.solution__desc { color: var(--muted); margin-top: 0.5rem; font-size: 0.94rem; }

/* ---------- Case studies ---------- */
.work__group { font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); margin: 2.5rem 0 1.2rem; }
.work__group:first-of-type { margin-top: 0; }
.work__cta { margin-top: 2.5rem; color: var(--muted); font-size: 1.02rem; }
.work__cta a { color: var(--ink); font-weight: 600; border-bottom: 1px solid var(--border); padding-bottom: 1px; transition: border-color 0.25s ease; }
.work__cta a:hover { border-color: var(--ink); }
.cases { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); gap: 1.4rem; }
.case {
  position: relative; display: flex; flex-direction: column;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s ease, box-shadow 0.4s ease;
}
.case::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--ink); transform: scaleY(0); transform-origin: top; transition: transform 0.45s var(--ease); }
.case:hover { transform: translateY(-6px); border-color: var(--border-hi); box-shadow: 0 22px 50px rgba(0,0,0,0.1); }
.case:hover::before { transform: scaleY(1); }

.case__body { display: flex; flex-direction: column; flex: 1; padding: 1.7rem 1.7rem 1.6rem; }
/* big index number as the visual anchor */
.case__num {
  display: block; font-size: 2.2rem; font-weight: 700; line-height: 1;
  letter-spacing: -0.03em; font-variant-numeric: tabular-nums;
  color: #dedcd7; margin-bottom: 1rem; transition: color 0.4s ease;
}
.case:hover .case__num { color: var(--ink); }
.case__top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.6rem; margin-bottom: 0.9rem; }
.case__client { font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; color: var(--muted); letter-spacing: 0.02em; }
.case__name { font-size: 1.3rem; font-weight: 600; letter-spacing: -0.025em; }
.case__desc { color: var(--muted); margin-top: 0.55rem; font-size: 0.95rem; flex: 1; }
.case__cta { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.2rem; color: var(--ink); font-weight: 600; font-size: 0.9rem; }
.case__cta span { transition: transform 0.3s var(--ease); display: inline-block; }
.case:hover .case__cta span { transform: translateX(4px); }

/* ---------- Process ---------- */
.process { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr)); gap: 1.4rem; }
.process__step {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface); padding: 1.7rem;
}
.process__num { font-family: 'JetBrains Mono', monospace; font-size: 1.3rem; font-weight: 700; color: var(--ink); }
.process__title { font-size: 1.2rem; font-weight: 600; letter-spacing: -0.02em; margin: 0.6rem 0 0.4rem; }
.process__desc { color: var(--muted); font-size: 0.95rem; }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr)); gap: 1.4rem; }
.price-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface);
  padding: 2.1rem; transition: transform 0.4s var(--ease), border-color 0.4s ease, box-shadow 0.4s ease;
}
.price-card:hover { transform: translateY(-4px); border-color: var(--border-hi); box-shadow: 0 16px 44px rgba(0,0,0,0.09); }
.price-card--main { position: relative; background: var(--bg-soft); border-color: var(--border-hi); }
.price-card--main::after { content: "MOST POPULAR"; position: absolute; top: 1.4rem; right: 1.4rem; font-family: 'JetBrains Mono', monospace; font-size: 0.62rem; letter-spacing: 0.12em; color: var(--ink); border: 1px solid var(--ink); padding: 0.2rem 0.5rem; border-radius: 999px; }
.price-card__label { font-family: 'JetBrains Mono', monospace; font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); }
.price-card__amount { font-size: clamp(2.6rem, 7vw, 3.4rem); font-weight: 700; letter-spacing: -0.04em; margin: 0.5rem 0 0.1rem; line-height: 1; }
.price-card__currency { color: var(--faint); font-size: 0.5em; vertical-align: super; }
.price-card__per { color: var(--faint); font-size: 0.38em; font-weight: 500; }
.price-card__plus {
  font-size: 0.3em; font-weight: 600; color: var(--ink); vertical-align: middle;
  margin-left: 0.6rem; font-family: 'JetBrains Mono', monospace;
  border: 1px solid var(--border-hi); padding: 0.25rem 0.55rem; border-radius: 999px;
  white-space: nowrap;
}
.price-card__note { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.6rem; }
.price-card__features { list-style: none; display: grid; gap: 0.7rem; margin-bottom: 1.9rem; }
.price-card__features li { position: relative; padding-left: 1.6rem; color: var(--muted); font-size: 0.95rem; }
.price-card__features li::before { content: "→"; position: absolute; left: 0; color: var(--ink); }

/* ---------- Quote form ---------- */
.quote-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface); padding: 2rem;
}
.quote-form__hp { position: absolute; left: -9999px; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field--full { grid-column: 1 / -1; }
.field label, .consent span { font-size: 0.88rem; color: var(--muted); }
.field .req { color: var(--ink); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 0.95rem; color: var(--text);
  background: var(--bg); border: 1px solid var(--border); border-radius: 10px;
  padding: 0.7rem 0.85rem; transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(15,15,15,0.08);
}
.field select { appearance: none; cursor: pointer; }
.field textarea { resize: vertical; }
.consent { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: 0.6rem; cursor: pointer; }
.consent input { margin-top: 0.2rem; accent-color: var(--ink); width: 1rem; height: 1rem; flex: none; }
.quote-form__success {
  grid-column: 1 / -1; color: var(--ink); font-weight: 500; text-align: center;
  border: 1px solid var(--border-hi); background: var(--bg-soft);
  border-radius: 10px; padding: 0.9rem 1rem;
}
@media (max-width: 620px) { .quote-form { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0.8rem; max-width: 52rem; }
.faq__item {
  border: 1px solid var(--border); border-radius: 12px;
  background: var(--surface); padding: 0 1.3rem;
  transition: border-color 0.3s ease;
}
.faq__item[open] { border-color: var(--border-hi); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 1.1rem 0; font-weight: 600; font-size: 1.02rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; color: var(--ink); font-size: 1.4rem; line-height: 1; transition: transform 0.3s var(--ease); }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--muted); padding: 0 0 1.2rem; font-size: 0.95rem; margin: 0; }

/* ---------- Footer ---------- */
.footer { max-width: var(--maxw); margin: 0 auto; padding: 2.5rem 1.5rem 3.5rem; border-top: 1px solid var(--border); }
.footer__row { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; }
.footer__copy { color: var(--faint); font-size: 0.88rem; font-family: 'JetBrains Mono', monospace; }
.footer__links { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.footer__links a { color: var(--muted); font-size: 0.9rem; transition: color 0.25s ease; }
.footer__links a:hover { color: var(--ink); }

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 50;
  background: var(--ink); transform: scaleX(0); transform-origin: left;
  will-change: transform;
}

/* ---------- Hero word stagger ---------- */
/* padding gives descenders (e.g. the "g" in Logan) room inside the clip box */
.anim-words { overflow: hidden; padding-bottom: 0.16em; }
.anim-words .w {
  display: inline-block; transform: translateY(110%); opacity: 0;
  transition: transform 0.8s var(--ease), opacity 0.8s var(--ease);
}
.anim-words.is-visible .w { transform: translateY(0); opacity: 1; }

/* ---------- Clients marquee ---------- */
.clients__marquee { flex: 1; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.clients__list { list-style: none; display: flex; flex-wrap: nowrap; gap: 0 2.2rem; width: max-content; }
.clients__list[data-marquee] { animation: marquee 22s linear infinite; }
.clients__marquee:hover .clients__list[data-marquee] { animation-play-state: paused; }
.clients__list li { color: var(--muted); font-weight: 600; font-size: 1.02rem; letter-spacing: -0.01em; white-space: nowrap; transition: color 0.25s ease; }
.clients__list li span { color: var(--faint); margin-right: 2.2rem; }
.clients__list li:hover { color: var(--ink); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .anim-words .w { transform: none; opacity: 1; }
  .clients__list[data-marquee] { animation: none; }
  .scroll-progress { display: none; }
}

/* =================================================================
   Multi-page components (landing pages, blog, articles)
   ================================================================= */

/* Page hero + breadcrumb */
.page-hero { max-width: var(--maxw); margin: 0 auto; padding: clamp(2.5rem, 7vh, 4.5rem) 1.5rem 2.5rem; }
.breadcrumb { font-family: 'JetBrains Mono', monospace; font-size: 0.76rem; color: var(--faint); margin-bottom: 1.2rem; letter-spacing: 0.04em; }
.breadcrumb a { color: var(--muted); } .breadcrumb a:hover { color: var(--ink); }
.breadcrumb span { margin: 0 0.4rem; }
.page-hero__eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); margin-bottom: 0.9rem; }
.page-hero h1 { font-size: clamp(2.1rem, 6vw, 3.5rem); font-weight: 700; letter-spacing: -0.04em; line-height: 1.04; max-width: 20ch; }
.page-hero__lead { color: var(--muted); font-size: clamp(1.05rem, 2.3vw, 1.3rem); margin-top: 1.2rem; max-width: 54ch; line-height: 1.55; }
.page-hero__actions { display: flex; gap: 0.85rem; flex-wrap: wrap; margin-top: 2rem; }

/* Tick / feature lists */
.ticks { list-style: none; display: grid; gap: 0.75rem; }
.ticks li { position: relative; padding-left: 1.7rem; color: var(--muted); }
.ticks li::before { content: "→"; position: absolute; left: 0; color: var(--ink); font-weight: 600; }
.ticks strong { color: var(--ink); font-weight: 600; }

/* Numbered steps */
.steps { list-style: none; display: grid; gap: 1.4rem; counter-reset: step; max-width: 46rem; }
.steps li { position: relative; padding-left: 3rem; }
.steps li::before { counter-increment: step; content: counter(step, decimal-leading-zero); position: absolute; left: 0; top: -0.1rem; font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 1rem; color: var(--ink); }
.steps h3 { font-size: 1.15rem; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 0.3rem; }
.steps p { color: var(--muted); }

/* Two-column split (text + list) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.split h2 { font-size: clamp(1.5rem, 4vw, 2.1rem); font-weight: 600; letter-spacing: -0.03em; }
.split p { color: var(--muted); margin-top: 0.8rem; }
@media (max-width: 760px) { .split { grid-template-columns: 1fr; gap: 1.5rem; } }

/* Dark CTA band */
.cta-band { background: var(--ink); color: var(--bg); }
.cta-band__inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(3rem, 8vh, 5rem) 1.5rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1.1rem; }
.cta-band h2 { font-size: clamp(1.8rem, 5vw, 2.9rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.08; max-width: 22ch; }
.cta-band p { color: #c7c7cf; max-width: 48ch; }
.cta-band .btn--primary { background: #fff; color: var(--ink); }
.cta-band .btn--primary:hover { background: #ededea; }

/* Blog grid */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 20rem), 1fr)); gap: 1.4rem; }
.post-card { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); padding: 1.6rem; transition: transform 0.4s var(--ease), border-color 0.4s ease, box-shadow 0.4s ease; }
.post-card:hover { transform: translateY(-5px); border-color: var(--border-hi); box-shadow: 0 18px 44px rgba(0,0,0,0.09); }
.post-card__cat { font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); }
.post-card__title { font-size: 1.2rem; font-weight: 600; letter-spacing: -0.02em; margin: 0.5rem 0; }
.post-card__excerpt { color: var(--muted); font-size: 0.95rem; flex: 1; }
.post-card__more { margin-top: 1rem; font-weight: 600; font-size: 0.9rem; color: var(--ink); display: inline-flex; gap: 0.4rem; align-items: center; }
.post-card__more span { transition: transform 0.3s var(--ease); display: inline-block; }
.post-card:hover .post-card__more span { transform: translateX(4px); }

/* Article (blog post body) */
.article { max-width: 44rem; margin: 0 auto; padding: 1rem 1.5rem 3.5rem; }
.article__meta { font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; color: var(--faint); margin-bottom: 1.5rem; }
.article__meta span { margin: 0 0.5rem; }
.prose > * + * { margin-top: 1.1rem; }
.prose h2 { font-size: clamp(1.4rem, 3.6vw, 1.95rem); font-weight: 600; letter-spacing: -0.025em; margin-top: 2.6rem; }
.prose h3 { font-size: 1.2rem; font-weight: 600; letter-spacing: -0.02em; margin-top: 1.9rem; }
.prose p, .prose li { color: var(--muted); line-height: 1.75; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose ul, .prose ol { display: grid; gap: 0.6rem; padding-left: 1.3rem; }
.prose a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.prose blockquote { border-left: 3px solid var(--ink); padding-left: 1.1rem; margin-left: 0; color: var(--ink); font-weight: 500; }
.prose .lead { font-size: 1.18rem; color: var(--ink); line-height: 1.6; }
