:root {
  color-scheme: dark;
  --ink: #080c0e;
  --ink-soft: #0f1518;
  --panel: #141b1e;
  --panel-2: #1b2428;
  --steel: #7f8b90;
  --line: #344047;
  --paper: #f1efe8;
  --muted: #a9b0b2;
  --orange: #ff5a1f;
  --orange-dark: #b9340a;
  --safe: #b7d7c2;
  --display: Impact, "Arial Narrow", "Bahnschrift Condensed", "Bahnschrift", Arial, sans-serif;
  --body: "Bahnschrift", "Segoe UI", Arial, sans-serif;
  --content: 1280px;
  --radius: 2px;
  --toolpath-duration: 1.8s;
  --machine-shutter-duration: 0.9s;
  --measure-callout-duration: 0.72s;
  --counter-roll-duration: 0.85s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  color: var(--paper);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 78% 8%, rgba(255, 90, 31, 0.08), transparent 25rem),
    var(--ink);
  background-size: 48px 48px, 48px 48px, auto, auto;
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

button,
select,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration-color: rgba(255, 90, 31, 0.7);
  text-underline-offset: 0.22em;
}

a:hover {
  text-decoration-color: var(--orange);
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(255, 90, 31, 0.45);
  background: rgba(8, 12, 14, 0.94);
  backdrop-filter: blur(12px);
}

.header-inner,
.site-footer__inner,
.shell {
  width: min(calc(100% - 2rem), var(--content));
  margin-inline: auto;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 74px;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: 0.07em;
  text-decoration: none;
}

.brand::before {
  width: 0.52rem;
  height: 1.55rem;
  content: "";
  background: var(--orange);
  box-shadow: 0.7rem 0 rgba(255, 90, 31, 0.27);
  transform: skewX(-10deg);
}

.primary-nav {
  justify-self: center;
}

.primary-nav ul,
.footer-nav,
.tag-list,
.plain-list,
.compare-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 1.7vw, 1.5rem);
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 650;
  letter-spacing: 0.055em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.35rem;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  color: var(--paper);
  background: var(--panel);
  cursor: pointer;
}

.header-cta {
  white-space: nowrap;
}

.button,
.button-secondary,
.button-quiet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.1rem;
  border: 1px solid var(--orange);
  border-radius: var(--radius);
  font-weight: 750;
  letter-spacing: 0.035em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button {
  color: var(--ink);
  background: var(--orange);
  box-shadow: inset 0 -4px rgba(84, 17, 0, 0.25);
}

.button:hover,
.button:focus-visible {
  background: #ff6a34;
}

.button-secondary {
  color: var(--paper);
  background: rgba(8, 12, 14, 0.72);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--panel-2);
}

.button-quiet {
  border-color: var(--line);
  color: var(--paper);
  background: transparent;
}

.button-quiet:hover,
.button-quiet:focus-visible {
  border-color: var(--steel);
  background: rgba(255, 255, 255, 0.04);
}

main {
  overflow: clip;
}

.section {
  padding-block: clamp(4rem, 8vw, 7rem);
  border-bottom: 1px solid rgba(127, 139, 144, 0.19);
}

.section--compact {
  padding-block: clamp(2.8rem, 5vw, 4.5rem);
}

.section--paper {
  color: #111719;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 100%;
}

.section--panel {
  background: rgba(20, 27, 30, 0.76);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(14rem, 3fr);
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  gap: 2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 0.85rem;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2rem;
  height: 2px;
  margin-right: 0.65rem;
  content: "";
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
.display {
  margin-bottom: 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.012em;
  line-height: 0.93;
  text-wrap: balance;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3.4rem, 8.5vw, 8rem);
}

h2 {
  font-size: clamp(2.7rem, 6vw, 5.5rem);
}

h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.15;
}

.lede {
  max-width: 48rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

.section--paper .lede,
.section--paper .muted {
  color: #475156;
}

.section--paper .card,
.section--paper .step {
  border-color: rgba(17, 23, 25, 0.22);
  color: #111719;
  background: rgba(255, 255, 255, 0.58);
}

.section--paper .step-number {
  color: var(--paper);
  background: #111719;
}

.section--paper .measure-callout {
  color: var(--orange-dark);
}

.muted {
  color: var(--muted);
}

.micro {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
  gap: 0.75rem;
}

.hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: min(810px, calc(100vh - 74px));
  border-bottom: 1px solid var(--line);
  background: #080c0e;
}

.hero__content {
  position: relative;
  z-index: 2;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 5vw, 5rem) clamp(3rem, 6vw, 5rem) max(1rem, calc((100vw - var(--content)) / 2));
}

