/* ============================================
   CargoNote — landing page styles
   Inherits tokens from styles.css
   ============================================ */

.lp { background: var(--bg); color: var(--ink); }
.lp * { box-sizing: border-box; }
.lp a { color: inherit; text-decoration: none; }

/* ---- Container ---- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ---- Nav ---- */
.lp-nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--bg) 86%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.lp-nav .row { display: flex; align-items: center; gap: 28px; height: 64px; }
.lp-nav .brand { display: flex; align-items: center; gap: 10px; font-weight: 600; letter-spacing: -0.01em; font-size: 15px; }
.lp-nav .brand .mark {
  width: 26px; height: 26px; border-radius: 6px;
  background: var(--ink);
  display: grid; place-items: center;
  color: #fff; font-weight: 700; font-size: 12px;
}
.lp-nav .links { display: flex; gap: 22px; font-size: 13.5px; color: var(--ink-2); }
.lp-nav .links a:hover { color: var(--accent); }
.lp-nav .right { margin-left: auto; display: flex; gap: 10px; align-items: center; }

.lp .btn-lg {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; font-size: 13.5px; font-weight: 500;
  border-radius: 8px; border: 1px solid var(--hairline-strong);
  background: var(--surface); color: var(--ink);
  transition: background 120ms, transform 80ms, border-color 120ms;
}
.lp .btn-lg:hover { background: var(--surface-2); }
.lp .btn-lg.primary { background: var(--ink); color: #fff; border-color: var(--ink); }
.lp .btn-lg.primary:hover { background: #000; }
.lp .btn-lg.accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.lp .btn-lg.accent:hover { background: var(--accent-2); transform: translateY(-1px); }
.lp .btn-lg.ghost { background: transparent; border-color: transparent; color: var(--ink-2); }
.lp .btn-lg.ghost:hover { background: var(--bg-soft); }

/* ---- Eyebrow ---- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow .dotty { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 15%, transparent); }

/* ---- Hero ---- */
.hero {
  position: relative;
  padding: 88px 0 40px;
  overflow: hidden;
}
.hero::before {
  /* subtle paper grid */
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--hairline) 1px, transparent 1px),
    linear-gradient(90deg, var(--hairline) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 0%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 50% 0%, black 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}
.hero .inner { position: relative; max-width: 880px; }
.hero h1 {
  font-family: var(--font-sans);
  font-size: clamp(40px, 5.8vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin: 16px 0 22px;
  color: var(--ink);
}
.hero h1 .accent-word {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}
.hero h1 .underline-word {
  position: relative;
  white-space: nowrap;
}
.hero h1 .underline-word::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 4px;
  height: 6px;
  background: color-mix(in oklab, var(--accent) 25%, transparent);
  z-index: -1;
  border-radius: 2px;
}
.hero .lede {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 640px;
}
.hero .cta-row { display: flex; gap: 12px; margin-top: 30px; align-items: center; }
.hero .meta-row {
  display: flex; gap: 22px; margin-top: 36px;
  font-size: 12.5px; color: var(--muted);
  flex-wrap: wrap;
}
.hero .meta-row .item { display: inline-flex; align-items: center; gap: 8px; }
.hero .meta-row .check {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--hi-bg); color: var(--hi-ink);
  display: grid; place-items: center;
  border: 1px solid color-mix(in oklab, var(--hi) 30%, transparent);
}

