/* ------------------------------------------------------------------
   CRC Run Sheet — landing. Same design language as the product:
   paper + ink + pine, editorial serif, mono for anything that is data.
   ------------------------------------------------------------------ */
:root {
  --paper:        #FAF8F4;
  --card:         #FFFFFF;
  --ink:          #1F2A2C;
  --ink-soft:     #5C6B6D;
  --ink-faint:    #8FA0A2;
  --pine:         #0E5F51;
  --pine-deep:    #0A473D;
  --pine-wash:    #EAF3F0;
  --line:         #E5E1D8;
  --open:         #15803D;
  --open-wash:    #EBF7EE;
  --soon:         #B45309;
  --soon-wash:    #FDF3E3;
  --overdue:      #B91C1C;
  --overdue-wash: #FCEDED;
  --done:         #1D4ED8;
  --done-wash:    #EBF0FC;
  --font-d:       'Newsreader', Georgia, serif;
  --font-ui:      'Public Sans', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;
  --max-w:        1120px;
  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-card:  0 1px 2px rgba(31,42,44,0.05), 0 4px 16px rgba(31,42,44,0.05);
  --shadow-pop:   0 2px 4px rgba(31,42,44,0.06), 0 18px 44px rgba(31,42,44,0.10);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-ui);
  background: var(--paper);
  background-image: radial-gradient(circle at 1px 1px, rgba(31,42,44,0.035) 1px, transparent 0);
  background-size: 22px 22px;
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--pine); color: #fff; }
a { color: inherit; }
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

.kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pine);
  font-weight: 500;
}
h1, h2 { font-family: var(--font-d); font-weight: 500; letter-spacing: -0.015em; line-height: 1.08; }
h2 { font-size: clamp(30px, 4.4vw, 44px); }
h2 em, h1 em { font-style: italic; color: var(--pine); }
.section-sub { color: var(--ink-soft); max-width: 58ch; margin-top: 14px; font-size: 16.5px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-ui); font-weight: 600; font-size: 15px;
  padding: 12px 22px; border-radius: 8px; text-decoration: none;
  transition: all 0.18s var(--ease); cursor: pointer; border: 1px solid transparent;
}
.btn-primary { background: var(--pine); color: #fff; }
.btn-primary:hover { background: var(--pine-deep); transform: translateY(-1px); }
.btn-ghost { background: var(--card); color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink-faint); }
.btn-note { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-faint); letter-spacing: 0.02em; }

/* ---------------------------------------------------------- header */
/* body > header, not header: post and index pages have their own <header>s
   (.post-head, .index-head) that must scroll, not stick over the nav. */
body > header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(250,248,244,0.85); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { height: 60px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: baseline; gap: 10px; text-decoration: none; }
.brand-name { font-family: var(--font-d); font-size: 21px; font-weight: 600; color: var(--pine-deep); letter-spacing: -0.01em; }
.brand-tag { font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-faint); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a.nl {
  font-size: 14px; color: var(--ink-soft); text-decoration: none;
  padding: 7px 12px; border-radius: 6px; transition: all 0.15s;
}
.nav-links a.nl:hover { color: var(--ink); background: var(--pine-wash); }
.nav-cta { margin-left: 10px; padding: 8px 16px !important; font-size: 14px !important; }
@media (max-width: 720px) {
  .nav-links a.nl { display: none; }
  .brand-tag { display: none; }
  .brand-name { font-size: 18px; white-space: nowrap; }
}

/* ------------------------------------------------------------ hero */
.hero { padding: 84px 0 30px; }
.hero h1 { font-size: clamp(40px, 6.2vw, 66px); max-width: 17ch; }
.hero-sub { font-size: 18px; color: var(--ink-soft); max-width: 56ch; margin-top: 22px; }
.hero-ctas { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin-top: 32px; }
.price-line {
  display: flex; flex-wrap: wrap; gap: 18px; margin-top: 26px;
  font-family: var(--font-mono); font-size: 12px; color: var(--ink-soft); letter-spacing: 0.02em;
}
.price-line span::before { content: '✓ '; color: var(--pine); font-weight: 600; }

