:root {
  color-scheme: light;
  --color-ink: #122033;
  --color-navy: #07559a;
  --color-navy-2: #00376f;
  --color-red: #f4c400;
  --color-red-dark: #d7aa00;
  --color-steel: #5b6773;
  --color-line: #d8dde3;
  --color-soft: #f3f7fb;
  --color-panel: #ffffff;
  --color-muted: #eaf1f8;
  --color-green: #2d6a4f;
  --color-page: #fbfcfd;
  --color-page-copy: #344454;
  --color-heading: var(--color-navy);
  --color-link-strong: var(--color-navy);
  --color-link-hover: var(--color-navy-2);
  --color-cta-text: var(--color-navy-2);
  --color-on-brand: #ffffff;
  --color-header-bg: rgba(255, 255, 255, 0.97);
  --color-panel-alpha: rgba(255, 255, 255, 0.95);
  --color-card-shadow: rgba(16, 34, 56, 0.05);
  --color-sticky-shadow: rgba(16, 34, 56, 0.14);
  --color-footer-bg: #0b1724;
  --color-footer-text: #dce4ec;
  --color-footer-muted: #aab7c5;
  --color-video-bg: #101820;
  --color-notice-bg: #fff9dd;
  --color-notice-border: #ead57d;
  --hero-background:
    radial-gradient(circle at 88% 18%, rgba(244, 196, 0, 0.12) 0%, rgba(244, 196, 0, 0) 28%),
    linear-gradient(135deg, #f8fbfe 0%, #edf4fb 52%, #e6eef7 100%);
  --history-overlay: linear-gradient(120deg, rgba(243, 247, 251, 0.98) 0%, rgba(243, 247, 251, 0.92) 58%, rgba(255, 255, 255, 0.84) 100%);
  --shadow-soft: 0 18px 42px rgba(0, 74, 141, 0.12);
  --shadow-card: 0 8px 24px var(--color-card-shadow);
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 8px;
  --max: 1180px;
}

html[data-color-scheme="dark"] {
  color-scheme: dark;
  --color-ink: #e7edf5;
  --color-steel: #b6c1cf;
  --color-line: #2a3e55;
  --color-soft: #101b28;
  --color-panel: #172536;
  --color-muted: #22364b;
  --color-green: #6bc39f;
  --color-page: #0d1621;
  --color-page-copy: #c7d2df;
  --color-heading: #f3f8ff;
  --color-link-strong: #9fd0ff;
  --color-link-hover: #d5ecff;
  --color-cta-text: #06213a;
  --color-on-brand: #ffffff;
  --color-header-bg: rgba(13, 24, 36, 0.96);
  --color-panel-alpha: rgba(23, 37, 54, 0.96);
  --color-card-shadow: rgba(0, 0, 0, 0.26);
  --color-sticky-shadow: rgba(0, 0, 0, 0.34);
  --color-footer-bg: #07111d;
  --color-footer-text: #d4deea;
  --color-footer-muted: #99aabd;
  --color-video-bg: #05090e;
  --color-notice-bg: #2a2412;
  --color-notice-border: #7b6723;
  --hero-background:
    radial-gradient(circle at 88% 18%, rgba(244, 196, 0, 0.1) 0%, rgba(244, 196, 0, 0) 30%),
    linear-gradient(135deg, #101b27 0%, #15283a 52%, #0d1621 100%);
  --history-overlay: linear-gradient(120deg, rgba(16, 27, 40, 0.98) 0%, rgba(16, 27, 40, 0.92) 58%, rgba(23, 37, 54, 0.82) 100%);
  --shadow-soft: 0 18px 42px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(88px + env(safe-area-inset-top, 0));
  scroll-padding-bottom: 78px;
  background: var(--color-navy);
}

body {
  position: relative;
  margin: 0;
  color: var(--color-ink);
  background: var(--color-navy);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 19;
  height: env(safe-area-inset-top, 0);
  background: var(--color-navy);
  pointer-events: none;
}

img,
iframe {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--color-heading);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 2.7rem;
}

h3 {
  font-size: 1.25rem;
}

main,
.site-shell {
  background: var(--color-page);
}

.site-shell {
  min-height: 100vh;
}

.motion-ready .motion-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 560ms var(--motion-ease),
    transform 560ms var(--motion-ease);
  transition-delay: var(--motion-delay, 0ms);
  will-change: opacity, transform;
}