.hero h1 {
  font-size: clamp(3rem, 3.5vw, 3.5rem);
  overflow-wrap: anywhere;
  hyphens: auto;
}

.hero__content::after {
  position: absolute;
  z-index: -1;
  top: 0;
  right: -20%;
  bottom: 0;
  left: 0;
  content: "";
  background: linear-gradient(90deg, #080c0e 0%, #080c0e 69%, transparent 100%);
  pointer-events: none;
}

.hero__title-accent {
  display: block;
  color: var(--orange);
}

.hero__media {
  position: relative;
  min-height: 580px;
  overflow: hidden;
}

.hero__media img {
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.hero__media::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 18%;
  content: "";
  background: linear-gradient(90deg, #080c0e, transparent);
  pointer-events: none;
}

.hero__rail {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2.6rem;
  gap: 0.65rem 1.2rem;
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero__rail span::before {
  color: var(--orange);
  content: "◆";
  margin-right: 0.55rem;
  font-size: 0.55rem;
}

.scan-beam {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--orange);
  box-shadow: 0 0 22px 6px rgba(255, 90, 31, 0.35);
  animation: scan-beam 5.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes scan-beam {
  0%, 14% { left: 18%; opacity: 0; }
  22% { opacity: 1; }
  64% { left: 82%; opacity: 1; }
  72%, 100% { left: 82%; opacity: 0; }
}

.page-hero {
  padding-block: clamp(4rem, 8vw, 7rem);
  border-bottom: 1px solid var(--line);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(20rem, 5fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.page-hero h1 {
  font-size: clamp(3.2rem, 7.4vw, 7rem);
}

.page-hero__media {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.page-hero__media img {
  height: 100%;
  object-fit: cover;
}

.page-hero__index {
  position: absolute;
  right: 1rem;
  bottom: 0.8rem;
  color: var(--orange);
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1rem;
}

.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,
.equipment-card,
.case-card,
.process-card,
.metric,
.step {
  position: relative;
  border: 1px solid var(--line);
  background: rgba(15, 21, 24, 0.94);
}

.card,
.process-card,
.step {
  padding: clamp(1.25rem, 2.7vw, 2rem);
}

.card::before,
.process-card::before,
.step::before,
.equipment-card::before {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 3.8rem;
  height: 3px;
  content: "";
  background: var(--orange);
}

.card-number,
.step-number {
  color: var(--orange);
  font-family: var(--display);
  font-size: 2.8rem;
  line-height: 1;
}

.image-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.image-card img {
  height: 100%;
  object-fit: cover;
}

.image-card__overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 2.2rem 1.4rem 1.4rem;
  background: linear-gradient(transparent, rgba(8, 12, 14, 0.96) 52%);
}

.image-card__overlay p {
  margin-bottom: 0;
  color: var(--muted);
}

.machine-shutter {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.machine-shutter::before,
.machine-shutter::after {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  width: 51%;
  content: "";
  border: 1px solid rgba(127, 139, 144, 0.32);
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 10px),
    linear-gradient(135deg, rgba(52, 64, 71, 0.96), rgba(8, 12, 14, 0.98));
  transition: transform var(--machine-shutter-duration) cubic-bezier(0.65, 0, 0.35, 1);
  pointer-events: none;
}

.machine-shutter::before {
  left: 0;
  transform: translateX(-102%);
}

.machine-shutter::after {
  right: 0;
  transform: translateX(102%);
}

.machine-shutter:hover::before,
.machine-shutter:focus-within::before,
.machine-shutter:focus::before {
  animation: machine-shutter-left var(--machine-shutter-duration) both;
}

.machine-shutter:hover::after,
.machine-shutter:focus-within::after,
.machine-shutter:focus::after {
  animation: machine-shutter-right var(--machine-shutter-duration) both;
}

@keyframes machine-shutter-left {
  0%, 100% { transform: translateX(-102%); }
  45%, 55% { transform: translateX(0); }
}

@keyframes machine-shutter-right {
  0%, 100% { transform: translateX(102%); }
  45%, 55% { transform: translateX(0); }
}

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

.metric {
  min-height: 180px;
  padding: 1.4rem;
  border-top: 0;
  border-left: 0;
}

.metric__value {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 0.02em;
  line-height: 1;
}

.metric__label {
  color: var(--muted);
  font-size: 0.88rem;
}

.counter-roll.is-counting {
  animation: counter-roll var(--counter-roll-duration) steps(7, end) both;
}

@keyframes counter-roll {
  0% { filter: blur(3px); transform: translateY(-0.3em); }
  50% { filter: blur(1px); }
  100% { filter: none; transform: translateY(0); }
}

.measure-callout {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.measure-callout::before {
  width: 2.3rem;
  height: 1px;
  content: "";
  background: currentColor;
  transform-origin: left;
}

.card:hover .measure-callout::before,
.card:focus-within .measure-callout::before,
.equipment-card:hover .measure-callout::before,
.equipment-card:focus-within .measure-callout::before {
  animation: measure-callout var(--measure-callout-duration) ease both;
}

@keyframes measure-callout {
  from { opacity: 0.25; transform: scaleX(0.18); }
  to { opacity: 1; transform: scaleX(1); }
}

.toolpath {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.toolpath::before {
  position: absolute;
  z-index: 0;
  top: 2.1rem;
  right: 11%;
  left: 11%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--orange), var(--steel), var(--orange));
  transform-origin: left;
  animation: toolpath var(--toolpath-duration) ease both;
}

.toolpath .step {
  z-index: 1;
  padding-top: 4.8rem;
}

.toolpath .step-number {
  position: absolute;
  top: 0.85rem;
  left: 1.2rem;
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border: 1px solid var(--orange);
  color: var(--paper);
  background: var(--ink);
  font-size: 1.2rem;
}

@keyframes toolpath {
  from { opacity: 0.15; transform: scaleX(0); }
  to { opacity: 1; transform: scaleX(1); }
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: stretch;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.split--reverse {
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
}

.split__media {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.split__media img {
  height: 100%;
  object-fit: cover;
}

.split__content {
  align-self: center;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  gap: 0.5rem;
}

.tag-list li,
.tag {
  padding: 0.48rem 0.7rem;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  gap: 0.55rem;
}

.filter-button {
  min-height: 44px;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--line);
  color: var(--muted);
  background: var(--ink-soft);
  cursor: pointer;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button[aria-pressed="true"] {
  border-color: var(--orange);
  color: var(--paper);
  background: rgba(255, 90, 31, 0.12);
}

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

.equipment-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.equipment-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.equipment-card__media img {
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.equipment-card:hover .equipment-card__media img,
.equipment-card:focus-within .equipment-card__media img {
  transform: scale(1.025);
}

.equipment-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem;
}

.specs {
  display: grid;
  margin: 1rem 0 1.4rem;
  gap: 0.5rem;
}

.specs div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(127, 139, 144, 0.2);
}

.specs dt {
  color: var(--muted);
}

.specs dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
}

.compare-control {
  display: flex;
  align-items: center;
  min-height: 44px;
  margin-top: auto;
  gap: 0.65rem;
  cursor: pointer;
}

.compare-control input {
  width: 1.25rem;
  height: 1.25rem;
  accent-color: var(--orange);
}

.compare-panel {
  margin-top: 1.5rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--orange);
  background: rgba(8, 12, 14, 0.96);
}

.compare-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.compare-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
  gap: 0.75rem;
}

.compare-list li {
  padding: 1rem;
  border: 1px solid var(--line);
  background: var(--panel);
}

.status-message {
  min-height: 1.6em;
  margin: 0.7rem 0 0;
  color: var(--safe);
}

.configurator {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  border: 1px solid var(--line);
  background: var(--ink-soft);
}

.configurator__intro,
.configurator__form,
.brief-output {
  padding: clamp(1.4rem, 3vw, 2.4rem);
}

.configurator__intro {
  border-right: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 90, 31, 0.15), transparent 42%),
    var(--panel);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field--wide {
  grid-column: span 2;
}

.field label,
.field-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field select,
.field input,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--paper);
  background: var(--ink);
}

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

