:root {
  --ink: #13181c;
  --ink-2: #273039;
  --muted: #65717c;
  --paper: #f7f4ef;
  --paper-2: #fffdf9;
  --line: #ded7cc;
  --line-dark: rgba(255, 255, 255, 0.16);
  --burgundy: #9e2330;
  --burgundy-2: #6e1620;
  --brass: #b8894d;
  --steel: #557181;
  --deep: #0f1518;
  --deep-2: #182329;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(20, 24, 28, 0.16);
  --soft-shadow: 0 16px 40px rgba(20, 24, 28, 0.1);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper-2);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.04;
  color: var(--ink);
  font-weight: 700;
}

h1 {
  font-size: 76px;
  max-width: 980px;
}

h2 {
  font-size: 48px;
  max-width: 820px;
}

h3 {
  font-size: 27px;
}

h4 {
  font-size: 18px;
}

.site-shell {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(19, 24, 28, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(19, 24, 28, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
  padding: 0 40px;
  background: rgba(255, 253, 249, 0.92);
  border-bottom: 1px solid rgba(222, 215, 204, 0.76);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 176px;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 650;
}

.nav a {
  padding: 28px 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a[aria-current="page"] {
  border-color: var(--burgundy);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button,
.ghost-button,
.small-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 4px;
  font-weight: 750;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform 180ms ease, background 180ms ease, border 180ms ease, color 180ms ease;
}

.button {
  background: var(--burgundy);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(158, 35, 48, 0.22);
}

.button:hover {
  transform: translateY(-1px);
  background: var(--burgundy-2);
}

.ghost-button {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(19, 24, 28, 0.16);
}

.ghost-button:hover {
  transform: translateY(-1px);
  border-color: var(--burgundy);
}

.small-button {
  min-height: 40px;
  padding: 0 14px;
  background: var(--ink);
  color: var(--white);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.mobile-nav {
  display: none;
}

.section {
  padding: 110px 40px;
}

.section.tight {
  padding: 82px 40px;
}

.section.dark {
  background: var(--deep);
  color: var(--white);
}

.section.paper {
  background: var(--paper);
}

.section.white {
  background: var(--paper-2);
}

.wrap {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--burgundy);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section.dark .eyebrow {
  color: #ff9b9b;
}

.section.dark h2,
.section.dark h3,
.section.dark h4,
.section.dark p {
  color: var(--white);
}

.lead {
  max-width: 760px;
  margin-top: 22px;
  color: #53616d;
  font-size: 20px;
  line-height: 1.7;
}

.section.dark .lead,
.section.dark p {
  color: rgba(255, 255, 255, 0.75);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  padding: 120px 40px 54px;
  color: var(--white);
  overflow: hidden;
  background: var(--deep);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 21, 24, 0.96), rgba(15, 21, 24, 0.72) 42%, rgba(15, 21, 24, 0.18)),
    url("manufacturing-hero.jpg") center / cover no-repeat;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  background: linear-gradient(0deg, rgba(15, 21, 24, 0.92), transparent);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.hero h1 {
  color: var(--white);
}

.hero-copy {
  max-width: 760px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-actions .ghost-button {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.hero-strip {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 66px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.metric {
  min-height: 112px;
  padding: 24px 26px;
  border-right: 1px solid var(--line-dark);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  color: var(--white);
  font-size: 34px;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.5;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.portrait {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: 8px;
  background: var(--deep);
  box-shadow: var(--shadow);
}

.portrait img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 21, 24, 0.42), transparent 58%);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 56px;
  background: var(--line);
  border: 1px solid var(--line);
}

.capability {
  min-height: 250px;
  padding: 28px;
  background: var(--paper-2);
}

.capability span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 54px;
  border-radius: 50%;
  color: var(--burgundy);
  border: 1px solid rgba(158, 35, 48, 0.34);
  font-weight: 800;
}

.capability p {
  margin-top: 14px;
  font-size: 15px;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
  border: 1px solid var(--line);
}

.evidence-tile {
  min-height: 130px;
  padding: 22px;
  background: var(--paper-2);
}

.split .evidence-grid {
  grid-template-columns: repeat(2, 1fr);
}

.evidence-tile strong {
  display: block;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.1;
}

.evidence-tile span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.proof-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 56px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-item {
  padding: 34px;
  background: rgba(255, 255, 255, 0.04);
}

.proof-item strong {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 22px;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 52px;
}

.leader-card {
  min-height: 0;
  aspect-ratio: 1 / 1;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  display: flex;
  flex-direction: column;
}

.leader-card-photo {
  grid-column: 1 / -1;
  aspect-ratio: auto;
  min-height: 320px;
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  gap: 34px;
  align-items: center;
}

.leader-feature-copy {
  align-self: center;
}

.leader-photo {
  width: 100%;
  height: 272px;
  object-fit: cover;
  object-position: 50% 18%;
  border-radius: 6px;
  background: var(--paper);
}

.leader-role {
  min-height: 38px;
  color: var(--burgundy);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0;
}

.leader-card h3 {
  margin-top: 12px;
  font-size: 26px;
}

.leader-card p:not(.leader-role) {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.58;
}

.leader-card-photo h3 {
  font-size: 42px;
}

.leader-card-photo p:not(.leader-role) {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.65;
}

.leader-focus {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 24px 0 0;
}

.leader-focus li {
  list-style: none;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.4;
}

.technology-panel {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 520px;
  background: var(--deep);
  color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.technology-copy {
  padding: 54px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 38px;
}

.technology-copy h3 {
  color: var(--white);
  font-size: 42px;
}

.technology-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.technology-visual {
  min-height: 520px;
  padding: 34px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
    #121b20;
}

.technology-visual img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.product-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product-mini {
  min-height: 178px;
  padding: 20px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.product-mini strong {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 19px;
}

.product-mini span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.55;
}

.client-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 44px;
}

.client-logo {
  display: grid;
  place-items: center;
  min-height: 164px;
  padding: 24px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
}

.client-logo img {
  max-height: 82px;
  object-fit: contain;
}

.client-logo strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: 14px;
}

.client-logo span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.customer-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 54px;
}

.customer-card {
  min-height: 250px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.customer-card img {
  width: 132px;
  height: 78px;
  object-fit: contain;
  margin-bottom: 28px;
}

.customer-card p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
}

.timeline {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.timeline-step {
  min-height: 180px;
  padding: 24px;
  background: var(--paper-2);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.timeline-step span {
  display: block;
  margin-bottom: 42px;
  color: var(--burgundy);
  font-weight: 850;
}

.timeline-step p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.55;
}

.dark-timeline {
  border-color: rgba(255, 255, 255, 0.12);
}

.dark-timeline .timeline-step {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
}

.dark-timeline .timeline-step span,
.dark-timeline .timeline-step h4 {
  color: var(--white);
}

.dark-timeline .timeline-step p {
  color: rgba(255, 255, 255, 0.68);
}

.quote {
  padding: 52px;
  background: var(--deep);
  border-radius: 8px;
  color: var(--white);
  box-shadow: var(--shadow);
}

.quote p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}

.quote p + p {
  margin-top: 16px;
}

.quote strong {
  display: block;
  margin-top: 30px;
  color: var(--white);
}

.quote span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.58);
}

