:root {
  --blue: #075cff;
  --blue-dark: #0345c8;
  --sky: #9be8ff;
  --ice: #e9f7ff;
  --paper: #f4f8fb;
  --white: #fff;
  --ink: #071b31;
  --ink-soft: #19364f;
  --muted: #566c7e;
  --line: #ccdce8;
  --line-dark: rgba(255,255,255,.18);
  --radius: 24px;
  --radius-lg: 34px;
  --shell: 1240px;
  --shadow: 0 24px 70px rgba(7, 27, 49, .14);
  --sans: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --display: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
::selection { background: var(--sky); color: var(--ink); }
:focus-visible { outline: 3px solid var(--sky); outline-offset: 4px; }
[id] { scroll-margin-top: 92px; }

.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 20px; top: -80px; z-index: 1000; padding: 12px 18px;
  background: var(--white); color: var(--ink); border-radius: 99px; font-weight: 800;
  text-decoration: none; box-shadow: var(--shadow);
}
.skip-link:focus { top: 20px; }

/* Brand and navigation */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled,
.legal-page .site-header {
  background: rgba(244, 248, 251, .9);
  border-color: rgba(7, 27, 49, .1);
  backdrop-filter: blur(18px);
}
.nav { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; flex: none; }
.brand-mark {
  position: relative; display: grid; place-items: center; width: 38px; height: 38px;
  border-radius: 50%; background: var(--blue); overflow: hidden;
}
.brand-mark::before {
  content: ""; position: absolute; width: 22px; height: 22px; left: -4px; top: -4px;
  border: 6px solid var(--sky); border-radius: 50%;
}
.brand-mark span { width: 8px; height: 8px; border-radius: 50%; background: var(--white); transform: translate(7px, 7px); }
.brand-word { font-weight: 900; font-size: 1.55rem; letter-spacing: -.065em; }
.brand-word em { font-style: normal; color: var(--blue); }
.nav-links { display: flex; align-items: center; gap: 3px; }
.nav-links > a {
  padding: 11px 13px; border-radius: 99px; text-decoration: none; color: var(--ink-soft);
  font-size: .91rem; font-weight: 700; transition: color .18s ease, background .18s ease;
}
.nav-links > a:hover { background: rgba(7, 92, 255, .07); color: var(--blue); }
.nav-links .nav-cta,
.nav-cta {
  display: inline-flex; align-items: center; gap: 16px; margin-left: 10px; padding: 12px 18px;
  color: var(--white); background: var(--blue); border-radius: 99px; text-decoration: none; font-weight: 800;
}
.nav-links .nav-cta:hover { background: var(--blue-dark); color: var(--white); }
.menu-button {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%;
  background: var(--white); padding: 0; cursor: pointer;
}
.menu-button > span:not(.sr-only) { display: block; width: 18px; height: 2px; background: var(--ink); margin: 5px auto; transition: transform .2s ease; }
.menu-button[aria-expanded="true"] > span:nth-child(2) { transform: translateY(3.5px) rotate(45deg); }
.menu-button[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }

/* Shared type and controls */
.eyebrow {
  display: flex; align-items: center; gap: 11px; margin: 0 0 20px; color: var(--sky);
  font-size: .73rem; font-weight: 900; letter-spacing: .17em; text-transform: uppercase;
}
.eyebrow > span { width: 25px; height: 2px; background: currentColor; }
.eyebrow--blue { color: var(--blue); }
h1, h2, h3, p { text-wrap: pretty; }
h1, h2 {
  font-family: var(--display); font-stretch: condensed; text-transform: uppercase;
  letter-spacing: -.075em; line-height: .86;
}
h2 { margin: 0; font-size: clamp(3.2rem, 7.2vw, 6.7rem); }
h2 em { font-style: normal; color: var(--blue); }
.button {
  min-height: 56px; display: inline-flex; align-items: center; justify-content: center; gap: 28px;
  padding: 0 24px; border: 0; border-radius: 99px; text-decoration: none; font-weight: 850;
  cursor: pointer; transition: transform .18s ease, background .18s ease, color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--blue); color: var(--white); box-shadow: 0 14px 34px rgba(7, 92, 255, .24); }
.button--primary:hover { background: var(--blue-dark); }
.button--quiet { color: var(--ink); background: transparent; }
.button--quiet:hover { color: var(--blue); }
.button--white { background: var(--white); color: var(--blue); }
.button--ink { background: var(--ink); color: var(--white); }
.section { padding-block: 124px; }
.large-copy { font-size: clamp(1.28rem, 2.3vw, 1.75rem); letter-spacing: -.025em; line-height: 1.35; }

