:root {
  color-scheme: dark;
  --bg: #080706;
  --bg-warm: #15120d;
  --metal-black: #0a0907;
  --metal-deep: #15130f;
  --metal-low: #28231a;
  --metal-mid: #514937;
  --metal-high: #96896f;
  --metal-line: rgba(238, 220, 172, 0.23);
  --lcd-hot: #d9e679;
  --lcd: #b7c665;
  --lcd-low: #7f913d;
  --lcd-ink: #11190a;
  --lcd-grid: rgba(17, 25, 10, 0.16);
  --cream: #f3ead7;
  --muted: rgba(243, 234, 215, 0.68);
  --faint: rgba(243, 234, 215, 0.42);
  --red: #d63a24;
  --shadow: rgba(0, 0, 0, 0.64);
  --chrome-white: #f0f0e7;
  --chrome-high: #c8c8be;
  --chrome-mid: #77786f;
  --chrome-low: #242520;
  --chrome-black: #090a08;
  --cyan-led: #13e7c8;
  --nav-indicator-x: 0px;
  --nav-indicator-width: 64px;
  --nav-indicator-opacity: 0;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--cream);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 12%, rgba(218, 169, 92, 0.2), transparent 30rem),
    radial-gradient(circle at 74% 8%, rgba(218, 217, 138, 0.1), transparent 32rem),
    linear-gradient(135deg, #030303 0%, #12100c 43%, #060504 100%);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
}

body::before {
  background:
    linear-gradient(100deg, transparent 0 22%, rgba(255, 222, 161, 0.07) 24%, transparent 27%),
    repeating-linear-gradient(88deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 9px),
    radial-gradient(ellipse at center, transparent 0 56%, rgba(0, 0, 0, 0.78) 100%);
  opacity: 0.9;
}

body::after {
  background:
    radial-gradient(circle at 50% -10%, transparent 0 44%, rgba(0, 0, 0, 0.58) 76%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
}

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

a {
  color: inherit;
}

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

button {
  cursor: pointer;
}

.device-control {
  position: relative;
  z-index: 2;
  isolation: isolate;
  appearance: none;
  padding: 0;
  color: inherit;
  font: inherit;
  border: 0;
  cursor: pointer;
  transform: translate3d(0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  transition:
    filter 180ms ease,
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 180ms ease;
  will-change: transform;
}

.grain-layer {
  position: fixed;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px),
    radial-gradient(circle at 76% 58%, rgba(255, 255, 255, 0.11) 0 1px, transparent 1px),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0 1px, transparent 1px 4px);
  background-size: 9px 12px, 15px 17px, 100% 4px;
  mix-blend-mode: overlay;
}

.page-shell {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0 52px;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 16px;
  pointer-events: none;
}

.site-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: calc(100vw - 32px);
  min-height: 48px;
  padding: 6px;
  overflow: hidden;
  pointer-events: auto;
  background:
    linear-gradient(180deg, rgba(84, 75, 57, 0.84), rgba(16, 14, 10, 0.94)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 7px);
  border: 1px solid rgba(236, 222, 185, 0.22);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -10px 22px rgba(0, 0, 0, 0.42),
    0 18px 54px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px) saturate(1.1);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.site-header.is-scrolled .site-nav {
  border-color: rgba(217, 230, 121, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -10px 22px rgba(0, 0, 0, 0.45),
    0 18px 54px rgba(0, 0, 0, 0.5),
    0 0 28px rgba(190, 218, 86, 0.1);
  transform: translate3d(0, 2px, 0);
}

.site-nav::before {
  position: absolute;
  inset: 4px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(0, 0, 0, 0.54);
  border-radius: inherit;
}

.nav-indicator {
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 0;
  width: var(--nav-indicator-width);
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(221, 235, 117, 0.98), rgba(126, 145, 61, 0.98)),
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(17, 25, 10, 0.16) 3px 4px);
  border: 1px solid rgba(14, 20, 8, 0.56);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -8px 18px rgba(0, 0, 0, 0.18),
    0 0 22px rgba(211, 231, 105, 0.28);
  opacity: var(--nav-indicator-opacity);
  transform: translate3d(var(--nav-indicator-x), 0, 0);
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    width 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease;
  will-change: transform, width;
}

.site-nav a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 18px;
  color: rgba(244, 234, 215, 0.78);
  font-family: "SFMono-Regular", "Roboto Mono", "Cascadia Mono", monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 999px;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--lcd-ink);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.18);
}

.site-nav a:focus-visible,
.button:focus-visible,
.device-control:focus-visible,
.about-links a:focus-visible,
.text-link:focus-visible,
.request-form :is(input, select, textarea):focus-visible {
  outline: 2px solid var(--lcd-hot);
  outline-offset: 3px;
}

main {
  display: flex;
  flex-direction: column;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.72fr);
  gap: 36px;
  align-items: center;
  min-height: calc(100svh - 100px);
  padding: 32px 0 88px;
}

.device-shell,
.work-panel,
.service-list,
.process-track,
.about-device,
.request-form,
.hero-copy {
  background:
    linear-gradient(135deg, rgba(255, 244, 209, 0.12), transparent 18%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 7px),
    linear-gradient(145deg, #5a503d 0%, #2d281f 38%, #17140f 100%);
  border: 1px solid var(--metal-line);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -18px 36px rgba(0, 0, 0, 0.35),
    0 30px 90px rgba(0, 0, 0, 0.5);
}

.device-shell {
  position: relative;
  max-width: 100%;
  padding: 13px;
  overflow: hidden;
  border-radius: 18px;
}

.device-shell::before,
.device-shell::after {
  position: absolute;
  width: 12px;
  height: 12px;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle, rgba(0, 0, 0, 0.7) 0 2px, transparent 3px),
    radial-gradient(circle, rgba(255, 255, 255, 0.24), rgba(0, 0, 0, 0.3));
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.device-shell::before {
  top: 16px;
  left: 16px;
}

.device-shell::after {
  right: 16px;
  bottom: 16px;
}

.top-rail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 44px;
  padding: 8px 18px;
  background:
    linear-gradient(180deg, rgba(4, 4, 4, 0.96), rgba(28, 24, 17, 0.96)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 10px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -8px 18px rgba(0, 0, 0, 0.55);
}

.brand-mark {
  display: inline-block;
  color: rgba(244, 234, 215, 0.84);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.8vw, 31px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05em;
  text-shadow:
    0 1px 0 #000,
    0 -1px 0 rgba(255, 255, 255, 0.16);
  transform: scaleX(1.08);
  transform-origin: left center;
}

.unit-code,
.eyebrow,
.lcd-status,
.lcd-footer,
.service-row > span,
.service-row time,
.proof-strip,
.text-link,
.mini-buttons,
.jog-wheel b,
.hold-switch::after,
.rec-light::after,
.side-lens::after,
.md-badge,
.process-track span,
.request-form label > span {
  font-family: "SFMono-Regular", "Roboto Mono", "Cascadia Mono", monospace;
}

.unit-code {
  min-width: 0;
  overflow: hidden;
  color: rgba(244, 234, 215, 0.55);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.device-grid {
  display: grid;
  grid-template-columns: minmax(142px, 170px) minmax(0, 1fr) minmax(120px, 145px);
  gap: 14px;
  min-height: 432px;
  padding-top: 14px;
}

.left-hardware,
.right-hardware {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 8%, rgba(255, 255, 244, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 246, 0.08), transparent 22%),
    repeating-linear-gradient(92deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 8px),
    linear-gradient(180deg, rgba(93, 90, 80, 0.94), rgba(45, 43, 36, 0.97));
  border: 1px solid rgba(238, 230, 198, 0.24);
  border-radius: 12px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -24px 40px rgba(0, 0, 0, 0.3),
    inset 12px 0 24px rgba(255, 255, 255, 0.035);
}

.left-hardware::before,
.right-hardware::before {
  position: absolute;
  inset: 10px;
  z-index: 0;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 9px;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.2),
    inset 0 14px 22px rgba(255, 255, 255, 0.035);
}

