/* ===========================================================
   21D-Translate — landing page
   Grid-first, fully responsive. Inherits tokens from main.css.
   =========================================================== */

.lp {
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink-3);
}

/* ── Nav ─────────────────────────────────────────────── */
.lp-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 40px;
  max-width: var(--container);
  margin: 0 auto;
  position: sticky; top: 0; z-index: 20;
  background: rgba(250, 250, 248, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
}
.lp-nav-links {
  display: grid;
  grid-auto-flow: column;
  justify-content: start;
  gap: 28px;
  margin-left: 12px;
}
.lp-nav-links a {
  color: var(--ink-3);
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: color var(--t-fast);
}
.lp-nav-links a:hover { color: var(--ink); }
.lp-nav-cta { display: grid; grid-auto-flow: column; gap: 8px; align-items: center; }

/* ── Hero ────────────────────────────────────────────── */
.lp-hero {
  padding: 64px 24px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.lp-hero-inner {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
}

.lp-eyebrow {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  background: var(--paper-2);
  border: 1px solid var(--rule);
  padding: 5px 12px 5px 9px;
  border-radius: 100px;
  font-weight: 500;
}
.lp-eyebrow .sd {
  width: 6px; height: 6px;
  background: var(--ok);
  border-radius: 50%;
}

.lp-providers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 26px;
  margin-top: -4px;
}
.lp-prov {
  width: 60px;
  height: auto;
  object-fit: contain;
  display: block;
}

.lp-h1 {
  font-size: clamp(36px, 5.4vw, 60px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0;
}
.lp-h1-accent { color: var(--accent); }

.lp-sub {
  font-size: 16.5px;
  line-height: 1.5;
  color: var(--ink-3);
  max-width: 580px;
  margin: 4px 0 0;
}
.lp-sub strong { color: var(--ink); font-weight: 600; }
.lp-sub code {
  font-family: var(--font-mono); font-size: 14px;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 1px 5px; border-radius: 3px;
}

.lp-cta-row {
  display: grid;
  grid-auto-flow: column;
  gap: 10px;
  margin-top: 8px;
}
.lp-cta-row .btn { padding: 10px 18px; font-size: 13.5px; }

.lp-meta {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 4px;
  justify-content: center;
}
.lp-meta .dot { color: var(--dim); }

/* ── Product preview frame ──────────────────────────── */
.lp-product {
  max-width: var(--container);
  margin: 40px auto 0;
  padding: 0 24px;
}
.lp-product-frame {
  border: 1px solid var(--rule);
  border-radius: 14px;
  background: var(--paper-2);
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(10,10,10,.04),
    0 20px 50px -20px rgba(10,10,10,.18),
    0 8px 20px -8px rgba(10,10,10,.08);
}
.lp-product-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.lp-product-bar .dots { display: grid; grid-auto-flow: column; gap: 5px; }
.lp-product-bar .dots span {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--rule-strong);
}
.lp-product-bar .url {
  justify-self: center;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--muted);
  background: var(--paper-2);
  border: 1px solid var(--rule);
  padding: 3px 10px;
  border-radius: 6px;
  max-width: 320px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lp-product-bar .live-pill {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ok);
  font-weight: 500;
}
.lp-product-bar .live-pill .sd { width: 6px; height: 6px; background: var(--ok); border-radius: 50%; }

.lp-product-body { padding: 22px; }

.feed { display: grid; gap: 10px; }
.feed-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 4px 4px 12px;
  border-bottom: 1px solid var(--rule);
}
.feed-header h3 {
  margin: 0;
  font-size: 14px; font-weight: 600;
  color: var(--ink); letter-spacing: -.01em;
}
.feed-header .meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}