.motion-ready .motion-reveal.motion-visible {
  opacity: 1;
  transform: translateY(0);
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.utility-bar {
  background: var(--color-navy);
  color: var(--color-on-brand);
  font-size: 0.9rem;
  padding-top: env(safe-area-inset-top, 0);
}

.utility-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.utility-links,
.utility-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.utility-bar a {
  color: var(--color-on-brand);
  text-decoration: none;
}

.utility-quote {
  display: none;
  padding: 8px 12px;
  background: var(--color-red);
  color: var(--color-cta-text) !important;
  border-radius: 4px;
  font-weight: 700;
}

.theme-control {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: var(--color-on-brand);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  opacity: 0.78;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease,
    transform 180ms var(--motion-ease);
}

.theme-control:hover,
.theme-control:focus-visible {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.15);
}

.theme-control:hover {
  transform: translateY(-1px);
}

.theme-control:focus-visible {
  outline: 2px solid var(--color-red);
  outline-offset: 2px;
}

.theme-control::after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--color-red);
  box-shadow: 0 0 0 1px rgba(7, 85, 154, 0.62);
}

.theme-control[data-theme-mode="system"]::after {
  background: var(--color-on-brand);
}

.theme-control svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: env(safe-area-inset-top, 0);
  z-index: 20;
  background: var(--color-header-bg);
  border-bottom: 1px solid var(--color-line);
  backdrop-filter: blur(10px);
  transition:
    background-color 220ms ease,
    border-color 220ms ease;
}

.header-inner {
  position: relative;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  color: var(--color-link-strong);
}

.brand img {
  width: 193px;
  height: 47px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-line);
  background: var(--color-panel);
  border-radius: 6px;
  color: var(--color-link-strong);
  font-weight: 800;
  cursor: pointer;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.95rem;
  font-weight: 700;
}

.primary-nav a {
  text-decoration: none;
  color: var(--color-link-strong);
  white-space: nowrap;
  transition:
    color 180ms ease,
    box-shadow 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--color-link-hover);
  box-shadow: inset 0 -2px 0 var(--color-red);
}

.nav-cta {
  padding: 11px 15px;
  color: var(--color-cta-text) !important;
  background: var(--color-red);
  border-radius: 5px;
}

.section {
  padding: 80px 0;
}

.section.compact {
  padding: 56px 0;
}

.section.dark {
  color: var(--color-on-brand);
  background: var(--color-navy);
}

.section.dark h2,
.section.dark h3,
.section.dark p,
.section.dark li {
  color: var(--color-on-brand);
}

.section.soft {
  background: var(--color-soft);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--color-link-hover);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--color-red);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading p {
  margin-top: 14px;
  color: var(--color-steel);
  font-size: 1.08rem;
}

.subsection-title {
  margin: 32px 0 10px;
}

.section.dark .section-heading p {
  color: #dfe6ee;
}

.hero {
  padding: 74px 0 54px;
  background: var(--hero-background);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 48px;
}

.hero-copy {
  max-width: 760px;
}

.hero-copy p {
  margin-top: 22px;
  color: var(--color-page-copy);
  font-size: 1.18rem;
}

.hero-media {
  position: relative;
}

.machine-frame,
.image-frame,
.video-frame {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-panel);
  box-shadow: var(--shadow-soft);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms var(--motion-ease);
}

.machine-frame img,
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.machine-frame {
  aspect-ratio: 4 / 3;
}

.hero-media:hover .machine-frame,
.image-frame:hover,
.video-frame:hover,
.history-photo-card:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 196, 0, 0.46);
}

.detail-badge {
  position: absolute;
  left: -18px;
  bottom: 22px;
  max-width: 210px;
  padding: 14px 16px;
  background: var(--color-panel);
  border: 1px solid var(--color-line);
  border-left: 5px solid var(--color-red);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms var(--motion-ease);
}

.button.primary {
  color: var(--color-cta-text);
  background: var(--color-red);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--color-red-dark);
  color: var(--color-cta-text);
  box-shadow: 0 10px 22px rgba(244, 196, 0, 0.18);
  transform: translateY(-1px);
}

.button.secondary {
  color: var(--color-link-strong);
  background: var(--color-panel);
  border-color: var(--color-line);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--color-red);
  color: var(--color-link-hover);
  transform: translateY(-1px);
}

