:root {
  --black: #050607;
  --void: #0a0d0e;
  --deck: #111718;
  --deck-2: #182021;
  --steel: #aab4c0;
  --mist: #f2f5f8;
  --line: rgba(242, 245, 248, .16);
  --line-strong: rgba(242, 245, 248, .32);
  --grid: rgba(92, 214, 255, .13);
  --arc: #5cd6ff;
  --violet: #b9c7ff;
  --danger: #ff5b7a;
  --amber: #d8dce6;
  --muted: #7f8792;
  --radius: 0;
  --shadow: 0 34px 90px rgba(0,0,0,.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--mist);
  background:
    linear-gradient(rgba(92,214,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92,214,255,.04) 1px, transparent 1px),
    radial-gradient(circle at 80% 12%, rgba(92,214,255,.12), transparent 32%),
    radial-gradient(circle at 18% 72%, rgba(185,199,255,.09), transparent 34%),
    var(--black);
  background-size: 44px 44px, 44px 44px, auto, auto;
  font-family: "IBM Plex Sans", Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,.025), rgba(255,255,255,.025) 1px, transparent 1px, transparent 6px);
  pointer-events: none;
}

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

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

p {
  margin: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: -999px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--arc);
  color: var(--black);
  font-weight: 900;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 6, 7, .88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
}

.nav {
  width: min(1320px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 24px;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  padding-right: 18px;
  border-right: 1px solid var(--line);
}

.brand img {
  width: 152px;
  height: auto;
  filter: drop-shadow(0 0 14px rgba(92,214,255,.25));
}

.nav-links {
  display: grid;
  grid-auto-flow: column;
  justify-content: start;
  gap: 0;
  border: 1px solid var(--line);
  width: fit-content;
}

.nav-links a,
.mobile-panel a {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 17px;
  color: var(--steel);
  border-right: 1px solid var(--line);
  font: 900 12px/1 Inter, "Segoe UI", Arial, sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .18s ease, background .18s ease;
}

.nav-links a:last-child {
  border-right: 0;
}

.nav-links a::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--arc);
  transform: scaleY(0);
  transition: transform .18s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.mobile-panel a:hover,
.mobile-panel a:focus-visible {
  color: var(--mist);
  background: rgba(92,214,255,.08);
  outline: none;
}

.nav-links a:hover::before,
.nav-links a:focus-visible::before {
  transform: scaleY(1);
}

.nav-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  color: var(--black);
  background: var(--arc);
  border: 1px solid var(--arc);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.nav-action:hover,
.nav-action:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 26px rgba(92,214,255,.34);
  filter: brightness(1.08);
  outline: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  background: var(--void);
  color: var(--mist);
  align-items: center;
  justify-content: center;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform .18s ease, opacity .18s ease;
}

.menu-toggle span::before {
  transform: translateY(-6px);
}

.menu-toggle span::after {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] span::before {
  transform: translateY(1px) rotate(45deg);
  background: var(--mist);
}

.menu-toggle[aria-expanded="true"] span::after {
  transform: translateY(-1px) rotate(-45deg);
  background: var(--mist);
}