.right-hardware::after {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 9px;
  height: 9px;
  pointer-events: none;
  content: "";
  background: var(--cyan-led);
  border-radius: 50%;
  box-shadow:
    0 0 12px rgba(19, 231, 200, 0.74),
    0 0 0 4px rgba(19, 231, 200, 0.05);
}

.left-hardware {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 18px;
}

.left-hardware > *,
.right-hardware > * {
  position: relative;
  z-index: 1;
}

.side-lens {
  position: relative;
  display: grid;
  place-items: center;
  align-self: center;
  width: 112px;
  height: 112px;
  margin: 0;
  background:
    radial-gradient(circle at 50% 55%, transparent 0 48%, rgba(0, 0, 0, 0.52) 49% 52%, transparent 53%),
    radial-gradient(circle at 35% 20%, var(--chrome-white) 0 7%, var(--chrome-high) 19%, var(--chrome-mid) 43%, var(--chrome-low) 72%, var(--chrome-black) 100%);
  border: 10px solid rgba(119, 118, 109, 0.84);
  border-radius: 50%;
  box-shadow:
    0 0 0 10px rgba(13, 14, 12, 0.38),
    0 0 0 11px rgba(255, 255, 255, 0.08),
    inset 0 2px 8px rgba(255, 255, 255, 0.48),
    inset 0 -24px 31px rgba(0, 0, 0, 0.58),
    0 1px 0 rgba(255, 255, 255, 0.26),
    0 22px 27px rgba(0, 0, 0, 0.46),
    -12px 10px 18px rgba(255, 255, 255, 0.04);
}

.side-lens::before {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 7px;
  height: 30px;
  content: "";
  background: var(--cyan-led);
  border-radius: 999px;
  box-shadow:
    0 0 13px rgba(18, 230, 201, 0.74),
    inset 0 1px 1px rgba(255, 255, 255, 0.5);
  transform: translateX(-50%);
}

.side-lens::after {
  position: absolute;
  right: 0;
  bottom: -24px;
  left: 0;
  color: rgba(244, 234, 215, 0.44);
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  content: "WORK";
}

.jog-wheel {
  position: relative;
  display: grid;
  place-items: center;
  align-self: center;
  width: 116px;
  height: 116px;
  margin: 4px 0 0;
  background:
    radial-gradient(circle at 50% 55%, transparent 0 47%, rgba(0, 0, 0, 0.52) 48% 51%, transparent 52%),
    radial-gradient(circle at 34% 20%, var(--chrome-white) 0 8%, var(--chrome-high) 22%, var(--chrome-mid) 48%, var(--chrome-low) 82%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 42%);
  border: 10px solid rgba(136, 134, 123, 0.84);
  border-radius: 50%;
  box-shadow:
    0 0 0 10px rgba(13, 14, 12, 0.34),
    0 0 0 11px rgba(255, 255, 255, 0.09),
    inset 0 2px 8px rgba(255, 255, 255, 0.5),
    inset 0 -24px 29px rgba(0, 0, 0, 0.46),
    0 1px 0 rgba(255, 255, 255, 0.22),
    0 22px 30px rgba(0, 0, 0, 0.43);
}

.jog-wheel span {
  position: absolute;
  top: 14px;
  width: 5px;
  height: 24px;
  background: rgba(18, 20, 16, 0.94);
  border-radius: 999px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.32);
}

.jog-wheel b {
  position: absolute;
  right: 0;
  bottom: -24px;
  left: 0;
  color: rgba(244, 234, 215, 0.68);
  font-size: 10px;
  font-weight: 800;
  text-align: center;
}

.rec-light {
  position: relative;
  display: block;
  width: 96px;
  height: 56px;
  margin-left: 31px;
  background:
    linear-gradient(180deg, rgba(34, 34, 31, 0.96), rgba(8, 8, 7, 0.97));
  border: 4px solid rgba(7, 7, 6, 0.96);
  border-radius: 14px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -8px 12px rgba(0, 0, 0, 0.34),
    0 13px 20px rgba(0, 0, 0, 0.38);
}