.page-hero {
  padding: 144px 40px 86px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(15, 21, 24, 0.96), rgba(24, 35, 41, 0.9)),
    url("manufacturing-hero.jpg") center / cover no-repeat;
}

.page-hero h1,
.page-hero p {
  color: var(--white);
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.74);
}

.page-hero .breadcrumbs {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.product-detail {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 0;
  margin-top: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
}

.product-detail:nth-child(even) {
  grid-template-columns: 1.08fr 0.92fr;
}

.product-detail:nth-child(even) .product-image {
  order: 2;
}

.product-image {
  min-height: 430px;
  display: grid;
  place-items: center;
  padding: 34px;
  background: var(--deep);
}

.product-image img {
  border-radius: 6px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.product-body {
  padding: 48px;
}

.product-index {
  color: var(--burgundy);
  font-weight: 850;
  margin-bottom: 28px;
}

.product-body h3 {
  font-size: 42px;
}

.product-body .tagline {
  margin: 14px 0 18px;
  color: var(--steel);
  font-size: 19px;
  font-weight: 750;
}

.product-body .button,
.product-body .ghost-button {
  margin-top: 28px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.chip {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink-2);
  background: var(--paper);
  font-size: 12px;
  font-weight: 800;
}

.workflow-map {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: 56px;
  background: var(--line);
  border: 1px solid var(--line);
}

.workflow-node {
  min-height: 210px;
  padding: 28px;
  background: var(--paper-2);
}

.workflow-node span {
  display: block;
  margin-bottom: 58px;
  color: var(--burgundy);
  font-weight: 850;
}

.product-page-visual {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.visual-panel {
  min-height: 420px;
  padding: 34px;
  display: grid;
  place-items: center;
  background: var(--deep);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.visual-panel img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  border-radius: 6px;
}

.detail-panel {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.detail-panel .plain-list li {
  margin-top: 10px;
}

.module-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}

.module-card {
  min-height: 310px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
}

.module-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  background: var(--deep);
}

.module-card div {
  padding: 24px;
}

.module-card p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
}

.phone-stage {
  min-height: 520px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(15, 21, 24, 0.96), rgba(24, 35, 41, 0.88)),
    var(--deep);
  border-radius: 8px;
  padding: 34px;
}