.mobile-panel {
  display: none;
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto 14px;
  background: var(--void);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mobile-panel.open {
  display: grid;
}

.hero,
.page-hero,
.product-hero {
  position: relative;
  min-height: calc(100vh - 74px);
  color: var(--mist);
  background:
    linear-gradient(90deg, rgba(5,6,7,.96) 0%, rgba(5,6,7,.78) 42%, rgba(5,6,7,.32) 100%),
    url("https://storage.googleapis.com/cg-webase/media/1779815218956-d59ef921.jpg") center / cover no-repeat;
  overflow: hidden;
}

.page-hero,
.product-hero {
  min-height: auto;
  background-image:
    linear-gradient(90deg, rgba(5,6,7,.96), rgba(5,6,7,.68)),
    url("https://storage.googleapis.com/cg-webase/media/1779815218438-a5fbb925.jpg");
}

.product-hero.rolling {
  background-image: linear-gradient(90deg, rgba(5,6,7,.96), rgba(5,6,7,.54)), url("https://storage.googleapis.com/cg-webase/media/1779815218956-d59ef921.jpg");
}

.product-hero.cleaning {
  background-image: linear-gradient(90deg, rgba(5,6,7,.96), rgba(5,6,7,.58)), url("https://storage.googleapis.com/cg-webase/media/1779815218438-a5fbb925.jpg");
}

.product-hero.leveling {
  background-image: linear-gradient(90deg, rgba(5,6,7,.96), rgba(5,6,7,.62)), url("https://storage.googleapis.com/cg-webase/media/1779815218956-d59ef921.jpg");
  background-position: center top;
}

.product-hero.slitting {
  background-image: linear-gradient(90deg, rgba(5,6,7,.96), rgba(5,6,7,.62)), url("https://storage.googleapis.com/cg-webase/media/1779815218438-a5fbb925.jpg");
  background-position: center bottom;
}

.hero::before,
.page-hero::before,
.product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(92,214,255,.18), transparent 23%),
    linear-gradient(rgba(92,214,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92,214,255,.1) 1px, transparent 1px);
  background-size: auto, 88px 88px, 88px 88px;
  mask-image: linear-gradient(90deg, #000, rgba(0,0,0,.78) 45%, transparent);
}

.hero::after {
  content: "LINE STATUS / READY";
  position: absolute;
  right: 22px;
  bottom: 26px;
  z-index: 2;
  color: rgba(92,214,255,.5);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font: 900 11px/1 Inter, sans-serif;
  letter-spacing: .18em;
}

.hero-inner,
.page-hero .container,
.product-hero .container {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  grid-template-areas:
    "label metrics"
    "title metrics"
    "copy metrics"
    "actions metrics";
  gap: 18px 42px;
  align-content: center;
  padding: 58px 0 180px;
}

.page-hero .container,
.product-hero .container {
  padding: 84px 0 76px;
}