.rec-light::before {
  position: absolute;
  top: 7px;
  left: 8px;
  width: 42px;
  height: 34px;
  content: "";
  background:
    radial-gradient(circle at 35% 25%, #ffe1d8 0 10%, #df4b36 42%, #86190f 100%);
  border: 1px solid rgba(0, 0, 0, 0.7);
  border-radius: 11px;
  box-shadow:
    0 0 18px rgba(214, 58, 36, 0.46),
    inset 0 2px 4px rgba(255, 255, 255, 0.3),
    inset 0 -12px 13px rgba(0, 0, 0, 0.28);
  animation: recPulse 2.6s ease-in-out infinite;
}

.rec-light::after {
  position: absolute;
  top: 18px;
  left: 60px;
  color: rgba(244, 234, 215, 0.54);
  font-size: 10px;
  font-weight: 800;
  content: "REC";
}

.hold-switch {
  position: relative;
  display: block;
  width: 66px;
  height: 104px;
  margin-left: 47px;
  background:
    linear-gradient(180deg, rgba(144, 142, 132, 0.74), rgba(34, 34, 31, 0.92));
  border: 8px solid rgba(28, 29, 26, 0.94);
  border-radius: 999px;
  box-shadow:
    0 0 0 5px rgba(8, 9, 7, 0.32),
    inset 0 2px 8px rgba(255, 255, 255, 0.36),
    inset 0 -22px 28px rgba(0, 0, 0, 0.4),
    0 16px 25px rgba(0, 0, 0, 0.48);
}

.hold-switch::before {
  position: absolute;
  right: 7px;
  bottom: 12px;
  left: 7px;
  height: 36px;
  content: "";
  background:
    radial-gradient(circle at 35% 20%, var(--chrome-white) 0 12%, var(--chrome-high) 42%, var(--chrome-mid) 70%, var(--chrome-low) 100%);
  border: 1px solid rgba(0, 0, 0, 0.6);
  border-radius: 999px;
  box-shadow:
    inset 0 2px 5px rgba(255, 255, 255, 0.44),
    inset 0 -10px 12px rgba(0, 0, 0, 0.22),
    0 9px 14px rgba(0, 0, 0, 0.32);
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hold-switch::after {
  position: absolute;
  right: 0;
  bottom: -23px;
  left: 0;
  color: rgba(244, 234, 215, 0.5);
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  content: "HOLD";
}

.right-hardware {
  display: grid;
  grid-template-rows: 1fr auto auto;
  gap: 16px;
  padding: 18px 14px;
}

.vertical-brand {
  align-self: center;
  justify-self: center;
  color: rgba(0, 0, 0, 0.64);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5.1vw, 58px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0.04em;
  text-orientation: mixed;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.16),
    0 -1px 0 rgba(0, 0, 0, 0.72);
  transform: scaleX(1.08);
  writing-mode: vertical-rl;
}

.mini-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3px;
  padding: 6px;
  background:
    linear-gradient(180deg, rgba(25, 25, 22, 0.98), rgba(8, 8, 7, 0.98));
  border: 4px solid rgba(5, 5, 4, 0.96);
  border-radius: 13px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    inset 0 -8px 12px rgba(0, 0, 0, 0.28),
    0 13px 22px rgba(0, 0, 0, 0.36);
}

.mini-buttons button {
  display: grid;
  min-height: 76px;
  place-items: end center;
  padding: 7px 2px 5px;
  color: rgba(244, 234, 215, 0.54);
  font-size: 8px;
  font-weight: 900;
  text-align: center;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.2), transparent 33%),
    linear-gradient(180deg, rgba(186, 186, 176, 0.95), rgba(86, 86, 79, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  box-shadow:
    inset 0 2px 5px rgba(255, 255, 255, 0.34),
    inset 0 -20px 20px rgba(0, 0, 0, 0.24),
    0 1px 0 rgba(255, 255, 255, 0.08);
}

.mini-buttons button::before {
  display: block;
  width: 37px;
  height: 37px;
  margin-bottom: 5px;
  content: "";
  background:
    radial-gradient(circle at 32% 23%, var(--chrome-white) 0 10%, var(--chrome-high) 34%, var(--chrome-mid) 66%, var(--chrome-low) 100%);
  border: 1px solid rgba(0, 0, 0, 0.46);
  border-radius: 50%;
  box-shadow:
    inset 0 2px 5px rgba(255, 255, 255, 0.44),
    inset 0 -12px 16px rgba(0, 0, 0, 0.24),
    0 4px 5px rgba(0, 0, 0, 0.16);
}

.md-badge {
  justify-self: end;
  min-width: 78px;
  min-height: 76px;
  padding: 11px 9px;
  color: rgba(255, 225, 213, 0.82);
  font-size: 22px;
  font-weight: 950;
  line-height: 0.78;
  text-align: center;
  background:
    radial-gradient(circle at 34% 24%, #ffd6c8 0 9%, #dd4836 39%, #a32119 64%, #5d110d 100%);
  border: 5px solid rgba(6, 6, 5, 0.94);
  border-radius: 12px;
  box-shadow:
    inset 0 2px 8px rgba(255, 255, 255, 0.28),
    inset 0 -22px 24px rgba(0, 0, 0, 0.3),
    0 12px 22px rgba(0, 0, 0, 0.42),
    0 0 18px rgba(218, 57, 42, 0.22);
  transition: color 160ms ease, filter 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.md-badge::after {
  display: block;
  margin-top: 4px;
  font-size: 8px;
  line-height: 1;
  content: "REC";
}

.lcd-screen,
.lcd-card,
.work-lcd,
.service-row,
.process-track div {
  position: relative;
  min-width: 0;
  overflow: hidden;
  color: var(--lcd-ink);
  background:
    radial-gradient(circle at 22% 5%, rgba(255, 255, 255, 0.38), transparent 32%),
    linear-gradient(180deg, var(--lcd-hot), var(--lcd) 48%, var(--lcd-low));
  border: 8px solid rgba(5, 5, 4, 0.94);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    inset 0 10px 28px rgba(255, 255, 255, 0.14),
    inset 0 -18px 26px rgba(15, 31, 8, 0.26),
    0 0 0 1px rgba(238, 220, 172, 0.2),
    0 16px 28px rgba(0, 0, 0, 0.36);
}

.lcd-screen::before,
.lcd-card::before,
.work-lcd::before,
.service-row::before,
.process-track div::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background:
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(17, 25, 10, 0.13) 3px 4px),
    repeating-linear-gradient(90deg, transparent 0 8px, rgba(17, 25, 10, 0.06) 8px 9px);
  opacity: 0.72;
}

.lcd-screen::after,
.lcd-card::after,
.work-lcd::after {
  position: absolute;
  inset: -40% -20%;
  z-index: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(115deg, transparent 0 44%, rgba(255, 255, 255, 0.22) 46%, transparent 52%);
  opacity: 0.38;
  transform: translate3d(-18%, 0, 0);
  animation: lcdSweep 9s ease-in-out infinite;
}

.lcd-screen > *,
.lcd-card > *,
.work-lcd > *,
.service-row > *,
.process-track div > * {
  position: relative;
  z-index: 1;
}

.main-screen {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 418px;
  padding: clamp(18px, 3vw, 26px);
  border-width: 10px;
  border-radius: 13px;
}

.lcd-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 27px;
  padding-bottom: 6px;
  color: var(--lcd-ink);
  font-size: clamp(12px, 1.3vw, 15px);
  font-weight: 900;
  border-bottom: 2px solid rgba(17, 25, 10, 0.66);
}

.battery {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  width: 34px;
  height: 17px;
  padding: 2px;
  border: 2px solid currentColor;
}

.battery::after {
  position: absolute;
  top: 3px;
  right: -5px;
  width: 3px;
  height: 7px;
  content: "";
  background: currentColor;
}

.battery i {
  background: currentColor;
}

.main-screen h1 {
  max-width: 100%;
  margin: 24px 0 8px;
  color: var(--lcd-ink);
  font-size: clamp(42px, 4.4vw, 62px);
  font-weight: 860;
  line-height: 0.92;
  overflow-wrap: normal;
  word-break: normal;
}

.hero-kicker {
  max-width: 580px;
  margin: 0 0 20px;
  color: rgba(17, 25, 10, 0.9);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 780;
  line-height: 1.08;
}