/* ---- Hero product mock ---- */
.hero-mock {
  position: relative;
  margin: 56px auto 0;
  max-width: 1180px;
  border-radius: 14px;
  border: 1px solid var(--hairline);
  background: var(--surface);
  box-shadow:
    0 1px 0 rgba(20,23,28,0.04),
    0 30px 80px -20px rgba(20,23,28,0.18),
    0 12px 30px -10px rgba(20,23,28,0.10);
  overflow: hidden;
}
.hero-mock .browser-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--hairline);
  font-family: var(--font-mono); font-size: 11px; color: var(--muted);
}
.hero-mock .dots { display: flex; gap: 5px; }
.hero-mock .dots span { width: 9px; height: 9px; border-radius: 50%; background: var(--hairline-strong); }
.hero-mock .url {
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 2px 10px;
}
.hero-mock .body {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) 380px;
  height: 540px;
}
.hero-mock .mini-side {
  background: var(--chrome);
  color: var(--chrome-ink);
  padding: 14px 12px;
  border-right: 1px solid var(--chrome-hairline);
  font-size: 12px;
}
.hero-mock .mini-side .brand { display: flex; align-items: center; gap: 8px; padding: 4px 4px 14px; font-weight: 600; color: #fff; }
.hero-mock .mini-side .brand .m { width: 22px; height: 22px; border-radius: 5px; background: var(--accent); display: grid; place-items: center; color: #fff; font-size: 11px; font-weight: 700; }
.hero-mock .mini-side .lbl { font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--chrome-muted); padding: 14px 6px 4px; }
.hero-mock .mini-side .li { display: flex; align-items: center; gap: 8px; padding: 6px 8px; border-radius: 5px; }
.hero-mock .mini-side .li.active { background: var(--chrome-2); color: #fff; }
.hero-mock .mini-side .li .c { margin-left: auto; font-family: var(--font-mono); font-size: 10.5px; color: var(--chrome-muted); }
.hero-mock .mini-doc {
  padding: 22px;
  background: var(--bg-soft);
  border-right: 1px solid var(--hairline);
  overflow: hidden;
}
.hero-mock .paper {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 22px 28px;
  font-size: 11px;
  color: var(--ink-2);
  height: 100%;
  box-shadow: 0 8px 24px -10px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}
.hero-mock .paper h4 { margin: 0 0 4px; font-size: 12px; font-weight: 600; }
.hero-mock .paper .ln { height: 6px; background: var(--bg-soft); border-radius: 2px; margin: 6px 0; }
.hero-mock .paper .ln.s { width: 60%; }
.hero-mock .paper .ln.m { width: 80%; }
.hero-mock .paper .ln.xs { width: 30%; }
.hero-mock .paper .hl {
  position: absolute;
  border: 1.5px solid var(--accent);
  background: color-mix(in oklab, var(--accent) 12%, transparent);
  border-radius: 3px;
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 16%, transparent);
}
.hero-mock .paper .hl.med { border-color: var(--med); background: color-mix(in oklab, var(--med) 14%, transparent); box-shadow: 0 0 0 3px color-mix(in oklab, var(--med) 20%, transparent); }
.hero-mock .paper .hl.lo  { border-color: var(--lo); background: color-mix(in oklab, var(--lo) 14%, transparent); box-shadow: 0 0 0 3px color-mix(in oklab, var(--lo) 20%, transparent); }
.hero-mock .mini-form {
  padding: 14px;
  display: flex; flex-direction: column; gap: 8px;
  background: var(--bg);
  overflow: hidden;
}
.hero-mock .mini-form h4 { margin: 0; font-size: 11px; text-transform: uppercase; color: var(--muted); letter-spacing: 0.06em; }
.hero-mock .mini-field {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  padding: 8px 10px 8px 12px;
  position: relative;
  font-size: 12px;
}
.hero-mock .mini-field::before {
  content: "";
  position: absolute; left: 0; top: 6px; bottom: 6px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--hi);
}
.hero-mock .mini-field.med::before { background: var(--med); }
.hero-mock .mini-field.lo::before { background: var(--lo); }
.hero-mock .mini-field .row1 { display: flex; align-items: center; gap: 8px; margin-bottom: 2px; }
.hero-mock .mini-field .lbl {
  font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); font-weight: 500;
}
.hero-mock .mini-field .box-n { font-family: var(--font-mono); font-size: 9px; background: var(--bg-soft); padding: 1px 4px; border-radius: 3px; color: var(--muted-2); }
.hero-mock .mini-field .v { font-size: 12px; color: var(--ink); }
.hero-mock .mini-field .v.empty { color: var(--muted-3); font-style: italic; }

