:root {
  --paper: #f5f7f8;
  --white: #fff;
  --ink: #0b1116;
  --night: #050a0f;
  --night-soft: #0b151e;
  --muted: #65717a;
  --line: #cbd3d8;
  --blue: #174fd6;
  --blue-bright: #3f79ff;
  --orange: #ff6a2a;
  --silver: #b7c1c7;
  --header-h: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Golos Text", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: 0;
}
body.is-menu-open { overflow: hidden; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

.skip-link { position: fixed; z-index: 100; top: 8px; left: 8px; padding: 10px 14px; color: #fff; background: var(--blue); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(230px, 1fr);
  align-items: center;
  height: var(--header-h);
  padding: 0 34px;
  border-bottom: 1px solid rgb(11 17 22 / 13%);
  background: rgb(245 247 248 / 94%);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; gap: 11px; width: fit-content; }
.brand-mark { position: relative; display: inline-block; width: 30px; height: 30px; }
.brand-mark::before, .brand-mark::after, .brand-mark i { position: absolute; display: block; content: ""; border-color: var(--blue); border-style: solid; }
.brand-mark::before { inset: 2px 12px 15px 2px; border-width: 3px 0 0 3px; }
.brand-mark::after { inset: 15px 2px 2px 12px; border-width: 0 3px 3px 0; }
.brand-mark i:first-child { top: 5px; right: 2px; width: 11px; border-width: 2px 0 0; }
.brand-mark i:last-child { bottom: 5px; left: 2px; width: 11px; border-width: 0 0 2px; }
.brand b { display: block; font-family: "Unbounded", sans-serif; font-size: 16px; line-height: 1; }
.brand small { display: block; margin-top: 4px; color: var(--muted); font: 8px/1 "IBM Plex Mono", monospace; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 27px; }
.main-nav button, .main-nav a { position: relative; padding: 26px 0; border: 0; background: none; font-size: 12px; cursor: pointer; }
.main-nav button::after, .main-nav a::after { position: absolute; right: 0; bottom: 20px; left: 0; height: 2px; content: ""; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform 180ms ease; }
.main-nav button:hover::after, .main-nav a:hover::after { transform: scaleX(1); }
.header-action { justify-self: end; font-size: 12px; font-weight: 700; }
.header-action span { margin-left: 6px; color: var(--blue); }
.menu-button { display: none; }
.header-progress { position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; overflow: hidden; }
.header-progress i { display: block; width: 100%; height: 100%; background: var(--blue); transform: scaleX(0); transform-origin: left; }

.eyebrow { margin: 0 0 20px; color: var(--blue); font: 700 11px/1.2 "IBM Plex Mono", monospace; text-transform: uppercase; }
.eyebrow-light { color: #8fb0ff; }
.button { display: inline-flex; align-items: center; justify-content: space-between; min-height: 54px; padding: 0 20px; border: 0; font-size: 13px; font-weight: 700; cursor: pointer; }
.button span { margin-left: 26px; }
.button-primary { color: #fff; background: var(--blue); transition: background 180ms ease, transform 180ms ease; }
.button-primary:hover { background: #0d3cae; transform: translateY(-2px); }
.text-link { display: inline-flex; gap: 18px; align-items: center; font-size: 13px; font-weight: 600; }
.text-link span { color: var(--blue); }

.hero { position: relative; min-height: 100svh; overflow: hidden; background: #eef2f4; }
.hero-image { position: absolute; inset: var(--header-h) 0 0; width: 100%; height: calc(100% - var(--header-h)); object-fit: cover; object-position: center; }
.hero-wash { position: absolute; inset: var(--header-h) 0 0; background: linear-gradient(90deg, rgb(245 247 248 / 96%) 0%, rgb(245 247 248 / 90%) 28%, rgb(245 247 248 / 20%) 53%, transparent 72%); }
.hero-content { position: absolute; z-index: 2; top: 50%; left: clamp(28px, 5.7vw, 110px); width: min(690px, 49vw); transform: translateY(-44%); }
.hero h1 { max-width: 760px; margin: 0; font-family: "Unbounded", sans-serif; font-size: clamp(54px, 5.8vw, 108px); font-weight: 600; line-height: .91; text-transform: uppercase; }
.hero h1 span { color: var(--blue); }
.hero-copy { max-width: 520px; margin: 30px 0 34px; color: #3e484f; font-size: clamp(16px, 1.2vw, 21px); }
.hero-actions { display: flex; gap: 28px; align-items: center; }
.hero-scale { position: absolute; z-index: 2; right: 34px; bottom: 38px; display: grid; grid-template-columns: auto auto 46px auto auto; gap: 10px 16px; align-items: baseline; padding: 14px 17px; border: 1px solid rgb(11 17 22 / 18%); background: rgb(255 255 255 / 76%); backdrop-filter: blur(10px); }
.hero-scale span { color: var(--muted); font: 9px/1 "IBM Plex Mono", monospace; text-transform: uppercase; }
.hero-scale b { font: 600 14px/1 "Unbounded", sans-serif; }
.hero-scale i { height: 1px; background: var(--line); }
.hero-route { position: absolute; z-index: 2; right: 7vw; bottom: 126px; left: 55vw; height: 9px; border: 1px solid rgb(11 17 22 / 25%); border-radius: 9px; background: rgb(255 255 255 / 55%); }
.hero-route span { position: absolute; inset: 2px; border-radius: 6px; background: linear-gradient(90deg, var(--blue), #71a3ff); transform-origin: left; animation: hero-flow 3.2s ease-in-out infinite; }
.hero-route i { position: absolute; top: -4px; width: 15px; height: 15px; border: 3px solid #fff; border-radius: 50%; background: var(--blue); }
.hero-route i:nth-of-type(1) { left: 14%; }.hero-route i:nth-of-type(2) { left: 52%; }.hero-route i:nth-of-type(3) { right: 0; }
.hero-next { position: absolute; z-index: 2; bottom: 34px; left: clamp(28px, 5.7vw, 110px); margin: 0; color: var(--muted); font: 10px/1 "IBM Plex Mono", monospace; text-transform: uppercase; }
.hero-next span { margin-left: 12px; color: var(--blue); }
@keyframes hero-flow { 0%, 100% { transform: scaleX(.2); opacity: .5; } 55% { transform: scaleX(1); opacity: 1; } }

.horizontal-journey { position: relative; background: var(--night); }
.horizontal-pin { position: relative; height: 100svh; overflow: hidden; background: var(--night); }
.horizontal-track { display: flex; width: max-content; height: 100%; will-change: transform; }
.journey-panel { position: relative; flex: 0 0 100vw; width: 100vw; height: 100%; min-height: 680px; overflow: hidden; color: #fff; background: var(--night); }
.journey-panel::before { position: absolute; inset: 0; content: ""; pointer-events: none; background-image: linear-gradient(rgb(255 255 255 / 3%) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 3%) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 76%, transparent); }
.journey-chrome { position: absolute; z-index: 20; top: calc(var(--header-h) + 17px); right: 32px; left: 32px; display: grid; grid-template-columns: 150px 1fr 72px; gap: 24px; align-items: center; color: #8d9aa3; font: 9px/1 "IBM Plex Mono", monospace; pointer-events: none; }
.journey-chrome > div { height: 1px; background: #2c3942; }
.journey-chrome i { display: block; width: 100%; height: 1px; background: var(--orange); transform: scaleX(0); transform-origin: left; }
.journey-chrome b { color: #fff; font-weight: 500; text-align: right; }

.entry-panel { padding: clamp(128px, 15vh, 180px) 6vw 70px; background: radial-gradient(circle at 74% 42%, #102942 0, #07111a 30%, var(--night) 64%); }
.entry-copy { position: relative; z-index: 3; width: 37vw; max-width: 650px; }
.entry-copy h2, .compare-heading h2, .calc-copy h2 { margin: 0; font-family: "Unbounded", sans-serif; font-size: clamp(62px, 7.2vw, 128px); font-weight: 600; line-height: .86; text-transform: uppercase; }
.entry-copy h2 span, .compare-heading h2 span, .calc-copy h2 span { color: var(--orange); }
.entry-copy > p:last-child, .compare-heading > p:last-child, .calc-copy > p:last-child { max-width: 460px; margin: 26px 0 0; color: #aeb9c0; font-size: 17px; }
.medium-switch { position: absolute; z-index: 4; top: 21%; right: 6vw; display: grid; grid-template-columns: repeat(2, minmax(180px, 240px)); border-top: 1px solid #34414a; border-left: 1px solid #34414a; }
.medium-switch button { position: relative; min-height: 132px; padding: 24px; border: 0; border-right: 1px solid #34414a; border-bottom: 1px solid #34414a; color: #8d9aa3; background: rgb(5 10 15 / 34%); text-align: left; cursor: pointer; transition: color 180ms ease, background 180ms ease; }
.medium-switch button:hover, .medium-switch button.is-active { color: #fff; background: rgb(23 79 214 / 20%); }
.medium-switch button i { display: block; width: 10px; height: 10px; margin-bottom: 20px; border: 2px solid currentColor; border-radius: 50%; }
.medium-switch button.is-active i { border-color: var(--orange); background: var(--orange); box-shadow: 0 0 0 7px rgb(255 106 42 / 14%); }
.medium-switch b, .medium-switch span { display: block; }
.medium-switch b { font-family: "Unbounded", sans-serif; font-size: 15px; }
.medium-switch span { margin-top: 8px; font-size: 11px; }
.entry-result { position: absolute; z-index: 4; right: 6vw; bottom: 16%; width: min(520px, 40vw); padding-top: 20px; border-top: 1px solid #34414a; }
.entry-result > span { display: block; margin-bottom: 8px; color: #78858e; font: 9px/1 "IBM Plex Mono", monospace; text-transform: uppercase; }
.entry-result strong { display: block; color: #fff; font-size: 19px; }
.entry-result button { margin-top: 18px; padding: 0; border: 0; color: #8fb0ff; background: none; font-size: 12px; cursor: pointer; }
.entry-result button span { margin-left: 14px; color: var(--orange); }

.pipe-stage { position: absolute; z-index: 1; right: 0; bottom: 12%; left: 0; height: 62px; overflow: hidden; }
.pipe-stage .pipe { position: absolute; top: 23px; right: -20px; left: -20px; height: 16px; border: 1px solid #59666e; border-radius: 10px; background: linear-gradient(#26333b, #101820 40%, #394650 52%, #11181e 62%); box-shadow: 0 14px 25px rgb(0 0 0 / 40%); }
.pipe-stage .flow { position: absolute; z-index: 2; top: 28px; width: 6px; height: 6px; border-radius: 50%; background: #8bc5ff; box-shadow: 0 0 11px 4px rgb(63 121 255 / 50%); animation: pipe-flow 4.2s linear infinite; }
.pipe-stage .flow-b { animation-delay: -1.4s; }.pipe-stage .flow-c { animation-delay: -2.8s; }
.pipe-stage-entry { right: 43%; bottom: 12%; }
@keyframes pipe-flow { from { left: -2%; } to { left: 102%; } }

.model-panel { background: radial-gradient(circle at 67% 43%, #101f2b, var(--night) 48%); }
.model-panel[data-media].is-muted .model-visual, .model-panel[data-media].is-muted .model-copy { opacity: .25; filter: grayscale(1); }
.model-panel[data-media].is-muted::after { position: absolute; z-index: 8; top: 44%; left: 47%; content: "Другая рабочая среда"; color: #aab5bc; font: 10px/1 "IBM Plex Mono", monospace; text-transform: uppercase; }
.model-copy { position: absolute; z-index: 5; top: 20%; left: 6vw; width: 32vw; max-width: 560px; transition: opacity 260ms ease, filter 260ms ease; }
.model-number { display: flex; gap: 20px; align-items: center; margin: 0 0 22px; color: var(--orange); font: 12px/1 "IBM Plex Mono", monospace; }
.model-number span { color: #84919a; text-transform: uppercase; }
.model-copy h2 { margin: 0; font-family: "Unbounded", sans-serif; font-size: clamp(84px, 10vw, 180px); font-weight: 600; line-height: .82; }
.model-lead { max-width: 470px; margin: 27px 0 30px; color: #b1bcc3; font-size: clamp(15px, 1.2vw, 19px); }
.model-specs { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 520px; margin: 0 0 30px; border-top: 1px solid #33414a; border-bottom: 1px solid #33414a; }
.model-specs div { padding: 16px 14px 16px 0; }
.model-specs div + div { padding-left: 14px; border-left: 1px solid #33414a; }
.model-specs dt { color: #71808a; font: 9px/1 "IBM Plex Mono", monospace; text-transform: uppercase; }
.model-specs dd { margin: 8px 0 0; font-size: 14px; font-weight: 700; }
.compare-button { display: inline-flex; gap: 13px; align-items: center; min-height: 44px; padding: 0 17px; border: 1px solid #50606b; color: #fff; background: transparent; font-size: 12px; cursor: pointer; transition: border-color 180ms ease, background 180ms ease; }
.compare-button span { display: grid; width: 19px; height: 19px; place-items: center; border: 1px solid #74828b; }
.compare-button:hover, .compare-button.is-active { border-color: var(--orange); background: rgb(255 106 42 / 12%); }
.compare-button.is-active span { border-color: var(--orange); color: var(--night); background: var(--orange); }
.model-visual { position: absolute; z-index: 3; top: 13%; right: 3.5vw; width: 58vw; height: 69%; margin: 0; transition: opacity 260ms ease, filter 260ms ease; }
.model-visual img { width: 100%; height: 100%; object-fit: contain; object-position: center; mix-blend-mode: screen; filter: drop-shadow(0 28px 36px rgb(0 0 0 / 45%)); }
.model-visual-tall { right: 8vw; width: 49vw; }
.model-visual-wide { right: 1vw; width: 62vw; }
.model-visual-chemical { right: 11vw; width: 38vw; }
.model-visual-chemical img { mix-blend-mode: normal; }
.model-visual figcaption { position: absolute; right: 6%; bottom: -8px; color: #677681; font: 9px/1 "IBM Plex Mono", monospace; }
.model-use { position: absolute; z-index: 5; top: 17%; right: 3vw; display: grid; gap: 6px; justify-items: end; }
.model-use span { color: #6f7c84; font: 9px/1 "IBM Plex Mono", monospace; text-transform: uppercase; }
.model-use b { font-size: 12px; }.model-use small { color: var(--orange); font-weight: 700; }
.model-panel-chemical { background: radial-gradient(circle at 67% 43%, #182229, var(--night) 50%); }

.compare-panel { display: grid; grid-template-columns: 35vw 65vw; background: var(--night); }
.compare-heading { position: relative; z-index: 3; align-self: center; padding: 0 4vw 0 6vw; }
.compare-heading h2 { font-size: clamp(48px, 4.15vw, 74px); }
.compare-lab { position: relative; z-index: 2; display: grid; grid-template-rows: auto 1fr auto auto; padding: 15vh 5vw 9vh; color: var(--ink); background: var(--paper); }
.compare-selects { display: grid; grid-template-columns: 1fr 40px 1fr; gap: 14px; align-items: end; }
.compare-selects label > span, .calc-controls label > span { display: block; margin-bottom: 9px; color: var(--muted); font: 9px/1 "IBM Plex Mono", monospace; text-transform: uppercase; }
.compare-selects select, .calc-controls select { width: 100%; min-height: 46px; padding: 0 42px 0 14px; border: 1px solid var(--line); border-radius: 0; color: var(--ink); background: #fff; }
.compare-selects button { width: 40px; height: 46px; border: 1px solid var(--line); background: #fff; font-size: 18px; cursor: pointer; }
.compare-machines { display: grid; grid-template-columns: 1fr 40px 1fr; gap: 10px; align-items: end; min-height: 38vh; overflow: hidden; }
.compare-machines figure { display: grid; grid-template-rows: 1fr auto; height: 100%; margin: 0; }
.compare-machines img { width: 100%; height: 100%; min-height: 240px; object-fit: contain; mix-blend-mode: multiply; filter: drop-shadow(0 18px 20px rgb(11 17 22 / 18%)); }
.compare-machines figcaption { padding: 4px 0 9px; font: 700 17px/1 "Unbounded", sans-serif; text-align: center; }
.compare-vs { align-self: center; color: var(--orange); font: 700 11px/1 "IBM Plex Mono", monospace; }
.compare-facts { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.compare-facts div { display: grid; grid-template-columns: 1fr auto auto; gap: 10px; padding: 13px 0; font-size: 12px; }
.compare-facts div + div { padding-left: 16px; border-left: 1px solid var(--line); }
.compare-facts span { color: var(--muted); }.compare-facts b { color: var(--blue); }.compare-facts i { color: var(--orange); font-style: normal; font-weight: 700; }
.compare-to-calc { justify-self: end; margin-top: 17px; padding: 0; border: 0; color: var(--blue); background: none; font-weight: 700; cursor: pointer; }
.compare-to-calc span { margin-left: 14px; color: var(--orange); }

.calc-panel { display: grid; grid-template-columns: 38vw 62vw; background: radial-gradient(circle at 30% 60%, #112437, var(--night) 55%); }
.calc-copy { position: relative; z-index: 3; align-self: center; padding-left: 6vw; }
.calc-copy h2 { font-size: clamp(46px, 4vw, 72px); }
.calculator { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; align-self: center; min-height: 66vh; margin: 10vh 3vw 5vh 2vw; border: 1px solid #34424c; }
.calc-controls { display: grid; align-content: center; gap: 30px; padding: clamp(28px, 4vw, 62px); }
.calc-controls select { border-color: #3a4851; color: #fff; background: #0e1922; }
.range-control > span { display: flex !important; justify-content: space-between; align-items: baseline; }
.range-control output { color: #fff; font: 700 14px/1 "Unbounded", sans-serif; }
.range-control input { width: 100%; accent-color: var(--orange); }
.range-control small { display: flex; justify-content: space-between; margin-top: 5px; color: #63717a; }
.range-control small i { font-style: normal; }
.reserve-toggle { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.reserve-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.reserve-toggle .toggle { position: relative; width: 40px; height: 22px; border: 1px solid #57656e; border-radius: 12px; background: #101b23; }
.reserve-toggle .toggle::after { position: absolute; top: 3px; left: 3px; width: 14px; height: 14px; border-radius: 50%; content: ""; background: #6f7c84; transition: transform 180ms ease, background 180ms ease; }
.reserve-toggle input:checked + .toggle { border-color: var(--orange); }
.reserve-toggle input:checked + .toggle::after { background: var(--orange); transform: translateX(18px); }
.reserve-toggle b { font-size: 13px; }
.calc-result { display: flex; flex-direction: column; padding: clamp(28px, 4vw, 62px); color: var(--ink); background: var(--orange); }
.calc-result > span { font: 9px/1 "IBM Plex Mono", monospace; text-transform: uppercase; }
.calc-model { display: flex; align-items: baseline; justify-content: space-between; margin: 22px 0 28px; }
.calc-model strong { font: 600 clamp(48px, 4.2vw, 76px)/.86 "Unbounded", sans-serif; white-space: nowrap; }
.calc-model small { font-weight: 700; }
.calc-result dl { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; border-top: 1px solid rgb(11 17 22 / 35%); border-bottom: 1px solid rgb(11 17 22 / 35%); }
.calc-result dl div { padding: 16px 0; }.calc-result dl div + div { padding-left: 14px; border-left: 1px solid rgb(11 17 22 / 35%); }
.calc-result dt { font: 9px/1 "IBM Plex Mono", monospace; text-transform: uppercase; }.calc-result dd { margin: 8px 0 0; font-size: 13px; font-weight: 700; }
.calc-price { display: flex; align-items: baseline; justify-content: space-between; margin: auto 0 28px; }.calc-price span { font-size: 11px; }.calc-price b { font: 600 clamp(22px, 2.2vw, 38px)/1 "Unbounded", sans-serif; }
.calc-actions { display: flex; gap: 10px; }.calc-actions button { flex: 1; min-height: 48px; border: 1px solid var(--ink); background: transparent; font-size: 11px; font-weight: 700; cursor: pointer; }.calc-actions button:last-child { color: #fff; background: var(--ink); }

.journey-controls { display: none; }

.production { display: grid; grid-template-columns: 53% 47%; min-height: 850px; background: #fff; }
.production-media { position: relative; min-height: 720px; overflow: hidden; }
.production-media img { width: 100%; height: 100%; object-fit: cover; }
.production-media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(to top, rgb(3 9 13 / 42%), transparent 45%); }
.production-media span { position: absolute; z-index: 2; bottom: 28px; left: 30px; color: #fff; font: 9px/1 "IBM Plex Mono", monospace; text-transform: uppercase; }
.production-copy { align-self: center; padding: 90px clamp(36px, 6vw, 110px); }
.production-copy h2, .request h2 { margin: 0; font-family: "Unbounded", sans-serif; font-size: clamp(45px, 4.7vw, 84px); font-weight: 600; line-height: .96; text-transform: uppercase; }
.production-copy > p:nth-of-type(2) { max-width: 590px; margin: 28px 0 44px; color: var(--muted); font-size: 18px; }
.production ol { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.production li { display: grid; grid-template-columns: 40px 1fr; padding: 20px 0; border-bottom: 1px solid var(--line); }
.production li > span { grid-row: span 2; color: var(--blue); font: 10px/1 "IBM Plex Mono", monospace; }
.production li b { font-size: 16px; }.production li small { margin-top: 5px; color: var(--muted); }

.request { display: grid; grid-template-columns: 1.25fr .75fr; gap: 8vw; align-items: end; padding: clamp(90px, 11vw, 180px) 6vw; color: #fff; background: var(--blue); }
.request .eyebrow { color: #b9cbff; }.request h2 span { color: #9fc2ff; }.request > div:last-child { padding-bottom: 8px; }.request > div:last-child p { max-width: 450px; margin: 0 0 28px; color: #d9e3ff; font-size: 18px; }.request .button-primary { color: var(--ink); background: var(--orange); }
.site-footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 120px; padding: 24px 34px; color: #fff; background: var(--night); }
.site-footer .brand small { color: #81909a; }.site-footer p { color: #7b8992; font-size: 11px; }.site-footer > a:last-child { justify-self: end; font-size: 12px; }.site-footer > a:last-child span { color: var(--orange); }

.request-modal { width: min(650px, calc(100% - 28px)); max-height: calc(100svh - 28px); padding: 42px; border: 0; color: var(--ink); background: var(--paper); }
.request-modal::backdrop { background: rgb(3 8 12 / 82%); backdrop-filter: blur(5px); }
.request-modal h2 { max-width: 520px; margin: 0; font: 600 clamp(34px, 4vw, 58px)/.98 "Unbounded", sans-serif; text-transform: uppercase; }
.request-modal > p:nth-of-type(2) { color: var(--muted); }
.request-modal pre { max-height: 180px; overflow: auto; padding: 18px; color: #d7e3e9; background: var(--night); font: 11px/1.55 "IBM Plex Mono", monospace; white-space: pre-wrap; }
.request-modal label { display: block; margin-top: 14px; }.request-modal label span { display: block; margin-bottom: 6px; color: var(--muted); font-size: 11px; }.request-modal input { width: 100%; min-height: 48px; padding: 0 13px; border: 1px solid var(--line); background: #fff; }.request-modal .button { width: 100%; margin-top: 18px; }.request-modal > small { display: block; margin-top: 10px; color: var(--muted); }
.modal-close { position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border: 0; background: transparent; font-size: 28px; cursor: pointer; }
.toast { position: fixed; z-index: 80; right: 18px; bottom: 18px; max-width: 360px; padding: 13px 17px; color: #fff; background: var(--night); font-size: 12px; opacity: 0; transform: translateY(18px); pointer-events: none; transition: opacity 180ms ease, transform 180ms ease; }
.toast.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 210px 1fr 180px; padding: 0 22px; }
  .main-nav { justify-self: center; gap: 18px; }
  .model-copy { width: 36vw; }
  .model-visual { right: 0; width: 60vw; }
  .model-visual-tall { right: 4vw; width: 52vw; }
  .model-visual-chemical { right: 7vw; width: 42vw; }
  .entry-copy h2, .compare-heading h2, .calc-copy h2 { font-size: 66px; }
}

@media (max-width: 780px) {
  :root { --header-h: 66px; }
  .site-header { grid-template-columns: 1fr auto; height: var(--header-h); padding: 0 18px; }
  .header-action { display: none; }
  .menu-button { position: relative; display: block; width: 38px; height: 38px; border: 0; background: transparent; }
  .menu-button span { position: absolute; right: 7px; left: 7px; height: 1px; background: var(--ink); transition: transform 180ms ease; }.menu-button span:first-child { top: 14px; }.menu-button span:last-child { top: 23px; }
  .site-header.is-menu-open .menu-button span:first-child { top: 19px; transform: rotate(45deg); }.site-header.is-menu-open .menu-button span:last-child { top: 19px; transform: rotate(-45deg); }
  .main-nav { position: fixed; z-index: -1; top: var(--header-h); right: 0; left: 0; display: grid; gap: 0; padding: 12px 18px 24px; border-bottom: 1px solid var(--line); background: var(--paper); opacity: 0; transform: translateY(-110%); transition: opacity 180ms ease, transform 220ms ease; }
  .site-header.is-menu-open .main-nav { opacity: 1; transform: translateY(0); }
  .main-nav button, .main-nav a { padding: 15px 0; border-bottom: 1px solid var(--line); text-align: left; }.main-nav button::after, .main-nav a::after { display: none; }

  .hero { min-height: 800px; height: 100svh; }
  .hero-image { height: 61%; object-position: 66% center; }
  .hero-wash { background: linear-gradient(to bottom, transparent 23%, rgb(245 247 248 / 10%) 48%, var(--paper) 76%, var(--paper) 100%); }
  .hero-content { top: auto; right: 24px; bottom: 10%; left: 24px; width: auto; transform: none; }
  .hero .eyebrow { margin-bottom: 12px; }
  .hero h1 { font-size: clamp(41px, 12vw, 62px); line-height: .95; }
  .hero-copy { margin: 18px 0 23px; font-size: 15px; }
  .hero-actions { gap: 16px; }.hero-actions .button { min-height: 49px; padding: 0 15px; }.hero-actions .button span { margin-left: 13px; }.hero-actions .text-link { display: none; }
  .hero-scale, .hero-route { display: none; }
  .hero-next { bottom: 22px; left: 24px; }

  .horizontal-journey { padding: 0 0 74px; overflow: hidden; }
  .horizontal-pin { height: auto; overflow: visible; padding-top: 44px; }
  .horizontal-track { width: auto; height: auto; overflow-x: auto; overflow-y: hidden; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .horizontal-track::-webkit-scrollbar { display: none; }
  .journey-panel { flex: 0 0 92vw; width: 92vw; height: auto; min-height: 760px; scroll-snap-align: center; scroll-snap-stop: always; }
  .journey-panel::before { background-size: 54px 54px; }
  .journey-chrome { top: 19px; right: 18px; left: 18px; grid-template-columns: 1fr 50px; gap: 12px; }.journey-chrome > span { display: none; }.journey-chrome b { font-size: 8px; }
  .journey-controls { position: absolute; z-index: 24; right: 0; bottom: -58px; left: 0; display: flex; align-items: center; justify-content: center; gap: 14px; }
  .journey-controls > button { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid #394750; color: #fff; background: var(--night); }
  .journey-controls > div { display: flex; gap: 6px; }.journey-controls > div button { width: 6px; height: 6px; padding: 0; border: 0; border-radius: 50%; background: #4b5861; }.journey-controls > div button.is-active { background: var(--orange); }

  .entry-panel { padding: 76px 24px 96px; }
  .entry-copy { width: auto; }.entry-copy h2 { font-size: 53px; }.compare-heading h2, .calc-copy h2 { font-size: 41px; }.entry-copy > p:last-child, .compare-heading > p:last-child, .calc-copy > p:last-child { margin-top: 16px; font-size: 14px; }
  .medium-switch { position: relative; top: auto; right: auto; grid-template-columns: 1fr 1fr; margin-top: 35px; }.medium-switch button { min-height: 100px; padding: 15px; }.medium-switch button i { margin-bottom: 12px; }.medium-switch b { font-size: 12px; }.medium-switch span { font-size: 9px; }
  .entry-result { position: relative; right: auto; bottom: auto; width: auto; margin-top: 28px; }.entry-result strong { font-size: 15px; }
  .pipe-stage { bottom: 54px; }.pipe-stage-entry { right: 0; bottom: 42px; }

  .model-panel { min-height: 760px; padding: 70px 24px 92px; }
  .model-copy { position: relative; top: auto; left: auto; width: auto; max-width: none; }
  .model-number { margin-bottom: 13px; }.model-copy h2 { font-size: 72px; }.model-lead { margin: 16px 0 18px; font-size: 14px; }
  .model-specs { margin-bottom: 15px; }.model-specs div { padding: 12px 8px 12px 0; }.model-specs div + div { padding-left: 8px; }.model-specs dd { font-size: 11px; }
  .compare-button { min-height: 40px; }
  .model-visual, .model-visual-tall, .model-visual-wide, .model-visual-chemical { position: relative; top: auto; right: auto; width: 100%; height: 300px; margin-top: 5px; }
  .model-visual img { object-position: center; }.model-visual figcaption { right: 0; bottom: 1px; }
  .model-use { top: auto; right: 24px; bottom: 76px; }.model-use span { display: none; }
  .model-panel[data-media].is-muted::after { top: auto; bottom: 56px; left: 24px; }

  .compare-panel, .calc-panel { display: block; min-height: 830px; }
  .compare-heading, .calc-copy { padding: 74px 24px 0; }
  .compare-lab { display: block; margin-top: 26px; padding: 22px 24px 90px; }
  .compare-selects { gap: 7px; }.compare-selects select { padding-left: 8px; font-size: 11px; }
  .compare-machines { min-height: 240px; height: 240px; }.compare-machines img { min-height: 190px; }.compare-machines figcaption { font-size: 12px; }
  .compare-facts { grid-template-columns: 1fr; }.compare-facts div { padding: 8px 0; }.compare-facts div + div { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }.compare-facts div:last-child b, .compare-facts div:last-child i { font-size: 10px; }
  .compare-to-calc { margin-top: 13px; font-size: 12px; }

  .calc-panel { min-height: 920px; }
  .calculator { display: block; min-height: 0; margin: 24px 18px 90px; }
  .calc-controls { gap: 21px; padding: 24px; }.calc-result { min-height: 370px; padding: 24px; }.calc-model { margin: 18px 0 22px; }.calc-model strong { font-size: 54px; }
  .calc-result dl div { padding: 12px 0; }.calc-result dd { font-size: 11px; }.calc-price { margin: 28px 0 20px; }.calc-price b { font-size: 22px; }.calc-actions { display: grid; }

  .production { display: block; min-height: 0; }.production-media { min-height: 62svh; }.production-copy { padding: 68px 24px 76px; }.production-copy h2, .request h2 { font-size: 42px; }.production-copy > p:nth-of-type(2) { margin: 20px 0 32px; font-size: 15px; }.production li { padding: 17px 0; }.production li b { font-size: 14px; }.production li small { font-size: 11px; }
  .request { display: block; padding: 76px 24px; }.request > div:last-child { margin-top: 38px; }.request > div:last-child p { font-size: 15px; }
  .site-footer { grid-template-columns: 1fr auto; min-height: 110px; padding: 22px 18px; }.site-footer p { display: none; }.site-footer > a:last-child { max-width: 118px; text-align: right; }
  .request-modal { padding: 42px 22px 24px; }.request-modal h2 { font-size: 36px; }
}

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