.feed-job {
  display: grid;
  grid-template-columns: 28px minmax(0, 1.2fr) auto auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px 4px;
  border-bottom: 1px solid var(--rule-faint);
  font-size: 13px;
}
.feed-job:last-child { border-bottom: 0; }
.feed-job .ix {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted-dim);
  text-align: right;
}
.feed-job .file { display: grid; gap: 2px; min-width: 0; }
.feed-job .file-name {
  color: var(--ink); font-weight: 500;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  letter-spacing: -.005em;
}
.feed-job .file-meta {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
}
.feed-job .pair {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-2);
}
.feed-job .pair .arr { color: var(--muted-dim); }
.flag-pill {
  display: inline-grid; place-items: center;
  height: 18px; min-width: 26px; padding: 0 6px;
  background: var(--paper-3);
  border: 1px solid var(--rule);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
}
.feed-job .model-chip {
  font-family: var(--font-mono);
  font-size: 10.5px;
  padding: 2px 8px;
  border-radius: 100px;
  background: var(--accent-soft);
  color: var(--accent);
  white-space: nowrap;
  /* Pin to the widest model label we cycle through so swapping
     Claude → GPT-4o → Gemini doesn't shove the bar left/right.
     Centered to keep the pill visually stable. */
  min-width: 72px;
  text-align: center;
  box-sizing: border-box;
}
.feed-job .progress-cell { display: grid; gap: 4px; }
.feed-job .pmeta {
  display: grid;
  grid-template-columns: 1fr auto;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--muted);
}
.feed-job .pmeta .pct { color: var(--ink); font-weight: 600; }
.feed-job .progress {
  height: 3px;
  background: var(--rule-faint);
  border-radius: 100px;
  overflow: hidden;
}
.feed-job .progress .bar {
  height: 100%;
  background: var(--accent);
  border-radius: 100px;
  transition: width .4s var(--ease);
}
.feed-job.done .progress .bar { background: var(--ok); }
.feed-job .status {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: end;
  gap: 6px;
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
  /* Lock the column to the widest ETA we render so "~6 min left"
     turning into "just now" doesn't pull the row's right edge in. */
  min-width: 96px;
}
.feed-job .status .sd { width: 6px; height: 6px; border-radius: 50%; background: var(--muted-dim); }
.feed-job.translating .status { color: var(--accent); }
.feed-job.translating .status .sd { background: var(--accent); animation: lpBlink 1.4s infinite; }
.feed-job.done .status { color: var(--ok); }
.feed-job.done .status .sd { background: var(--ok); }
@keyframes lpBlink { 50% { opacity: .35; } }

/* Book spread mockup at the bottom of the frame. Two facing pages
   share a faint center fold; each text container has a small style
   chip beside it ("Body · 11/15 pt") to surface that the typography
   is preserved, not regenerated. */
.lp-spread {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  border-top: 1px solid var(--rule);
  background: var(--paper-2);
  font-family: Georgia, "Iowan Old Style", "Source Serif Pro", serif;
  min-height: 320px;
}
.lp-spread::before {
  /* The gutter: a soft inner shadow at the center fold that reads as
     two facing pages meeting. */
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 36px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.06) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
}
.lp-spread-page {
  position: relative;
  /* Extra top padding leaves clear air under the .lp-spread-meta pill
     pinned to the spread's top center, so it doesn't crowd the first
     line of page content (chapter eyebrow / headline). */
  padding: 52px 32px 44px;
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
}
.lp-spread-left  { border-right: 1px solid var(--rule-faint); }

/* Spread image — drops the user's coffeetable figure into a fixed
   aspect ratio panel and overlays anatomy hotspots. Each hotspot is a
   small dot + pill label, positioned via inline left/top so it can
   land on its anatomical target without code changes. */
.lp-spread-image {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--rule);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  background: var(--paper-3);
}
.lp-spread-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Leader-line SVG layer — sits between the image and the labels so
   the white pills naturally cover the line endpoint at the label
   side. preserveAspectRatio="none" maps SVG 0..100 onto image
   percentage coordinates, so editing endpoints is straightforward. */
.lp-anatomy-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.lp-anatomy-lines line {
  stroke: var(--accent);
  stroke-width: 1.4;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  opacity: 0.85;
}

/* Standalone anchor dot — pinned to the feature on the image. */
.lp-anatomy-dot-pt {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95);
  z-index: 2;
}

/* Label pill — sits in clear margin; the line behind it ends inside
   the pill's bounding box, so the white background visually trims it
   to the label edge. */