/* Floating annotation callouts */
.callout {
  position: absolute;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  z-index: 3;
}
.callout::before {
  content: "";
  position: absolute;
  width: 10px; height: 10px;
  background: var(--ink);
  transform: rotate(45deg);
}
.callout.left::before { left: -3px; top: 50%; margin-top: -5px; }
.callout.right::before { right: -3px; top: 50%; margin-top: -5px; }
.callout.bottom::before { bottom: -3px; left: 50%; margin-left: -5px; }
.callout .pin { width: 6px; height: 6px; border-radius: 50%; }
.callout .pin.hi { background: var(--hi); }
.callout .pin.med { background: var(--med); }
.callout .pin.lo { background: var(--lo); }

/* ---- Section ---- */
.section { padding: 100px 0; position: relative; }
.section .head { max-width: 720px; margin-bottom: 48px; }
.section h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 14px 0 14px;
}
.section h2 em { font-style: italic; color: var(--accent); font-weight: 500; }
.section .sub {
  font-size: 17px; color: var(--muted);
  max-width: 580px; line-height: 1.55;
}

/* ---- Logo strip ---- */
.logos {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--surface);
  padding: 28px 0;
}
.logos .row { display: flex; gap: 56px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.logos .label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted); font-family: var(--font-mono);
}
.logos .names {
  display: flex; gap: 40px; flex-wrap: wrap;
  font-size: 17px; font-weight: 600; letter-spacing: -0.01em;
  color: var(--muted-2);
}
.logos .names span { transition: color 200ms; }
.logos .names span:hover { color: var(--ink-2); }

/* ---- How it works ---- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.step {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 22px 22px 0;
  display: flex; flex-direction: column;
  overflow: hidden;
  position: relative;
}
.step .n {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted-2);
  letter-spacing: 0.06em;
}
.step h3 {
  font-size: 22px; letter-spacing: -0.01em;
  margin: 8px 0 10px; font-weight: 600;
}
.step p { font-size: 14.5px; color: var(--muted); line-height: 1.5; margin: 0; }
.step .vis {
  margin: 22px -22px 0;
  border-top: 1px solid var(--hairline);
  background: var(--surface-2);
  padding: 18px 22px;
  min-height: 160px;
  display: flex; align-items: center; justify-content: center;
}

/* Step 1 vis — email card */
.vis-mail {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 11.5px;
  color: var(--ink-2);
  box-shadow: var(--shadow-1);
  position: relative;
}
.vis-mail .from { font-family: var(--font-mono); font-size: 10.5px; color: var(--muted); margin-bottom: 4px; }
.vis-mail .subj { font-weight: 500; }
.vis-mail .attach { display: flex; gap: 6px; margin-top: 8px; flex-wrap: wrap; }
.vis-mail .att { display: inline-flex; align-items: center; gap: 5px; background: var(--bg-soft); border-radius: 4px; padding: 2px 6px; font-size: 10.5px; font-family: var(--font-mono); color: var(--muted); }

/* Step 2 vis — confidence chips */
.vis-chips { display: flex; flex-direction: column; gap: 6px; width: 100%; }
.vis-chips .row { display: flex; gap: 10px; align-items: center; font-size: 12px; }
.vis-chips .row .lbl { color: var(--muted); font-size: 11px; min-width: 130px; }
.vis-chips .row .v { font-family: var(--font-mono); color: var(--ink-2); }

/* Step 3 vis — CMR card */
.vis-cmr {
  width: 100%;
  background: #fff;
  border: 1px solid #999;
  font-size: 9px;
  color: #111;
  line-height: 1.3;
}
.vis-cmr .h {
  background: var(--ink); color: #fff;
  padding: 4px 8px; font-weight: 700; font-size: 10px; letter-spacing: 0.05em;
  display: flex; justify-content: space-between;
}
.vis-cmr .g {
  display: grid; grid-template-columns: 1fr 1fr;
}
.vis-cmr .c {
  border: 1px solid #444; margin: -1px 0 0 -1px; padding: 4px 6px; min-height: 32px;
  font-family: var(--font-mono); font-size: 8px;
}
.vis-cmr .c b { font-size: 9px; }