.eyebrow {
  grid-area: label;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  color: var(--arc);
  font: 950 12px/1 Inter, sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 52px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.page-hero h1,
.product-hero h1 {
  grid-area: title;
  max-width: 1060px;
  margin: 0;
  color: var(--mist);
  font: 950 clamp(42px, 7vw, 104px)/.82 Inter, "Segoe UI", Arial, sans-serif;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.page-hero h1,
.product-hero h1 {
  max-width: 980px;
  font-size: clamp(42px, 6.2vw, 92px);
}

.hero .lead,
.page-hero .lead,
.product-hero .lead {
  grid-area: copy;
  max-width: 700px;
  color: rgba(238,245,239,.78);
  font-size: 18px;
}

.hero-actions,
.section-actions {
  grid-area: actions;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid var(--line-strong);
  background: rgba(238,245,239,.05);
  color: var(--mist);
  font-weight: 950;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}

.btn::after {
  content: "↗";
  font-weight: 900;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
  outline: none;
}

.btn-primary {
  color: var(--black);
  background: var(--arc);
  border-color: var(--arc);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 0 30px rgba(92,214,255,.38);
}

.btn-secondary:hover,
.btn-light:hover,
.btn-secondary:focus-visible,
.btn-light:focus-visible {
  background: rgba(92,214,255,.1);
  border-color: var(--arc);
}

.btn-dark {
  background: var(--arc);
  color: var(--black);
  border-color: var(--arc);
}

.btn-light {
  background: transparent;
  color: var(--mist);
}

.hero-metrics {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(1320px, calc(100% - 32px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line-strong);
  background: rgba(5,6,7,.72);
  box-shadow: var(--shadow);
}

.hero-metrics div {
  position: relative;
  min-width: 0;
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}

.hero-metrics div::before {
  content: "0" counter(metric);
  counter-increment: metric;
  display: block;
  margin-bottom: 14px;
  color: rgba(92,214,255,.55);
  font: 950 11px/1 Inter, sans-serif;
  letter-spacing: .16em;
}

.hero-metrics {
  counter-reset: metric;
}

.hero-metrics div:last-child {
  border-right: 0;
}

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

.hero-metrics span {
  color: var(--steel);
  font-size: 13px;
}

.section {
  padding: 92px 0;
}

.section.band,
.section.dark {
  background: transparent;
}

.section.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.container {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(280px, 1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.section-head h2 {
  margin: 12px 0 0;
  font: 950 clamp(34px, 5vw, 72px)/.86 Inter, sans-serif;
  letter-spacing: -.05em;
  text-transform: uppercase;
}

.section-head p,
.muted {
  color: var(--steel);
}

.product-grid {
  display: grid;
  grid-template-columns: 1.15fr .95fr .95fr .95fr;
  border: 1px solid var(--line);
}

.product-card,
.article-card,
.value-card,
.contact-card,
.case-card {
  position: relative;
  color: var(--mist);
  background: rgba(17,23,24,.72);
  border: 0;
  border-right: 1px solid var(--line);
  overflow: hidden;
  transition: background .2s ease, transform .2s ease;
}

.product-card:last-child,
.article-card:last-child {
  border-right: 0;
}

.product-card:hover,
.article-card:hover,
.value-card:hover,
.contact-card:hover,
.case-card:hover {
  background: rgba(24,32,33,.92);
  transform: translateY(-6px);
}

.product-card::before,
.article-card::before,
.value-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 0;
  height: 3px;
  background: var(--arc);
  transition: width .22s ease;
  z-index: 2;
}

.product-card:hover::before,
.article-card:hover::before,
.value-card:hover::before,
.contact-card:hover::before {
  width: 100%;
}

.product-card figure,
.article-card figure,
.case-card figure {
  margin: 0;
  position: relative;
  aspect-ratio: 1 / .72;
  overflow: hidden;
  background: var(--deck);
  border-bottom: 1px solid var(--line);
}

.product-card:first-child figure {
  aspect-ratio: 1 / .58;
}

.product-card img,
.article-card img,
.case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.06) brightness(.86);
  transition: filter .28s ease, transform .28s ease;
}

.product-card:hover img,
.article-card:hover img,
.case-card:hover img {
  filter: contrast(1.05) brightness(.98);
  transform: scale(1.05);
}

.product-card .card-body,
.article-card .card-body,
.case-card .card-body {
  padding: 24px;
}

.product-card h2,
.product-card h3,
.article-card h2,
.article-card h3,
.case-card h3 {
  margin: 0 0 12px;
  font: 950 25px/.98 Inter, sans-serif;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.product-card p,
.article-card p,
.case-card p {
  color: var(--steel);
  font-size: 14px;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 18px 0 0;
}

.mini-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 18px 0 0;
  border: 1px solid var(--line);
}

.mini-specs div {
  min-width: 0;
  padding: 10px;
  border-right: 1px solid var(--line);
  background: rgba(5,6,7,.42);
}

.mini-specs div:last-child {
  border-right: 0;
}

.mini-specs dt {
  margin: 0 0 6px;
  color: var(--steel);
  font: 900 10px/1 Inter, sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.mini-specs dd {
  margin: 0;
  color: var(--arc);
  font: 950 14px/1.12 Inter, sans-serif;
  letter-spacing: -.02em;
}

.tag {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 4px 8px;
  color: var(--arc);
  background: rgba(92,214,255,.08);
  border: 1px solid rgba(92,214,255,.22);
  font: 900 11px/1 Inter, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.read-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--mist);
  font-weight: 950;
}

.read-link::after {
  content: "↗";
  margin-left: 8px;
  color: var(--arc);
}

.spec-strip,
.formula {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.spec-strip div,
.formula div {
  min-width: 0;
  padding: 24px;
  background: rgba(17,23,24,.74);
  border-right: 1px solid var(--line);
}

.formula {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.spec-strip div:last-child,
.formula div:last-child {
  border-right: 0;
}

.spec-strip strong,
.formula strong {
  display: block;
  color: var(--arc);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.04em;
}

.spec-strip span,
.formula span {
  color: var(--steel);
  font-size: 13px;
}

.capability,
.split,
.contact-layout,
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: 44px;
  align-items: start;
}

.capability-visual,
.panel,
.aside-box {
  position: relative;
  background: rgba(17,23,24,.76);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.capability-visual {
  min-height: 480px;
  overflow: hidden;
}

.capability-visual img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  filter: contrast(1.06) brightness(.86);
}

.line-note {
  position: absolute;
  inset: auto 18px 18px;
  padding: 18px;
  background: rgba(5,6,7,.82);
  border: 1px solid var(--line-strong);
}

.line-note strong {
  display: block;
  color: var(--arc);
  margin-bottom: 8px;
}

.value-grid,
.process,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.value-card,
.process-step,
.contact-card,
.proof-cell {
  padding: 24px;
  border-right: 1px solid var(--line);
  background: rgba(17,23,24,.74);
}

.value-card:last-child,
.process-step:last-child,
.contact-card:last-child,
.proof-cell:last-child {
  border-right: 0;
}

.proof-cell {
  min-height: 250px;
  display: grid;
  align-content: space-between;
  transition: background .2s ease, transform .2s ease;
}

.proof-cell:hover {
  background: rgba(24,32,33,.92);
  transform: translateY(-5px);
}

.proof-cell span {
  color: var(--arc);
  font: 950 12px/1 Inter, sans-serif;
  letter-spacing: .18em;
}

.proof-cell h3 {
  margin: 42px 0 10px;
  font: 950 24px/.95 Inter, sans-serif;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.proof-cell p {
  color: var(--steel);
  font-size: 14px;
}

.value-card .icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 34px;
  color: var(--black);
  background: var(--arc);
  font-weight: 950;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.value-card h3,
.process-step h3,
.contact-card h3 {
  margin: 0 0 10px;
  font: 950 20px/1 Inter, sans-serif;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.value-card p,
.process-step p,
.contact-card p,
.contact-card a {
  color: var(--steel);
  font-size: 14px;
}

.process-step span {
  display: block;
  margin-bottom: 28px;
  color: var(--arc);
  font: 950 12px/1 Inter, sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.panel {
  padding: 28px;
}

.dark-panel {
  background: rgba(17,23,24,.9);
}

.data-table {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: rgba(17,23,24,.74);
}

.data-table table {
  min-width: 760px;
}

.data-table th,
.data-table td {
  padding: 14px 15px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

.data-table th {
  color: var(--arc);
  background: rgba(5,6,7,.74);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.data-table th:last-child,
.data-table td:last-child {
  border-right: 0;
}

.data-table tbody tr:hover {
  background: rgba(92,214,255,.055);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--steel);
  font-size: 13px;
}

.breadcrumb a {
  color: var(--mist);
  font-weight: 900;
}

.product-nav {
  position: sticky;
  top: 74px;
  z-index: 20;
  background: rgba(5,6,7,.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.product-nav .container {
  display: flex;
  gap: 0;
  overflow-x: auto;
}

.product-nav a {
  white-space: nowrap;
  padding: 14px 18px;
  color: var(--steel);
  border-left: 1px solid var(--line);
  font: 900 12px/1 Inter, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-nav a:last-child {
  border-right: 1px solid var(--line);
}

.product-nav a:hover,
.product-nav a:focus-visible {
  color: var(--black);
  background: var(--arc);
  outline: none;
}

.feature-list,
.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--steel);
}

.feature-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 9px;
  height: 9px;
  background: var(--arc);
  box-shadow: 0 0 0 5px rgba(92,214,255,.1);
}

.contact-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
}

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

.form {
  display: grid;
  gap: 14px;
}

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

.field label {
  color: var(--arc);
  font: 950 12px/1 Inter, sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: rgba(5,6,7,.82);
  color: var(--mist);
  padding: 13px;
  font: inherit;
}

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

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--arc);
  box-shadow: 0 0 0 4px rgba(92,214,255,.12);
  outline: none;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--arc);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.article-content {
  font-size: 17px;
}

.article-content h2 {
  margin: 42px 0 12px;
  color: var(--mist);
  font: 950 32px/.96 Inter, sans-serif;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.article-content p {
  margin: 0 0 18px;
  color: var(--steel);
}

.article-content img {
  margin: 0 0 28px;
  border: 1px solid var(--line);
  filter: contrast(1.05) brightness(.94);
}

.aside-box {
  position: sticky;
  top: 118px;
  padding: 24px;
}

.aside-box h2,
.aside-box h3 {
  margin: 0 0 14px;
  color: var(--arc);
  font-size: 18px;
  text-transform: uppercase;
}

.industrial-graphic {
  position: relative;
  min-height: 280px;
  background:
    linear-gradient(135deg, rgba(92,214,255,.16), rgba(255,78,58,.1)),
    var(--deck);
  overflow: hidden;
}

.industrial-graphic::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid var(--line-strong);
}

.industrial-graphic::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 50%;
  height: 18px;
  border-top: 2px solid var(--arc);
  border-bottom: 2px solid rgba(238,245,239,.25);
  transform: translateY(-50%);
  box-shadow:
    0 -58px 0 -7px rgba(255,78,58,.58),
    0 58px 0 -7px rgba(243,211,91,.55);
}

.graphic-node {
  position: absolute;
  top: 50%;
  width: 64px;
  height: 64px;
  border: 2px solid rgba(238,245,239,.62);
  transform: translateY(-50%);
  background: rgba(92,214,255,.06);
}

.graphic-node.one {
  left: 20%;
}

.graphic-node.two {
  left: 46%;
}

.graphic-node.three {
  right: 20%;
}

.legal-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--void);
  color: var(--steel);
}

.footer-top {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) repeat(3, minmax(160px, 1fr));
  gap: 32px;
}