.phone-frame {
  width: min(250px, 100%);
  min-height: 500px;
  border-radius: 30px;
  padding: 18px;
  background: #05090b;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.phone-screen {
  min-height: 464px;
  padding: 24px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f8fafb, #e8eef1);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.phone-screen img {
  max-height: 74px;
  object-fit: contain;
  margin-bottom: 18px;
}

.phone-screen h3 {
  font-size: 26px;
}

.phone-screen p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.55;
}

.phone-metric {
  padding: 13px 14px;
  border-radius: 6px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 750;
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-lines a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--burgundy);
  font-weight: 800;
}

.footer-contact a {
  word-break: break-word;
}

.form-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.machine-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.machine-list li,
.plain-list li {
  list-style: none;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: var(--paper-2);
  border-radius: 6px;
  color: var(--ink-2);
  font-weight: 650;
}

.machine-list,
.plain-list {
  padding: 0;
}

.machine-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}

.machine-spec {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.dark .machine-spec {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: none;
}

.machine-spec span,
.machine-spec small {
  display: block;
  color: var(--steel);
  font-weight: 800;
  line-height: 1.45;
}

.dark .machine-spec span,
.dark .machine-spec small {
  color: rgba(255, 255, 255, 0.58);
}

.machine-spec h3 {
  margin-top: 10px;
  font-size: 28px;
}

.machine-spec p {
  margin-top: 18px;
  font-size: 16px;
  font-weight: 750;
}

.dark .machine-spec h3,
.dark .inventory-columns h3 {
  color: var(--white);
}

.dark .machine-spec p {
  color: rgba(255, 255, 255, 0.84);
}

.inventory-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 42px;
}

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

.dark .machine-list li {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.82);
}

.checking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 30px;
  border: 1px solid var(--line);
  background: var(--line);
}

.checking-grid article {
  min-height: 210px;
  padding: 24px;
  background: var(--white);
}

.checking-grid strong {
  display: block;
  color: var(--burgundy);
  font-size: 22px;
}

.checking-grid p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.62;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.portfolio-card {
  min-height: 300px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--soft-shadow);
}