/* ---- Features ---- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feature {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 24px;
  transition: border-color 200ms, transform 200ms;
}
.feature:hover { border-color: var(--hairline-strong); transform: translateY(-2px); }
.feature .icn {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.feature h3 { font-size: 17px; letter-spacing: -0.01em; margin: 0 0 6px; font-weight: 600; }
.feature p { font-size: 13.5px; color: var(--muted); line-height: 1.5; margin: 0; }
.feature .demo { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--hairline); }

/* Field demo motif in feature */
.fd-field {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  padding: 6px 10px 6px 12px;
  position: relative;
  font-size: 12px;
}
.fd-field::before {
  content: "";
  position: absolute; left: 0; top: 5px; bottom: 5px;
  width: 3px;
  border-radius: 0 3px 3px 0;
}
.fd-field.hi::before { background: var(--hi); }
.fd-field.med::before { background: var(--med); }
.fd-field.lo::before { background: var(--lo); }
.fd-field.edited::before { background: var(--edited); }
.fd-field.conflict::before { background: var(--conflict); }
.fd-field .lbl {
  font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); font-weight: 500;
}
.fd-field .v { font-size: 12.5px; color: var(--ink); }

/* ---- Numbers ---- */
.numbers {
  background: var(--chrome);
  color: var(--chrome-ink);
  padding: 80px 0;
}
.numbers h2 { color: #fff; }
.numbers .sub { color: var(--chrome-muted); }
.numbers .stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 30px; margin-top: 50px;
  border-top: 1px solid var(--chrome-hairline);
  padding-top: 30px;
}
.numbers .stat .n {
  font-size: 56px; font-weight: 600;
  line-height: 1; letter-spacing: -0.03em;
  color: #fff;
  display: flex; align-items: baseline; gap: 4px;
}
.numbers .stat .n .u { font-size: 22px; font-weight: 500; color: var(--chrome-muted); }
.numbers .stat .lbl {
  margin-top: 12px; font-size: 13px; color: var(--chrome-muted); line-height: 1.4;
  max-width: 220px;
}

/* ---- Showcase ---- */
.showcase {
  position: relative;
  background: var(--bg-soft);
  padding: 80px 0;
  overflow: hidden;
}
.showcase .frame {
  margin: 60px auto 0;
  max-width: 1320px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  box-shadow: 0 30px 80px -20px rgba(20,23,28,0.18);
  overflow: hidden;
}
.showcase .stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  height: 480px;
}
.showcase .placeholder {
  /* Document preview placeholder with stripes */
  background:
    repeating-linear-gradient(45deg, var(--bg-soft) 0 6px, var(--bg) 6px 12px);
  display: grid; place-items: center;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  border-right: 1px solid var(--hairline);
  position: relative;
}
.showcase .placeholder .doc {
  background: #fff;
  border: 1px solid var(--hairline);
  width: 70%;
  max-width: 480px;
  height: 78%;
  padding: 28px 36px;
  box-shadow: 0 12px 40px -10px rgba(0,0,0,0.15);
  position: relative;
  font-family: var(--font-sans);
  color: var(--ink-2);
  font-size: 11px;
  line-height: 1.6;
}
.showcase .placeholder .doc h5 { margin: 0 0 4px; font-size: 13px; }
.showcase .placeholder .doc .ln { height: 6px; background: var(--bg-soft); border-radius: 2px; margin: 6px 0; }

/* ---- Testimonial ---- */
.testimonial {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.testimonial .quote {
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  font-weight: 500;
  color: var(--ink);
  max-width: 880px;
  margin: 0 auto 30px;
  text-align: center;
}
.testimonial .quote::before {
  content: "« ";
  color: var(--accent);
}
.testimonial .quote::after {
  content: " »";
  color: var(--accent);
}
.testimonial .who {
  display: flex; align-items: center; gap: 14px; justify-content: center;
}
.testimonial .av {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, oklch(60% 0.12 30), oklch(55% 0.14 256));
  color: #fff; font-weight: 600;
  display: grid; place-items: center;
}
.testimonial .who .n { font-weight: 600; font-size: 14px; }
.testimonial .who .r { font-size: 12.5px; color: var(--muted); }

