/* LC-CNC shared design system — Replicate-inspired industrial white canvas */
:root {
  --bg: #fbfaf7;
  --surface: #ffffff;
  --surface-2: #f4f1ea;
  --fg: #191714;
  --fg-soft: #5f5a52;
  --muted: #8b857c;
  --border: rgba(25, 23, 20, 0.12);
  --border-strong: rgba(25, 23, 20, 0.18);
  --accent: #ef3c18;
  --accent-2: #111111;
  --accent-soft: rgba(239, 60, 24, 0.12);
  --success: #0f7a45;
  --warning: #9d6a00;
  --shadow-sm: 0 8px 24px rgba(25, 23, 20, 0.06);
  --shadow-md: 0 18px 40px rgba(25, 23, 20, 0.1);
  --shadow-lg: 0 32px 80px rgba(25, 23, 20, 0.16);
  --radius-xs: 14px;
  --radius-sm: 20px;
  --radius-md: 28px;
  --radius-lg: 38px;
  --radius-full: 9999px;
  --container: 1200px;
  --container-narrow: 980px;
  --gutter: clamp(16px, 3vw, 28px);
  --section-y: clamp(56px, 7vw, 104px);
  --section-y-sm: clamp(28px, 4vw, 48px);
  --display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  --max-reading: 72ch;
  --focus: 0 0 0 4px rgba(239, 60, 24, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--fg);
  background:
    radial-gradient(circle at top left, rgba(239, 60, 24, 0.08), transparent 30%),
    radial-gradient(circle at 86% 14%, rgba(17, 17, 17, 0.04), transparent 24%),
    var(--bg);
  font-family: var(--body);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }
button, input, select, textarea { font: inherit; }
::selection { background: rgba(239, 60, 24, 0.18); }

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: var(--radius-full);
  background: var(--fg);
  color: var(--surface);
  transition: top 0.2s ease;
}
.skip-link:focus { top: 16px; outline: none; box-shadow: var(--focus); }

.container {
  width: min(var(--container), calc(100% - 2 * var(--gutter)));
  margin-inline: auto;
}
.container-narrow {
  width: min(var(--container-narrow), calc(100% - 2 * var(--gutter)));
  margin-inline: auto;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 84%, white 16%);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(25, 23, 20, 0.08);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), #ff7a39);
  color: #fff;
  box-shadow: 0 12px 24px rgba(239, 60, 24, 0.18);
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 700;
}

.nav-toggle {
  display: none;
}
.nav-toggle__button {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--surface);
  color: var(--fg);
  box-shadow: var(--shadow-sm);
}
.nav-toggle__button:focus-visible,
.btn:focus-visible,
.nav a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}
.nav-toggle__icon {
  width: 18px;
  height: 12px;
  position: relative;
}
.nav-toggle__icon::before,
.nav-toggle__icon::after,
.nav-toggle__icon span {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}
.nav-toggle__icon::before { top: 0; }
.nav-toggle__icon span { top: 5px; }
.nav-toggle__icon::after { bottom: 0; }

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.nav a {
  padding: 11px 15px;
  border-radius: var(--radius-full);
  color: var(--fg-soft);
  border: 1px solid transparent;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--fg);
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--border);
  transform: translateY(-1px);
}

.main {
  flex: 1;
}
.section {
  padding-block: var(--section-y);
}
.section--tight {
  padding-block: var(--section-y-sm);
}
.section + .section { margin-top: 0; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(239, 60, 24, 0.18);
  background: var(--accent-soft);
  color: var(--fg);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(239, 60, 24, 0.1);
}

.hero {
  padding-top: clamp(22px, 4vw, 48px);
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}
.hero__copy {
  max-width: 46rem;
}
.hero h1,
.page-head h1,
.section h2,
.section h3,
.card h3,
.card h4,
.metric__value,
.article-title,
.panel-title {
  font-family: var(--display);
  letter-spacing: -0.04em;
  line-height: 0.97;
}
.hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(3.1rem, 8vw, 6.9rem);
  max-width: 11ch;
}
.hero__lead {
  max-width: 38rem;
  font-size: clamp(1.06rem, 1.6vw, 1.28rem);
  color: var(--fg-soft);
  margin: 0;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  background: var(--surface);
  color: var(--fg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); color: var(--fg); }