.footer-top img {
  width: 150px;
  margin-bottom: 18px;
}

.footer-top h2,
.footer-top h3 {
  margin: 0 0 14px;
  color: var(--arc);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.footer-top a {
  display: block;
  margin: 8px 0;
  color: var(--steel);
}

.footer-top a:hover {
  color: var(--arc);
}

.footer-bottom {
  border-top: 1px solid var(--line);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
  transition-delay: var(--delay, 0ms);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand {
    border-right: 0;
  }

  .nav-links,
  .nav-action {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "label"
      "title"
      "copy"
      "actions"
      "metrics";
    padding: 68px 0;
  }

  .hero-metrics {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: min(1320px, calc(100% - 32px));
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: -28px auto 34px;
  }

  .hero-metrics div {
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }

  .hero-metrics div:last-child {
    border-right: 0;
  }

  .section-head,
  .capability,
  .split,
  .contact-layout,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .value-grid,
  .process,
  .proof-grid,
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .nav {
    min-height: 68px;
  }

  .brand img {
    width: 126px;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero h1,
  .page-hero h1,
  .product-hero h1 {
    font-size: clamp(40px, 13vw, 58px);
    line-height: .86;
  }

  .hero .lead,
  .page-hero .lead,
  .product-hero .lead {
    font-size: 16px;
  }

  .hero-actions,
  .section-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-metrics,
  .spec-strip,
  .formula,
  .mini-specs,
  .product-grid,
  .value-grid,
  .process,
  .proof-grid,
  .article-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics div,
  .product-card,
  .article-card,
  .value-card,
  .process-step,
  .proof-cell,
  .contact-card,
  .spec-strip div,
  .formula div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-metrics div:last-child,
  .product-card:last-child,
  .article-card:last-child,
  .value-card:last-child,
  .process-step:last-child,
  .proof-cell:last-child,
  .contact-card:last-child,
  .spec-strip div:last-child,
  .formula div:last-child {
    border-bottom: 0;
  }

  .page-hero .container,
  .product-hero .container {
    padding: 70px 0 58px;
  }

  .section {
    padding: 66px 0;
  }

  .product-nav {
    top: 68px;
  }

  .footer-top,
  .footer-bottom .container {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}