.lcd-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: auto 0 16px;
  list-style: none;
  counter-reset: track;
  border-top: 2px solid rgba(17, 25, 10, 0.6);
  border-bottom: 2px solid rgba(17, 25, 10, 0.6);
}

.lcd-list li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-width: 0;
  min-height: 29px;
  padding: 3px 8px;
  font-family: "SFMono-Regular", "Roboto Mono", "Cascadia Mono", monospace;
  font-size: clamp(13px, 1.6vw, 17px);
  font-weight: 850;
  counter-increment: track;
}

.lcd-list li::before {
  content: counter(track, decimal-leading-zero);
}

.lcd-list li.is-lcd-active {
  color: var(--lcd-hot);
  background: var(--lcd-ink);
}

.lcd-list li span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lcd-list time {
  white-space: nowrap;
}

.lcd-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  color: rgba(17, 25, 10, 0.9);
  font-size: clamp(12px, 1.4vw, 15px);
  font-weight: 900;
}

.lcd-play-button {
  min-height: 30px;
  padding: 2px 10px;
  color: rgba(17, 25, 10, 0.86);
  font-weight: 950;
  letter-spacing: 0.04em;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent 45%),
    linear-gradient(180deg, #c8d976, #75853b);
  border: 1px solid rgba(17, 25, 10, 0.42);
  border-radius: 6px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    inset 0 -7px 10px rgba(17, 25, 10, 0.18);
}

.device-control:hover,
.device-control:focus-visible {
  filter: brightness(1.12) saturate(1.04);
}

.device-control:active,
.device-control.is-pressed {
  filter: brightness(0.96);
  transform: translate3d(0, 5px, 0) scale(0.985);
}

.jog-wheel:active,
.jog-wheel.is-pressed {
  box-shadow:
    0 0 0 8px rgba(13, 14, 12, 0.4),
    0 0 0 9px rgba(255, 255, 255, 0.06),
    inset 0 1px 5px rgba(255, 255, 255, 0.34),
    inset 0 -18px 23px rgba(0, 0, 0, 0.52),
    0 9px 15px rgba(0, 0, 0, 0.38);
  transform: translate3d(0, 5px, 0) scale(0.97);
}

.side-lens:active,
.side-lens.is-pressed {
  box-shadow:
    0 0 0 8px rgba(13, 14, 12, 0.42),
    0 0 0 9px rgba(255, 255, 255, 0.06),
    inset 0 1px 5px rgba(255, 255, 255, 0.34),
    inset 0 -18px 23px rgba(0, 0, 0, 0.6),
    0 9px 15px rgba(0, 0, 0, 0.4);
  transform: translate3d(0, 5px, 0) scale(0.98);
}

.mini-buttons button:active,
.mini-buttons button.is-pressed {
  box-shadow:
    inset 0 2px 10px rgba(0, 0, 0, 0.34),
    inset 0 -6px 10px rgba(255, 255, 255, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.05);
}

.md-badge:active,
.md-badge.is-pressed,
.rec-light:active,
.rec-light.is-pressed {
  transform: translate3d(0, 5px, 0) scale(0.98);
}

.button:active {
  transform: translate3d(0, 6px, 0) scale(0.99);
  box-shadow:
    inset 0 2px 10px rgba(0, 0, 0, 0.22),
    inset 0 -4px 10px rgba(255, 255, 255, 0.1),
    0 5px 0 rgba(7, 7, 6, 0.45),
    0 8px 16px rgba(0, 0, 0, 0.25);
}

.hold-switch[aria-pressed="true"]::before {
  transform: translate3d(0, -34px, 0);
}

.motion-paused .rec-light::before,
.motion-paused .lcd-screen::after,
.motion-paused .lcd-card::after,
.motion-paused .work-lcd::after {
  animation-play-state: paused;
}

.hero-copy {
  align-self: center;
  min-width: 0;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 18px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lcd-hot);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-text {
  min-width: 0;
  margin: 0;
  color: var(--cream);
  font-size: clamp(34px, 4.35vw, 58px);
  font-weight: 780;
  line-height: 0.98;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  color: var(--cream);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  border-radius: 999px;
  transform: translate3d(0, 0, 0);
  transition:
    filter 180ms ease,
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translate3d(0, -2px, 0);
}

.button-primary {
  color: var(--lcd-ink);
  background:
    radial-gradient(circle at 32% 18%, rgba(255, 255, 255, 0.45), transparent 28%),
    linear-gradient(180deg, #e8f18b, var(--lcd-low)),
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(17, 25, 10, 0.13) 3px 4px);
  border: 1px solid rgba(17, 25, 10, 0.55);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.44),
    inset 0 -10px 15px rgba(17, 25, 10, 0.18),
    0 9px 0 rgba(64, 73, 34, 0.62),
    0 16px 26px rgba(0, 0, 0, 0.32);
}

.button-secondary {
  background:
    radial-gradient(circle at 32% 18%, rgba(255, 255, 255, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(88, 82, 68, 0.96), rgba(24, 21, 16, 0.96));
  border: 1px solid rgba(238, 220, 172, 0.2);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.16),
    inset 0 -10px 14px rgba(0, 0, 0, 0.22),
    0 8px 0 rgba(7, 7, 6, 0.62),
    0 15px 24px rgba(0, 0, 0, 0.3);
}

.intro-band {
  padding: 0 0 88px;
}

.lcd-card {
  padding: clamp(22px, 4vw, 36px);
  border-radius: 14px;
}

.intro-copy p {
  max-width: 980px;
  margin: 18px 0 0;
  color: rgba(17, 25, 10, 0.95);
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 780;
  line-height: 1.12;
}

.section-block,
.process-band,
.request-section {
  padding: 88px 0;
  scroll-margin-top: 112px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.36fr) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.section-heading h2,
.request-copy h2,
.about-copy h2 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(36px, 6vw, 74px);
  font-weight: 800;
  line-height: 0.98;
}

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