/* Hero */
.hero { position: relative; overflow: hidden; padding-top: 86px; background: var(--paper); }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .42;
  background-image: linear-gradient(rgba(7,92,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(7,92,255,.055) 1px, transparent 1px);
  background-size: 68px 68px; mask-image: linear-gradient(to bottom, #000 40%, transparent 90%);
}
.hero-glow {
  position: absolute; width: 520px; height: 520px; left: 8%; top: 7%; border-radius: 50%;
  background: rgba(155, 232, 255, .28); filter: blur(90px); pointer-events: none;
}
.hero-grid { position: relative; min-height: 700px; display: grid; grid-template-columns: .93fr 1.07fr; align-items: center; gap: clamp(44px, 6vw, 90px); padding-block: 70px 58px; }
.hero-copy { position: relative; z-index: 1; }
.hero h1 { margin: 0; font-size: clamp(4.5rem, 8.9vw, 8.4rem); }
.hero h1 span { color: var(--blue); }
.hero-lede { max-width: 570px; margin: 30px 0; color: var(--ink-soft); font-size: clamp(1.08rem, 1.65vw, 1.35rem); line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.sister-note { display: flex; align-items: center; gap: 12px; margin-top: 45px; }
.sister-note p { max-width: 350px; margin: 0; color: var(--muted); font-size: .83rem; line-height: 1.4; }
.sister-note a { color: var(--ink); font-weight: 800; }
.sister-icon { display: grid; place-items: center; flex: none; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 8px; color: #0a6f61; font-size: .75rem; font-weight: 900; background: rgba(255,255,255,.65); }
.hero-media {
  position: relative; min-height: 570px; margin: 0; border-radius: 120px 24px 120px 24px;
  overflow: hidden; background: #d6e2e9; box-shadow: var(--shadow);
}
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,27,49,.22), transparent 38%); pointer-events: none; }
.hero-media > img { width: 100%; height: 100%; min-height: 570px; object-fit: cover; object-position: 52% center; }
.hero-status {
  position: absolute; left: 24px; bottom: 24px; z-index: 2; display: flex; align-items: center; gap: 12px;
  padding: 12px 18px; color: var(--white); background: rgba(7, 27, 49, .82); border: 1px solid var(--line-dark); border-radius: 99px; backdrop-filter: blur(12px);
}
.hero-status strong, .hero-status small { display: block; }
.hero-status strong { font-size: .78rem; }
.hero-status small { margin-top: 2px; color: rgba(255,255,255,.63); font-size: .65rem; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--sky); box-shadow: 0 0 0 5px rgba(155,232,255,.13); }
.hero-stamp {
  position: absolute; right: 18px; top: 18px; z-index: 2; display: grid; place-items: center; width: 82px; height: 82px;
  color: var(--ink); background: var(--sky); border-radius: 50%; font-size: .81rem; font-weight: 900; line-height: .85; text-align: center;
  transform: rotate(8deg); letter-spacing: .04em;
}
.hero-stamp span { font-size: .55rem; letter-spacing: .12em; }
.promise-bar { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.promise-bar p { display: flex; align-items: center; gap: 12px; margin: 0; padding: 24px 18px; border-right: 1px solid var(--line); font-size: .86rem; font-weight: 800; }
.promise-bar p:first-child { padding-left: 0; }
.promise-bar p:last-child { border-right: 0; }
.promise-bar span { color: var(--blue); font-size: .66rem; letter-spacing: .1em; }

/* Introduction and system */
.intro-section { background: var(--white); }
.intro-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(50px, 9vw, 140px); align-items: end; }
.intro-copy { padding-bottom: 7px; color: var(--muted); line-height: 1.7; }
.intro-copy .large-copy { margin: 0 0 22px; color: var(--ink); }
.intro-copy p:last-child { margin: 0; }
.system-grid { display: grid; grid-template-columns: 1fr 60px 1fr 60px 1fr; gap: 0; align-items: stretch; margin-top: 86px; }
.system-card { position: relative; min-height: 430px; display: flex; flex-direction: column; padding: 31px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); overflow: hidden; }
.system-card--robot { background: var(--ice); }
.system-card--result { background: var(--blue); color: var(--white); border-color: var(--blue); }
.system-number { position: absolute; right: 24px; top: 22px; color: var(--muted); font-size: .68rem; font-weight: 900; letter-spacing: .1em; }
.system-card--result .system-number { color: var(--white); }
.system-icon { display: grid; place-items: center; width: 112px; height: 112px; margin-bottom: auto; border: 1px solid var(--line); border-radius: 50%; background: var(--white); }
.system-icon svg { width: 58px; height: 58px; fill: none; stroke: var(--blue); stroke-width: 2; }
.card-label { margin: 28px 0 10px; color: var(--blue); font-size: .68rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.system-card--result .card-label { color: var(--white); }
.system-card h3 { margin: 0 0 12px; font-size: 1.65rem; line-height: 1.08; letter-spacing: -.045em; }
.system-card > p:last-child { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.6; }
.system-card--result > p:last-child { color: rgba(255,255,255,.94); }
.system-plus, .system-equals { display: grid; place-items: center; color: var(--blue); font-size: 1.6rem; font-weight: 400; }
.result-orbit { position: relative; width: 128px; height: 128px; margin-bottom: auto; border: 1px solid rgba(255,255,255,.36); border-radius: 50%; }
.result-orbit::before, .result-orbit::after, .result-orbit span { content: ""; position: absolute; border-radius: 50%; }
.result-orbit::before { inset: 21px; border: 1px solid rgba(255,255,255,.5); }
.result-orbit::after { inset: 44px; background: var(--sky); }
.result-orbit span { width: 13px; height: 13px; right: 7px; top: 18px; background: var(--white); box-shadow: -87px 65px 0 -2px rgba(255,255,255,.72); }

/* Services */
.services { color: var(--white); background: var(--ink); }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 80px; }
.section-heading h2 em, .work h2 em, .contact h2 em { color: var(--sky); }
.section-heading > p { max-width: 440px; margin: 0 0 8px; color: rgba(255,255,255,.64); font-size: 1.05rem; line-height: 1.65; }
.service-list { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 80px; }
.service-list article { position: relative; min-height: 330px; padding: 20px 28px 30px; border-left: 1px solid rgba(255,255,255,.15); }
.service-list article:last-child { border-right: 1px solid rgba(255,255,255,.15); }
.service-index { color: var(--sky); font-size: .66rem; font-weight: 900; letter-spacing: .14em; }
.service-symbol { margin: 46px 0 36px; color: var(--sky); font-size: 2.2rem; font-weight: 200; }
.service-list h3 { margin: 0 0 14px; font-size: 1.45rem; letter-spacing: -.04em; }
.service-list p { margin: 0; color: rgba(255,255,255,.56); font-size: .9rem; line-height: 1.6; }
.service-line { position: absolute; left: 28px; right: 28px; bottom: 0; height: 3px; background: rgba(255,255,255,.14); overflow: hidden; }
.service-line::after { content: ""; display: block; width: 35%; height: 100%; background: var(--sky); transition: width .35s ease; }
.service-list article:hover .service-line::after { width: 100%; }