.button.light {
  color: var(--color-link-strong);
  background: var(--color-panel);
}

.trust-strip {
  background: var(--color-panel);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-item {
  min-height: 104px;
  padding: 22px 20px;
  border-right: 1px solid var(--color-line);
  transition:
    background-color 220ms ease,
    transform 220ms var(--motion-ease);
}

.trust-item:hover {
  background: var(--color-soft);
  transform: translateY(-1px);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  color: var(--color-heading);
  font-size: 1.3rem;
}

.trust-item span {
  color: var(--color-steel);
}

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

.card-grid.followup {
  margin-top: 18px;
}

.workflow-gallery {
  align-items: stretch;
}

.workflow-gallery .card.media {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.workflow-gallery .card.media img {
  height: clamp(170px, 18vw, 220px);
  aspect-ratio: auto;
  object-fit: cover;
}

.workflow-gallery .card-body {
  flex: 1;
  padding: 16px 18px 18px;
}

.workflow-gallery h3 {
  font-size: 1.12rem;
}

.workflow-gallery p {
  margin-bottom: 0;
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.route-grid {
  align-items: start;
}

.route-card {
  min-height: 0;
  border-top: 4px solid var(--color-red);
}

.card-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--color-steel);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.machine-family-grid {
  align-items: start;
}

.machine-family-grid .card {
  min-height: 0;
}

.machine-family-grid .card.media img {
  height: clamp(170px, 15vw, 220px);
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 46%;
}

.card {
  min-height: 100%;
  padding: 24px;
  background: var(--color-panel);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms var(--motion-ease);
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 196, 0, 0.38);
  box-shadow: var(--shadow-soft);
}

.card.media {
  padding: 0;
  overflow: hidden;
}

.card.media img {
  display: block;
  width: 100%;
  height: clamp(170px, 18vw, 230px);
  aspect-ratio: auto;
  object-fit: cover;
  background: var(--color-muted);
}

.supply-preview-grid .card.media img {
  height: clamp(180px, 18vw, 220px);
  aspect-ratio: auto;
}

.card-body {
  padding: 22px;
}

.card p {
  color: var(--color-steel);
}

.card-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--color-link-hover);
  font-weight: 800;
  text-decoration: none;
  box-shadow: inset 0 -2px 0 var(--color-red);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 42px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr);
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding-left: 18px;
  border-left: 4px solid var(--color-red);
}

.machine-snapshot {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-line);
}

.machine-snapshot div {
  padding: 14px;
  background: var(--color-panel);
}

.machine-snapshot strong,
.machine-snapshot span {
  display: block;
}

.machine-snapshot strong {
  color: var(--color-heading);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.machine-snapshot span {
  margin-top: 4px;
  color: var(--color-steel);
  font-size: 0.92rem;
}

.application-chip-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.application-chip-grid a {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border: 1px solid var(--color-line);
  border-radius: 5px;
  background: var(--color-panel);
  color: var(--color-link-strong);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms var(--motion-ease);
}

.application-chip-grid a:hover,
.application-chip-grid a:focus-visible {
  border-color: var(--color-red);
  box-shadow: inset 0 -3px 0 var(--color-red);
  transform: translateY(-1px);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-panel);
}

.spec-table th,
.spec-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--color-line);
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 34%;
  color: var(--color-heading);
  background: var(--color-muted);
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: 0;
}

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-panel);
}

.table-scroll .spec-table {
  border: 0;
  border-radius: 0;
}

.output-table th,
.output-table td {
  width: auto;
  min-width: 74px;
  text-align: center;
  white-space: nowrap;
}

.output-table th:first-child,
.output-table td:first-child {
  text-align: left;
}

.output-table td:empty::after {
  content: "-";
  color: var(--color-steel);
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: var(--color-video-bg);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.quote-band {
  color: var(--color-on-brand);
  background: var(--color-navy-2);
}

.quote-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.quote-band h2,
.quote-band p {
  color: var(--color-on-brand);
}

.quote-card {
  padding: 28px;
  background: var(--color-panel);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

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

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--color-heading);
  font-weight: 800;
  font-size: 0.92rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--color-line);
  border-radius: 5px;
  color: var(--color-ink);
  background: var(--color-panel);
  font: inherit;
}

.form-field textarea {
  min-height: 124px;
  resize: vertical;
}