/* ---- Pricing tease ---- */
.pricing { padding: 100px 0 100px; }
.pricing .cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 40px; }
.price-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 28px 26px;
  display: flex; flex-direction: column;
}
.price-card.featured { border-color: var(--ink); position: relative; }
.price-card.featured::after {
  content: "Le plus choisi";
  position: absolute; top: -10px; right: 24px;
  background: var(--ink); color: #fff;
  font-size: 10.5px; padding: 4px 10px; border-radius: 999px;
  font-weight: 500; letter-spacing: 0.02em;
}
.price-card .nm { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); }
.price-card .pr { margin: 12px 0 6px; display: flex; align-items: baseline; gap: 6px; }
.price-card .pr .v { font-size: 38px; font-weight: 600; letter-spacing: -0.025em; line-height: 1; }
.price-card .pr .u { font-size: 13px; color: var(--muted); }
.price-card .desc { font-size: 13px; color: var(--muted); margin-bottom: 18px; min-height: 36px; }
.price-card ul { margin: 0 0 22px; padding: 0; list-style: none; }
.price-card ul li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: var(--ink-2);
  padding: 6px 0;
}
.price-card ul li svg { color: var(--hi); flex: 0 0 14px; }

/* ---- Final CTA ---- */
.final-cta {
  padding: 100px 0;
  background: var(--ink);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 70%);
  pointer-events: none;
}
.final-cta h2 {
  color: #fff;
  font-size: clamp(36px, 4.8vw, 58px);
  margin: 16px 0 24px;
  letter-spacing: -0.02em;
  position: relative;
}
.final-cta h2 em { color: oklch(75% 0.12 256); font-style: italic; font-weight: 500; }
.final-cta p { color: rgba(255,255,255,0.7); font-size: 17px; max-width: 600px; margin: 0 auto 32px; line-height: 1.55; position: relative; }
.final-cta .cta-row { display: flex; gap: 12px; justify-content: center; position: relative; }
.final-cta .cta-row .btn-lg { background: #fff; color: var(--ink); border-color: #fff; }
.final-cta .cta-row .btn-lg:hover { background: oklch(95% 0.02 256); }
.final-cta .cta-row .btn-lg.ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.2); }
.final-cta .cta-row .btn-lg.ghost:hover { background: rgba(255,255,255,0.05); }

/* ---- Footer ---- */
.lp-footer {
  background: var(--bg);
  border-top: 1px solid var(--hairline);
  padding: 60px 0 32px;
  font-size: 13px; color: var(--muted);
}
.lp-footer .grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.lp-footer h4 { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink); margin: 0 0 14px; }
.lp-footer ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.lp-footer ul a:hover { color: var(--ink); }
.lp-footer .brand-block .brand { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.lp-footer .brand-block .brand .mark { width: 24px; height: 24px; border-radius: 6px; background: var(--ink); display: grid; place-items: center; color: #fff; font-size: 11px; font-weight: 700; }
.lp-footer .brand-block .addr {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.65;
}
.lp-footer .meta {
  display: flex; gap: 22px; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--hairline);
  font-size: 12px;
}
.lp-footer .meta .legal { color: var(--muted-2); }
.lp-footer .meta .right { margin-left: auto; display: flex; gap: 18px; }

/* ---- Tiny utilities ---- */
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }

/* ---- Responsive (collapse to single column on narrow) ---- */
@media (max-width: 940px) {
  .lp-nav .links { display: none; }
  .hero-mock .body { grid-template-columns: 1fr; height: auto; }
  .hero-mock .mini-side, .hero-mock .mini-doc { display: none; }
  .steps, .features { grid-template-columns: 1fr; }
  .numbers .stats { grid-template-columns: repeat(2, 1fr); }
  .pricing .cards { grid-template-columns: 1fr; }
  .lp-footer .grid { grid-template-columns: 1fr 1fr; }
  .showcase .stack { grid-template-columns: 1fr; }
}
