:root {
  /* Cool near-white, deep ink with hint of indigo, electric indigo accent */
  --bg:        oklch(0.985 0.004 270);
  --bg-2:      oklch(0.965 0.008 270);
  --card:      oklch(0.975 0.006 270);
  --ink:       oklch(0.17 0.025 275);
  --ink-soft:  oklch(0.42 0.018 275);
  --ink-mute:  oklch(0.60 0.014 275);
  --rule:      oklch(0.92 0.008 270);
  --rule-soft: oklch(0.95 0.006 270);

  /* Electric indigo + violet, calm-but-AI palette */
  --accent:      oklch(0.54 0.22 275);
  --accent-deep: oklch(0.40 0.20 275);
  --accent-soft: oklch(0.92 0.05 275);
  --accent-glow: oklch(0.65 0.20 285);

  --measure: 36rem;
  --measure-wide: 46rem;

  --sans:  "Geist", ui-sans-serif, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --mono:  "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--accent); color: #fff; }

a { color: var(--ink); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent-deep); }

/* ---------- Page frame ---------- */

.page {
  max-width: 76rem;
  margin: 0 auto;
  padding: clamp(20px, 3vw, 32px) clamp(20px, 4vw, 48px) 96px;
}

.col       { max-width: var(--measure); }
.col-wide  { max-width: var(--measure-wide); }

/* ---------- Top bar ---------- */

.topbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
}
.mark {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--sans);
  color: var(--ink);
  text-decoration: none;
  flex-shrink: 0;
}
.mark-logo {
  width: 36px; height: 36px;
  display: block;
  border-radius: 9px;
  box-shadow: 0 0 0 1px oklch(0.54 0.22 275 / 0.14), 0 4px 14px oklch(0.30 0.10 275 / 0.18);
}
.mark-name {
  font-size: 15.5px; font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.1;
  white-space: nowrap;
}
.meta {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.01em;
}
.meta .sep { opacity: 0.45; padding: 0 8px; }
.meta .live {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ink-soft);
}
.meta .live::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: oklch(0.62 0.18 145);
  box-shadow: 0 0 0 3px oklch(0.62 0.18 145 / 0.18);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.55; } }

/* ---------- Primary navigation ---------- */

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav a,
.nav-trigger {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 7px 11px;
  border-radius: 8px;
  letter-spacing: -0.006em;
  transition: color 140ms ease, background 140ms ease;
  white-space: nowrap;
}
.nav > a:hover,
.nav-trigger:hover { color: var(--accent-deep); background: var(--accent-soft); }
.nav > a[aria-current="page"] { color: var(--ink); background: var(--bg-2); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--ink);
  color: var(--bg) !important;
  padding: 8px 13px !important;
  margin-left: 4px;
}
.nav-cta:hover { background: var(--accent-deep); color: #fff !important; }

/* ----- Dropdown group ----- */
.nav-group { position: relative; display: inline-flex; }
.nav-trigger {
  display: inline-flex; align-items: center; gap: 5px;
  background: none; border: 0; cursor: pointer;
}
.nav-trigger.is-active { color: var(--ink); }
.nav-caret { width: 11px; height: 11px; transition: transform 160ms ease; opacity: 0.7; }
.nav-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 14px;
  box-shadow: 0 1px 2px oklch(0.30 0.10 275 / 0.05), 0 18px 40px oklch(0.30 0.10 275 / 0.14);
  padding: 7px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms;
  z-index: 60;
}
.nav-panel::before {
  /* keeps hover bridge across the 8px gap */
  content: "";
  position: absolute;
  top: -10px; left: 0; right: 0; height: 10px;
}
.nav-group:hover .nav-panel,
.nav-group:focus-within .nav-panel,
.nav-trigger[aria-expanded="true"] + .nav-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-group:hover .nav-caret,
.nav-trigger[aria-expanded="true"] .nav-caret { transform: rotate(180deg); }
.nav-panel a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 9px 12px;
  border-radius: 9px;
  text-decoration: none;
  transition: background 130ms ease;
}
.nav-panel a:hover,
.nav-panel a:focus-visible { background: var(--accent-soft); }
.nav-panel a[aria-current="page"] { background: var(--bg-2); }
.nav-panel-label { font-size: 13.5px; font-weight: 500; color: var(--ink); letter-spacing: -0.006em; }
.nav-panel-sub { font-size: 11.5px; color: var(--ink-mute); line-height: 1.3; }