.form-note {
  margin-top: 14px;
  color: var(--color-steel);
  font-size: 0.92rem;
}

.breadcrumb {
  margin: 24px auto 0;
  color: var(--color-steel);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--color-link-strong);
  text-decoration: none;
}

.page-hero {
  padding: 58px 0 72px;
  background: var(--color-soft);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  align-items: center;
  gap: 44px;
}

.page-hero p {
  margin-top: 18px;
  color: var(--color-page-copy);
  font-size: 1.12rem;
}

.history-hero {
  background:
    var(--history-overlay);
}

.history-hero-card,
.story-card {
  padding: 28px;
  border: 1px solid var(--color-line);
  border-left: 5px solid var(--color-red);
  border-radius: var(--radius);
  background: var(--color-panel-alpha);
  box-shadow: var(--shadow-soft);
}

.history-hero-card h2 {
  font-size: 2.2rem;
}

.history-hero-card p,
.story-card p {
  color: var(--color-page-copy);
}

.history-photo-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-panel);
  box-shadow: var(--shadow-soft);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms var(--motion-ease);
}

.history-photo-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.history-hero-photo img {
  height: 420px;
  object-position: center;
}

.split.reverse .history-photo-card img {
  height: 560px;
  object-position: center top;
}

.split.reverse .history-retail-photo img {
  object-position: center 58%;
}

.history-photo-card figcaption {
  padding: 13px 16px;
  color: var(--color-page-copy);
  border-top: 1px solid var(--color-line);
  font-size: 0.93rem;
  line-height: 1.45;
}

.history-archive-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.history-archive-grid .history-photo-card img {
  height: 260px;
}

.history-archive-grid .history-photo-card.portrait img {
  height: 360px;
  object-position: center top;
}

.history-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-line);
}

.history-step {
  min-height: 100%;
  padding: 22px;
  background: var(--color-panel);
}

.history-step span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--color-link-hover);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: inset 0 -2px 0 var(--color-red);
}

.history-step p {
  color: var(--color-steel);
}

.kicker-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.kicker {
  padding: 15px;
  background: var(--color-panel);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  font-weight: 800;
}

.testimonial {
  padding: 24px;
  border-left: 5px solid var(--color-red);
  background: var(--color-panel);
  border-radius: var(--radius);
}

.footer {
  color: var(--color-footer-text);
  background: var(--color-footer-bg);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.15fr repeat(4, minmax(0, 1fr));
  gap: 30px;
  padding: 54px 0;
}

.footer h2,
.footer h3 {
  color: var(--color-on-brand);
}

.footer a {
  color: var(--color-footer-text);
  text-decoration: none;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--color-on-brand);
}

.footer ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--color-footer-muted);
  font-size: 0.9rem;
}

body:has(.mobile-sticky) .footer {
  padding-bottom: env(safe-area-inset-bottom);
}

.mobile-sticky {
  display: none;
}

.notice {
  padding: 16px;
  background: var(--color-notice-bg);
  border: 1px solid var(--color-notice-border);
  border-left: 5px solid var(--color-red);
  border-radius: var(--radius);
}

.small-text {
  color: var(--color-steel);
  font-size: 0.92rem;
}

.anchor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.anchor-list a {
  padding: 8px 11px;
  color: var(--color-link-strong);
  background: var(--color-panel);
  border: 1px solid var(--color-line);
  border-radius: 5px;
  text-decoration: none;
  font-weight: 800;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(210px, 0.28fr) minmax(0, 1fr);
  align-items: start;
  gap: 28px;
}