.work-panel {
  padding: 12px;
  overflow: hidden;
  border-radius: 18px;
  transform: translate3d(0, 0, 0);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.work-panel:hover {
  border-color: rgba(217, 230, 121, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -18px 36px rgba(0, 0, 0, 0.35),
    0 34px 95px rgba(0, 0, 0, 0.56),
    0 0 36px rgba(217, 230, 121, 0.1);
  transform: translate3d(0, -4px, 0);
}

.work-panel-large {
  grid-column: 1 / -1;
}

.work-link {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 12px;
  min-height: 390px;
  color: inherit;
  text-decoration: none;
}

.work-panel:not(.work-panel-large) .work-link {
  grid-template-columns: 1fr;
  min-height: 540px;
}

.work-lcd {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  padding: clamp(18px, 3vw, 26px);
  border-radius: 12px;
}

.work-lcd h3 {
  margin: 22px 0 10px;
  color: var(--lcd-ink);
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 870;
  line-height: 0.98;
}

.work-lcd p {
  margin: 0;
  color: rgba(17, 25, 10, 0.82);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 750;
  line-height: 1.16;
}

.compact-list {
  gap: 6px;
  margin: auto 0 18px;
  border: 0;
}

.compact-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 5px 8px;
  color: var(--lcd-hot);
  font-family: "SFMono-Regular", "Roboto Mono", "Cascadia Mono", monospace;
  font-size: 13px;
  font-weight: 900;
  background: rgba(17, 25, 10, 0.94);
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  color: rgba(17, 25, 10, 0.92);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-image {
  min-width: 0;
  min-height: 230px;
  overflow: hidden;
  background: #070605;
  border: 8px solid rgba(5, 5, 4, 0.96);
  border-radius: 12px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 0 1px rgba(238, 220, 172, 0.17);
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.34) sepia(0.18) saturate(0.85) contrast(0.92) brightness(0.78);
  transform: scale(1.02);
  transition: filter 220ms ease, transform 220ms ease;
}

.work-panel:hover .work-image img {
  filter: grayscale(0.16) sepia(0.1) saturate(1) contrast(1) brightness(0.86);
  transform: scale(1.05);
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: auto 0 18px;
}

.proof-strip span {
  padding: 6px 8px;
  color: var(--lcd-hot);
  font-size: 12px;
  font-weight: 900;
  background: rgba(17, 25, 10, 0.92);
}

.service-list {
  display: grid;
  gap: 8px;
  padding: 12px;
  border-radius: 18px;
}

.service-row {
  display: grid;
  grid-template-columns: 54px minmax(180px, 250px) minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-width: 0;
  min-height: 88px;
  padding: 18px 20px;
  border-width: 4px;
  border-radius: 9px;
}

.service-row::after {
  position: absolute;
  top: 50%;
  right: 76px;
  z-index: 0;
  width: min(210px, 28vw);
  height: 54px;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(17, 25, 10, 0.7) 0 4px, transparent 4px 14px),
    linear-gradient(0deg, rgba(17, 25, 10, 0.65) 0 4px, transparent 4px 14px);
  background-size: 14px 14px;
  opacity: 0.14;
  transform: translate3d(0, -50%, 0);
}

.service-row > span,
.service-row time {
  font-size: 15px;
  font-weight: 950;
}

.service-row h3 {
  min-width: 0;
  margin: 0;
  color: var(--lcd-ink);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 900;
  line-height: 1.02;
}

.service-row p {
  min-width: 0;
  margin: 0;
  color: rgba(17, 25, 10, 0.82);
  font-size: 16px;
  font-weight: 720;
  line-height: 1.24;
}

.service-row time {
  white-space: nowrap;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  border-radius: 18px;
}

.process-track div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 154px;
  padding: 16px;
  border-width: 4px;
  border-radius: 8px;
}

.process-track span {
  font-size: 14px;
  font-weight: 950;
}

.process-track strong {
  color: var(--lcd-ink);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  line-height: 0.98;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.about-device {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border-radius: 20px;
}

.about-device::before,
.about-device::after {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  content: "";
  background: rgba(0, 0, 0, 0.42);
}

.about-device::before {
  top: 0;
  bottom: 0;
  left: 51%;
  width: 2px;
  box-shadow: 1px 0 0 rgba(255, 255, 255, 0.08);
}

.about-device::after {
  right: 38px;
  bottom: 104px;
  width: 74px;
  height: 26px;
  border: 2px solid rgba(0, 0, 0, 0.68);
  border-radius: 6px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.small-screen {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 3;
  width: min(400px, calc(100% - 44px));
  min-height: 190px;
  padding: 14px;
  border-radius: 12px;
}

.pixel-bars {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 5px;
  align-items: end;
  height: 96px;
  margin-top: 18px;
  padding: 0 4px;
}

.pixel-bars span {
  display: block;
  background: var(--lcd-ink);
}

.pixel-bars span:nth-child(1) {
  height: 28%;
}

.pixel-bars span:nth-child(2) {
  height: 72%;
}

.pixel-bars span:nth-child(3) {
  height: 44%;
}

.pixel-bars span:nth-child(4) {
  height: 88%;
}

.pixel-bars span:nth-child(5) {
  height: 62%;
}

.pixel-bars span:nth-child(6) {
  height: 34%;
}

.pixel-bars span:nth-child(7) {
  height: 82%;
}

.pixel-bars span:nth-child(8) {
  height: 54%;
}

.pixel-bars span:nth-child(9) {
  height: 68%;
}

.pixel-bars span:nth-child(10) {
  height: 42%;
}

.about-photo {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  background-color: #070605;
  background-position: center;
  background-size: cover;
  border: 8px solid rgba(5, 5, 4, 0.96);
  border-radius: 12px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 18px 34px rgba(0, 0, 0, 0.44);
  filter: grayscale(0.34) sepia(0.18) saturate(0.9) brightness(0.76);
}

.about-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 0 60%, rgba(0, 0, 0, 0.5) 100%),
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(217, 230, 121, 0.08) 3px 4px);
}

.photo-one {
  right: 22px;
  top: 242px;
  width: 44%;
  height: 192px;
  background-image: url("assets/about-web-design.png");
}

.photo-two {
  left: 24px;
  bottom: 28px;
  width: 48%;
  height: 256px;
  background-image: url("assets/about-fabrication.png");
}

.photo-three {
  right: 42px;
  bottom: 36px;
  width: 39%;
  height: 176px;
  background-image: url("assets/about-product-modeling.png");
}

.about-copy p,
.request-copy p {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.38;
}

.about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.about-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  color: var(--lcd-hot);
  font-weight: 820;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(47, 42, 32, 0.95), rgba(15, 13, 10, 0.95));
  border: 1px solid rgba(217, 230, 121, 0.22);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.request-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: start;
}

.request-form {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
  border-radius: 18px;
}

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

.request-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.request-form label > span {
  color: rgba(244, 234, 215, 0.62);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.request-form :is(input, select, textarea) {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  color: var(--lcd-ink);
  font-family: "SFMono-Regular", "Roboto Mono", "Cascadia Mono", monospace;
  font-weight: 780;
  background:
    linear-gradient(180deg, var(--lcd-hot), var(--lcd-low)),
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(17, 25, 10, 0.13) 3px 4px);
  border: 4px solid rgba(5, 5, 4, 0.94);
  border-radius: 10px;
  box-shadow:
    inset 0 3px 14px rgba(255, 255, 255, 0.16),
    inset 0 -12px 18px rgba(17, 25, 10, 0.16),
    0 0 0 1px rgba(238, 220, 172, 0.17);
}

.request-form textarea {
  min-height: 160px;
  resize: vertical;
}

.form-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.form-footer p {
  margin: 0;
  color: var(--muted);
}