/* ----- Mobile hamburger ----- */
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  background: none;
  border: 1px solid var(--rule);
  border-radius: 10px;
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  display: block;
  width: 18px; height: 1.8px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 180ms ease, opacity 120ms ease;
}
.nav-toggle-bars { position: relative; }
.nav-toggle-bars::before { position: absolute; top: -6px; left: 0; }
.nav-toggle-bars::after  { position: absolute; top: 6px;  left: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 920px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--bg);
    border: 1px solid var(--rule);
    border-radius: 14px;
    box-shadow: 0 18px 44px oklch(0.30 0.10 275 / 0.16);
    padding: 10px;
    margin-top: 8px;
    display: none;
    z-index: 70;
  }
  .nav.is-open { display: flex; }
  .nav > a,
  .nav-trigger { font-size: 15px; padding: 11px 12px; width: 100%; }
  .nav-group { display: flex; flex-direction: column; width: 100%; }
  .nav-trigger { justify-content: space-between; }
  .nav-cta { justify-content: center; margin: 6px 0 2px; }

  /* On mobile the panel is a static, indented sub-list toggled by tap */
  .nav-panel {
    position: static;
    min-width: 0;
    border: 0;
    box-shadow: none;
    padding: 2px 0 6px 10px;
    margin: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }
  .nav-panel::before { display: none; }
  .nav-trigger[aria-expanded="true"] + .nav-panel { display: flex; }
  .nav-group:hover .nav-panel,
  .nav-group:focus-within .nav-panel { display: none; }
  .nav-trigger[aria-expanded="true"] + .nav-panel { display: flex; }
  .nav-group:hover .nav-caret { transform: none; }
  .nav-trigger[aria-expanded="true"] .nav-caret { transform: rotate(180deg); }
}

/* ---------- Breadcrumb ---------- */

.breadcrumb {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.02em;
  color: var(--ink-mute);
  padding: 22px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.breadcrumb a { color: var(--ink-mute); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent-deep); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb [aria-current="page"] { color: var(--ink-soft); }

/* ---------- Section structure ---------- */

section { padding: clamp(72px, 10vw, 120px) 0 0; }
section:first-of-type { padding-top: clamp(40px, 6vw, 72px); }

.eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0 0 22px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}

h1, h2, h3 {
  font-family: var(--sans);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}

h2.section-h {
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.08;
  font-weight: 500;
  margin-bottom: 22px;
}

/* ---------- Inner page header ---------- */