.field select:focus,
.field input:focus,
.field textarea:focus {
  border-color: var(--orange);
}

.brief-output {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  background: #0b1113;
}

.brief-output__body {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.brief-output__item {
  padding: 0.85rem;
  border-left: 2px solid var(--orange);
  background: rgba(255, 255, 255, 0.025);
}

.brief-output__item span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.disclaimer {
  margin: 1.2rem 0 0;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--orange);
  color: var(--muted);
  background: rgba(255, 90, 31, 0.08);
}

.process-card details,
.faq details {
  border-top: 1px solid var(--line);
}

.process-card summary,
.faq summary {
  min-height: 52px;
  padding-block: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.process-card details p,
.faq details p {
  color: var(--muted);
}

.faq {
  border: 1px solid var(--line);
  border-top: 0;
}

.faq details {
  padding-inline: 1.2rem;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
}

.data-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

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

.data-table th {
  color: var(--paper);
  background: var(--panel-2);
}

.data-table td {
  color: var(--muted);
  background: rgba(15, 21, 24, 0.83);
}

.case-card {
  overflow: hidden;
}

.case-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.case-card__media img {
  height: 100%;
  object-fit: cover;
}

.case-card__body {
  padding: 1.4rem;
}

.case-card__result {
  display: flex;
  margin-top: 1.1rem;
  gap: 1rem;
}

.case-card__result strong {
  display: block;
  color: var(--orange);
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}

.case-card__result span {
  color: var(--muted);
  font-size: 0.72rem;
}

.quote {
  margin: 0;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(17, 23, 25, 0.18);
  background: rgba(255, 255, 255, 0.45);
}

.quote p {
  margin-bottom: 1rem;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.03;
  text-transform: uppercase;
}

.quote cite {
  color: #475156;
  font-style: normal;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 8fr) auto;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--orange);
  background:
    linear-gradient(90deg, rgba(255, 90, 31, 0.18), transparent 55%),
    var(--panel);
  gap: 2rem;
}