.lp-anatomy-label {
  position: absolute;
  transform: translate(-50%, -50%);
  padding: 3px 10px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  white-space: nowrap;
  z-index: 3;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
.lp-anatomy-text:empty { display: none; }
.lp-anatomy-label:has(.lp-anatomy-text:empty) { opacity: 0; }

.lp-spread-block {
  display: grid;
  gap: 4px;
  min-width: 0;
}

/* Blueprint-style frame edges — mimics InDesign's text-frame
   indicators. A thin precise cyan stroke around each content block
   plus filled corner-handle squares at top-left and top-right.
   outline-offset gives a few pixels of breathing room from the text,
   like a real frame's internal padding. */
.lp-spread-frame {
  position: relative;
  outline: 1px solid rgba(30, 130, 180, 0.55);
  outline-offset: 5px;
}
.lp-spread-frame::before,
.lp-spread-frame::after {
  content: "";
  position: absolute;
  top: -9px;
  width: 5px;
  height: 5px;
  background: rgba(30, 130, 180, 0.85);
}
.lp-spread-frame::before { left:  -9px; }
.lp-spread-frame::after  { right: -9px; }
/* Inline-only wrapper (chapter eyebrow) — collapses to text width
   instead of stretching the full column. */
.lp-spread-frame-inline {
  display: inline-block;
  vertical-align: top;
}
.lp-spread-style {
  font-family: var(--font-mono);
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.lp-spread-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
}
.lp-spread-headline h3 {
  font-family: inherit;
  font-size: 22px;
  line-height: 1.18;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.005em;
}
.lp-spread-caption p {
  font-size: 11px;
  line-height: 1.45;
  color: var(--ink-2);
  font-style: italic;
  margin: 0;
}
.lp-spread-body p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 8px;
}
.lp-spread-body p:last-child { margin-bottom: 0; }

.lp-spread-folio {
  position: absolute;
  bottom: 14px;
  left: 32px;
  right: 32px;
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.lp-spread-folio.left  { justify-content: space-between; }
.lp-spread-folio.right { justify-content: space-between; }
.lp-spread-folio-num   { font-weight: 600; color: var(--ink-2); }

/* Cycle-meta strip pinned to the bottom-right of the spread so the
   active provider/language are visible without disturbing the page
   typography. Mirrors the .live-pill style up top. */
.lp-spread-meta {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--muted);
  text-transform: uppercase;
  z-index: 1;
}
.lp-spread-meta-flag {
  display: inline-grid; place-items: center;
  width: 18px; height: 13px;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: 2px;
  font-size: 9px; font-weight: 700;
  color: var(--ink);
}

/* JS-controlled caret reused across all spread text targets while a
   block is mid-typing. Hidden globally; the active text node gets
   a trailing ▍ via the .typing class. */
.lp-spread .typing::after {
  content: "▍";
  color: var(--accent);
  animation: lpCaret 1s steps(2) infinite;
  margin-left: 2px;
}
@keyframes lpCaret { 50% { opacity: 0; } }

/* Animated bar shimmer — a slow diagonal sweep across the active job's
   bar so motion reads even before you notice the width changing. */
.feed-job.translating .progress .bar {
  position: relative;
  overflow: hidden;
  /* JS drives width 60×/s; the default 0.4s easing would lag behind. */
  transition: none;
}
.feed-job.translating .progress .bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-100%);
  animation: lpBarShimmer 1.6s linear infinite;
}
@keyframes lpBarShimmer { to { transform: translateX(100%); } }
@media (prefers-reduced-motion: reduce) {
  .feed-job.translating .progress .bar::after { display: none; }
  .lp-spread .typing::after { animation: none; opacity: 1; }
}

/* ── Sections ───────────────────────────────────────── */
.lp-section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 96px 24px;
}
.lp-section-head { margin-bottom: 44px; max-width: 720px; }
.lp-h2 {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 10px 0 0;
}
.lp-h2-dim { color: var(--muted); font-weight: 400; }
.lp-section-eye {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: .005em;
  text-transform: uppercase;
}

/* How it works */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.lp-step {
  padding: 24px;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: 10px;
  display: grid;
  gap: 10px;
  align-content: start;
}
.lp-step-n {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}
.lp-step h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.25;
  margin: 0;
}
.lp-step p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-3);
  margin: 0;
}
.lp-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.lp-team-card {
  padding: 24px;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: 10px;
  display: grid;
  gap: 10px;
  align-content: start;
}
.lp-team-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--paper-3);
  display: grid;
  place-items: center;
  color: var(--ink-2);
  margin-bottom: 4px;
}
.lp-team-icon svg { width: 18px; height: 18px; }
.lp-team-card h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.25;
  margin: 0;
}
.lp-team-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-3);
  margin: 0;
}
.lp-team-card em { font-style: italic; color: var(--ink-2); }

.lp-step-code {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 5px;
  padding: 5px 10px;
  margin-top: 4px;
  overflow-x: auto;
  white-space: nowrap;
}