.page-head {
  padding-top: clamp(36px, 5vw, 56px);
}
.page-head h1 {
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  max-width: 22ch;
}
.page-head h1 .accent {
  background: linear-gradient(95deg, var(--accent-deep) 0%, var(--accent) 50%, var(--accent-glow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-head .lede {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 40rem;
  margin: 0 0 32px;
  text-wrap: pretty;
}

/* ---------- Hero ---------- */

.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-top: clamp(48px, 7vw, 88px);
}

.hero h1 {
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.0;
  font-weight: 500;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}
.hero h1 .accent {
  background: linear-gradient(95deg, var(--accent-deep) 0%, var(--accent) 50%, var(--accent-glow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 .hook {
  display: block;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.1;
  color: var(--ink-soft);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-top: 16px;
}
.hero .lede {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 32rem;
  margin: 0 0 36px;
  text-wrap: pretty;
}

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px 5px 8px;
  border: 1px solid var(--rule);
  background: var(--card);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}
.badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.cta-row {
  display: flex; flex-wrap: wrap;
  align-items: center; gap: 12px 22px;
  margin-top: 8px;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
  padding: 13px 20px;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-decoration: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}
.btn:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px oklch(0.40 0.20 275 / 0.22);
}
.btn .arrow { display: inline-block; transition: transform 200ms ease; }
.btn:hover .arrow { transform: translateX(3px); }

.btn-quiet {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 13px 6px;
}
.btn-quiet:hover { color: var(--accent-deep); }

/* ---------- HERO VISUAL ---------- */

.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 620px;
  border-radius: 20px;
  background:
    radial-gradient(120% 80% at 80% 10%, oklch(0.55 0.22 275 / 0.22), transparent 55%),
    radial-gradient(100% 80% at 10% 90%, oklch(0.65 0.20 290 / 0.20), transparent 55%),
    linear-gradient(180deg, oklch(0.18 0.04 275), oklch(0.13 0.03 275));
  overflow: hidden;
  box-shadow:
    0 1px 0 oklch(1 0 0 / 0.04) inset,
    0 30px 80px -20px oklch(0.20 0.05 275 / 0.35),
    0 8px 24px -8px oklch(0.20 0.05 275 / 0.20);
  border: 1px solid oklch(0.30 0.04 275 / 0.4);
}
.hero-visual svg { display: block; width: 100%; height: 100%; }

/* Floating particles in hero visual */
.hv-grid circle { transform-origin: center; }

/* ============ SHOOTING STARS (behind cards) ============ */
.hv-stars {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.hv-star {
  position: absolute;
  top: 0; left: 0;
  width: 140px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    oklch(0.85 0.18 290 / 0.0) 5%,
    oklch(0.85 0.18 290 / 0.6) 45%,
    oklch(0.98 0.05 290 / 1) 92%,
    oklch(1 0 0 / 1) 100%
  );
  border-radius: 999px;
  filter: drop-shadow(0 0 4px oklch(0.85 0.18 290 / 0.8));
  opacity: 0;
  transform-origin: right center;
  will-change: transform, opacity;
}
.hv-star::after {
  content: '';
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: oklch(1 0 0 / 1);
  box-shadow:
    0 0 6px oklch(0.98 0.05 290 / 0.95),
    0 0 14px oklch(0.85 0.18 290 / 0.7),
    0 0 24px oklch(0.55 0.22 275 / 0.5);
}

/* Each star has its own trajectory + timing */
.hv-star.s1 {
  top: 12%; left: -160px;
  transform: rotate(18deg);
  animation: starShoot1 7s ease-in 0.5s infinite;
}
.hv-star.s2 {
  top: 28%; left: -160px;
  transform: rotate(12deg);
  width: 110px;
  animation: starShoot2 9s ease-in 2.8s infinite;
}
.hv-star.s3 {
  top: 62%; left: -160px;
  transform: rotate(-8deg);
  width: 170px;
  animation: starShoot3 8s ease-in 5s infinite;
}
.hv-star.s4 {
  top: 78%; left: -160px;
  transform: rotate(-14deg);
  width: 100px;
  animation: starShoot4 11s ease-in 1.5s infinite;
}
.hv-star.s5 {
  top: 45%; left: -160px;
  transform: rotate(22deg);
  width: 130px;
  opacity: 0;
  animation: starShoot5 10s ease-in 7s infinite;
}

@keyframes starShoot1 {
  0%   { transform: translate(0, 0) rotate(18deg); opacity: 0; }
  8%   { opacity: 1; }
  60%  { opacity: 1; }
  75%  { transform: translate(900px, 280px) rotate(18deg); opacity: 0; }
  100% { transform: translate(900px, 280px) rotate(18deg); opacity: 0; }
}
@keyframes starShoot2 {
  0%   { transform: translate(0, 0) rotate(12deg); opacity: 0; }
  10%  { opacity: 0.9; }
  65%  { opacity: 0.9; }
  80%  { transform: translate(820px, 170px) rotate(12deg); opacity: 0; }
  100% { transform: translate(820px, 170px) rotate(12deg); opacity: 0; }
}
@keyframes starShoot3 {
  0%   { transform: translate(0, 0) rotate(-8deg); opacity: 0; }
  8%   { opacity: 1; }
  62%  { opacity: 1; }
  78%  { transform: translate(860px, -120px) rotate(-8deg); opacity: 0; }
  100% { transform: translate(860px, -120px) rotate(-8deg); opacity: 0; }
}
@keyframes starShoot4 {
  0%   { transform: translate(0, 0) rotate(-14deg); opacity: 0; }
  12%  { opacity: 0.85; }
  60%  { opacity: 0.85; }
  78%  { transform: translate(800px, -200px) rotate(-14deg); opacity: 0; }
  100% { transform: translate(800px, -200px) rotate(-14deg); opacity: 0; }
}
@keyframes starShoot5 {
  0%   { transform: translate(0, 0) rotate(22deg); opacity: 0; }
  9%   { opacity: 0.95; }
  63%  { opacity: 0.95; }
  77%  { transform: translate(880px, 360px) rotate(22deg); opacity: 0; }
  100% { transform: translate(880px, 360px) rotate(22deg); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hv-star { animation: none !important; opacity: 0 !important; }
}

/* ============ WORKFLOW CARD CAROUSEL ============ */
.wf-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8%;
  pointer-events: none;
  z-index: 2;
}

.wf-card {
  position: absolute;
  width: 86%;
  max-width: 460px;
  background: linear-gradient(180deg, oklch(0.22 0.04 275 / 0.85), oklch(0.16 0.03 275 / 0.85));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid oklch(1 0 0 / 0.10);
  border-radius: 14px;
  box-shadow:
    0 1px 0 oklch(1 0 0 / 0.08) inset,
    0 30px 60px -20px oklch(0.10 0.05 275 / 0.6),
    0 0 0 1px oklch(0.55 0.22 275 / 0.08);
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  animation: wfCycle 20s ease-in-out infinite;
  will-change: opacity, transform;
}
.wf-card:nth-child(1) { animation-delay: 0s; }
.wf-card:nth-child(2) { animation-delay: 5s; }
.wf-card:nth-child(3) { animation-delay: 10s; }
.wf-card:nth-child(4) { animation-delay: 15s; }
@keyframes wfCycle {
  0%   { opacity: 0; transform: translateY(12px) scale(0.98); }
  3%   { opacity: 1; transform: translateY(0) scale(1); }
  22%  { opacity: 1; transform: translateY(0) scale(1); }
  25%  { opacity: 0; transform: translateY(-10px) scale(0.98); }
  100% { opacity: 0; transform: translateY(-10px) scale(0.98); }
}

.wf-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid oklch(1 0 0 / 0.06);
  background: oklch(1 0 0 / 0.02);
}
.wf-head-left {
  display: flex; align-items: center; gap: 9px;
  color: oklch(0.96 0.01 275);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.wf-head-icon {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, oklch(0.55 0.22 275), oklch(0.70 0.20 290));
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px -4px oklch(0.55 0.22 275 / 0.6);
}
.wf-head-icon svg { width: 12px; height: 12px; color: white; }
.wf-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  color: oklch(0.78 0.04 275);
  text-transform: uppercase;
}
.wf-status .ldot {
  width: 5px; height: 5px; border-radius: 50%;
  background: oklch(0.78 0.18 150);
  box-shadow: 0 0 8px oklch(0.78 0.18 150 / 0.7);
  animation: pulse 1.6s ease-in-out infinite;
}