.btn--primary {
  background: linear-gradient(135deg, var(--accent), #ff6c34);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}
.btn--primary:hover { color: #fff; }
.btn--ghost {
  background: rgba(255, 255, 255, 0.74);
  border-color: var(--border);
}
.btn__arrow { font-family: var(--mono); font-size: 0.88em; }

.hero__rail {
  position: relative;
}
.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.82));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-card__top {
  padding: 22px 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--radius-full);
  background: rgba(17, 17, 17, 0.04);
  color: var(--fg);
  border: 1px solid rgba(17, 17, 17, 0.08);
  font-family: var(--mono);
  font-size: 0.78rem;
}
.badge--accent {
  background: rgba(239, 60, 24, 0.12);
  color: var(--accent-2);
  border-color: rgba(239, 60, 24, 0.16);
}
.hero-card__visual {
  padding: 18px 18px 0;
}
.machine-panel,
.diagram-panel,
.case-panel,
.form-panel {
  border-radius: var(--radius-md);
  border: 1px solid rgba(25, 23, 20, 0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(244,241,234,0.92)),
    var(--surface);
  overflow: hidden;
}
.machine-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
  padding: 16px;
}
.machine-grid__chip {
  min-height: 34px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.05);
  border: 1px solid rgba(17, 17, 17, 0.08);
}
.machine-grid__chip--accent { background: var(--accent-soft); border-color: rgba(239, 60, 24, 0.18); }
.machine-grid__chip--wide { grid-column: span 8; }
.machine-grid__chip--med { grid-column: span 4; }
.machine-grid__chip--half { grid-column: span 6; }
.machine-grid__chip--full { grid-column: 1 / -1; }

.diagram-panel {
  padding: 18px;
}
.diagram {
  aspect-ratio: 5 / 4;
  border-radius: calc(var(--radius-md) - 6px);
  background:
    radial-gradient(circle at 24% 24%, rgba(239, 60, 24, 0.18), transparent 22%),
    linear-gradient(135deg, rgba(17, 17, 17, 0.98), rgba(40, 36, 31, 0.96));
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 22px;
}
.diagram__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.95), transparent 90%);
  opacity: 0.45;
}
.diagram__product {
  position: absolute;
  left: 18%;
  top: 20%;
  width: 44%;
  aspect-ratio: 1.16;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.24);
  background: linear-gradient(145deg, rgba(255,255,255,0.22), rgba(255,255,255,0.06));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 28px 42px rgba(0,0,0,0.34);
}
.diagram__product::before,
.diagram__product::after {
  content: "";
  position: absolute;
  inset: 14% 18%;
  border-radius: 18px;
  border: 1px dashed rgba(255,255,255,0.32);
}
.diagram__product::after {
  inset: 28% 34%;
  border-style: solid;
  background: linear-gradient(160deg, rgba(239, 60, 24, 0.86), rgba(255, 126, 71, 0.34));
  border-color: rgba(255,255,255,0.28);
}
.diagram__axis {
  position: absolute;
  right: 12%;
  top: 14%;
  width: 24%;
  height: 70%;
  border-radius: 999px 999px 20px 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.08));
  box-shadow: 0 26px 48px rgba(0,0,0,0.22);
}
.diagram__axis::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8%;
  width: 4px;
  height: 72%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(239, 60, 24, 0.95), rgba(239, 60, 24, 0.16));
}
.diagram__legend {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.diagram__pill {
  padding: 8px 12px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  font-family: var(--mono);
  font-size: 0.76rem;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.metric,
.card,
.panel,
.quote,
.article-card,
.case-card,
.solution-card,
.machine-card,
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.metric {
  padding: 18px;
}
.metric__value {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0 0 8px;
}
.metric__label {
  margin: 0;
  color: var(--fg-soft);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 20px;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card,
.panel,
.article-card,
.case-card,
.solution-card,
.machine-card,
.contact-card {
  padding: 22px;
}
.card--accent {
  background: linear-gradient(180deg, rgba(239, 60, 24, 0.08), rgba(255,255,255,0.96));
  border-color: rgba(239, 60, 24, 0.16);
}
.card h3,
.panel h3,
.solution-card h3,
.case-card h3,
.machine-card h3,
.contact-card h3 {
  margin: 0 0 12px;
  font-size: 1.55rem;
}
.card p,
.panel p,
.solution-card p,
.case-card p,
.machine-card p,
.contact-card p,
.article-card p {
  margin: 0;
  color: var(--fg-soft);
}
.card__meta,
.small-meta,
.timeline__meta,
.article-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.card__meta span,
.small-meta span,
.article-meta span,
.timeline__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.card__meta span::before,
.small-meta span::before,
.article-meta span::before,
.timeline__meta span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  opacity: 0.8;
}
.card__link,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--fg);
  font-family: var(--mono);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
}
.card__link::after,
.text-link::after { content: "→"; }

.proof-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}
.proof-list {
  display: grid;
  gap: 14px;
}
.proof-item {
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--border);
}
.proof-item strong { display: block; font-size: 1.06rem; margin-bottom: 6px; }
.proof-item span { color: var(--fg-soft); }

.table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.table th,
.table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(25, 23, 20, 0.08);
  vertical-align: top;
}
.table th {
  background: rgba(244, 241, 234, 0.86);
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.table tr:last-child td { border-bottom: 0; }

.timeline {
  display: grid;
  gap: 16px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, rgba(239, 60, 24, 0.45), rgba(25, 23, 20, 0.1));
}
.timeline__item {
  position: relative;
  padding: 18px 18px 18px 56px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.84);
}
.timeline__item::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 22px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ff7b39);
  box-shadow: 0 0 0 6px rgba(239, 60, 24, 0.12);
}
.timeline__item h3 { margin: 0 0 8px; font-size: 1.22rem; }
.timeline__item p { margin: 0; color: var(--fg-soft); }