.cta-band h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.site-footer {
  padding-block: 3.5rem 2rem;
  border-top: 1px solid var(--line);
  background: #050809;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 3fr) minmax(0, 3fr);
  gap: 2rem;
}

.site-footer__title {
  max-width: 25rem;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.footer-nav {
  display: grid;
  gap: 0.55rem;
}

.footer-nav a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  color: var(--muted);
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  gap: 1.5rem;
  color: var(--steel);
  font-size: 0.78rem;
}

.site-footer__bottom p {
  margin-bottom: 0;
}

@media (hover: none) {
  .machine-shutter::before,
  .machine-shutter::after {
    display: none;
  }

  .measure-callout::before {
    animation: measure-callout var(--measure-callout-duration) ease both;
  }
}

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

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 1rem;
    left: 1rem;
    display: none;
    border: 1px solid var(--line);
    background: #090d0f;
  }

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

  .primary-nav ul {
    display: grid;
    gap: 0;
  }

  .primary-nav a {
    display: flex;
    padding-inline: 1rem;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    padding-left: 1rem;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 8vw, 6.2rem);
  }

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

  .metric-grid,
  .grid-4,
  .toolpath {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .toolpath::before {
    display: none;
  }

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

@media (max-width: 760px) {
  .header-inner,
  .site-footer__inner,
  .shell {
    width: min(calc(100% - 1.25rem), var(--content));
  }

  .hero,
  .page-hero__grid,
  .split,
  .split--reverse,
  .configurator,
  .section-heading,
  .site-footer__top,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .hero__content {
    min-height: 520px;
    padding: 4rem 0.75rem 3rem;
  }

  .hero__content::after {
    right: 0;
    background: linear-gradient(180deg, #080c0e 0%, rgba(8, 12, 14, 0.92) 82%, transparent);
  }

  .hero__media {
    min-height: 430px;
    order: -1;
  }

  .hero__media::after {
    top: auto;
    right: 0;
    bottom: 0;
    width: auto;
    height: 40%;
    background: linear-gradient(transparent, #080c0e);
  }

  .hero__media img {
    object-position: 72% center;
  }

  .page-hero__media {
    min-height: 300px;
    order: -1;
  }

  .section-heading {
    align-items: start;
    gap: 1rem;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .equipment-grid,
  .metric-grid,
  .toolpath,
  .compare-list,
  .brief-output__body {
    grid-template-columns: 1fr;
  }

  .image-card {
    min-height: 390px;
  }

  .metric {
    min-height: 140px;
  }

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

  .field--wide {
    grid-column: auto;
  }

  .compare-panel__head,
  .case-card__result,
  .site-footer__bottom {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .compare-panel__head {
    display: grid;
  }

  .site-footer__bottom {
    display: grid;
  }

  .cta-band .button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .brand {
    font-size: 1.25rem;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .actions {
    display: grid;
  }

  .actions .button,
  .actions .button-secondary,
  .actions .button-quiet {
    width: 100%;
  }
}

@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;
  }

  .scan-beam {
    display: none;
  }

  .toolpath::before,
  .measure-callout::before {
    opacity: 1;
    transform: none;
  }

  .machine-shutter::before,
  .machine-shutter::after {
    display: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .no-print,
  .hero__media,
  .page-hero__media {
    display: none !important;
  }

  body {
    color: #111;
    background: #fff;
  }

  .section,
  .page-hero {
    padding-block: 1rem;
    border: 0;
  }

  .configurator,
  .brief-output,
  .card {
    border-color: #555;
    color: #111;
    background: #fff;
  }

  .configurator__intro,
  .configurator__form {
    display: none;
  }
}