.wf-body { padding: 14px; }

/* Email row (used in triage card) */
.wf-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 9px 10px;
  border-radius: 8px;
  color: oklch(0.96 0.01 275);
  font-family: var(--sans);
  font-size: 12.5px;
  margin-bottom: 4px;
  opacity: 0;
  animation: wfRowIn 0.5s ease-out forwards;
}
.wf-row:nth-child(1) { animation-delay: 0.4s; }
.wf-row:nth-child(2) { animation-delay: 0.7s; }
.wf-row:nth-child(3) { animation-delay: 1.0s; }
.wf-row:nth-child(4) { animation-delay: 1.3s; }
@keyframes wfRowIn {
  from { opacity: 0; transform: translateX(-6px); }
  to   { opacity: 1; transform: translateX(0); }
}
.wf-row .wf-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  padding: 3px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}
.wf-row .wf-tag.t-reply    { background: oklch(0.55 0.22 275 / 0.22); color: oklch(0.85 0.18 290); }
.wf-row .wf-tag.t-archive  { background: oklch(1 0 0 / 0.06);          color: oklch(0.78 0.04 275); }
.wf-row .wf-tag.t-flag     { background: oklch(0.65 0.18 50 / 0.22);   color: oklch(0.82 0.15 60); }
.wf-row .wf-tag.t-done     { background: oklch(0.55 0.15 150 / 0.22);  color: oklch(0.82 0.15 150); }
.wf-row .wf-subject {
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  color: oklch(0.92 0.01 275);
}
.wf-row .wf-subject .wf-from {
  color: oklch(0.65 0.04 275);
  font-size: 10.5px;
  display: block;
  margin-bottom: 1px;
  letter-spacing: 0.02em;
}
.wf-row .wf-meta {
  font-family: var(--mono);
  font-size: 10px;
  color: oklch(0.65 0.04 275);
}