.portfolio-card img {
  width: 126px;
  height: 76px;
  object-fit: contain;
  margin-bottom: 34px;
}

.portfolio-card p {
  margin-top: 14px;
  font-size: 15px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-card {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.contact-card + .contact-card {
  margin-top: 18px;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-grid label {
  display: grid;
  gap: 8px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 800;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper-2);
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
}

.form-grid textarea {
  min-height: 132px;
  resize: vertical;
}

.site-footer {
  padding: 70px 40px 34px;
  background: var(--deep);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.9fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-grid img {
  width: 170px;
  margin-bottom: 22px;
  filter: brightness(1.2);
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.8;
}

.footer-grid a {
  display: block;
  margin-top: 10px;
}

.footer-grid h4 {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
}

@media (max-width: 1080px) {
  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 40px;
  }

  .nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .header-actions .button {
    display: none;
  }

  .mobile-nav {
    display: none;
    position: fixed;
    z-index: 45;
    top: 76px;
    left: 0;
    right: 0;
    padding: 18px 40px 28px;
    background: var(--paper-2);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--soft-shadow);
  }

  .mobile-nav.is-open {
    display: grid;
    gap: 8px;
  }

  .mobile-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    font-weight: 750;
  }

  .hero-strip,
  .evidence-grid,
  .capability-grid,
  .leadership-grid,
  .workflow-map,
  .machine-spec-grid,
  .checking-grid,
  .timeline,
  .portfolio-grid,
  .customer-proof-grid,
  .module-showcase {
    grid-template-columns: repeat(2, 1fr);
  }

  .leader-card-photo {
    grid-template-columns: 220px 1fr;
  }

  .technology-panel,
  .product-page-visual,
  .split,
  .split.reverse,
  .contact-layout,
  .product-detail,
  .product-detail:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .product-detail:nth-child(even) .product-image {
    order: initial;
  }

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

@media (max-width: 720px) {
  .site-header {
    height: 68px;
    padding: 0 18px;
  }

  .brand img {
    width: 144px;
  }

  .mobile-nav {
    top: 68px;
    padding: 12px 18px 22px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

  h3,
  .product-body h3,
  .technology-copy h3 {
    font-size: 28px;
  }

  p,
  .lead,
  .hero-copy {
    font-size: 16px;
  }

  .hero {
    min-height: 710px;
    padding: 100px 22px 34px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(15, 21, 24, 0.88), rgba(15, 21, 24, 0.9)),
      url("manufacturing-hero.jpg") center / cover no-repeat;
  }

  .hero-strip,
  .evidence-grid,
  .capability-grid,
  .leadership-grid,
  .proof-band,
  .product-mini-grid,
  .client-strip,
  .customer-proof-grid,
  .workflow-map,
  .machine-spec-grid,
  .checking-grid,
  .timeline,
  .module-showcase,
  .inventory-columns,
  .machine-list,
  .portfolio-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .leader-card,
  .leader-card-photo {
    aspect-ratio: auto;
    min-height: 0;
  }

  .leader-card-photo {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .leader-photo {
    height: 260px;
  }

  .leader-card-photo h3 {
    font-size: 34px;
  }

  .leader-card-photo p:not(.leader-role) {
    font-size: 16px;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .section,
  .section.tight,
  .page-hero {
    padding-left: 22px;
    padding-right: 22px;
  }

  .section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .page-hero {
    padding-top: 112px;
    padding-bottom: 64px;
  }

  .portrait,
  .portrait img,
  .technology-visual {
    min-height: 340px;
  }

  .technology-copy,
  .product-body,
  .quote,
  .contact-card,
  .detail-panel {
    padding: 28px;
  }

  .product-image {
    min-height: 260px;
    padding: 22px;
  }

  .visual-panel,
  .phone-stage {
    min-height: 340px;
    padding: 22px;
  }

  .phone-frame {
    min-height: 430px;
  }

  .phone-screen {
    min-height: 394px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
