:root {
  --ink: #191714;
  --muted: #6d655c;
  --paper: #fbf8f0;
  --panel: #fffdf8;
  --line: #ddd2c1;
  --clay: #bf5f3f;
  --mint: #3d8b7b;
  --carbon: #262626;
  --amber: #edb84b;
  --shadow: 0 28px 70px rgba(48, 34, 20, 0.16);
  --max: 1160px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.45;
}
a { color: inherit; }
.skip {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 12px;
  background: var(--panel);
  border: 1px solid var(--line);
}
.skip:focus { left: 12px; z-index: 20; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 18px 0;
  background: color-mix(in srgb, var(--paper), transparent 10%);
  backdrop-filter: blur(16px);
}
.brand, nav, .hero-actions, .proof, .header-action {
  display: flex;
  align-items: center;
}
.brand {
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--carbon);
  border-radius: 8px;
  transform: rotate(-6deg);
}
.brand-mark span {
  width: 17px;
  height: 17px;
  border: 3px solid var(--amber);
  border-top-color: var(--mint);
  border-radius: 5px;
}
nav { gap: 8px; }
nav a, .header-action {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 10px;
}
nav a:hover, .header-action:hover { color: var(--ink); }
.header-action {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--panel);
}

.hero {
  width: min(var(--max), calc(100% - 36px));
  min-height: calc(100svh - 72px);
  margin: 0 auto;
  padding: 64px 0 54px;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(390px, 1fr);
  align-items: center;
  gap: 46px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 22px;
  max-width: 760px;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.92;
  letter-spacing: 0;
}
h2 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.96;
  letter-spacing: 0;
  margin-bottom: 18px;
}
h3 { font-size: 22px; margin-bottom: 8px; }
.lede {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}
.hero-actions { gap: 12px; flex-wrap: wrap; margin: 30px 0 26px; }
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid var(--carbon);
}
.button.primary {
  background: var(--carbon);
  color: white;
  box-shadow: 7px 7px 0 var(--amber);
}
.button.secondary {
  background: var(--panel);
  color: var(--ink);
}
.button.full { width: 100%; }
.proof {
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  flex-wrap: wrap;
}
.proof li {
  min-width: 134px;
  padding: 12px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.proof strong, .proof span { display: block; }
.proof strong { font-size: 18px; }
.proof span { color: var(--muted); font-size: 13px; }

.printer-stage {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}
.stage-shell {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 0.94;
  border: 2px solid var(--carbon);
  border-radius: 12px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(25, 23, 20, 0.08) 50%, transparent 51%),
    linear-gradient(var(--panel), #efe1cc);
  box-shadow: var(--shadow), 10px 10px 0 var(--clay);
  overflow: hidden;
}
.gantry {
  position: absolute;
  left: 40px;
  right: 40px;
  top: 68px;
  height: 18px;
  background: var(--carbon);
  border-radius: 999px;
}
.toolhead {
  position: absolute;
  top: 40px;
  left: 48%;
  width: 86px;
  height: 94px;
  background: var(--mint);
  border: 2px solid var(--carbon);
  border-radius: 10px;
  box-shadow: 5px 5px 0 var(--carbon);
  animation: print-sweep 4.5s ease-in-out infinite;
}
.toolhead::after {
  content: "";
  position: absolute;
  left: 35px;
  bottom: -34px;
  width: 15px;
  height: 38px;
  background: var(--carbon);
  clip-path: polygon(0 0, 100% 0, 70% 100%, 30% 100%);
}
.build-plate {
  position: absolute;
  left: 48px;
  right: 48px;
  bottom: 58px;
  height: 230px;
  border: 2px solid var(--carbon);
  border-radius: 12px;
  background: #e8dbc7;
  overflow: hidden;
}
.grid-lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(25, 23, 20, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 23, 20, 0.09) 1px, transparent 1px);
  background-size: 28px 28px;
}
.printed-object {
  position: absolute;
  left: 52%;
  bottom: 44px;
  translate: -50% 0;
  width: 220px;
  height: 112px;
  z-index: 1;
}
.printed-object span {
  position: absolute;
  bottom: 0;
  width: 44px;
  background: var(--clay);
  border: 2px solid var(--carbon);
  border-radius: 8px 8px 4px 4px;
  box-shadow: 5px 5px 0 rgba(25, 23, 20, 0.12);
}
.printed-object span:nth-child(1) { left: 0; height: 72px; }
.printed-object span:nth-child(2) { left: 55px; height: 112px; }
.printed-object span:nth-child(3) { left: 110px; height: 88px; }
.printed-object span:nth-child(4) { left: 165px; height: 54px; }
.material-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px;
  width: 238px;
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.swatch { width: 28px; height: 28px; border-radius: 50%; background: var(--clay); border: 2px solid var(--carbon); }
.material-card small { display: block; color: var(--muted); }

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 82px 0;
}
.section-heading { max-width: 660px; margin-bottom: 30px; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.product-card {
  min-height: 330px;
  padding: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.product-card p, .custom-copy p, .quote-copy p, .contact-section p { color: var(--muted); }
.product-visual {
  height: 160px;
  margin-bottom: 22px;
  border: 2px solid var(--carbon);
  border-radius: 10px;
  background: #efe3d0;
  position: relative;
  overflow: hidden;
}
.product-visual::before, .product-visual::after {
  content: "";
  position: absolute;
  border: 2px solid var(--carbon);
  background: var(--mint);
}
.product-visual.cable::before { width: 120px; height: 18px; border-radius: 999px; left: 34px; top: 52px; }
.product-visual.cable::after { width: 150px; height: 18px; border-radius: 999px; right: 28px; bottom: 44px; background: var(--clay); }
.product-visual.tray::before { inset: 34px 38px; border-radius: 12px; background: var(--amber); }
.product-visual.tray::after { left: 50%; top: 34px; width: 2px; height: 92px; border: 0; background: var(--carbon); }
.product-visual.tag::before { width: 120px; height: 76px; left: 52px; top: 40px; border-radius: 14px; transform: rotate(-7deg); background: var(--clay); }
.product-visual.tag::after { width: 22px; height: 22px; left: 75px; top: 58px; border-radius: 50%; background: var(--panel); }

.custom-band {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-list {
  display: grid;
  gap: 12px;
}
.process-list div {
  padding: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.process-list span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--clay);
  font-weight: 900;
}
.process-list strong { display: block; font-size: 18px; }
.process-list p { margin: 4px 0 0; color: var(--muted); }

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(380px, 0.72fr);
  gap: 40px;
  align-items: start;
}
.quote-card {
  padding: 22px;
  background: var(--panel);
  border: 2px solid var(--carbon);
  border-radius: 12px;
  box-shadow: 9px 9px 0 var(--mint);
}
label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
select, textarea, input[type="range"] {
  width: 100%;
  font: inherit;
}
select, textarea {
  color: var(--ink);
  background: #fffaf1;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
}
textarea { resize: vertical; }
.range-value {
  color: var(--ink);
  font-size: 20px;
}
.estimate {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin: 18px 0;
  padding: 18px;
  border-radius: 10px;
  background: #f1e4d0;
}
.estimate span { color: var(--muted); font-weight: 800; }
.estimate strong { font-size: 40px; line-height: 1; }

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
}
.contact-section div { max-width: 680px; }

@keyframes print-sweep {
  0%, 100% { transform: translateX(-90px); }
  50% { transform: translateX(74px); }
}

@media (max-width: 880px) {
  .site-header { flex-wrap: wrap; }
  nav { order: 3; width: 100%; justify-content: space-between; overflow-x: auto; }
  .hero, .custom-band, .quote-section {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; padding-top: 38px; }
  .printer-stage { min-height: 420px; }
  .product-grid { grid-template-columns: 1fr; }
  .contact-section { align-items: start; flex-direction: column; }
}

@media (max-width: 560px) {
  .header-action { display: none; }
  h1 { font-size: 48px; }
  .stage-shell { aspect-ratio: 0.82; }
  .build-plate { left: 22px; right: 22px; }
  .material-card { left: 14px; right: 14px; width: auto; }
}

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