/* Generic key/value rows (quotes, intake, reports) */
.wf-kv {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 10px;
  border-bottom: 1px dashed oklch(1 0 0 / 0.06);
  color: oklch(0.96 0.01 275);
  font-family: var(--sans);
  font-size: 13px;
  opacity: 0;
  animation: wfRowIn 0.5s ease-out forwards;
}
.wf-kv:nth-child(1) { animation-delay: 0.4s; }
.wf-kv:nth-child(2) { animation-delay: 0.7s; }
.wf-kv:nth-child(3) { animation-delay: 1.0s; }
.wf-kv:nth-child(4) { animation-delay: 1.3s; }
.wf-kv:last-child { border-bottom: none; }
.wf-kv .wf-k {
  color: oklch(0.78 0.04 275);
  font-size: 11px;
}
.wf-kv .wf-k .wf-sub {
  display: block;
  color: oklch(0.55 0.04 275);
  font-size: 9.5px;
  margin-top: 2px;
  font-family: var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.wf-kv .wf-v {
  text-align: right;
  font-weight: 500;
  color: oklch(0.96 0.01 275);
}
.wf-kv .wf-v.accent { color: oklch(0.85 0.18 290); }

/* Footer stat bar */
.wf-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 14px;
  background: oklch(0.55 0.22 275 / 0.08);
  border-top: 1px solid oklch(1 0 0 / 0.06);
}
.wf-foot .wf-foot-k {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  color: oklch(0.78 0.04 275);
  text-transform: uppercase;
}
.wf-foot .wf-foot-v {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  color: oklch(0.96 0.01 275);
  letter-spacing: -0.01em;
}
.wf-foot .wf-foot-v .unit {
  font-size: 11px;
  color: oklch(0.78 0.04 275);
  margin-left: 2px;
}

/* Card index dots */
.wf-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}
.wf-dots span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: oklch(1 0 0 / 0.18);
  transition: background 0.4s ease, width 0.4s ease;
}
.wf-dots span.active {
  background: oklch(0.85 0.18 290);
  width: 18px;
  border-radius: 3px;
  box-shadow: 0 0 8px oklch(0.85 0.18 290 / 0.6);
}

@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 16/11; max-height: none; }
}

/* ---------- Body copy ---------- */

.prose p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 1.1em;
  text-wrap: pretty;
}
.prose p.soft { color: var(--ink-soft); }
.prose ul {
  margin: 0 0 1.3em;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.prose ul li {
  position: relative;
  padding-left: 26px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 7px; height: 7px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--accent), var(--accent-glow));
}
.prose ul li strong { color: var(--ink); font-weight: 500; }
.prose a {
  color: var(--accent-deep);
  text-decoration: underline;
  text-decoration-color: var(--accent-soft);
  text-underline-offset: 3px;
}
.prose a:hover { text-decoration-color: var(--accent); }

.section-intro {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 38rem;
  margin: 0 0 8px;
  text-wrap: pretty;
}