.form-footer a {
  color: var(--lcd-hot);
  font-weight: 820;
  text-decoration: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 42px 0 16px;
  color: var(--faint);
  border-top: 1px solid rgba(238, 220, 172, 0.12);
}

.site-footer p {
  margin: 0;
  font-weight: 800;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.site-footer a {
  color: rgba(244, 234, 215, 0.7);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--lcd-hot);
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes lcdSweep {
  0%,
  42% {
    transform: translate3d(-28%, 0, 0);
  }

  72%,
  100% {
    transform: translate3d(24%, 0, 0);
  }
}

@keyframes recPulse {
  0%,
  100% {
    box-shadow:
      0 0 8px rgba(214, 58, 36, 0.26),
      inset 0 1px 3px rgba(255, 255, 255, 0.28);
  }

  50% {
    box-shadow:
      0 0 20px rgba(214, 58, 36, 0.58),
      inset 0 1px 3px rgba(255, 255, 255, 0.28);
  }
}

@keyframes ledClickPulse {
  0% {
    transform: translate3d(-50%, -50%, 0) scale(0.82);
  }

  48% {
    transform: translate3d(-50%, -50%, 0) scale(1.48);
  }

  100% {
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
}

@media (max-width: 1100px) {
  .hero-section {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: auto;
  }

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

  .device-grid {
    grid-template-columns: minmax(128px, 160px) minmax(0, 1fr) minmax(110px, 136px);
  }

  .about-section,
  .request-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .page-shell {
    width: min(calc(100% - 20px), 680px);
    padding-top: 78px;
  }

  .site-header {
    top: 10px;
    padding: 0 10px;
  }

  .site-nav {
    justify-content: flex-start;
    width: max-content;
    max-width: calc(100vw - 20px);
    min-height: 44px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    min-height: 32px;
    padding: 0 13px;
    font-size: 11px;
  }

  .hero-section {
    padding: 20px 0 64px;
  }

  .device-shell {
    padding: 10px;
    border-radius: 15px;
  }

  .top-rail {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 12px 14px;
  }

  .device-grid {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
  }

  .left-hardware {
    display: grid;
    grid-template-columns: minmax(88px, 1fr) 92px 82px 68px;
    gap: 10px;
    align-items: center;
    min-height: 126px;
    padding: 14px;
  }

  .side-lens {
    width: 88px;
    height: 88px;
    margin-left: 0;
    border-width: 8px;
  }

  .side-lens::after,
  .jog-wheel b,
  .rec-light::after,
  .hold-switch::after {
    display: none;
  }

  .jog-wheel {
    width: 88px;
    height: 88px;
    border-width: 8px;
    margin: 0;
  }

  .jog-wheel span {
    width: 42px;
    height: 42px;
  }

  .rec-light {
    width: 76px;
    height: 50px;
    margin: 0 auto;
  }

  .hold-switch {
    width: 58px;
    height: 90px;
    margin: 0 auto;
  }

  .hold-switch[aria-pressed="true"]::before {
    transform: translate3d(0, -28px, 0);
  }

  .main-screen {
    min-height: 390px;
    padding: 18px;
    border-width: 8px;
  }

  .main-screen h1 {
    font-size: clamp(42px, 13vw, 66px);
  }

  .lcd-list li {
    grid-template-columns: 32px minmax(0, 1fr) auto;
    gap: 8px;
    padding: 4px 6px;
    font-size: 14px;
  }

  .right-hardware {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto;
    min-height: 120px;
    align-items: center;
  }

  .vertical-brand {
    font-size: 38px;
    line-height: 1;
    writing-mode: horizontal-tb;
  }

  .mini-buttons {
    align-self: stretch;
  }

  .md-badge {
    justify-self: end;
  }

  .hero-text {
    font-size: clamp(30px, 9.6vw, 46px);
  }

  .section-block,
  .process-band,
  .request-section {
    padding: 66px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .work-panel-large {
    grid-column: auto;
  }

  .work-link,
  .work-panel:not(.work-panel-large) .work-link {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .work-image {
    min-height: 230px;
  }

  .service-row {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 8px 14px;
    align-items: start;
  }

  .service-row h3 {
    padding-right: 40px;
  }

  .service-row p,
  .service-row time {
    grid-column: 2;
  }

  .service-row time {
    justify-self: start;
  }

  .service-row::after {
    top: 18px;
    right: 18px;
    width: 86px;
    height: 44px;
    transform: none;
  }

  .process-track {
    grid-template-columns: 1fr;
  }

  .process-track div {
    min-height: 104px;
  }

  .about-device {
    display: grid;
    gap: 10px;
    min-height: auto;
    padding: 12px;
  }

  .about-device::before,
  .about-device::after {
    display: none;
  }

  .small-screen,
  .about-photo {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .small-screen {
    min-height: 170px;
  }

  .about-photo {
    height: 180px;
  }

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

  .form-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer div {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .page-shell {
    width: min(calc(100% - 14px), 460px);
    padding-top: 72px;
  }

  .site-nav a {
    padding: 0 11px;
    font-size: 10px;
  }

  .brand-mark {
    font-size: 23px;
  }

  .unit-code {
    font-size: 10px;
  }

  .left-hardware {
    grid-template-columns: 72px 72px 58px 50px;
    justify-content: space-between;
    padding: 10px;
  }

  .side-lens {
    width: 68px;
    height: 68px;
    border-width: 7px;
  }

  .jog-wheel {
    width: 68px;
    height: 68px;
    border-width: 7px;
  }

  .rec-light {
    width: 54px;
    height: 42px;
  }

  .rec-light::before {
    top: 10px;
    left: 10px;
    width: 18px;
    height: 18px;
  }

  .hold-switch {
    width: 48px;
    height: 74px;
    border-width: 6px;
  }

  .hold-switch::before {
    right: 6px;
    bottom: 9px;
    left: 6px;
    height: 28px;
  }

  .hold-switch[aria-pressed="true"]::before {
    transform: translate3d(0, -24px, 0);
  }

  .main-screen {
    min-height: 374px;
    padding: 14px;
    border-width: 7px;
  }

  .lcd-status {
    gap: 8px;
    font-size: 11px;
  }

  .main-screen h1 {
    margin-top: 20px;
    font-size: clamp(38px, 12vw, 54px);
  }

  .hero-kicker {
    font-size: 16px;
  }

  .lcd-list li {
    grid-template-columns: 27px minmax(0, 1fr) auto;
    gap: 6px;
    min-height: 28px;
    font-size: 12px;
  }

  .lcd-footer {
    gap: 8px;
    font-size: 11px;
  }

  .right-hardware {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .vertical-brand {
    justify-self: start;
  }

  .mini-buttons {
    max-width: 260px;
  }

  .md-badge {
    justify-self: start;
  }

  .hero-copy,
  .lcd-card,
  .request-form {
    padding: 18px;
  }

  .hero-actions,
  .hero-actions .button,
  .form-footer .button {
    width: 100%;
  }

  .button {
    min-height: 46px;
  }

  .section-heading h2,
  .request-copy h2,
  .about-copy h2 {
    font-size: clamp(34px, 13vw, 54px);
  }

  .work-panel,
  .service-list,
  .process-track {
    padding: 8px;
  }

  .work-lcd {
    padding: 16px;
  }

  .work-lcd h3 {
    font-size: 30px;
  }

  .work-image {
    min-height: 190px;
  }

  .service-row {
    min-height: 112px;
    padding: 15px 14px;
    border-width: 3px;
  }

  .intro-copy p {
    font-size: 22px;
  }
}

.hero-device-graphic {
  align-self: stretch;
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 24px;
  box-shadow: none;
}

.hero-device-graphic::before,
.hero-device-graphic::after {
  display: none;
}

.device-graphic-stage {
  position: relative;
  flex: 0 1 100%;
  isolation: isolate;
  aspect-ratio: 1122 / 1402;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  background: #080705;
  border: 1px solid rgba(238, 220, 172, 0.16);
  border-radius: 24px;
  box-shadow:
    0 44px 95px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translate3d(0, 0, 0);
}

.device-artboard {
  position: absolute;
  inset: 0;
}

.device-graphic-stage::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 86% 16%, rgba(19, 231, 200, 0.11), transparent 18%),
    linear-gradient(115deg, rgba(255, 238, 186, 0.1), transparent 26% 72%, rgba(0, 0, 0, 0.46));
  mix-blend-mode: screen;
  opacity: 0.52;
}

.device-graphic {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

@media (min-width: 1101px) {
  .hero-section {
    align-items: stretch;
  }

  .hero-copy {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .device-graphic-stage {
    width: auto;
    flex: 0 0 auto;
    height: 100%;
    min-height: clamp(620px, 66svh, 780px);
    max-width: 100%;
  }
}

.device-overlay-screen {
  position: absolute;
  top: 20.8%;
  left: 16.8%;
  z-index: 2;
  width: 51.4%;
  height: 39.2%;
  min-height: 0;
  padding: clamp(10px, 1.55vw, 18px);
  background:
    radial-gradient(circle at 20% 8%, rgba(255, 255, 255, 0.36), transparent 32%),
    linear-gradient(180deg, rgba(225, 238, 127, 0.94), rgba(184, 199, 96, 0.94) 50%, rgba(124, 143, 61, 0.95));
  border: 1px solid rgba(17, 25, 10, 0.34);
  border-radius: 8px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.17),
    inset 0 10px 24px rgba(255, 255, 255, 0.13),
    inset 0 -18px 25px rgba(17, 25, 10, 0.24),
    0 0 18px rgba(218, 230, 116, 0.2);
  transition: filter 180ms ease, box-shadow 180ms ease;
}

.device-overlay-screen.is-switching {
  filter: brightness(1.12) contrast(1.04);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    inset 0 10px 24px rgba(255, 255, 255, 0.15),
    inset 0 -18px 25px rgba(17, 25, 10, 0.24),
    0 0 30px rgba(218, 230, 116, 0.32);
}

.device-overlay-screen .lcd-status {
  min-height: 18px;
  gap: 8px;
  padding-bottom: 4px;
  font-size: clamp(8px, 0.88vw, 12px);
  border-bottom-width: 1px;
}

.device-overlay-screen .battery {
  width: 23px;
  height: 12px;
  padding: 1px;
  border-width: 1px;
}

.device-overlay-screen .battery::after {
  top: 3px;
  right: -4px;
  width: 2px;
  height: 5px;
}

.device-overlay-screen h1 {
  margin: clamp(8px, 1.2vw, 14px) 0 4px;
  font-size: clamp(24px, 3.25vw, 41px);
}

.device-overlay-screen .hero-kicker {
  margin: 0 0 9px;
  font-size: clamp(9px, 1.05vw, 14px);
  line-height: 1.1;
}

.device-overlay-screen .lcd-list {
  margin: auto 0 8px;
  border-top-width: 1px;
  border-bottom-width: 1px;
}

.device-overlay-screen .lcd-list li {
  grid-template-columns: 26px minmax(0, 1fr) auto;
  gap: 6px;
  min-height: clamp(16px, 2vw, 23px);
  padding: 1px 4px;
  font-size: clamp(8px, 1vw, 12px);
}

.device-overlay-screen .lcd-footer {
  gap: 7px;
  font-size: clamp(8px, 0.96vw, 11px);
}

.device-overlay-screen .lcd-play-button {
  min-height: 19px;
  padding: 1px 6px;
  font-size: inherit;
  border-radius: 4px;
}

.device-hotspot {
  position: absolute;
  z-index: 4;
  display: block;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transform: translate3d(0, 0, 0);
  transition: transform 110ms cubic-bezier(0.2, 0, 0.18, 1);
}

.device-hotspot::before {
  position: absolute;
  inset: 9%;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 38% 18%, rgba(255, 255, 255, 0.2), transparent 28%),
    radial-gradient(circle at 52% 58%, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.12) 58%, transparent 72%);
  border-radius: inherit;
  box-shadow:
    inset 0 5px 13px rgba(0, 0, 0, 0.58),
    inset 0 -1px 5px rgba(255, 255, 255, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.05);
  mix-blend-mode: multiply;
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(0.98);
  transition:
    opacity 95ms ease,
    transform 150ms cubic-bezier(0.2, 0, 0.18, 1);
}

.device-hotspot::after {
  display: none;
}

.device-hotspot:hover::after,
.device-hotspot:focus-visible::after,
.device-hotspot.is-pressed::after {
  display: none;
}

.device-hotspot:active,
.device-hotspot.is-pressed {
  transform: translate3d(0, 2px, 0) scale(0.982);
}

.device-hotspot:active::before,
.device-hotspot.is-pressed::before {
  opacity: 0.9;
  transform: translate3d(0, 3px, 0) scale(0.9);
}

.hotspot-right-key::before,
.hotspot-utility-left::before,
.hotspot-utility-right::before {
  inset: 12% 10%;
  border-radius: 10px;
}

.hotspot-motion::before,
.hotspot-right-switch-top::before,
.hotspot-right-switch-bottom::before {
  inset: 6% 13%;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.52)),
    radial-gradient(circle at 42% 20%, rgba(255, 255, 255, 0.18), transparent 34%);
}

.hotspot-mini-record::before,
.hotspot-record::before {
  background:
    radial-gradient(circle at 36% 18%, rgba(255, 190, 176, 0.42), transparent 25%),
    radial-gradient(circle at 50% 60%, rgba(95, 0, 0, 0.56), rgba(0, 0, 0, 0.2) 70%);
  mix-blend-mode: multiply;
}

.device-hotspot[data-dial]::after {
  position: absolute;
  top: 14%;
  left: 50%;
  display: block;
  width: 5%;
  height: 28%;
  pointer-events: none;
  content: "";
  background: rgba(32, 240, 212, 0.82);
  border-radius: 999px;
  box-shadow:
    0 0 8px rgba(32, 240, 212, 0.82),
    0 0 18px rgba(32, 240, 212, 0.32);
  opacity: 0;
  transform: translate3d(-50%, 0, 0) rotate(var(--dial-angle, 0deg));
  transform-origin: 50% 142%;
  transition:
    opacity 140ms ease,
    transform 180ms cubic-bezier(0.2, 0, 0.18, 1);
}

.device-hotspot[data-dial].is-turning::after,
.device-hotspot[data-dial]:focus-visible::after {
  opacity: 0.92;
}

.device-hotspot[data-dial].is-turning::before {
  opacity: 0.58;
}

.device-led {
  position: absolute;
  z-index: 5;
  width: 1.45%;
  aspect-ratio: 1;
  pointer-events: none;
  background: #122c26;
  border-radius: 50%;
  opacity: 0.2;
  filter: saturate(0.7);
  transform: translate3d(-50%, -50%, 0) scale(0.82);
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease,
    opacity 180ms ease,
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.device-led.is-active {
  background: #20f0d4;
  opacity: 1;
  filter: saturate(1.3);
  box-shadow:
    0 0 10px rgba(32, 240, 212, 0.9),
    0 0 24px rgba(32, 240, 212, 0.42),
    0 0 0 4px rgba(32, 240, 212, 0.08);
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.device-led.is-amber {
  background: #dce867;
  box-shadow:
    0 0 10px rgba(220, 232, 103, 0.88),
    0 0 24px rgba(220, 232, 103, 0.36),
    0 0 0 4px rgba(220, 232, 103, 0.08);
}

.device-led.is-red {
  background: #ff6044;
  box-shadow:
    0 0 11px rgba(255, 96, 68, 0.92),
    0 0 28px rgba(255, 96, 68, 0.4),
    0 0 0 4px rgba(255, 96, 68, 0.1);
}

.device-led.is-pulsing {
  animation: ledClickPulse 520ms ease-out;
}

.led-right-top {
  top: 17.8%;
  left: 79.9%;
}

.led-right-key {
  top: 43.6%;
  left: 77.5%;
}

.led-right-upper {
  top: 52.7%;
  left: 79.9%;
}

.led-right-lower {
  top: 64.1%;
  left: 79.9%;
}

.led-lower-cyan {
  top: 69.9%;
  left: 56%;
}

.led-lower-red {
  top: 78.8%;
  left: 25.9%;
  width: 1.35%;
}

.hotspot-right-top {
  top: 19.1%;
  left: 74.2%;
  width: 11.8%;
  height: 10.2%;
}

.hotspot-right-mid {
  top: 28.9%;
  left: 74.2%;
  width: 11.8%;
  height: 10.2%;
}

.hotspot-right-key {
  top: 41.7%;
  left: 74.8%;
  width: 10.8%;
  height: 4.6%;
  border-radius: 12px;
}

.hotspot-right-switch-top {
  top: 53.5%;
  left: 76.3%;
  width: 7.3%;
  height: 7.9%;
}

.hotspot-right-switch-bottom {
  top: 64.9%;
  left: 76.3%;
  width: 7.3%;
  height: 8.1%;
}

.hotspot-work {
  top: 63.2%;
  left: 17.6%;
  width: 11.2%;
  height: 9%;
}

.hotspot-product {
  top: 65%;
  left: 35.8%;
  width: 8.2%;
  height: 6.8%;
}

.hotspot-utility-left {
  top: 67.2%;
  left: 52.2%;
  width: 8%;
  height: 5.5%;
  border-radius: 10px;
}

.hotspot-utility-right {
  top: 67.2%;
  left: 60%;
  width: 8.3%;
  height: 5.5%;
  border-radius: 10px;
}

.hotspot-motion {
  top: 76.7%;
  left: 16.1%;
  width: 5.5%;
  height: 9.8%;
}

.hotspot-mini-record {
  top: 76.9%;
  left: 24%;
  width: 4%;
  height: 4%;
}

.hotspot-pause,
.hotspot-play,
.hotspot-prev,
.hotspot-next,
.hotspot-stop,
.hotspot-record {
  top: 77.9%;
  width: 5.9%;
  height: 5.3%;
}

.hotspot-pause {
  left: 35.7%;
}

.hotspot-play {
  left: 43.7%;
}

.hotspot-prev {
  left: 51.7%;
}

.hotspot-next {
  left: 59.6%;
}

.hotspot-stop {
  left: 67.5%;
}

.hotspot-record {
  top: 76.8%;
  left: 75.6%;
  width: 8.2%;
  height: 6.6%;
}

@media (max-width: 1100px) {
  .device-overlay-screen h1 {
    font-size: clamp(34px, 7vw, 54px);
  }

  .device-overlay-screen .hero-kicker {
    font-size: clamp(13px, 2.1vw, 19px);
  }

  .device-overlay-screen .lcd-list li {
    min-height: clamp(22px, 3vw, 30px);
    font-size: clamp(11px, 1.8vw, 15px);
  }

  .device-overlay-screen .lcd-status,
  .device-overlay-screen .lcd-footer {
    font-size: clamp(10px, 1.5vw, 13px);
  }
}

@media (max-width: 620px) {
  .page-shell {
    width: min(calc(100vw - 40px), 460px);
  }

  .hero-section,
  .hero-copy {
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-text {
    max-width: 11.5ch;
    font-size: clamp(28px, 8.4vw, 36px);
    line-height: 1.04;
    overflow-wrap: normal;
  }

  .device-graphic-stage {
    flex: 0 1 100%;
    width: 100%;
    height: auto;
    aspect-ratio: 1122 / 1402;
    max-width: 100%;
  }

  .device-graphic {
    object-position: center;
  }

  .device-overlay-screen {
    top: 20.8%;
    left: 16.8%;
    width: 51.4%;
    height: 39.2%;
    padding: 7px;
  }

  .device-overlay-screen .lcd-status {
    min-height: 13px;
    padding-bottom: 2px;
    font-size: 7px;
  }

  .device-overlay-screen .battery {
    width: 19px;
    height: 10px;
  }

  .device-overlay-screen h1 {
    margin: 5px 0 3px;
    font-size: clamp(22px, 7vw, 30px);
  }

  .device-overlay-screen .hero-kicker {
    display: none;
  }

  .device-overlay-screen .lcd-list li {
    grid-template-columns: 18px minmax(0, 1fr);
    min-height: 14px;
    padding: 0 3px;
    font-size: clamp(7px, 2.35vw, 9px);
  }

  .device-overlay-screen .lcd-list time {
    display: none;
  }

  .device-overlay-screen .lcd-footer {
    display: none;
  }
}

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

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