.page-head {
  padding-top: clamp(28px, 5vw, 64px);
  padding-bottom: clamp(18px, 3vw, 30px);
}
.page-head__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 20px;
  align-items: end;
}
.page-head h1 {
  margin: 14px 0 0;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  max-width: 11ch;
}
.page-head p {
  margin: 0;
  color: var(--fg-soft);
  max-width: 54ch;
}

.aside-stack {
  display: grid;
  gap: 14px;
}

.list-panel {
  display: grid;
  gap: 14px;
}
.list-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.82);
}
.list-row strong { display: block; margin-bottom: 4px; }
.list-row span { color: var(--fg-soft); }
.list-row em { font-style: normal; color: var(--accent); font-family: var(--mono); font-size: 0.84rem; }

.form {
  display: grid;
  gap: 14px;
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.field {
  display: grid;
  gap: 8px;
}
label {
  font-size: 0.9rem;
  color: var(--fg);
  font-weight: 600;
}
input,
select,
textarea {
  width: 100%;
  padding: 14px 15px;
  border-radius: 18px;
  border: 1px solid rgba(25, 23, 20, 0.14);
  background: rgba(255,255,255,0.96);
  color: var(--fg);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
textarea { min-height: 148px; resize: vertical; }
input::placeholder,
textarea::placeholder { color: #9d968c; }
input:focus,
select:focus,
textarea:focus {
  border-color: rgba(239, 60, 24, 0.42);
  box-shadow: var(--focus);
}
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(25, 23, 20, 0.1);
  background: rgba(244, 241, 234, 0.64);
}
.checkbox input { width: 18px; height: 18px; margin-top: 3px; }
.helper {
  font-size: 0.92rem;
  color: var(--fg-soft);
}

.footer {
  margin-top: auto;
  padding: 26px 0 40px;
  border-top: 1px solid rgba(25, 23, 20, 0.08);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: start;
}
.footer__brand {
  display: grid;
  gap: 14px;
}
.footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.footer__block {
  padding: 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.76);
}
.footer__block h3,
.footer__block h4 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 1.08rem;
}
.footer__block p,
.footer__block a {
  margin: 0;
  color: var(--fg-soft);
}
.footer__block a:hover { color: var(--accent); }
.footer__fineprint {
  margin-top: 18px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.8rem;
}

.stack {
  display: grid;
  gap: 20px;
}
.split {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 22px;
}
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(25, 23, 20, 0.1);
  background: rgba(255,255,255,0.82);
  color: var(--fg);
  font-family: var(--mono);
  font-size: 0.8rem;
}
.pill--accent {
  background: var(--accent-soft);
  border-color: rgba(239, 60, 24, 0.16);
}

.article-card h3,
.case-card h3,
.solution-card h3,
.machine-card h3 { margin-bottom: 10px; }
.article-card .text-link,
.case-card .text-link,
.solution-card .text-link,
.machine-card .text-link { margin-top: 16px; }

.callout {
  padding: 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(239, 60, 24, 0.08), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(239, 60, 24, 0.14);
  box-shadow: var(--shadow-sm);
}
.callout h3 { margin: 0 0 10px; font-size: 1.5rem; }
.callout p { margin: 0; color: var(--fg-soft); }

@media (max-width: 1100px) {
  .hero__grid,
  .proof-grid,
  .split,
  .page-head__grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .metrics,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .topbar__inner { min-height: 72px; }
  .nav-toggle__button { display: inline-flex; }
  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: var(--gutter);
    right: var(--gutter);
    display: grid;
    gap: 8px;
    padding: 12px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.96);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }
  body.nav-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav a { padding-inline: 14px; }
  .grid-2,
  .grid-3,
  .grid-4,
  .field-grid,
  .metrics {
    grid-template-columns: 1fr;
  }
  .hero h1,
  .page-head h1 {
    max-width: 100%;
  }
  .hero__actions { gap: 10px; }
  .btn { width: 100%; }
  .hero-card__top { flex-direction: column; }
  .machine-grid { grid-template-columns: repeat(6, 1fr); }
  .diagram { aspect-ratio: 4 / 5; }
}

@media (max-width: 640px) {
  :root { --gutter: 14px; }
  .topbar__inner { gap: 12px; }
  .brand { font-size: 1.08rem; }
  .brand__mark { width: 34px; height: 34px; }
  .section { padding-block: 44px; }
  .hero h1 { font-size: clamp(2.65rem, 15vw, 4.3rem); }
  .page-head h1 { font-size: clamp(2.4rem, 12vw, 3.7rem); }
  .card,
  .panel,
  .article-card,
  .case-card,
  .solution-card,
  .machine-card,
  .contact-card,
  .metric,
  .callout,
  .timeline__item,
  .list-row,
  .footer__block {
    padding: 18px;
  }
  .footer__links { grid-template-columns: 1fr; }
  .timeline::before { left: 17px; }
  .timeline__item { padding-left: 50px; }
  .timeline__item::before { left: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}