/* ---------- Steps grid ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 44px;
}
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

.step {
  position: relative;
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 28px 28px 24px;
  overflow: hidden;
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}
.step:hover {
  border-color: oklch(0.78 0.04 275);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -16px oklch(0.40 0.20 275 / 0.18);
}
.step::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 60% at 100% 0%, oklch(0.55 0.22 275 / 0.06), transparent 50%);
  pointer-events: none;
}
.step .head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
  position: relative; z-index: 1;
}
.step .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--accent-deep);
  font-weight: 500;
}
.step .icon {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent-deep);
}
.step .icon svg { width: 14px; height: 14px; }
.step h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.18;
  margin: 0 0 8px;
  position: relative; z-index: 1;
}
.step p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  position: relative; z-index: 1;
  text-wrap: pretty;
}
.step .step-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--accent-deep);
  text-decoration: none;
  position: relative; z-index: 1;
}
.step .step-link:hover { color: var(--accent); }
.step .step-link .arrow { transition: transform 180ms ease; }
.step:hover .step-link .arrow { transform: translateX(3px); }

/* ---------- Automation cards (niche pages) ---------- */

.autos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}
.auto {
  position: relative;
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 26px 28px;
  overflow: hidden;
}
.auto::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 60% at 0% 0%, oklch(0.55 0.22 275 / 0.05), transparent 55%);
  pointer-events: none;
}
.auto .auto-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin: 0 0 10px;
  position: relative; z-index: 1;
}
.auto h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.2;
  margin: 0 0 9px;
  position: relative; z-index: 1;
}
.auto p {
  font-size: 15px;
  line-height: 1.58;
  color: var(--ink-soft);
  margin: 0;
  position: relative; z-index: 1;
  text-wrap: pretty;
}

/* ---------- FAQ ---------- */

.faq-list {
  margin-top: 36px;
  border-top: 1px solid var(--rule);
}
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  font-family: var(--sans);
  font-size: clamp(17px, 1.7vw, 20px);
  font-weight: 500;
  letter-spacing: -0.018em;
  color: var(--ink);
  line-height: 1.3;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-mark {
  flex: none;
  width: 24px; height: 24px;
  display: grid; place-items: center;
  border-radius: 7px;
  border: 1px solid var(--rule);
  color: var(--accent-deep);
  transition: transform 200ms ease, background 200ms ease;
  font-size: 16px;
  line-height: 1;
}
.faq-item[open] summary .faq-mark {
  transform: rotate(45deg);
  background: var(--accent-soft);
}
.faq-item .faq-answer {
  padding: 0 44px 26px 0;
}
.faq-item .faq-answer p {
  font-size: 16px;
  line-height: 1.62;
  color: var(--ink-soft);
  margin: 0 0 0.9em;
  text-wrap: pretty;
}
.faq-item .faq-answer p:last-child { margin-bottom: 0; }
.faq-item .faq-answer a {
  color: var(--accent-deep);
  text-decoration: underline;
  text-decoration-color: var(--accent-soft);
  text-underline-offset: 3px;
}

/* ---------- Inline CTA band ---------- */

.cta-band {
  margin-top: clamp(64px, 9vw, 104px);
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: clamp(32px, 5vw, 48px);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 90% 0%, oklch(0.55 0.22 275 / 0.08), transparent 55%);
  pointer-events: none;
}
.cta-band h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 12px;
  position: relative; z-index: 1;
  max-width: 26ch;
}
.cta-band p {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0 0 24px;
  max-width: 40rem;
  position: relative; z-index: 1;
  text-wrap: pretty;
}
.cta-band .cta-row { position: relative; z-index: 1; }

/* ---------- Related links ---------- */

.related {
  margin-top: clamp(56px, 8vw, 88px);
}
.related .eyebrow { margin-bottom: 18px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 760px) { .related-grid { grid-template-columns: 1fr; } }
.related-grid a {
  display: block;
  padding: 18px 20px;
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: var(--card);
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.012em;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.related-grid a span {
  display: block;
  margin-top: 5px;
  font-weight: 400;
  font-size: 13px;
  color: var(--ink-mute);
}
.related-grid a:hover {
  border-color: oklch(0.78 0.04 275);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -16px oklch(0.40 0.20 275 / 0.18);
  color: var(--accent-deep);
}

/* ---------- Contact ---------- */

.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.contact-layout > .contact-form-col {
  padding: 32px 36px 32px 0;
}
.contact-layout > .contact-direct-col {
  border-left: 1px solid var(--rule);
  padding: 32px 0 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.contact-form { display: grid; gap: 18px; }
.contact-form .field { display: grid; gap: 7px; }
.contact-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 8px 0 10px 0;
  transition: border-color 160ms ease;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--ink-soft);
  opacity: 0.7;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}