.legal-nav {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 18px;
  background: var(--color-panel);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.legal-nav a {
  padding: 8px 0;
  color: var(--color-link-strong);
  text-decoration: none;
  font-weight: 800;
  border-bottom: 1px solid var(--color-line);
}

.legal-nav a:last-child {
  border-bottom: 0;
}

.legal-content {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.legal-panel {
  min-width: 0;
  padding: 28px;
  background: var(--color-panel);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.legal-panel h2 {
  margin-bottom: 14px;
  font-size: 1.6rem;
}

.legal-panel p:last-child,
.legal-panel .legal-list:last-child {
  margin-bottom: 0;
}

.legal-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.policy-table-wrap {
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.policy-table {
  min-width: 620px;
}

.form-consent {
  margin: 16px 0;
  padding: 14px;
  color: var(--color-page-copy);
  background: var(--color-soft);
  border: 1px solid var(--color-line);
  border-left: 5px solid var(--color-red);
  border-radius: var(--radius);
  font-size: 0.92rem;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-media-settle {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-copy p,
  .hero-copy .button-row,
  .hero-media {
    animation: hero-rise 620ms var(--motion-ease) both;
  }

  .hero-copy h1 {
    animation-delay: 70ms;
  }

  .hero-copy p {
    animation-delay: 140ms;
  }

  .hero-copy .button-row {
    animation-delay: 210ms;
  }

  .hero-media {
    animation-name: hero-media-settle;
    animation-delay: 170ms;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .motion-ready .motion-reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1000px) {
  .hero-grid,
  .page-hero-grid,
  .split,
  .split.reverse,
  .quote-band-inner {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .card-grid.four,
  .trust-grid,
  .kicker-grid,
  .history-timeline,
  .history-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split.reverse .history-photo-card img {
    height: 460px;
  }

  .history-hero-photo img {
    height: 360px;
  }

  .history-archive-grid .history-photo-card img {
    height: 280px;
  }

  .history-archive-grid .history-photo-card.portrait img {
    height: 420px;
  }

  .workflow-gallery {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    overflow-x: auto;
    overflow-y: hidden;
    margin-inline: -20px;
    padding: 0 20px 12px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .workflow-gallery .card {
    scroll-snap-align: start;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .application-chip-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
  }

  .legal-nav a {
    padding: 7px 10px;
    border: 1px solid var(--color-line);
    border-radius: 5px;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: calc(72px + env(safe-area-inset-top, 0));
  }

  .utility-inner {
    min-height: 38px;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    padding: 7px 0;
    font-size: 0.82rem;
  }

  .utility-links,
  .utility-actions {
    gap: 8px;
  }

  .utility-links a[href^="mailto"],
  .utility-actions span {
    display: none;
  }

  .utility-quote {
    padding: 7px 9px;
    white-space: nowrap;
  }

  .theme-control {
    margin-left: auto;
    width: 28px;
    height: 28px;
  }

  .theme-control svg {
    width: 15px;
    height: 15px;
  }

  .header-inner {
    min-height: 64px;
    gap: 12px;
  }

  .brand img {
    width: 158px;
    height: auto;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .primary-nav {
    position: absolute;
    left: -20px;
    right: -20px;
    top: 100%;
    display: none;
    max-height: min(74vh, calc(100vh - 72px));
    overflow: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px 18px;
    background: var(--color-panel);
    border-bottom: 1px solid var(--color-line);
    box-shadow: var(--shadow-soft);
    -webkit-overflow-scrolling: touch;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--color-line);
  }

  .nav-cta {
    margin-top: 12px;
    padding: 13px 15px !important;
    text-align: center;
  }

  .section {
    padding: 48px 0;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading p,
  .page-hero p,
  .hero-copy p {
    font-size: 1rem;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .hero {
    padding: 42px 0 34px;
  }

  .hero-grid,
  .page-hero-grid,
  .split,
  .split.reverse {
    gap: 28px;
  }

  .page-hero {
    padding: 38px 0 48px;
  }

  .button-row {
    gap: 10px;
    margin-top: 22px;
  }

  .detail-badge {
    position: static;
    margin-top: 12px;
    max-width: none;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    min-height: 50px;
    font-size: 16px;
  }

  .quote-card {
    padding: 20px;
  }

  .quote-card form {
    padding-bottom: 12px;
  }

  .spec-table,
  .spec-table tbody,
  .spec-table tr,
  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
  }

  .spec-table th {
    border-bottom: 0;
  }

  .spec-table td {
    border-bottom: 1px solid var(--color-line);
  }

  .output-table {
    display: table;
    width: 100%;
  }

  .output-table thead {
    display: table-header-group;
  }

  .output-table tbody {
    display: table-row-group;
  }

  .output-table tr {
    display: table-row;
  }

  .output-table th,
  .output-table td {
    display: table-cell;
    width: auto;
  }

  .mobile-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--color-panel);
    border-top: 1px solid var(--color-line);
    box-shadow: 0 -10px 24px var(--color-sticky-shadow);
    padding-bottom: env(safe-area-inset-bottom);
  }

  .mobile-sticky a {
    min-height: 52px;
    padding: 14px 10px;
    text-align: center;
    text-decoration: none;
    font-weight: 800;
  }

  .mobile-sticky a:first-child {
    color: var(--color-cta-text);
    background: var(--color-red);
  }

  .mobile-sticky a:last-child {
    color: var(--color-link-strong);
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  body {
    font-size: 15.5px;
  }

  h1 {
    font-size: 2.1rem;
    line-height: 1.06;
  }

  h2 {
    font-size: 1.62rem;
    line-height: 1.12;
  }

  h3 {
    font-size: 1.08rem;
  }

  .card-grid,
  .card-grid.four,
  .trust-grid,
  .kicker-grid,
  .history-timeline,
  .history-archive-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .split.reverse .history-photo-card img {
    height: 420px;
  }

  .history-hero-photo img {
    height: 260px;
  }

  .history-archive-grid .history-photo-card img,
  .history-archive-grid .history-photo-card.portrait img {
    height: 340px;
  }

  .workflow-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(245px, 245px));
    gap: 12px;
    margin-inline: -12px;
    padding-inline: 12px;
  }

  .workflow-gallery .card {
    width: 245px;
  }

  .workflow-gallery .card.media img {
    height: 142px;
    aspect-ratio: auto;
  }

  .workflow-gallery .card-body {
    padding: 14px;
  }

  .workflow-gallery h3 {
    font-size: 1rem;
  }

  .card-grid.four.route-grid {
    grid-template-columns: repeat(4, minmax(230px, 230px));
    overflow-x: auto;
    overflow-y: hidden;
    margin-inline: -12px;
    padding: 0 12px 12px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .route-grid .route-card {
    width: 230px;
    scroll-snap-align: start;
  }

  .card-grid.four.machine-family-grid {
    grid-template-columns: repeat(4, minmax(230px, 230px));
    overflow-x: auto;
    overflow-y: hidden;
    margin-inline: -12px;
    padding: 0 12px 12px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .machine-family-grid .card {
    width: 230px;
    scroll-snap-align: start;
  }

  .machine-family-grid .card.media img {
    height: 145px;
  }

  .machine-snapshot {
    grid-template-columns: 1fr;
  }

  .application-chip-grid {
    grid-template-columns: repeat(5, minmax(190px, 190px));
    overflow-x: auto;
    overflow-y: hidden;
    margin-inline: -12px;
    padding: 0 12px 12px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .application-chip-grid a {
    scroll-snap-align: start;
  }

  .page-hero .kicker-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .kicker {
    padding: 12px;
    font-size: 0.92rem;
  }

  .card {
    padding: 18px;
  }

  .legal-panel {
    padding: 18px;
  }

  .legal-panel h2 {
    font-size: 1.28rem;
  }

  .legal-nav {
    padding: 14px;
  }

  .card-body {
    padding: 18px;
  }

  .card.media img {
    aspect-ratio: 16 / 10;
  }

  .machine-frame {
    aspect-ratio: 16 / 11;
  }

  .image-frame {
    max-height: 360px;
  }

  .image-frame img {
    object-fit: contain;
    background: var(--color-panel);
  }

  .video-frame {
    border-radius: 6px;
  }

  .feature-list {
    gap: 11px;
    margin-top: 18px;
  }

  .feature-list li {
    padding-left: 13px;
    border-left-width: 3px;
  }

  .trust-item {
    min-height: auto;
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding: 13px 14px;
  }

  .quote-band-inner .button-row {
    width: 100%;
  }

  .footer-main {
    gap: 22px;
    padding: 38px 0 104px;
  }

  .footer-bottom {
    padding-bottom: 20px;
  }
}

@media (max-width: 390px) {
  .utility-inner {
    font-size: 0.78rem;
  }

  .brand img {
    width: 142px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    font-size: 0.78rem;
  }

  h1 {
    font-size: 1.92rem;
  }

  h2 {
    font-size: 1.46rem;
  }

  .eyebrow {
    font-size: 0.72rem;
    gap: 6px;
  }

  .eyebrow::before {
    width: 18px;
    flex: 0 0 18px;
  }

  .card,
  .quote-card,
  .history-hero-card,
  .story-card {
    padding: 16px;
  }

  .workflow-gallery {
    grid-template-columns: repeat(3, minmax(230px, 230px));
  }

  .workflow-gallery .card {
    width: 230px;
  }

  .workflow-gallery .card.media img {
    height: 132px;
  }
}