.included {
  display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: start;
  margin-top: 86px; padding: 42px; border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg); background: rgba(255,255,255,.045);
}
.included-heading .eyebrow { margin-bottom: 34px; }
.included-heading h3 { margin: 0; font-size: clamp(2rem, 3.6vw, 3.2rem); line-height: .98; letter-spacing: -.06em; }
.included-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.15); }
.included-list li { display: grid; grid-template-columns: 42px 1fr; gap: 15px; padding: 19px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.included-list li > span { padding-top: 2px; color: var(--sky); font-size: .65rem; font-weight: 900; letter-spacing: .1em; }
.included-list strong { display: block; margin-bottom: 5px; font-size: .98rem; }
.included-list p { margin: 0; color: rgba(255,255,255,.55); font-size: .84rem; line-height: 1.5; }

/* Quality and reporting */
.quality { background: var(--white); }
.quality-intro { display: grid; grid-template-columns: 1.12fr .88fr; gap: 90px; align-items: end; }
.quality-intro > p { max-width: 500px; margin: 0 0 8px; color: var(--muted); font-size: 1.08rem; line-height: 1.7; }
.quality-stage { display: grid; grid-template-columns: .62fr 1.38fr; gap: 22px; margin-top: 72px; }
.quality-photo { position: relative; min-height: 740px; margin: 0; overflow: hidden; border-radius: var(--radius-lg); background: #d9e4ea; }
.quality-photo::after { content: ""; position: absolute; inset: 40% 0 0; background: linear-gradient(to top, rgba(7,27,49,.76), transparent); pointer-events: none; }
.quality-photo img { width: 100%; height: 100%; min-height: 740px; object-fit: cover; object-position: 54% center; }
.quality-photo figcaption { position: absolute; z-index: 2; left: 30px; right: 30px; bottom: 28px; color: var(--white); }
.quality-photo figcaption span, .quality-photo figcaption small { display: block; }
.quality-photo figcaption span { font-size: 1.25rem; font-weight: 850; letter-spacing: -.035em; }
.quality-photo figcaption small { margin-top: 7px; color: rgba(255,255,255,.68); }
.quality-dashboard { min-width: 0; min-height: 740px; display: flex; flex-direction: column; padding: 28px; color: var(--white); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg); background: radial-gradient(circle at 88% 4%, rgba(7,92,255,.16), transparent 27%), linear-gradient(155deg, #0b2740, var(--ink) 58%); box-shadow: var(--shadow); }
.dashboard-top { display: flex; justify-content: space-between; gap: 20px; align-items: center; padding-bottom: 23px; border-bottom: 1px solid rgba(255,255,255,.12); }
.dashboard-brand { display: flex; align-items: center; gap: 10px; }
.dashboard-brand > span { display: grid; place-items: center; width: 32px; height: 32px; color: var(--ink); border-radius: 50%; background: var(--sky); font-size: .7rem; font-weight: 950; }
.dashboard-brand strong, .dashboard-brand small { display: block; }
.dashboard-brand strong { margin-bottom: 3px; font-size: .88rem; }
.dashboard-brand small { color: rgba(255,255,255,.54); font-size: .64rem; }
.demo-pill { padding: 8px 12px; color: var(--sky); border: 1px solid rgba(155,232,255,.3); border-radius: 99px; background: rgba(155,232,255,.075); font-size: .62rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.dashboard-heading { display: flex; justify-content: space-between; gap: 22px; align-items: end; padding: 30px 0 25px; }
.dashboard-kicker { display: block; margin-bottom: 8px; color: rgba(255,255,255,.58); font-size: .65rem; font-weight: 750; line-height: 1.4; letter-spacing: .04em; }
.dashboard-heading h3 { margin: 0; font-size: clamp(1.75rem, 2.5vw, 2.35rem); line-height: 1; letter-spacing: -.055em; }
.status-pill { display: flex; align-items: center; gap: 8px; flex: none; padding: 9px 12px; color: rgba(255,255,255,.82); border: 1px solid rgba(255,255,255,.16); border-radius: 99px; background: rgba(255,255,255,.025); font-size: .63rem; white-space: nowrap; }
.status-pill i, .area-list b i { display: block; width: 7px; height: 7px; border-radius: 50%; background: var(--sky); box-shadow: 0 0 0 4px rgba(155,232,255,.09); }
.dashboard-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; padding: 4px; border: 1px solid rgba(255,255,255,.1); border-radius: 11px; background: rgba(0,0,0,.15); }
.dashboard-tabs button { min-height: 38px; padding: 0 10px; color: rgba(255,255,255,.68); border: 0; border-radius: 8px; background: transparent; font-size: .69rem; font-weight: 800; cursor: pointer; transition: color .18s ease, background .18s ease; }
.dashboard-tabs button:hover { color: var(--white); }
.dashboard-tabs button[aria-selected="true"] { color: var(--ink); background: var(--sky); }
.dashboard-panel { min-height: 400px; padding-top: 19px; }
.dashboard-panel[hidden] { display: none; }
.telemetry-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.telemetry-metrics article { position: relative; min-width: 0; padding: 16px 15px 15px; overflow: hidden; border: 1px solid rgba(255,255,255,.11); border-radius: 14px; background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.025)); }
.telemetry-metrics article::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 2px; background: var(--sky); opacity: .8; }
.telemetry-metrics article:nth-child(2)::before { background: #5e9dff; }
.telemetry-metrics article:nth-child(3)::before { background: #8ad8bd; }
.telemetry-metrics article:nth-child(4)::before { background: #b8b2ff; }
.metric-title { display: flex; justify-content: space-between; gap: 10px; align-items: center; color: rgba(255,255,255,.63); font-size: .65rem; font-weight: 750; }
.metric-icon { flex: none; width: 20px; height: 20px; display: grid; place-items: center; color: var(--sky); border: 1px solid rgba(155,232,255,.14); border-radius: 6px; background: rgba(155,232,255,.045); }
.metric-icon svg { width: 11px; height: 11px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.telemetry-metrics article > strong, .telemetry-metrics article > p { display: block; }
.telemetry-metrics article > strong { margin: 10px 0 6px; color: var(--white); font-size: clamp(1.3rem, 1.9vw, 1.7rem); letter-spacing: -.055em; white-space: nowrap; }
.telemetry-metrics article > strong small { color: var(--sky); font-size: .66rem; letter-spacing: 0; }
.telemetry-metrics article > p { margin: 0; color: rgba(255,255,255,.52); font-size: .59rem; line-height: 1.45; }
.coverage-card { margin-top: 12px; padding: 17px 18px 15px; border: 1px solid rgba(255,255,255,.11); border-radius: 14px; background: rgba(255,255,255,.04); }
.card-title { display: flex; justify-content: space-between; gap: 18px; margin-bottom: 15px; }
.card-title strong, .card-title small { display: block; }
.card-title strong { margin-bottom: 4px; font-size: .72rem; }
.card-title small { color: rgba(255,255,255,.48); font-size: .57rem; }
.card-title > span { align-self: start; padding: 6px 9px; color: var(--sky); border-radius: 99px; background: rgba(155,232,255,.09); font-size: .58rem; font-weight: 800; white-space: nowrap; }
.coverage-chart { position: relative; height: 102px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; align-items: end; padding-top: 8px; background: repeating-linear-gradient(to bottom, transparent 0 24px, rgba(255,255,255,.045) 24px 25px); }
.coverage-chart > div { height: 100%; display: grid; grid-template-rows: 1fr auto; gap: 7px; align-items: end; text-align: center; }
.coverage-chart > div > span { position: relative; height: var(--h); min-height: 32px; display: block; border-radius: 6px 6px 2px 2px; background: linear-gradient(to top, rgba(7,92,255,.65), var(--sky)); }
.coverage-chart > div > span::after { content: ""; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(115deg, rgba(255,255,255,.2), transparent 45%); }
.coverage-chart b { position: absolute; z-index: 1; left: 0; right: 0; top: 8px; color: var(--ink); font-size: .57rem; letter-spacing: -.02em; }
.coverage-chart small { color: rgba(255,255,255,.52); font-size: .56rem; }
.report-status { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.report-status > div { display: grid; grid-template-columns: 29px 1fr; gap: 10px; align-items: center; padding: 11px 13px; border: 1px solid rgba(155,232,255,.14); border-radius: 12px; background: rgba(155,232,255,.04); }
.report-status > div > span { display: grid; place-items: center; width: 28px; height: 28px; color: var(--ink); border-radius: 50%; background: var(--sky); font-size: .59rem; font-weight: 900; }
.report-status strong, .report-status small { display: block; }
.report-status strong { margin-bottom: 4px; font-size: .66rem; }
.report-status small { color: rgba(255,255,255,.5); font-size: .56rem; line-height: 1.4; }
.machine-summary { display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 15px 17px; border: 1px solid rgba(155,232,255,.15); border-radius: 13px; background: linear-gradient(90deg, rgba(7,92,255,.18), rgba(155,232,255,.04)); }
.machine-summary > div { display: flex; gap: 11px; align-items: center; }
.machine-summary > div > span { color: var(--sky); font-size: 2rem; font-weight: 850; letter-spacing: -.08em; }
.machine-summary strong, .machine-summary small { display: block; }
.machine-summary strong { margin-bottom: 4px; font-size: .72rem; }
.machine-summary small { color: rgba(255,255,255,.52); font-size: .59rem; }
.machine-summary > b { display: flex; align-items: center; gap: 7px; color: var(--sky); font-size: .61rem; }
.machine-summary > b i { width: 7px; height: 7px; border-radius: 50%; background: var(--sky); box-shadow: 0 0 0 4px rgba(155,232,255,.09); }
.machine-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 12px; }
.machine-list article { display: grid; gap: 14px; min-width: 0; padding: 16px; border: 1px solid rgba(255,255,255,.11); border-radius: 13px; background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.025)); }
.machine-name { min-width: 0; display: flex; gap: 10px; align-items: center; }
.machine-name > span { flex: none; display: grid; place-items: center; width: 34px; height: 34px; color: var(--ink); border-radius: 9px; background: var(--sky); font-size: .64rem; font-weight: 950; }
.machine-name strong, .machine-name small { display: block; }
.machine-name strong { margin-bottom: 4px; font-size: .72rem; }
.machine-name small { color: rgba(255,255,255,.5); font-size: .58rem; }
.machine-list dl { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin: 0; border-top: 1px solid rgba(255,255,255,.1); border-left: 1px solid rgba(255,255,255,.1); }
.machine-list dl div { min-width: 0; padding: 11px 12px; border-right: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); }
.machine-list dt { margin-bottom: 5px; color: rgba(255,255,255,.5); font-size: .54rem; }
.machine-list dd { margin: 0; color: var(--white); font-size: .68rem; font-weight: 800; white-space: nowrap; }
.machine-total { display: flex; justify-content: space-between; gap: 18px; align-items: center; margin-top: 12px; padding: 13px 16px; border-radius: 12px; background: var(--sky); color: var(--ink); }
.machine-total span { font-size: .59rem; font-weight: 750; }
.machine-total strong { font-size: .7rem; letter-spacing: -.02em; }
.eco-overview { display: grid; grid-template-columns: 142px 1fr; gap: 25px; align-items: center; padding: 17px; border: 1px solid rgba(255,255,255,.11); border-radius: 14px; background: rgba(255,255,255,.04); }
.eco-ring { width: 128px; height: 128px; display: grid; place-items: center; border-radius: 50%; background: conic-gradient(var(--sky) 0 78%, rgba(255,255,255,.09) 78% 100%); }
.eco-ring::before { content: ""; grid-area: 1 / 1; width: 98px; height: 98px; border-radius: 50%; background: #0a2137; }
.eco-ring > span { position: relative; z-index: 1; grid-area: 1 / 1; text-align: center; }
.eco-ring strong, .eco-ring small { display: block; }
.eco-ring strong { color: var(--sky); font-size: 1.65rem; line-height: 1; letter-spacing: -.07em; }
.eco-ring small { margin-top: 6px; color: rgba(255,255,255,.58); font-size: .58rem; line-height: 1.35; }
.eco-overview h4 { margin: 8px 0 10px; font-size: 1.6rem; line-height: 1.06; letter-spacing: -.045em; }
.eco-overview p { max-width: 430px; margin: 0; color: rgba(255,255,255,.56); font-size: .66rem; line-height: 1.55; }
.resource-bars { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.resource-bars article { padding: 15px; border: 1px solid rgba(255,255,255,.11); border-radius: 12px; background: rgba(255,255,255,.04); }
.resource-bars article > div { display: flex; justify-content: space-between; gap: 12px; font-size: .64rem; }
.resource-bars article > div span { color: rgba(255,255,255,.48); }
.resource-bars article > div strong { color: var(--white); }
.resource-bars article > i { display: block; height: 6px; margin: 12px 0 9px; overflow: hidden; border-radius: 99px; background: rgba(255,255,255,.1); }
.resource-bars article > i b { display: block; width: var(--w); height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--blue), var(--sky)); }
.resource-bars article > small { color: rgba(255,255,255,.48); font-size: .55rem; }
.eco-note { display: grid; grid-template-columns: 36px 1fr; gap: 12px; align-items: center; margin-top: 12px; padding: 14px 15px; border-radius: 12px; background: rgba(138,216,189,.08); }
.eco-note > span { display: grid; place-items: center; width: 35px; height: 35px; color: #8ad8bd; border: 1px solid rgba(138,216,189,.25); border-radius: 50%; }
.eco-note strong, .eco-note small { display: block; }
.eco-note strong { margin-bottom: 4px; font-size: .66rem; }
.eco-note small { color: rgba(255,255,255,.52); font-size: .57rem; line-height: 1.45; }
.dashboard-footer { display: flex; justify-content: space-between; gap: 24px; align-items: center; margin-top: auto; padding-top: 19px; border-top: 1px solid rgba(255,255,255,.12); }
.dashboard-footer p { max-width: 500px; display: flex; gap: 10px; align-items: center; margin: 0; color: rgba(255,255,255,.55); font-size: .59rem; line-height: 1.5; }
.dashboard-footer p > span:first-child { flex: none; display: grid; place-items: center; width: 24px; height: 24px; color: var(--sky); border: 1px solid rgba(155,232,255,.25); border-radius: 50%; font-size: .58rem; font-weight: 900; font-style: normal; }
.dashboard-footer a { flex: none; color: var(--sky); font-size: .64rem; font-weight: 800; text-underline-offset: 4px; }
.quality-principles { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 28px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.quality-principles article { padding: 30px 34px; border-right: 1px solid var(--line); }
.quality-principles article:first-child { padding-left: 0; }
.quality-principles article:last-child { padding-right: 0; border-right: 0; }
.quality-principles article > span { color: var(--blue); font-size: .64rem; font-weight: 900; letter-spacing: .1em; }
.quality-principles h3 { margin: 18px 0 9px; font-size: 1.18rem; letter-spacing: -.035em; }
.quality-principles p { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.55; }

/* Process */
.process { background: var(--ice); }
.process-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(70px, 11vw, 160px); }
.process-copy { position: sticky; top: 130px; align-self: start; }
.process-copy h2 { font-size: clamp(3.6rem, 6.2vw, 6rem); }
.process-copy > p:not(.eyebrow) { max-width: 480px; margin: 30px 0; color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.text-link { display: inline-flex; align-items: center; gap: 28px; color: var(--blue); font-weight: 850; text-underline-offset: 5px; }
.steps { margin: 0; padding: 0; list-style: none; counter-reset: steps; }
.steps li { display: grid; grid-template-columns: 72px 1fr; gap: 22px; padding: 40px 0 42px; border-top: 1px solid var(--line); }
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps li > span { display: grid; place-items: center; align-self: start; width: 54px; height: 54px; border-radius: 50%; background: var(--blue); color: var(--white); font-weight: 900; }
.steps h3 { margin: 0 0 10px; font-size: clamp(1.55rem, 2.6vw, 2.15rem); letter-spacing: -.045em; }
.steps p { margin: 0; color: var(--muted); line-height: 1.6; }

/* Scope builder */
.scope-builder { position: relative; overflow: hidden; color: var(--white); background: var(--ink); }
.scope-builder::before { content: ""; position: absolute; width: 700px; height: 700px; right: -180px; top: -280px; border-radius: 50%; background: rgba(7,92,255,.28); filter: blur(120px); }
.scope-intro { position: relative; display: grid; grid-template-columns: 1fr .72fr; gap: 90px; align-items: end; }
.scope-intro h2 em { color: var(--sky); }
.scope-intro > p { max-width: 470px; margin: 0 0 7px; color: rgba(255,255,255,.6); font-size: 1.05rem; line-height: 1.7; }
.scope-panel { position: relative; display: grid; grid-template-columns: 1.25fr .75fr; margin-top: 70px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 28px 90px rgba(0,0,0,.25); }
.scope-controls { display: grid; gap: 0; padding: 16px 42px; background: #0a2239; }
.scope-controls fieldset { min-width: 0; margin: 0; padding: 26px 0 30px; border: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.scope-controls fieldset:last-child { border-bottom: 0; }
.scope-controls legend { width: 100%; margin-bottom: 19px; color: rgba(255,255,255,.7); font-size: .75rem; font-weight: 850; letter-spacing: .02em; }
.choice-grid { display: grid; gap: 10px; }
.choice-grid--type, .choice-grid--frequency { grid-template-columns: repeat(4, 1fr); }
.choice-grid label, .priority-grid label { cursor: pointer; }
.choice-grid input, .priority-grid input { position: absolute; opacity: 0; pointer-events: none; }
.choice-grid label > span { min-height: 82px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 12px; color: rgba(255,255,255,.58); border: 1px solid rgba(255,255,255,.14); border-radius: 14px; background: rgba(255,255,255,.035); font-size: .75rem; font-weight: 750; text-align: center; transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease; }
.choice-grid label:hover > span { transform: translateY(-2px); border-color: rgba(155,232,255,.45); }
.choice-grid label b { color: var(--sky); font-size: 1.25rem; font-weight: 400; }
.choice-grid label small { color: rgba(255,255,255,.46); font-size: .59rem; }
.choice-grid input:focus-visible + span, .priority-grid input:focus-visible + span { outline: 3px solid var(--sky); outline-offset: 3px; }
.choice-grid input:checked + span { color: var(--ink); border-color: var(--sky); background: var(--sky); }
.choice-grid input:checked + span b, .choice-grid input:checked + span small { color: var(--ink); }
.range-head, .range-scale { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.range-head { margin-bottom: 20px; color: rgba(255,255,255,.55); font-size: .72rem; }
.range-head output { color: var(--sky); font-size: 1.35rem; font-weight: 900; letter-spacing: -.04em; }
.scope-range { width: 100%; height: 5px; appearance: none; border-radius: 99px; background: linear-gradient(90deg, var(--sky) 0 var(--range-progress, 4%), rgba(255,255,255,.14) var(--range-progress, 4%) 100%); cursor: pointer; }
.scope-range::-webkit-slider-thumb { width: 24px; height: 24px; appearance: none; border: 6px solid var(--ink); border-radius: 50%; background: var(--sky); box-shadow: 0 0 0 1px var(--sky); }
.scope-range::-moz-range-thumb { width: 14px; height: 14px; border: 6px solid var(--ink); border-radius: 50%; background: var(--sky); box-shadow: 0 0 0 1px var(--sky); }
.range-scale { margin-top: 11px; color: rgba(255,255,255,.36); font-size: .59rem; }
.priority-grid { display: flex; flex-wrap: wrap; gap: 9px; }
.priority-grid label > span { display: block; padding: 11px 15px; color: rgba(255,255,255,.57); border: 1px solid rgba(255,255,255,.14); border-radius: 99px; font-size: .68rem; font-weight: 750; transition: border-color .18s ease, background .18s ease, color .18s ease; }
.priority-grid input:checked + span { color: var(--ink); border-color: var(--sky); background: var(--sky); }
.scope-result { display: flex; flex-direction: column; padding: 42px 36px; color: var(--ink); background: var(--blue); }
.result-label { margin: 0; color: var(--sky); font-size: .67rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.result-mark { position: relative; width: 110px; height: 110px; margin: 38px 0 45px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; }
.result-mark::before, .result-mark::after, .result-mark span { content: ""; position: absolute; border-radius: 50%; }
.result-mark::before { inset: 18px; border: 1px solid rgba(255,255,255,.6); }
.result-mark::after { inset: 38px; background: var(--sky); }
.result-mark span { width: 10px; height: 10px; top: 13px; right: 8px; background: var(--white); }
.scope-result h3 { margin: 0 0 13px; color: var(--white); font-size: clamp(1.8rem, 3.4vw, 2.7rem); line-height: 1; letter-spacing: -.055em; }
.scope-result > p:not(.result-label) { margin: 0; color: rgba(255,255,255,.68); font-size: .9rem; line-height: 1.55; }
.scope-result dl { margin: 32px 0; border-top: 1px solid rgba(255,255,255,.22); }
.scope-result dl div { display: grid; grid-template-columns: .75fr 1.25fr; gap: 12px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.22); }
.scope-result dt { color: rgba(255,255,255,.5); font-size: .64rem; }
.scope-result dd { margin: 0; color: var(--white); font-size: .69rem; font-weight: 750; text-align: right; }
.scope-result .button { width: 100%; margin-top: auto; }
.scope-result > small { display: block; margin-top: 15px; color: rgba(255,255,255,.5); font-size: .61rem; line-height: 1.45; text-align: center; }

/* Work */
.work { position: relative; overflow: hidden; color: var(--white); background: var(--blue); }
.work-pattern { position: absolute; inset: 0; opacity: .15; background-image: radial-gradient(circle at center, transparent 0 31px, #fff 32px 33px, transparent 34px); background-size: 90px 90px; mask-image: linear-gradient(90deg, #000, transparent 65%); }
.work-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(60px, 11vw, 160px); }
.work-copy .large-copy { margin: 0 0 30px; }
.work-copy ul { display: grid; gap: 14px; margin: 0 0 36px; padding: 0; list-style: none; }
.work-copy li { display: flex; gap: 13px; align-items: center; color: rgba(255,255,255,.8); }
.work-copy li span { display: grid; place-items: center; width: 24px; height: 24px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; color: var(--sky); font-size: .72rem; }

/* FAQ */
.faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(60px, 11vw, 160px); }
.faq h2 { font-size: clamp(3.6rem, 6.2vw, 6.1rem); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 27px 50px 27px 0; cursor: pointer; list-style: none; font-size: 1.1rem; font-weight: 800; letter-spacing: -.025em; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span::before, .faq-list summary span::after { content: ""; position: absolute; right: 6px; top: 50%; width: 17px; height: 2px; background: var(--blue); transition: transform .2s ease; }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { max-width: 650px; margin: -4px 54px 28px 0; color: var(--muted); line-height: 1.7; }

/* Contact */
.contact { padding-block: 120px; color: var(--white); background: var(--ink); }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(70px, 12vw, 170px); align-items: start; }
.contact h2 { font-size: clamp(3.8rem, 7vw, 6.6rem); }
.contact-copy > p:not(.eyebrow) { max-width: 470px; margin: 28px 0 26px; color: rgba(255,255,255,.64); line-height: 1.65; }
.contact-copy > a { display: inline-flex; gap: 30px; color: var(--sky); font-weight: 800; text-underline-offset: 5px; }
.contact-form { display: grid; gap: 22px; padding: 36px; color: var(--ink); background: var(--white); border-radius: var(--radius-lg); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: grid; gap: 9px; color: var(--ink-soft); font-size: .78rem; font-weight: 850; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); color: var(--ink); padding: 14px 15px; outline: 0; transition: border-color .18s ease, box-shadow .18s ease; }
.contact-form input { min-height: 52px; }
.contact-form textarea { min-height: 124px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(7,92,255,.11); }
.contact-form .button { justify-self: start; }
.form-note { max-width: 520px; margin: 0; color: var(--muted); font-size: .72rem; line-height: 1.5; }

/* Footer */
.site-footer { color: rgba(255,255,255,.68); background: #03101e; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 50px; padding-block: 70px; }
.brand--footer .brand-word { color: var(--white); }
.footer-top > p { margin: 0; font-size: .9rem; line-height: 1.6; }
.footer-links { display: grid; justify-content: end; gap: 11px; text-align: right; }
.footer-links a { font-size: .84rem; text-underline-offset: 4px; }
.footer-links a:hover { color: var(--sky); }
.footer-bottom { display: flex; justify-content: space-between; padding-block: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: .69rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-bottom p { margin: 0; }

/* Legal and error pages */
.legal-page { background: var(--white); }
.legal-page .site-header { position: sticky; }
.legal-back { margin-left: auto; font-size: .84rem; }
.legal-main { max-width: 820px; padding-block: 100px 130px; }
.legal-main h1, .error-page h1 { margin: 0; font-family: var(--display); font-size: clamp(4rem, 9vw, 7rem); line-height: .9; letter-spacing: -.07em; text-transform: uppercase; }
.legal-updated { color: var(--muted); margin: 25px 0 70px; }
.legal-main section { padding: 28px 0; border-top: 1px solid var(--line); }
.legal-main h2 { margin: 0 0 15px; font-family: var(--sans); font-size: 1.3rem; line-height: 1.2; letter-spacing: -.03em; text-transform: none; }
.legal-main section p { margin: 0; color: var(--muted); line-height: 1.75; }
.legal-main section a { color: var(--blue); }
.error-page { min-height: 100vh; display: grid; place-items: center; padding: 32px; background: var(--ice); }
.error-page main { max-width: 760px; text-align: center; }
.error-page .brand { margin-bottom: 80px; }
.error-page .error-code { margin: 0 0 15px; color: var(--blue); font-size: .78rem; font-weight: 900; letter-spacing: .2em; }
.error-page main > p:not(.error-code) { margin: 25px 0 35px; color: var(--muted); }

/* Reveal enhancement */
.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.7,.2,1); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .nav-links { gap: 0; }
  .nav-links > a { padding-inline: 9px; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-media, .hero-media > img { min-height: 510px; }
  .system-grid { grid-template-columns: 1fr 38px 1fr; }
  .system-grid .system-equals { display: none; }
  .system-card--result { grid-column: 1 / -1; min-height: 350px; margin-top: 38px; }
  .service-list { grid-template-columns: repeat(2, 1fr); }
  .service-list article:nth-child(3) { border-top: 1px solid rgba(255,255,255,.15); }
  .service-list article:nth-child(2) { border-right: 1px solid rgba(255,255,255,.15); }
  .quality-stage { grid-template-columns: .62fr 1.38fr; }
  .quality-photo, .quality-photo img { min-height: 800px; }
  .quality-dashboard { min-height: 800px; padding: 25px; }
  .telemetry-metrics { grid-template-columns: repeat(2, 1fr); }
  .scope-panel { grid-template-columns: 1fr .72fr; }
  .scope-controls { padding-inline: 28px; }
  .choice-grid--type { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .shell { width: min(calc(100% - 36px), var(--shell)); }
  .section { padding-block: 90px; }
  .nav { min-height: 74px; }
  .menu-button { display: block; position: relative; z-index: 3; }
  .nav-links {
    position: fixed; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: stretch;
    justify-content: center; padding: 100px 28px 40px; background: var(--paper); visibility: hidden; opacity: 0;
    transform: translateY(-12px); transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .nav-links.is-open { visibility: visible; opacity: 1; transform: none; }
  .nav-links > a { padding: 14px; font-size: 1.45rem; text-align: center; }
  .nav-links .nav-cta { justify-content: center; margin: 18px 0 0; color: var(--white); }
  .hero { padding-top: 74px; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 58px; }
  .hero-copy { max-width: 690px; }
  .hero-media { min-height: 560px; border-radius: 90px 20px 90px 20px; }
  .hero-media > img { min-height: 560px; }
  .promise-bar { grid-template-columns: 1fr 1fr; }
  .promise-bar p:nth-child(2) { border-right: 0; }
  .promise-bar p:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .promise-bar p:nth-child(3) { padding-left: 0; }
  .intro-grid, .section-heading, .quality-intro, .process-grid, .scope-intro, .work-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .intro-grid, .work-grid, .faq-grid, .contact-grid { gap: 58px; }
  .system-grid { margin-top: 65px; }
  .section-heading { gap: 30px; }
  .service-list { margin-top: 55px; }
  .included { grid-template-columns: 1fr; gap: 38px; padding: 32px; }
  .quality-intro { gap: 35px; }
  .quality-stage { grid-template-columns: 1fr; }
  .quality-photo, .quality-photo img { min-height: 560px; }
  .quality-dashboard { min-height: 0; }
  .quality-principles { grid-template-columns: 1fr; }
  .quality-principles article { padding: 25px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .quality-principles article:last-child { border-bottom: 0; }
  .process-grid { gap: 60px; }
  .process-copy { position: static; }
  .scope-intro { gap: 35px; }
  .scope-panel { grid-template-columns: 1fr; }
  .scope-result { min-height: 580px; }
  .contact { padding-block: 90px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > p { display: none; }
}

@media (max-width: 600px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  h2 { font-size: clamp(3rem, 16vw, 4.6rem); }
  .hero-grid { min-height: auto; padding-bottom: 36px; }
  .hero h1 { font-size: clamp(3.65rem, 16vw, 4.6rem); }
  .hero-lede { margin-block: 24px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-media, .hero-media > img { min-height: 420px; }
  .hero-media { border-radius: 65px 16px 65px 16px; }
  .hero-media > img { object-position: 50% center; }
  .hero-stamp { width: 66px; height: 66px; font-size: .7rem; }
  .hero-status { left: 14px; bottom: 14px; }
  .promise-bar { grid-template-columns: 1fr; }
  .promise-bar p { padding-left: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .promise-bar p:last-child { border-bottom: 0; }
  .system-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
  .system-card { min-height: 380px; }
  .system-card--result { grid-column: auto; margin-top: 0; }
  .system-plus, .system-equals { height: 34px; transform: rotate(90deg); }
  .system-equals { display: grid; }
  .service-list { grid-template-columns: 1fr; }
  .service-list article { min-height: 290px; border-right: 1px solid rgba(255,255,255,.15); border-top: 1px solid rgba(255,255,255,.15); }
  .service-list article:first-child { border-top: 0; }
  .included { margin-top: 55px; padding: 24px 19px; }
  .included-list li { grid-template-columns: 34px 1fr; }
  .quality-photo, .quality-photo img { min-height: 420px; }
  .quality-photo { border-radius: 22px; }
  .quality-photo figcaption { left: 20px; right: 20px; bottom: 20px; }
  .quality-dashboard { min-height: 0; padding: 24px 19px; border-radius: 22px; }
  .dashboard-heading { align-items: start; }
  .dashboard-heading { flex-direction: column; }
  .telemetry-metrics { grid-template-columns: repeat(2, 1fr); }
  .telemetry-metrics article { padding: 12px 11px; }
  .coverage-card { padding-inline: 11px; }
  .coverage-chart { gap: 5px; }
  .coverage-chart b { font-size: .45rem; }
  .report-status { grid-template-columns: 1fr; }
  .machine-summary { align-items: start; }
  .machine-list { grid-template-columns: 1fr; }
  .machine-total { align-items: start; flex-direction: column; gap: 5px; }
  .eco-overview { grid-template-columns: 1fr; gap: 22px; padding: 20px; text-align: center; }
  .eco-ring { width: 112px; height: 112px; margin-inline: auto; }
  .eco-ring::before { width: 86px; height: 86px; }
  .eco-ring strong { font-size: 1.5rem; }
  .eco-overview p { margin-inline: auto; }
  .resource-bars { grid-template-columns: 1fr; }
  .dashboard-footer { align-items: start; flex-direction: column; }
  .dashboard-footer p { max-width: none; }
  .quality-principles { margin-top: 18px; }
  .steps li { grid-template-columns: 56px 1fr; gap: 15px; }
  .steps li > span { width: 45px; height: 45px; }
  .scope-panel { border-radius: 22px; }
  .scope-controls { padding: 8px 18px; }
  .choice-grid--frequency { grid-template-columns: repeat(2, 1fr); }
  .choice-grid label > span { min-height: 74px; }
  .scope-result { min-height: 560px; padding: 34px 24px; }
  .contact-form { padding: 24px 18px; border-radius: 22px; }
  .field-row { grid-template-columns: 1fr; }
  .contact-form .button { width: 100%; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links { justify-content: start; text-align: left; }
  .footer-bottom { gap: 20px; }
  .legal-back { padding: 10px 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}