.contact-form textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.5;
}
.contact-form .form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 6px;
}
.contact-form .form-note {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
}
.contact-form .hp { position: absolute; left: -9999px; }

.form-success {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 0 8px;
}
.form-success .success-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: oklch(0.62 0.18 145 / 0.12);
  display: grid; place-items: center;
  color: oklch(0.52 0.18 145);
}
.form-success .success-icon svg { width: 20px; height: 20px; }
.form-success h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.018em;
  margin: 0;
  color: var(--ink);
}
.form-success p {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}
.form-error-msg {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: oklch(0.52 0.20 25);
  margin-top: 6px;
}

.contact-direct .direct-item { padding: 4px 0 22px 0; }
.contact-direct .direct-item + .direct-item {
  border-top: 1px solid var(--rule);
  padding-top: 22px;
}
.contact-direct .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 10px;
}
.contact-direct .value {
  font-family: var(--sans);
  font-size: clamp(18px, 1.9vw, 22px);
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
  line-height: 1.25;
  display: inline-block;
  border-bottom: 1px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
  word-break: break-word;
}
.contact-direct .value:hover { color: var(--accent-deep); border-bottom-color: var(--accent); }
.contact-direct .hint {
  font-size: 13px;
  color: var(--ink-mute);
  margin-top: 6px;
  line-height: 1.4;
}

@media (max-width: 760px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-layout > .contact-form-col { padding: 28px 0; }
  .contact-layout > .contact-direct-col {
    border-left: none;
    border-top: 1px solid var(--rule);
    padding: 28px 0;
  }
  .contact-form .field-row { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */

footer {
  margin-top: 96px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
}
.footer-nav {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px 24px;
  margin-bottom: 40px;
}
@media (max-width: 760px) { .footer-nav { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .footer-nav { grid-template-columns: 1fr; } }
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  margin: 0 0 14px;
}
.footer-col .footer-brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  margin-bottom: 12px;
}
.footer-col .footer-brand .footer-logo {
  width: 30px; height: 30px;
  display: block;
  border-radius: 8px;
  box-shadow: 0 0 0 1px oklch(0.54 0.22 275 / 0.14);
}
.footer-col p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-mute);
  margin: 0;
  max-width: 24rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-col ul a {
  font-size: 13.5px;
  color: var(--ink-soft);
  text-decoration: none;
}
.footer-col ul a:hover { color: var(--accent-deep); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.02em;
  color: var(--ink-mute);
}

/* Soft horizontal rule used between hero & first section */
.rule {
  height: 1px;
  background: var(--rule);
  margin: clamp(56px, 9vw, 96px) 0 0;
}

/* ---------- Mobile hero fixes ---------- */
@media (max-width: 640px) {
  .page {
    padding: 18px 18px 64px;
  }

  .topbar {
    align-items: flex-start;
    gap: 12px;
  }

  .meta {
    font-size: 10.5px;
    text-align: right;
    line-height: 1.4;
  }

  .meta .sep {
    display: none;
  }

  .meta .live {
    display: flex;
    justify-content: flex-end;
  }

  .hero {
    display: flex;
    flex-direction: column;
    gap: 36px;
    padding-top: 44px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 56px);
    line-height: 0.96;
    letter-spacing: -0.045em;
    margin-bottom: 22px;
  }

  .hero .lede {
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 28px;
  }

  .badge {
    margin-bottom: 22px;
    font-size: 10.5px;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .btn,
  .btn-quiet {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-height: 360px;
    border-radius: 16px;
  }

  .wf-stage {
    padding: 6%;
  }

  .wf-card {
    width: 78%;
    max-width: 320px;
  }

  .wf-head {
    padding: 10px 11px;
  }

  .wf-head-left {
    font-size: 9.5px;
  }

  .wf-row,
  .wf-kv {
    font-size: 11.5px;
  }

  .wf-foot .wf-foot-v {
    font-size: 14px;
  }

  section {
    padding-top: 72px;
  }

  h2.section-h {
    font-size: 32px;
  }
}