/* staggered load-in */
.up { opacity: 0; transform: translateY(14px); animation: rise 0.7s var(--ease) forwards; }
.d1 { animation-delay: 0.05s; } .d2 { animation-delay: 0.15s; }
.d3 { animation-delay: 0.25s; } .d4 { animation-delay: 0.35s; } .d5 { animation-delay: 0.5s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ---------------------------------------------- hero demo (real UI) */
.demo { margin: 56px 0 0; }
.demo-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-pop); overflow: hidden;
}
.demo-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; border-bottom: 1px solid var(--line); flex-wrap: wrap; gap: 8px;
}
.demo-title { display: flex; align-items: baseline; gap: 12px; }
.demo-title .t { font-family: var(--font-d); font-size: 20px; font-weight: 500; }
.demo-date { font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-faint); }
.bucket { padding: 12px 20px 4px; }
.bucket-label { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 4px; }
.bucket-label .dot { width: 7px; height: 7px; border-radius: 50%; }
.b-overdue .bucket-label { color: var(--overdue); } .b-overdue .dot { background: var(--overdue); }
.b-open .bucket-label { color: var(--open); } .b-open .dot { background: var(--open); }
.b-soon .bucket-label { color: var(--soon); } .b-soon .dot { background: var(--soon); }
.vrow {
  display: grid; grid-template-columns: 84px 1fr 210px 110px; gap: 16px; align-items: center;
  padding: 9px 0; border-top: 1px dashed var(--line); font-size: 13.5px;
}
.vrow:first-of-type { border-top: 0; }
.vrow .subj { font-family: var(--font-mono); font-size: 12.5px; font-weight: 500; }
.vrow .visit { color: var(--ink); }
.vrow .visit small { display: block; color: var(--ink-faint); font-size: 11.5px; }
.pill {
  justify-self: start; font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 9px; border-radius: 99px;
}
.pill-overdue { color: var(--overdue); background: var(--overdue-wash); }
.pill-open { color: var(--open); background: var(--open-wash); }
.pill-soon { color: var(--soon); background: var(--soon-wash); }
/* window bar */
.wbar { position: relative; height: 22px; }
.wbar .track { position: absolute; inset: 9px 0 auto 0; height: 4px; border-radius: 4px; background: var(--line); }
.wbar .win { position: absolute; top: 9px; height: 4px; border-radius: 4px; }
.wbar .today { position: absolute; top: 3px; width: 2px; height: 16px; background: var(--ink); border-radius: 2px; }
.wbar .dates {
  position: absolute; top: -8px; width: 100%; display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 9.5px; color: var(--ink-faint);
}
.w-overdue .win { background: var(--overdue); opacity: 0.85; }
.w-open .win { background: var(--open); opacity: 0.85; }
.w-soon .win { background: var(--soon); opacity: 0.75; }
.demo-foot {
  padding: 10px 20px 14px; border-top: 1px solid var(--line); margin-top: 10px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-family: var(--font-mono); font-size: 10.5px; color: var(--ink-faint); letter-spacing: 0.04em;
}
@media (max-width: 700px) {
  .vrow { grid-template-columns: 70px 1fr 96px; }
  .wbar { display: none; }
}
/* run-sheet mockup */
.rs-study { font-family: var(--font-mono); font-size: 11px; color: var(--ink-faint); }
.rs-window {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 16px; align-items: center;
  padding: 12px 20px 6px; font-size: 13px;
}
.rs-window-label { font-family: var(--font-mono); font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-faint); }
.rs-go {
  display: flex; align-items: center; gap: 8px; margin: 6px 20px 4px; padding: 7px 12px;
  border-radius: 8px; background: var(--open-wash); color: var(--open);
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
}
.rs-go .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--open); }
.rs-list { padding: 6px 20px 4px; }
.proc {
  display: grid; grid-template-columns: 22px 1fr auto; gap: 12px; align-items: center;
  padding: 9px 0; border-top: 1px dashed var(--line); font-size: 13.5px;
}
.proc:first-child { border-top: 0; }
.proc .box {
  width: 18px; height: 18px; border-radius: 5px; border: 1.5px solid var(--ink-faint);
  display: inline-flex; align-items: center; justify-content: center; font-size: 11px; color: #fff;
}
.proc.done .box { background: var(--done); border-color: var(--done); }
.proc.done .name { color: var(--ink-faint); text-decoration: line-through; text-decoration-color: var(--line); }
.proc.open .box { border-color: var(--pine); border-width: 2px; }
.proc .name { color: var(--ink); }
.proc .who { font-family: var(--font-mono); font-size: 11px; color: var(--ink-soft); white-space: nowrap; }
.chip {
  display: inline-block; vertical-align: 1px; margin-left: 4px; padding: 1px 6px; border-radius: 4px;
  border: 1px solid; font-family: var(--font-mono); font-size: 9px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em; line-height: 1.5;
}
.chip-site { color: var(--pine); border-color: rgba(14,95,81,0.4); background: var(--pine-wash); }
.chip-proto { color: var(--ink-soft); border-color: var(--line); background: var(--paper); }
.chip-doc { color: var(--ink-soft); border-color: var(--line); background: var(--paper); }
.chip-mask { color: var(--soon); border-color: rgba(180,83,9,0.4); background: var(--soon-wash); }
.chip-ok { color: var(--open); border-color: transparent; background: var(--open-wash); margin-left: 0; margin-right: 4px; border-radius: 99px; }
.rs-detail {
  margin: 0 0 6px 34px; padding: 12px 16px; border-radius: 10px; border: 1px solid var(--line);
  background: var(--paper); display: grid; grid-template-columns: 1fr; gap: 10px; font-size: 13px;
}
.rs-detail .layer .lbl { display: block; font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-faint); margin-bottom: 3px; }
.rs-detail ol { margin: 0; padding-left: 18px; display: grid; gap: 4px; }
.rs-detail ol .chip { margin-left: 0; margin-right: 4px; }
.rs-detail p { margin: 0; color: var(--ink); }
@media (max-width: 700px) {
  .rs-window { grid-template-columns: 64px auto; }
  .proc { grid-template-columns: 22px 1fr; }
  .proc .who { grid-column: 2; white-space: normal; }
  .rs-detail { margin-left: 0; }
}

