/* =============================================================
   LineMatic Design System v2 (Redesign)
   Warm off-white palette, Archivo + IBM Plex Mono typography
   Design source: Claude Design handoff, Aug 2026
   ============================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Surfaces (warm off-white) */
  --surface-0: #ffffff;
  --surface-1: #fbfbfa;
  --surface-2: #f2f2f0;
  --surface-3: #e9e9e6;
  --surface-4: #eceef0;

  /* Ink (warmer near-black) */
  --ink-0: #0d0e10;
  --ink-1: #2c3238;
  --ink-2: #3a4046;
  --ink-3: #545b62;
  --ink-4: #9aa1a8;
  --ink-5: #c8ced4;

  /* Dark surfaces */
  --night-0: #0d0e10;
  --night-1: #0f1216;
  --night-2: #14181d;

  /* Borders */
  --line: rgba(0, 0, 0, 0.14);
  --line-strong: rgba(0, 0, 0, 0.28);
  --line-dark: rgba(255, 255, 255, 0.18);

  /* Semantic */
  --signal: #0d0e10;
  --good: #2d7a4e;
  --warn: #c53030;

  /* Type */
  --font-display: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'SF Mono', Consolas, monospace;

  /* Layout */
  --max: 1440px;
  --gutter: clamp(18px, 4vw, 56px);
  --section-y: clamp(40px, 6vw, 80px);
  --radius-sm: 0;
  --radius-md: 0;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --t-fast: 180ms;
  --t-base: 320ms;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-0);
  background: var(--surface-1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  padding-bottom: 76px;
}
@media (min-width: 1060px) { body { padding-bottom: 0; } }
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--ink-0); text-decoration: none; }
a:hover { color: var(--ink-1); }
input, textarea, select, button { font: inherit; color: inherit; }
ul, ol { list-style: none; }