/* =========================================================================
   Pricing calculator, pricing table, blog / guides
   ========================================================================= */

/* ---------- Pricing calculator ---------- */

.calc {
  margin-top: 38px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: 16px;
  overflow: hidden;
  background: var(--card);
}
.calc-controls {
  padding: 30px 30px 32px;
  border-right: 1px solid var(--rule);
}
.calc-output {
  padding: 30px 30px 32px;
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.calc-field { display: grid; gap: 9px; margin-bottom: 24px; }
.calc-field:last-child { margin-bottom: 0; }
.calc-field > label,
.calc-legend {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  padding: 0;
}
.calc select {
  width: 100%;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 11px 13px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b6b78' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  cursor: pointer;
}
.calc select:focus { outline: none; border-color: var(--accent); }

.calc-checks { display: grid; gap: 2px; margin: 0; padding: 0; border: 0; }
.calc-check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 10px 11px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 140ms ease;
}
.calc-check:hover { background: var(--accent-soft); }
.calc-check input {
  margin: 2px 0 0 0;
  width: 17px;
  height: 17px;
  accent-color: var(--accent);
  flex-shrink: 0;
  cursor: pointer;
}
.calc-check span {
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.35;
  letter-spacing: -0.006em;
}
.calc-check .calc-check-note {
  display: block;
  font-size: 12.5px;
  color: var(--ink-mute);
  margin-top: 1px;
}

.calc-out-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.calc-price {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 6px;
}
.calc-price .calc-price-sub {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-soft);
  letter-spacing: -0.004em;
  margin-top: 8px;
}
.calc-retainer {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.calc-context {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.calc-actions { margin-top: auto; }
.calc-actions .btn { width: 100%; justify-content: center; }
.calc-note {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  margin-top: 12px;
  text-align: center;
}

@media (max-width: 760px) {
  .calc { grid-template-columns: 1fr; }
  .calc-controls { border-right: 0; border-bottom: 1px solid var(--rule); padding: 24px 20px 26px; }
  .calc-output { padding: 24px 20px 26px; }
  .calc-price { font-size: 30px; }
}

/* ---------- Static pricing table ---------- */

.price-table-wrap { margin-top: 18px; overflow-x: auto; }
table.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  min-width: 520px;
}
table.price-table caption {
  text-align: left;
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-bottom: 14px;
  line-height: 1.5;
}
table.price-table th,
table.price-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
table.price-table thead th {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  border-bottom-color: var(--ink);
}
table.price-table tbody th {
  font-weight: 600;
  color: var(--ink);
}
table.price-table td { color: var(--ink-soft); }
table.price-table .price-cell {
  font-family: var(--mono);
  font-size: 13.5px;
  color: var(--ink);
  white-space: nowrap;
}

/* ---------- Blog / guides ---------- */

.post-list { display: grid; gap: 4px; margin-top: 36px; }
.post-card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  transition: padding-left 160ms ease;
}
.post-list .post-card:last-child { border-bottom: 1px solid var(--rule); }
.post-card:hover { padding-left: 8px; }
.post-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.post-card h2 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 8px 0 8px;
  line-height: 1.25;
}
.post-card p { color: var(--ink-soft); font-size: 15px; line-height: 1.55; max-width: 44rem; }
.post-card .post-more {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-deep);
}

.article { max-width: 44rem; }
.article .post-byline {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  margin: 4px 0 0;
}
.article .prose h2 { margin-top: 38px; }
.article .prose h3 { margin-top: 26px; }
.blog-more-note {
  margin-top: 28px;
  font-size: 14px;
  color: var(--ink-mute);
  font-style: italic;
}