/* -------------------------------------------------------- sections */
section { padding: 88px 0; }
.rule-top { border-top: 1px solid var(--line); }

/* problem */
.prob-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
@media (max-width: 860px) { .prob-grid { grid-template-columns: 1fr; } }
.prob {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 26px 24px; box-shadow: var(--shadow-card);
}
.prob .n { font-family: var(--font-d); font-style: italic; font-size: 30px; color: var(--pine); }
.prob h3 { font-size: 16px; font-weight: 600; margin: 10px 0 8px; }
.prob p { font-size: 14px; color: var(--ink-soft); }

/* how it works */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step {
  counter-increment: step; position: relative;
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 30px 24px 26px; box-shadow: var(--shadow-card);
}
.step::before {
  content: '0' counter(step);
  font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  color: var(--pine); background: var(--pine-wash);
  padding: 4px 10px; border-radius: 99px;
}
.step h3 { font-family: var(--font-d); font-size: 22px; font-weight: 500; margin: 16px 0 8px; }
.step p { font-size: 14.5px; color: var(--ink-soft); }
.step .mono-note { font-family: var(--font-mono); font-size: 11px; color: var(--ink-faint); margin-top: 14px; display: block; }

/* features */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
@media (max-width: 960px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .feat-grid { grid-template-columns: 1fr; } }
.feat {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 24px 22px; box-shadow: var(--shadow-card);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.feat:hover { transform: translateY(-3px); box-shadow: var(--shadow-pop); }
.feat .glyph { font-family: var(--font-mono); font-size: 13px; color: var(--pine); font-weight: 600; }
.feat h3 { font-size: 15.5px; font-weight: 600; margin: 10px 0 6px; }
.feat p { font-size: 13.5px; color: var(--ink-soft); }

/* trust / no-PHI */
.trust {
  background: var(--pine-deep); color: #F2F7F5; border-radius: 18px;
  padding: 64px 56px; position: relative; overflow: hidden;
}
.trust::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
  background-size: 22px 22px; pointer-events: none;
}
@media (max-width: 720px) { .trust { padding: 44px 28px; } }
.trust .kicker { color: #8FD0C2; }
.trust h2 { color: #fff; }
.trust h2 em { color: #8FD0C2; }
.trust p.lead { color: #C4D9D2; max-width: 62ch; margin-top: 16px; font-size: 16.5px; }
.trust-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 40px; position: relative; }
@media (max-width: 860px) { .trust-cols { grid-template-columns: 1fr; } }
.trust-cols h3 { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 6px; }
.trust-cols p { font-size: 13.5px; color: #A9C6BE; }
.trust-cols .tc { border-top: 1px solid rgba(255,255,255,0.14); padding-top: 18px; }

/* pricing */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 44px; align-items: stretch; }
@media (max-width: 960px) { .price-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; } }
.price-card {
  display: flex; flex-direction: column; background: var(--card);
  border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-pop);
  padding: 36px 28px 28px; text-align: center; position: relative;
}
.price-card.featured { border-color: var(--pine); }
.price-card .tier { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pine); margin-bottom: 14px; }
.price-card .amount { font-family: var(--font-d); font-size: 60px; font-weight: 500; line-height: 1; color: var(--ink); }
.price-card .amount sup { font-size: 24px; top: -0.9em; }
.price-card .per { font-family: var(--font-mono); font-size: 12px; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 8px; }
.price-card ul { list-style: none; margin: 22px 0 24px; text-align: left; flex: 1; }
.price-card li { font-size: 14px; color: var(--ink-soft); padding: 7px 0; border-top: 1px dashed var(--line); }
.price-card li:first-child { border-top: 0; }
.price-card li::before { content: '\2713'; color: var(--pine); font-weight: 700; margin-right: 10px; }
.card-flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%); white-space: nowrap;
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; background: var(--pine); color: #fff; padding: 5px 14px; border-radius: 99px;
}