/* Specimen */
.lp-specimen-section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 24px;
}
.lp-specimen-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 64px;
  align-items: center;
}
.lp-specimen-copy { max-width: 540px; display: grid; gap: 14px; }
.lp-specimen-desc {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-3);
  margin: 0;
}
.lp-specimen-desc code {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 1px 5px;
  border-radius: 3px;
}
.savings-bullets {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  gap: 8px;
}
.savings-bullets li {
  font-size: 14px;
  color: var(--ink-2);
  padding-left: 22px;
  position: relative;
  line-height: 1.45;
}
.savings-bullets li::before {
  content: "";
  position: absolute;
  left: 4px; top: 8px;
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

.lp-specimen-art { display: grid; justify-content: center; }
.specimen {
  width: 380px;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 24px 26px 20px;
  color: var(--ink);
  box-shadow:
    0 1px 2px rgba(10,10,10,.03),
    0 12px 30px -10px rgba(10,10,10,.08);
}
.specimen-head {
  display: grid;
  grid-template-columns: 1fr auto;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.specimen-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.015em;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 18px;
}
.specimen-title::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  margin: 10px 0 0;
}
.specimen-lang {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.specimen-lang .flag {
  display: inline-grid; place-items: center;
  width: 18px; height: 13px;
  background: var(--paper-3);
  border: 1px solid var(--rule);
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 9px; font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
}
.specimen-p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 14px;
}
.specimen-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  margin: 4px 0 12px;
}
.specimen-divider .line {
  height: 1px;
  background: var(--rule);
}
.specimen-divider .glyph {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.specimen-foot {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 500;
}

/* ── Closing CTA ────────────────────────────────────── */
.lp-cta {
  max-width: var(--container);
  margin: 0 auto;
  padding: 96px 24px;
}
.lp-cta-inner {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 14px;
  padding: 56px 32px;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: 14px;
}
.lp-cta-sub {
  color: var(--ink-3);
  font-size: 15px;
  margin: 0;
  max-width: 460px;
}

/* ── Footer ─────────────────────────────────────────── */
.lp-footer {
  max-width: var(--container);
  margin: 0 auto;
  padding: 32px 24px;
  border-top: 1px solid var(--rule);
}
.lp-footer-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
}
.lp-foot-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  justify-self: end;
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .lp-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lp-team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lp-specimen-grid { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .lp-specimen-art { justify-content: start; }
  .feed-job {
    grid-template-columns: 24px minmax(0, 1.2fr) auto minmax(0, 1fr) auto;
  }
  .feed-job .model-chip { display: none; }
}
@media (max-width: 760px) {
  .lp-nav { grid-template-columns: auto 1fr; padding: 12px 20px; gap: 14px; }
  .lp-nav-links { display: none; }
  .lp-hero { padding: 40px 16px 16px; }
  .lp-hero-inner { gap: 16px; }
  .lp-cta-row { grid-auto-flow: row; width: 100%; }
  .lp-cta-row .btn { justify-content: center; }
  .lp-meta { grid-auto-flow: row; gap: 4px; justify-content: center; }
  .lp-meta .dot { display: none; }

  .lp-product { padding: 0 16px; margin-top: 28px; }
  .lp-product-body { padding: 14px; }
  .lp-product-bar .url { display: none; }
  .lp-product-bar { grid-template-columns: auto 1fr auto; }
  .feed-job {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 14px;
    padding: 12px 4px;
  }
  .feed-job .ix { display: none; }
  .feed-job .pair { grid-column: 1 / 2; }
  .feed-job .status { grid-column: 2 / 3; justify-self: end; }
  .feed-job .progress-cell { grid-column: 1 / -1; }
  .feed-job .file { grid-column: 1 / -1; }

  .lp-spread { grid-template-columns: 1fr; }
  .lp-spread::before { display: none; }
  .lp-spread-left { border-right: 0; border-bottom: 1px solid var(--rule-faint); }

  .lp-section { padding: 64px 16px; }
  .lp-steps { grid-template-columns: 1fr; }
  .lp-team-grid { grid-template-columns: 1fr; }
  .lp-specimen-section { padding: 48px 16px; }
  .specimen { width: 100%; padding: 20px 22px 18px; }
  .lp-cta { padding: 56px 16px; }
  .lp-cta-inner { padding: 36px 20px; }
  .lp-footer { padding: 24px 16px; }
  .lp-footer-row { grid-template-columns: 1fr; gap: 8px; }
  .lp-foot-meta { justify-self: start; }
}