/* ---------- A11y ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink-0); color: #fff;
  padding: 12px 20px;
  font: 600 12px/1 var(--font-display);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.skip-link:focus { left: 16px; top: 16px; color: #fff; }
:focus-visible { outline: 2px solid var(--ink-0); outline-offset: 3px; }

/* ---------- Layout primitives ---------- */
.shell { max-width: var(--max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.section { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.band { background: var(--surface-2); }
.band-alt { background: var(--surface-3); }
.rule { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hr { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* ---------- Typography ---------- */
.mono { font: 500 11px/1 var(--font-mono); letter-spacing: 0.2em; color: var(--ink-3); text-transform: uppercase; }
.mono-sm { font: 500 10.5px/1.5 var(--font-mono); letter-spacing: 0.18em; color: var(--ink-3); text-transform: uppercase; }
.mono-tag { font: 500 10px/1 var(--font-mono); letter-spacing: 0.16em; text-transform: uppercase; }

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink-0); letter-spacing: -0.02em; line-height: 1.05; }
.h-hero, .h-feature { font: 800 clamp(34px, 7.2vw, 66px)/1.02 var(--font-display); letter-spacing: -0.035em; text-wrap: balance; }
.h-section { font: 700 clamp(26px, 4.6vw, 44px)/1.05 var(--font-display); letter-spacing: -0.03em; text-wrap: balance; }
.h-card { font: 600 21px/1.2 var(--font-display); }
.h-card-sm { font: 600 20px/1.2 var(--font-display); }

.lede { font: 400 clamp(16px, 2.2vw, 18px)/1.55 var(--font-display); color: var(--ink-2); max-width: 640px; text-wrap: pretty; }
.p-body { font: 400 clamp(15px, 2vw, 17px)/1.6 var(--font-display); color: var(--ink-2); text-wrap: pretty; }
.p-meta { font: 400 14.5px/1.55 var(--font-display); color: var(--ink-2); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px var(--gutter);
  background: rgba(251, 251, 250, 0.96);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-brand .pulse { width: 8px; height: 8px; background: var(--ink-0); display: block; animation: lm-pulse 2.4s ease-in-out infinite; }
.nav-brand .wordmark { font: 800 17px/1 var(--font-display); letter-spacing: 0.14em; color: var(--ink-0); }
@keyframes lm-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }

.nav-wide, .nav-actions { display: none; }
.nav-narrow-actions { display: flex; align-items: center; gap: 12px; }
.nav-call {
  font: 600 12px/1 var(--font-display); letter-spacing: 0.05em;
  border: 1px solid var(--line-strong); padding: 11px 14px;
  text-decoration: none; color: var(--ink-0); text-transform: uppercase;
}
.nav-burger {
  display: flex; flex-direction: column; gap: 5px;
  padding: 10px; margin: -6px; cursor: pointer; background: transparent; border: 0;
}
.nav-burger span { width: 22px; height: 2px; background: var(--ink-0); display: block; transition: transform var(--t-base) var(--ease), opacity var(--t-base) var(--ease); }
.nav.is-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1060px) {
  .nav-narrow-actions { display: none; }
  .nav-wide {
    display: flex; align-items: center; gap: 24px;
    font: 500 12.5px/1 var(--font-display);
    letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-1);
  }
  .nav-wide > a, .nav-wide > .nav-drop { padding: 14px 0; color: var(--ink-1); }
  .nav-wide > a:hover { color: var(--ink-0); }
  .nav-actions { display: flex; align-items: center; gap: 14px; }
  .nav-phone-inline { font: 600 13px/1 var(--font-mono); color: var(--ink-0); text-decoration: none; }
  .nav-cta {
    font: 600 12px/1 var(--font-display); letter-spacing: 0.06em;
    background: var(--ink-0); color: #fff;
    padding: 13px 18px; text-decoration: none;
  }
  .nav-cta:hover { background: var(--ink-1); color: #fff; }
}

/* Solutions dropdown (desktop) */
.nav-drop { position: relative; display: flex; align-items: center; gap: 6px; cursor: default; }
.nav-drop .arrow { font-size: 9px; color: var(--ink-3); }
.nav-drop-menu {
  position: absolute; left: -18px; top: 100%;
  display: none; flex-direction: column; min-width: 230px;
  background: #fff; border: 1px solid rgba(0, 0, 0, 0.16);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  text-transform: none; font: 500 14px/1 var(--font-display); letter-spacing: 0;
}
.nav-drop:hover .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu { display: flex; }
.nav-drop-menu a { padding: 13px 18px; color: var(--ink-0); text-decoration: none; }
.nav-drop-menu a:hover { background: var(--surface-2); }

/* Mobile menu overlay */
.nav-drawer {
  position: fixed; left: 0; right: 0; top: 0; bottom: 0; z-index: 38;
  background: var(--surface-1);
  padding: 92px 22px 120px;
  display: none; flex-direction: column; overflow: auto;
}
.nav-drawer.is-open { display: flex; }
@media (min-width: 1060px) { .nav-drawer { display: none !important; } }
.nav-drawer .section-label { padding: 18px 0 10px; font: 500 10.5px/1 var(--font-mono); letter-spacing: 0.2em; color: var(--ink-3); text-transform: uppercase; }
.nav-drawer a {
  padding: 14px 0; text-decoration: none; color: var(--ink-0);
  font: 600 22px/1.2 var(--font-display);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.nav-drawer .drawer-group { margin-top: 22px; }
.nav-drawer .drawer-cta {
  margin-top: 28px; text-align: center;
  font: 600 13.5px/1 var(--font-display); letter-spacing: 0.05em;
  background: var(--ink-0); color: #fff !important; padding: 20px 26px;
  border-bottom: 0;
}
.nav-drawer .drawer-phone {
  margin-top: 12px; text-align: center;
  font: 600 15px/1 var(--font-mono); color: var(--ink-0);
  padding: 14px; border-bottom: 0;
}

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  border-bottom: 1px solid var(--line);
}
.hero-text { padding: clamp(32px, 5vw, 72px) var(--gutter); }
.hero-eyebrow { font: 500 clamp(10px, 2.4vw, 11px)/1.6 var(--font-mono); letter-spacing: 0.2em; color: var(--ink-3); text-transform: uppercase; }
.hero h1 { margin: 20px 0 0; }
.hero-lede { margin: 22px 0 0; max-width: 640px; text-wrap: balance; }
.hero-ctas {
  display: flex; flex-direction: column; align-items: stretch; gap: 12px;
  margin-top: 30px; max-width: 420px;
}
.hero-ctas a { text-align: center; text-decoration: none; }
.hero-cta-primary {
  font: 600 13.5px/1 var(--font-display); letter-spacing: 0.05em;
  background: var(--ink-0); color: #fff; padding: 20px 26px;
}
.hero-cta-primary:hover { background: var(--ink-1); color: #fff; }
.hero-cta-secondary {
  font: 600 13.5px/1 var(--font-display); letter-spacing: 0.05em;
  border: 1px solid var(--line-strong); color: var(--ink-0); padding: 19px 26px;
}
.hero-cta-secondary:hover { background: var(--surface-2); }
.hero-cta-note { font: 400 13px/1.5 var(--font-display); color: var(--ink-2); text-align: center; }
@media (min-width: 1060px) {
  .hero-ctas { flex-direction: row; align-items: flex-start; max-width: none; }
}
.hero-media {
  position: relative;
  min-height: clamp(260px, 52vw, 560px);
  background: #c6ccd2 center / cover no-repeat;
  overflow: hidden;
}
.hero-media .scan {
  position: absolute; left: 0; right: 0; top: 0; height: 12%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent);
  animation: lm-scan 7s linear infinite;
}
@keyframes lm-scan { 0% { transform: translateY(-100%); } 100% { transform: translateY(760%); } }
.hero-media .play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.play-btn {
  width: 74px; height: 74px; border-radius: 50%;
  background: rgba(13, 14, 16, 0.86);
  display: flex; align-items: center; justify-content: center;
  border: 0; cursor: pointer;
}
.play-btn::after {
  content: ''; width: 0; height: 0;
  border-left: 17px solid #fff;
  border-top: 11px solid transparent; border-bottom: 11px solid transparent;
  margin-left: 5px;
}
.media-badges { position: absolute; left: 16px; bottom: 16px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.media-tag {
  background: rgba(13, 14, 16, 0.9); color: #fff;
  padding: 9px 12px; font: 500 10px/1 var(--font-mono);
  letter-spacing: 0.16em; text-transform: uppercase;
}
.media-tag-muted {
  background: rgba(13, 14, 16, 0.45); color: rgba(255, 255, 255, 0.85);
  padding: 6px 9px; font: 500 8.5px/1 var(--font-mono);
  letter-spacing: 0.14em; text-transform: uppercase;
}

/* ---------- Robot brands strip ---------- */
.brands { padding: 24px var(--gutter); background: var(--surface-2); border-bottom: 1px solid var(--line); }
.brands-list { margin-top: 14px; display: grid; grid-template-columns: repeat(2, auto); justify-content: start; gap: 14px 32px; font: 700 clamp(16px, 3vw, 19px)/1 var(--font-display); letter-spacing: 0.02em; color: var(--ink-1); }
.brands-list .dot { display: none; color: var(--ink-4); }
@media (min-width: 1060px) {
  .brands-list { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 44px; }
  .brands-list .dot { display: inline; }
}

/* ---------- Intake form ---------- */
.intake { padding: clamp(20px, 3vw, 32px) var(--gutter); background: var(--surface-3); border-bottom: 1px solid var(--line); scroll-margin-top: 88px; }
.intake-form {
  background: #fff; border: 1px solid rgba(0, 0, 0, 0.16);
  padding: clamp(20px, 3.5vw, 36px);
}
.intake-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.field-label { display: block; }
.field-label > span { display: block; font: 500 10.5px/1 var(--font-mono); letter-spacing: 0.18em; color: var(--ink-3); text-transform: uppercase; }
.field-input, .field-select {
  margin-top: 10px; width: 100%;
  border: 0; border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  font: 400 17px/1.4 var(--font-display); color: var(--ink-0);
  padding: 11px 0; background: transparent;
  outline: none;
}
.field-input:focus, .field-select:focus { border-bottom-color: var(--ink-0); box-shadow: 0 1px 0 0 var(--ink-0); }
.btn-solid {
  border: 0; background: var(--ink-0); color: #fff;
  font: 600 14px/1 var(--font-display); letter-spacing: 0.04em;
  padding: 22px; cursor: pointer; text-decoration: none;
  display: inline-block; text-align: center;
}
.btn-solid:hover { background: var(--ink-1); color: #fff; }
.btn-solid:disabled, .btn-solid[disabled] { background: var(--ink-3); cursor: default; opacity: 0.9; }
.btn-solid[hidden], .btn-outline[hidden] { display: none; }
.btn-outline {
  border: 1px solid var(--ink-0); background: transparent; color: var(--ink-0);
  font: 600 14px/1 var(--font-display); letter-spacing: 0.04em;
  padding: 21px; cursor: pointer; text-decoration: none;
  display: inline-block; text-align: center;
}
.btn-outline:hover { background: var(--surface-2); }
.btn-outline:disabled, .btn-outline[disabled] { color: var(--ink-3); border-color: var(--ink-4); cursor: default; }
.intake-submit { margin-top: 28px; width: 100%; max-width: 420px; }
.intake-confirm {
  margin-top: 26px; display: flex; gap: 12px; align-items: flex-start;
  background: var(--surface-2); border-left: 3px solid var(--ink-0); padding: 18px 20px;
}
.intake-confirm[hidden] { display: none; }
.intake-confirm .dot { flex: none; width: 9px; height: 9px; background: var(--ink-0); margin-top: 7px; }
.intake-confirm h4 { font: 600 16px/1.4 var(--font-display); color: var(--ink-0); }
.intake-confirm p { margin-top: 6px; font: 400 14px/1.55 var(--font-display); color: var(--ink-2); }
.intake-details { margin-top: 28px; display: none; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.intake.is-expanded .intake-details { display: grid; }
.intake-media-grid { margin-top: 12px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.intake-media-tile { position: relative; aspect-ratio: 1 / 1; background: var(--surface-4) center / cover no-repeat; border: 1px solid rgba(0, 0, 0, 0.16); }
.intake-media-tile.empty {
  border: 1px dashed rgba(0, 0, 0, 0.4); background: transparent;
  display: flex; align-items: center; justify-content: center;
  font: 600 22px/1 var(--font-display); color: var(--ink-3);
}
.intake-media-remove {
  position: absolute; top: 4px; right: 4px;
  width: 22px; height: 22px; border-radius: 50%; border: 0;
  background: rgba(13, 14, 16, 0.78); color: #fff;
  font: 600 15px/1 var(--font-display);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; padding: 0;
}
.intake-media-remove:hover { background: var(--ink-0); }
.intake-media-remove:focus { outline: 2px solid var(--ink-0); outline-offset: 2px; }
.intake-dropzone {
  margin-top: 12px; border: 1px dashed rgba(0, 0, 0, 0.4);
  padding: 20px; font: 400 14px/1.5 var(--font-display); color: var(--ink-2);
}

/* ---------- Section head ---------- */
.section-head { display: flex; flex-wrap: wrap; gap: 20px; align-items: flex-end; justify-content: space-between; padding: clamp(40px, 6vw, 80px) var(--gutter) clamp(20px, 3vw, 32px); }
.section-head h2 { margin: 0; max-width: 620px; }
.section-head .breadcrumb { font: 500 10.5px/1.7 var(--font-mono); letter-spacing: 0.16em; color: var(--ink-3); text-align: right; text-transform: uppercase; }

/* ---------- Installs grid (video cards) ---------- */
.installs-grid { display: grid; grid-template-columns: 1fr; gap: clamp(20px, 3vw, 32px); padding: 0 var(--gutter) clamp(44px, 6vw, 74px); }
@media (min-width: 720px) { .installs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1060px) { .installs-grid { grid-template-columns: repeat(3, 1fr); } }
.installs-grid.with-top { border-top: 1px solid var(--line); padding-top: clamp(30px, 4vw, 40px); }
.install-card .media {
  position: relative; aspect-ratio: 4 / 3;
  background: var(--surface-4) center / cover no-repeat;
  border: 1px solid rgba(0, 0, 0, 0.16);
  display: flex; align-items: center; justify-content: center;
}
.install-card .media .play-solid {
  width: 60px; height: 60px; background: var(--ink-0);
  display: flex; align-items: center; justify-content: center; border: 0; cursor: pointer;
}
.install-card .media .play-solid::after {
  content: ''; width: 0; height: 0;
  border-left: 14px solid #fff;
  border-top: 9px solid transparent; border-bottom: 9px solid transparent;
  margin-left: 4px;
}
.install-card .media .dur {
  position: absolute; right: 10px; bottom: 10px;
  background: rgba(13, 14, 16, 0.9); color: #fff;
  padding: 5px 8px; font: 500 10.5px/1 var(--font-mono);
}
.install-card .meta { margin-top: 14px; font: 500 10.5px/1 var(--font-mono); letter-spacing: 0.18em; color: var(--ink-3); text-transform: uppercase; }
.install-card h3 { margin: 10px 0 0; }
.install-card p { margin: 8px 0 0; }

/* ---------- Scope band (humanoid) ---------- */
.scope {
  background: var(--surface-2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  align-items: stretch;
}
.scope-copy { padding: clamp(34px, 5vw, 72px) var(--gutter); display: flex; flex-direction: column; justify-content: center; }
.scope-copy h2 { max-width: 620px; }
.scope-copy p { margin-top: 18px; max-width: 560px; }
.scope-media { position: relative; min-height: clamp(280px, 32vw, 440px); border-left: 1px solid var(--line); background: var(--surface-3) center / cover no-repeat; }
.scope-media .tag { position: absolute; left: 14px; top: 14px; }

/* ---------- Industries grid ---------- */
.industries { padding: clamp(40px, 6vw, 80px) var(--gutter); border-bottom: 1px solid var(--line); }
.industries h2 { margin: 16px 0 0; max-width: 760px; }
.industries .lede { margin: 16px 0 0; max-width: 880px; }
.industries-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: clamp(24px, 3.5vw, 40px); }
@media (min-width: 560px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1060px) { .industries-grid { grid-template-columns: repeat(3, 1fr); } }
.ind-card { background: var(--surface-1); border: 1px solid rgba(0, 0, 0, 0.18); padding: 28px; }
.ind-card .num { font: 500 10.5px/1 var(--font-mono); letter-spacing: 0.2em; color: var(--ink-3); text-transform: uppercase; }
.ind-card h3 { margin: 14px 0 0; font: 600 20px/1.2 var(--font-display); }
.ind-card p { margin: 10px 0 0; font: 400 14px/1.6 var(--font-display); color: var(--ink-2); }

/* ---------- Free line design feature ---------- */
.feature {
  background: var(--surface-2); color: var(--ink-0);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: clamp(56px, 9vw, 120px) var(--gutter);
}
.feature h2 { margin: 20px 0 0; max-width: 900px; }
.feature .lede-big { margin: 22px 0 clamp(32px, 5vw, 56px); max-width: 720px; font: 400 clamp(16px, 2.2vw, 18px)/1.55 var(--font-display); color: var(--ink-2); text-wrap: pretty; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(24px, 3.5vw, 48px); align-items: start; }

/* Sample line drawing (technical schematic) */
.blueprint {
  position: relative; min-height: 360px;
  background: var(--night-1); border: 1px solid rgba(255, 255, 255, 0.28);
  overflow: hidden; display: flex; flex-direction: column;
}
.blueprint::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 32px 32px;
}
.bp-head {
  position: relative;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 12px;
  padding: 14px 16px; border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font: 500 9.5px/1.5 var(--font-mono); letter-spacing: 0.16em; color: var(--ink-5); text-transform: uppercase;
}
.bp-head .sample { background: #fff; color: var(--ink-0); padding: 6px 10px; letter-spacing: 0.2em; font-weight: 600; }
.bp-body { position: relative; flex: 1; min-height: 0; padding: clamp(14px, 2.4vw, 24px); display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.bp-row { display: flex; align-items: center; gap: 0; }
.bp-row.reverse { flex-direction: row-reverse; }
.bp-endpoint {
  flex: none; width: clamp(48px, 9%, 74px);
  border: 1px dashed rgba(255, 255, 255, 0.45);
  padding: 10px 4px; text-align: center;
  font: 500 8.5px/1.4 var(--font-mono); letter-spacing: 0.1em; color: var(--ink-5); text-transform: uppercase;
}
.bp-belt {
  flex: 1; height: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.5) 0 1px, transparent 1px 14px);
}
.bp-station {
  flex: none; width: clamp(64px, 15%, 104px);
  border: 1px solid rgba(255, 255, 255, 0.8); background: rgba(255, 255, 255, 0.06);
  padding: 14px 6px; text-align: center;
  font: 600 10px/1.3 var(--font-display); color: #fff;
}
.bp-station .id { font: 500 8.5px/1.4 var(--font-mono); color: var(--ink-5); display: block; }
.bp-drop { display: flex; justify-content: flex-end; padding-right: clamp(18px, 6%, 44px); }
.bp-drop-line { width: 1px; height: clamp(14px, 3vw, 26px); background: rgba(255, 255, 255, 0.6); }
.bp-palletizer {
  flex: none; position: relative; width: clamp(78px, 20%, 128px); aspect-ratio: 1 / 0.72;
  border: 1px solid #fff; background: rgba(255, 255, 255, 0.1);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.bp-palletizer .disc { width: 34%; aspect-ratio: 1 / 1; border: 1px solid #fff; border-radius: 50%; }
.bp-palletizer .lbl { font: 600 9.5px/1.2 var(--font-display); color: #fff; text-align: center; }
.bp-palletizer .id { font: 500 8.5px/1.4 var(--font-mono); color: var(--ink-5); display: block; }
.bp-scale { display: flex; align-items: center; gap: 10px; margin-top: 2px; color: var(--ink-5); font: 500 8.5px/1 var(--font-mono); letter-spacing: 0.14em; text-transform: uppercase; }
.bp-scale .rule { flex: 1; height: 1px; background: rgba(255, 255, 255, 0.45); }
.bp-legend {
  position: relative;
  display: flex; flex-wrap: wrap; gap: 6px 18px;
  padding: 12px 16px; border-top: 1px solid rgba(255, 255, 255, 0.18);
  font: 500 8.5px/1.5 var(--font-mono); letter-spacing: 0.14em; color: var(--ink-5); text-transform: uppercase;
}

.feature-lands .kicker { margin-bottom: 22px; font: 500 11px/1 var(--font-mono); letter-spacing: 0.22em; color: var(--ink-3); text-transform: uppercase; }
.feature-lands h3 { font: 600 19px/1.3 var(--font-display); }
.feature-lands p { margin-top: 6px; font: 400 15.5px/1.6 var(--font-display); color: var(--ink-2); }
.feature-lands .list { display: flex; flex-direction: column; gap: 22px; }
.feature-lands .close { margin-top: 28px; max-width: 460px; font: 400 15.5px/1.6 var(--font-display); color: var(--ink-2); }
.feature .cta {
  display: inline-block; margin-top: 26px;
  font: 600 13.5px/1 var(--font-display); letter-spacing: 0.05em;
  background: var(--ink-0); color: #fff; padding: 19px 26px; text-decoration: none;
}

/* ---------- Service band ---------- */
.service {
  padding: clamp(28px, 4vw, 56px) var(--gutter);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.service h2 { margin: 16px 0 0; }
.service p { max-width: 720px; text-wrap: balance; }
.service .strong-p { margin-top: 14px; font: 500 clamp(15px, 2vw, 17px)/1.6 var(--font-display); color: var(--ink-1); }
.service .cta { display: inline-block; margin-top: 26px; font: 600 13.5px/1 var(--font-display); letter-spacing: 0.05em; background: var(--ink-0); color: #fff; padding: 19px 26px; text-decoration: none; }
.service img { width: 100%; max-width: 620px; justify-self: center; mix-blend-mode: multiply; }

/* ---------- ROI calculator ---------- */
.calc { padding: clamp(40px, 6vw, 80px) var(--gutter); background: var(--surface-2); border-bottom: 1px solid var(--line); }
.calc h2 { margin: 0; max-width: 620px; }
.calc-grid { margin-top: clamp(24px, 3.5vw, 40px); display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; align-items: stretch; }
.calc-inputs { background: #fff; border: 1px solid rgba(0, 0, 0, 0.16); padding: clamp(20px, 3vw, 32px); display: flex; flex-direction: column; gap: 24px; }
.calc-inputs input, .calc-inputs select {
  margin-top: 10px; width: 100%;
  border: 0; border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  font: 400 20px/1.3 var(--font-display); color: var(--ink-0);
  padding: 10px 0; outline: none; background: transparent;
}
.calc-result {
  background: var(--ink-0); color: #fff;
  padding: clamp(20px, 3vw, 32px);
  display: flex; flex-direction: column; justify-content: space-between; gap: 24px;
}
.calc-result .head { font: 500 10.5px/1 var(--font-mono); letter-spacing: 0.2em; color: var(--ink-5); text-transform: uppercase; }
.calc-result .value { margin-top: 16px; font: 700 clamp(48px, 10vw, 84px)/1 var(--font-display); letter-spacing: -0.03em; }
.calc-result .unit { margin-top: 8px; font: 600 16px/1 var(--font-display); color: var(--ink-5); }
.calc-result .after { margin-top: 20px; font: 400 14.5px/1.6 var(--font-display); color: rgba(255, 255, 255, 0.82); }
.calc-result .assume { margin-top: 18px; font: 400 12.5px/1.6 var(--font-display); color: var(--ink-5); }
.calc-result .cta { display: inline-block; margin-top: 18px; font: 600 13.5px/1 var(--font-display); letter-spacing: 0.05em; background: #fff; color: var(--ink-0); padding: 18px 24px; text-decoration: none; }

/* ---------- How we work ---------- */
.steps { padding: clamp(40px, 6vw, 80px) var(--gutter); }
.steps-head { display: flex; flex-wrap: wrap; gap: 20px; align-items: flex-end; justify-content: space-between; }
.steps-head h2 { margin: 16px 0 0; max-width: 620px; }
.steps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: clamp(24px, 3.5vw, 40px); }
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr; } }
@media (min-width: 1060px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }
.step-card { position: relative; background: var(--surface-1); border: 1px solid rgba(0, 0, 0, 0.18); padding: 26px 26px 28px; overflow: hidden; transition: background var(--t-fast) var(--ease); }
.step-card:hover { background: var(--surface-2); }
.step-card .top { display: flex; justify-content: space-between; align-items: flex-start; }
.step-card .n { font: 800 clamp(44px, 4.6vw, 64px)/0.9 var(--font-display); letter-spacing: -0.04em; color: rgba(13, 14, 16, 0.12); }
.step-card .badge { font: 500 9.5px/1 var(--font-mono); letter-spacing: 0.18em; border: 1px solid var(--line-strong); padding: 6px 9px; color: var(--ink-3); text-transform: uppercase; }
.step-card h3 { margin: 18px 0 0; font: 600 20px/1.2 var(--font-display); }
.step-card p { margin: 10px 0 0; font: 400 14px/1.6 var(--font-display); color: var(--ink-2); }
.step-card .progress { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: linear-gradient(90deg, var(--ink-0) 25%, rgba(0, 0, 0, 0.12) 25%); }
.step-card.s2 .progress { background: linear-gradient(90deg, var(--ink-0) 50%, rgba(0, 0, 0, 0.12) 50%); }
.step-card.s3 .progress { background: linear-gradient(90deg, var(--ink-0) 75%, rgba(0, 0, 0, 0.12) 75%); }
.step-card.s4 .progress { background: var(--ink-0); }
.steps-note { margin: 24px 0 0; display: flex; align-items: center; gap: 12px; font: 500 clamp(15px, 2vw, 17px)/1.6 var(--font-display); color: var(--ink-1); }
.steps-note .square { flex: none; width: 8px; height: 8px; background: var(--ink-0); }

/* ---------- Intake anchor section ---------- */
.intake-anchor { padding: clamp(40px, 6vw, 80px) var(--gutter); background: var(--surface-2); border-top: 1px solid var(--line); }

/* Contact page: form + sidebar grid */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Interior page components (solutions / robots / industries) ---------- */

/* Top hero band for interior pages */
.page-header {
  padding: clamp(56px, 8vw, 120px) 0 clamp(32px, 4vw, 56px);
  background: var(--surface-1); border-bottom: 1px solid var(--line);
}
.page-header h1 {
  margin: 0; max-width: 900px;
  font: 800 clamp(32px, 5vw, 56px)/1.05 var(--font-display);
  letter-spacing: -0.02em; color: var(--ink-0); text-wrap: balance;
}
.page-header .lede {
  margin-top: clamp(18px, 2.5vw, 26px);
  color: var(--ink-2); font-size: clamp(16px, 2vw, 18px); line-height: 1.55;
}

/* Small mono/uppercase label used above H1/H2 and inside cards */
.eyebrow {
  display: inline-block;
  font: 500 11px/1.4 var(--font-mono); letter-spacing: 0.14em;
  color: var(--ink-3); text-transform: uppercase;
}
.eyebrow.light { color: var(--ink-5); }

/* Section-head right column (copy alongside heading) */
.section-head .right { justify-self: end; max-width: 520px; }
.section-head .right p {
  margin: 0; color: var(--ink-2);
  font: 400 clamp(15px, 2vw, 17px)/1.6 var(--font-display); text-wrap: pretty;
}

/* Grid utility + column modifiers */
.grid { display: grid; gap: clamp(20px, 2.5vw, 32px); }
.grid.cols-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid.cols-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

/* Capability card (solutions.php cols-4 grid, robots.php cols-3 grid) */
.cap-card {
  background: var(--surface-1); border: 1px solid var(--line);
  padding: clamp(20px, 2.5vw, 28px);
  display: flex; flex-direction: column; gap: 12px;
}
.cap-card .icon { width: 40px; height: 40px; display: block; }
.cap-card .num {
  margin-top: 4px;
  font: 500 11px/1 var(--font-mono); letter-spacing: 0.14em;
  color: var(--ink-3); text-transform: uppercase;
}
.cap-card h3 { margin: 0; font: 600 18px/1.3 var(--font-display); color: var(--ink-0); }
.cap-card p { margin: 0; font: 400 14.5px/1.55 var(--font-display); color: var(--ink-2); }

/* Product row (robots.php + industries.php) — 2-column media/copy split */
.product-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px); align-items: center;
  padding: clamp(40px, 5vw, 72px) 0;
}
.product-row + .product-row { border-top: 1px solid var(--line); }
.product-row h3 {
  margin: 0;
  font: 700 clamp(24px, 3vw, 32px)/1.15 var(--font-display);
  letter-spacing: -0.01em; color: var(--ink-0);
}
.product-row-meta {
  margin-top: 14px; max-width: 560px;
  color: var(--ink-2); font: 400 clamp(15px, 2vw, 17px)/1.55 var(--font-display);
}
.product-row-media {
  display: flex; align-items: center; justify-content: center;
  min-height: 220px; background: var(--surface-2); padding: 32px;
}
.product-row-media img, .product-row-media svg { max-width: 100%; height: auto; }
@media (max-width: 720px) {
  .product-row { grid-template-columns: 1fr; padding: 32px 0; }
  .product-row-media { min-height: 180px; padding: 20px; }
}

/* Spec list — dt/dd pairs, tabular */
.spec-list {
  margin: 22px 0 0; padding: 14px 0 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0 24px;
  border-top: 1px solid var(--line);
}
.spec-list > div {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 8px 0; border-bottom: 1px solid var(--line);
}
.spec-list dt {
  font: 500 11px/1.4 var(--font-mono); letter-spacing: 0.1em;
  color: var(--ink-3); text-transform: uppercase;
}
.spec-list dd {
  margin: 0; text-align: right;
  font: 500 13.5px/1.4 var(--font-display); color: var(--ink-0);
}

/* Full-width dark CTA band at bottom of interior pages */
.cta-band {
  padding: clamp(56px, 8vw, 112px) var(--gutter);
  background: var(--night-0); color: #fff;
}
.cta-band h2 {
  margin: 0; max-width: 820px; color: #fff;
  font: 700 clamp(28px, 4vw, 48px)/1.1 var(--font-display);
  letter-spacing: -0.02em; text-wrap: balance;
}
.cta-band p {
  margin: 20px 0 32px; max-width: 640px;
  color: var(--ink-5); font: 400 clamp(15px, 2vw, 17px)/1.6 var(--font-display);
}

/* Button system — .btn is the base; .btn-primary is the alias; .btn-signal is light-on-dark */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  border: 0; padding: 18px 26px;
  font: 600 13.5px/1 var(--font-display); letter-spacing: 0.04em;
  text-decoration: none; cursor: pointer;
  background: var(--ink-0); color: #fff;
  transition: background var(--t-base) var(--ease);
}
.btn:hover { background: var(--ink-1); color: #fff; }
.btn:disabled, .btn[disabled] { background: var(--ink-3); cursor: default; }
.btn .arrow { width: 16px; height: 16px; flex: none; }
.btn-primary { background: var(--ink-0); color: #fff; }
.btn-primary:hover { background: var(--ink-1); color: #fff; }
.btn-signal { background: #fff; color: var(--ink-0); }
.btn-signal:hover { background: var(--surface-2); color: var(--ink-0); }

/* Inline prose link */
.link {
  color: var(--ink-0); text-decoration: underline;
  text-underline-offset: 3px; text-decoration-thickness: 1px;
}
.link:hover { text-decoration-thickness: 2px; }
.intake-anchor h2 { max-width: 760px; }
.intake-anchor .form-wrap { margin-top: clamp(24px, 3.5vw, 40px); }
.intake-anchor .lede { margin-top: 16px; max-width: 640px; }

/* ---------- Footer ---------- */
.footer { background: var(--night-0); color: #fff; padding: clamp(36px, 5vw, 64px) var(--gutter); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 28px; }
.footer .brand { font: 800 18px/1 var(--font-display); letter-spacing: 0.14em; color: #fff; }
.footer .about { margin-top: 14px; font: 400 14.5px/1.6 var(--font-display); color: rgba(255, 255, 255, 0.82); max-width: 280px; }
.footer .phone { display: inline-block; margin-top: 18px; color: #fff; font: 600 17px/1 var(--font-mono); text-decoration: none; }
.footer .location { margin-top: 8px; font: 400 14px/1.5 var(--font-display); color: var(--ink-5); }
.footer .col { display: flex; flex-direction: column; gap: 10px; font: 400 14.5px/1.5 var(--font-display); color: rgba(255, 255, 255, 0.86); }
.footer .col h4 { font: 500 10.5px/1 var(--font-mono); letter-spacing: 0.2em; color: var(--ink-5); text-transform: uppercase; font-weight: 500; }
.footer .col a { color: rgba(255, 255, 255, 0.86); }
.footer .col a:hover { color: #fff; }
.footer-bottom {
  margin-top: 36px; padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font: 400 12.5px/1.6 var(--font-display); color: var(--ink-5);
}

/* ---------- Sticky mobile call bar ---------- */
.sticky-call {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.sticky-call a {
  display: block; background: var(--ink-0); color: #fff;
  text-decoration: none; text-align: center;
  padding: 20px 12px;
  font: 600 13.5px/1 var(--font-display); letter-spacing: 0.04em;
}
@media (min-width: 1060px) { .sticky-call { display: none; } }

/* ---------- Intake step 2: photos + floorplan pickers ---------- */
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.field-hint { display: block; font: 500 10.5px/1 var(--font-mono); letter-spacing: 0.18em; color: var(--ink-3); text-transform: uppercase; }
.intake-media-picker { display: block; cursor: pointer; }
.intake-media-picker .picker-hint {
  display: block; margin-top: 8px;
  font: 400 13px/1.5 var(--font-display); color: var(--ink-3);
}
.intake-media-picker:hover .intake-media-tile.empty { background: var(--surface-2); }
.intake-dropzone {
  display: flex; align-items: center; justify-content: center; text-align: center;
  margin-top: 12px; border: 1px dashed rgba(0, 0, 0, 0.4);
  padding: 20px; font: 400 14px/1.5 var(--font-display); color: var(--ink-2);
  cursor: pointer;
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.intake-dropzone:hover { background: var(--surface-2); border-color: var(--ink-0); }
.intake-dropzone.has-file { border-style: solid; border-color: var(--ink-0); color: var(--ink-0); font-weight: 500; }
.intake-details-submit { margin-top: 22px; width: 100%; max-width: 420px; }
.intake-details-done {
  margin-top: 24px;
  font: 600 15px/1.5 var(--font-display); color: var(--ink-0);
}