/* roadmap */
.modules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 44px; }
@media (max-width: 960px) { .modules { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .modules { grid-template-columns: 1fr; } }
.mod {
  border: 1px dashed var(--line); border-radius: 12px; padding: 20px;
  background: rgba(255,255,255,0.5);
}
.mod.live { border: 1px solid var(--pine); background: var(--card); box-shadow: var(--shadow-card); }
.mod .status { font-family: var(--font-mono); font-size: 9.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 3px 9px; border-radius: 99px; }
.mod.live .status { color: #fff; background: var(--pine); }
.mod:not(.live) .status { color: var(--ink-faint); background: var(--paper); border: 1px solid var(--line); }
.mod h3 { font-size: 15px; font-weight: 600; margin: 12px 0 5px; }
.mod p { font-size: 13px; color: var(--ink-soft); }

/* module waitlist — one input, one verb, nothing else */
.wl { display: flex; gap: 6px; margin-top: 14px; }
.wl input {
  flex: 1; min-width: 0; font-family: var(--font-mono); font-size: 12px;
  color: var(--ink); background: var(--paper); border: 1px solid var(--line);
  border-radius: 8px; padding: 7px 10px; outline: none;
}
.wl input:focus { border-color: var(--pine); }
.wl input::placeholder { color: var(--ink-faint); }
.wl button {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.04em; color: var(--pine-deep); background: var(--pine-wash);
  border: 1px solid var(--line); border-radius: 8px; padding: 7px 12px;
  cursor: pointer; white-space: nowrap; transition: border-color 0.2s var(--ease);
}
.wl button:hover { border-color: var(--pine); }
.wl button:disabled { opacity: 0.6; cursor: default; }
.wl-done { font-family: var(--font-mono); font-size: 12px; color: var(--pine); margin-top: 14px; display: block; }
.wl.wl-err input { border-color: #B4552D; }

/* final CTA */
.cta-final { text-align: center; padding: 100px 0 110px; }
.cta-final h2 { font-size: clamp(34px, 5vw, 54px); }
.cta-final .btn { margin-top: 34px; }

/* footer */
footer { border-top: 1px solid var(--line); padding: 34px 0 44px; }
.foot { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; font-size: 12.5px; color: var(--ink-faint); }
.foot a { color: var(--ink-soft); }
.foot .legal { max-width: 62ch; }

/* scroll reveal */
.rv { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .up, .rv { opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important; }
}

/* ------------------------------------------------------------------
   Blog, templates, and free pages (generated by build.mjs)
   ------------------------------------------------------------------ */
.page { padding: 56px 0 72px; }
.page .wrap { max-width: 760px; }
.crumbs { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 22px; }
.crumbs a { color: var(--ink-soft); text-decoration: none; }
.crumbs a:hover { color: var(--pine); }
.post-head { margin-bottom: 34px; }
.post-head h1 { font-size: clamp(32px, 5vw, 46px); margin: 10px 0 14px; }
.post-head .dek { font-family: var(--font-d); font-size: 20px; line-height: 1.45; color: var(--ink-soft); }
.post-meta { font-family: var(--font-mono); font-size: 12px; color: var(--ink-faint); letter-spacing: 0.03em; margin-top: 16px; }
.post-meta a { color: var(--ink-soft); text-decoration: none; }
.prose { font-size: 17px; line-height: 1.7; color: var(--ink); }
.prose > * + * { margin-top: 1.1em; }
.prose h2, .prose h3 { font-family: var(--font-d); font-weight: 500; letter-spacing: -0.01em; line-height: 1.2; }
.prose h2 { font-size: 28px; margin-top: 2em; }
.prose h3 { font-size: 21px; margin-top: 1.6em; }
.prose a { color: var(--pine); text-decoration: underline; text-decoration-color: rgba(14,95,81,0.35); text-underline-offset: 3px; }
.prose a:hover { text-decoration-color: var(--pine); }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose li + li { margin-top: 0.4em; }
.prose blockquote { border-left: 3px solid var(--pine); padding: 4px 0 4px 18px; color: var(--ink-soft); font-family: var(--font-d); font-size: 19px; }
.prose code { font-family: var(--font-mono); font-size: 0.86em; background: var(--pine-wash); padding: 2px 6px; border-radius: 4px; }
.prose pre { background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 16px 18px; overflow-x: auto; font-size: 13.5px; line-height: 1.55; box-shadow: var(--shadow-card); }
.prose pre code { background: none; padding: 0; font-size: inherit; }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2.2em 0; }
.prose table { width: 100%; border-collapse: collapse; font-size: 14.5px; line-height: 1.45; display: block; overflow-x: auto; }
.prose th, .prose td { border: 1px solid var(--line); padding: 8px 11px; text-align: left; vertical-align: top; }
.prose th { background: var(--pine-wash); font-family: var(--font-ui); font-weight: 600; font-size: 13px; }
.prose td code { white-space: nowrap; }
.prose img { max-width: 100%; border-radius: 10px; border: 1px solid var(--line); }
.prose .note { background: var(--soon-wash); border: 1px solid #F1DDB8; border-radius: 10px; padding: 14px 18px; font-size: 15.5px; }
.prose strong { font-weight: 600; }
.cta-box { margin-top: 56px; background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 30px 28px; box-shadow: var(--shadow-card); }
.cta-box .kicker { margin-bottom: 8px; }
.cta-box h2 { font-size: 26px; margin-bottom: 10px; }
.cta-box p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.6; max-width: 56ch; }
.cta-box .row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-top: 18px; }
.cta-box .btn-note { display: block; margin-top: 10px; }
.related { margin-top: 48px; border-top: 1px solid var(--line); padding-top: 26px; }
.related h2 { font-size: 15px; font-family: var(--font-mono); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 14px; }
.post-list { list-style: none; margin-top: 8px; }
.post-list li { padding: 20px 0; border-top: 1px solid var(--line); }
.post-list li:first-child { border-top: 0; }
.post-list a.t { font-family: var(--font-d); font-size: 23px; font-weight: 500; color: var(--ink); text-decoration: none; letter-spacing: -0.01em; line-height: 1.25; }
.post-list a.t:hover { color: var(--pine); }
.post-list p { color: var(--ink-soft); font-size: 15px; line-height: 1.55; margin-top: 6px; max-width: 62ch; }
.post-list .m { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-faint); letter-spacing: 0.04em; margin-top: 8px; }
.index-head { margin-bottom: 24px; }
.index-head h1 { font-size: clamp(34px, 5vw, 48px); margin: 10px 0 12px; }
.index-head p { color: var(--ink-soft); font-size: 17px; line-height: 1.6; max-width: 60ch; }
.foot-links { margin-top: 6px; }
.inapp { margin: 0 0 30px; background: var(--pine-wash); border: 1px solid #CFE3DC; border-radius: 12px; padding: 16px 20px; font-size: 15px; line-height: 1.6; color: var(--ink); }
.inapp .kicker { margin-bottom: 6px; }
.inapp a { color: var(--pine); }
