:root {
  --gw-ink: #07131d;
  --gw-ink-2: #0d2130;
  --gw-blue: #00649d;
  --gw-blue-light: #58c8f2;
  --gw-signal: #d9ff43;
  --gw-paper: #f1f2ed;
  --gw-surface: #ffffff;
  --gw-text: #07131d;
  --gw-muted: #536470;
  --gw-line: #b9c3c8;
  --gw-soft-line: #d9deda;
  --gw-danger: #b42318;
  --gw-radius: 2px;
  --gw-header: 78px;
  --gw-container: 1240px;
  --gw-display: "Arial Narrow", "Bahnschrift Condensed", "Segoe UI", sans-serif;
  --gw-body: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --gw-mono: "Cascadia Mono", Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--gw-paper);
  color: var(--gw-text);
  font-family: var(--gw-body);
  font-size: 16px;
  line-height: 1.62;
}
body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  background-image: linear-gradient(rgba(7, 19, 29, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(7, 19, 29, .035) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
a { color: var(--gw-blue); text-underline-offset: .2em; }
a:hover { text-decoration-thickness: 2px; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible { outline: 3px solid var(--gw-signal); outline-offset: 4px; }
button, summary, a { touch-action: manipulation; }
img { max-width: 100%; }
.gw-container { width: min(var(--gw-container), calc(100% - 56px)); margin-inline: auto; }
.gw-main { min-height: 65vh; overflow: clip; }

/* Header */
.gw-site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  background: rgba(7, 19, 29, .97);
  color: #fff;
  backdrop-filter: blur(10px);
}
.gw-header-inner {
  position: relative;
  min-height: var(--gw-header);
  padding: 0 !important;
}
.gw-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  color: #fff;
  text-decoration: none;
}
.gw-brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .45);
  background: var(--gw-signal);
  color: var(--gw-ink);
  font: 800 13px/1 var(--gw-mono);
  letter-spacing: -.08em;
}
.gw-brand-copy { display: grid; line-height: 1; }
.gw-brand-copy strong { font: 900 19px/1 var(--gw-display); letter-spacing: .04em; }
.gw-brand-copy small { margin-top: 7px; color: #9db0bc; font: 600 9px/1 var(--gw-mono); letter-spacing: .18em; }
.gw-nav ul { display: flex; align-items: stretch; gap: 0; margin: 0; padding: 0; list-style: none; }
.gw-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: var(--gw-header);
  padding: 0 14px;
  color: #d9e2e7;
  font-size: .81rem;
  font-weight: 700;
  text-decoration: none;
}
.gw-nav a::after { position: absolute; right: 14px; bottom: 0; left: 14px; height: 3px; content: ""; background: transparent; }
.gw-nav a:hover { color: #fff; background: rgba(255, 255, 255, .05); }
.gw-nav a[aria-current="page"] { color: #fff; }
.gw-nav a[aria-current="page"]::after { background: var(--gw-signal); }
.gw-mobile-nav { display: none; }

/* Type and actions */
.gw-eyebrow,
.gw-code,
.gw-footer-label {
  margin: 0 0 14px;
  color: var(--gw-blue);
  font: 700 .73rem/1.3 var(--gw-mono);
  letter-spacing: .13em;
  text-transform: uppercase;
}
.gw-code { font-size: .76rem; }
.gw-section--dark .gw-eyebrow { color: var(--gw-signal); }
.gw-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.gw-button,
.wp-element-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 52px;
  padding: 13px 18px;
  border: 1px solid var(--gw-ink);
  border-radius: 0;
  background: var(--gw-ink);
  color: #fff;
  font: 750 .9rem/1.2 var(--gw-body);
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.gw-button:hover { border-color: var(--gw-blue); background: var(--gw-blue); }
.gw-button--secondary { border-color: var(--gw-line); background: transparent; color: var(--gw-ink); }
.gw-button--secondary:hover { border-color: var(--gw-ink); background: var(--gw-ink); color: #fff; }

/* Home hero */
.gw-hero { position: relative; border-bottom: 1px solid var(--gw-line); background: #e8ebe7; }
.gw-hero::after { position: absolute; top: 0; right: 0; bottom: 0; width: 34%; content: ""; background: var(--gw-ink-2); pointer-events: none; }
.gw-hero-layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .92fr) minmax(540px, 1.08fr); gap: 56px; min-height: calc(100svh - var(--gw-header) - 104px); }
.gw-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 72px 0; }
.gw-hero h1,
.gw-page-head h1,
.gw-section h2,
.gw-contact-strip h2,
.gw-source-panel h2 {
  font-family: var(--gw-display);
  font-weight: 900;
  letter-spacing: -.045em;
  overflow-wrap: anywhere;
  text-wrap: balance;
}
.gw-hero h1 { max-width: 760px; margin: 0; font-size: clamp(3.5rem, 5vw, 5.25rem); line-height: .86; text-transform: uppercase; }
.gw-hero h1 span { display: block; margin-top: 18px; color: var(--gw-blue); font-size: .58em; line-height: .96; }
.gw-lead { max-width: 720px; margin: 28px 0 0; color: var(--gw-muted); font-size: clamp(1.05rem, 1.6vw, 1.3rem); }
.gw-hero-showcase { display: grid; min-width: 0; grid-template-columns: minmax(0, 1.35fr) minmax(180px, .65fr); grid-template-rows: repeat(2, minmax(0, 1fr)); gap: 1px; margin: 36px 0; border: 1px solid var(--gw-ink); background: var(--gw-ink); box-shadow: 18px 18px 0 rgba(0, 100, 157, .22); }
.gw-hero-product { position: relative; display: grid; min-width: 0; min-height: 0; padding: 18px; overflow: hidden; background: #fff; color: var(--gw-ink); text-decoration: none; }
.gw-hero-product--main { grid-row: 1 / 3; }
.gw-hero-product > span { position: relative; z-index: 2; color: var(--gw-blue); font: 700 .68rem/1.2 var(--gw-mono); letter-spacing: .1em; text-transform: uppercase; }
.gw-hero-product > strong { position: relative; z-index: 2; align-self: end; max-width: 22ch; font: 900 clamp(1.05rem, 2vw, 1.7rem)/1 var(--gw-display); letter-spacing: -.02em; text-transform: uppercase; }
.gw-hero-product .gw-product-photo { align-self: center; aspect-ratio: 4/3; mix-blend-mode: multiply; object-fit: contain; transition: transform .22s ease; }
.gw-hero-product:hover .gw-product-photo { transform: translateY(-4px); }
.gw-hero-product--small { padding: 14px; }
.gw-hero-product--small > strong { font-size: .95rem; }
.gw-proof-strip { border-bottom: 1px solid var(--gw-ink); background: var(--gw-signal); color: var(--gw-ink); }
.gw-proof-strip dl { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; }
.gw-proof-strip dl > div { display: flex; min-height: 104px; flex-direction: column-reverse; justify-content: center; padding: 20px 24px; border-left: 1px solid rgba(7, 19, 29, .35); }
.gw-proof-strip dl > div:last-child { border-right: 1px solid rgba(7, 19, 29, .35); }
.gw-proof-strip dt { margin-top: 5px; font: 650 .72rem/1.3 var(--gw-mono); text-transform: uppercase; }
.gw-proof-strip dd { margin: 0; font: 900 2rem/1 var(--gw-display); letter-spacing: -.04em; }

/* Sections and cards */
.gw-section { padding: clamp(72px, 9vw, 128px) 0; }
.gw-section-heading { margin-bottom: 42px; }
.gw-section-heading--split { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .55fr); align-items: end; gap: 64px; }
.gw-section-heading--split > p { max-width: 46ch; margin: 0 0 4px; color: var(--gw-muted); }
.gw-section h2,
.gw-contact-strip h2,
.gw-source-panel h2 { max-width: 880px; margin: 0; font-size: clamp(2.3rem, 5vw, 5rem); line-height: .94; text-transform: uppercase; }
.gw-grid { display: grid; gap: 16px; }
.gw-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gw-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gw-card { padding: 24px; border: 1px solid var(--gw-line); border-radius: 0; background: var(--gw-surface); box-shadow: none; }
.gw-card h2,
.gw-card h3 { margin-top: 0; font-family: var(--gw-display); line-height: 1.05; }
.gw-card h2 a { color: var(--gw-ink); }
.gw-series-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); border-top: 1px solid var(--gw-ink); border-left: 1px solid var(--gw-ink); }
.gw-series-card { position: relative; display: grid; min-width: 0; grid-template-columns: minmax(0, 1.1fr) minmax(220px, .9fr); grid-column: span 4; overflow: hidden; border-right: 1px solid var(--gw-ink); border-bottom: 1px solid var(--gw-ink); background: var(--gw-surface); }
.gw-series-card:nth-child(1) { grid-column: span 7; }
.gw-series-card:nth-child(2) { grid-column: span 5; }
.gw-series-card:nth-child(3),
.gw-series-card:nth-child(4),
.gw-series-card:nth-child(5) { grid-template-columns: 1fr; }
.gw-series-card .gw-catalog-image { align-self: center; mix-blend-mode: multiply; transition: transform .22s ease; }
.gw-series-card:hover .gw-catalog-image { transform: scale(1.025); }
.gw-series-card__body { display: flex; flex-direction: column; justify-content: flex-end; min-height: 310px; padding: 28px; background: #f8f9f5; }
.gw-series-card:nth-child(3) .gw-series-card__body,
.gw-series-card:nth-child(4) .gw-series-card__body,
.gw-series-card:nth-child(5) .gw-series-card__body { min-height: 230px; }
.gw-series-card h3 { margin: 0; font: 900 clamp(1.6rem, 2.35vw, 2.35rem)/.96 var(--gw-display); hyphens: auto; letter-spacing: -.035em; overflow-wrap: anywhere; text-transform: uppercase; }
.gw-series-card p:not(.gw-code) { margin: 18px 0 0; color: var(--gw-muted); }
.gw-series-card a { display: inline-flex; justify-content: space-between; gap: 20px; margin-top: 30px; padding-top: 14px; border-top: 1px solid var(--gw-line); color: var(--gw-ink); font-weight: 750; text-decoration: none; }

/* Technology */
.gw-section--dark { position: relative; overflow: hidden; background: var(--gw-ink); color: #fff; }
.gw-section--dark::after { position: absolute; top: -280px; right: -210px; width: 620px; height: 620px; border: 1px solid rgba(88, 200, 242, .24); border-radius: 50%; content: ""; box-shadow: 0 0 0 80px rgba(88, 200, 242, .045), 0 0 0 160px rgba(88, 200, 242, .035); pointer-events: none; }
.gw-section--dark .gw-section-heading { position: relative; z-index: 1; }
.gw-section--dark .gw-section-heading--split > p { color: #aebdc6; }
.gw-process { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); margin: 64px 0 0; padding: 0; border-top: 1px solid #536772; list-style: none; }
.gw-process li { min-height: 250px; padding: 26px 24px; border-right: 1px solid #536772; }
.gw-process li:first-child { border-left: 1px solid #536772; }
.gw-process span { display: block; margin-bottom: 74px; color: var(--gw-signal); font: 700 .75rem/1 var(--gw-mono); }
.gw-process strong { display: block; font: 900 1.8rem/1 var(--gw-display); text-transform: uppercase; }
.gw-process p { max-width: 26ch; margin-bottom: 0; color: #aebdc6; }
.gw-technical-note { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 32px; margin-top: 40px; padding: 24px 0; border-top: 1px solid #536772; border-bottom: 1px solid #536772; }
.gw-technical-note p { max-width: 850px; margin: 0; color: #dbe4e8; }
.gw-technical-note a { color: var(--gw-signal); font-weight: 750; text-decoration: none; }
.gw-source-panel { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 64px; padding: 56px; border: 1px solid var(--gw-ink); background: var(--gw-blue); color: #fff; }
.gw-source-panel .gw-eyebrow { color: var(--gw-signal); }
.gw-source-panel h2 { max-width: 900px; }
.gw-source-panel p:not(.gw-eyebrow) { max-width: 720px; color: #d9eff9; }
.gw-source-panel .gw-button { border-color: var(--gw-signal); background: var(--gw-signal); color: var(--gw-ink); white-space: nowrap; }
.gw-contact-strip { display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; border-top: 1px solid var(--gw-line); }
.gw-contact-strip h2 { max-width: 820px; }

/* Footer */
.gw-site-footer { padding: 64px 0 24px; border-top: 0; background: var(--gw-ink); color: #fff; }
.gw-footer-inner { display: grid; grid-template-columns: 1.3fr .7fr 1fr; gap: 64px; width: min(var(--gw-container), calc(100% - 56px)); margin-inline: auto; }
.gw-footer-brand { display: flex; align-items: flex-start; gap: 18px; }
.gw-footer-brand p { margin: 0; color: #aebdc6; }
.gw-footer-brand strong { color: #fff; font: 900 1.25rem/1 var(--gw-display); }
.gw-site-footer .gw-footer-label { color: var(--gw-signal); }
.gw-site-footer a { display: block; width: fit-content; min-height: 36px; color: #fff; text-decoration: none; }
.gw-site-footer a:hover { color: var(--gw-signal); }
.gw-site-footer p { color: #aebdc6; }
.gw-footer-email { font-weight: 750; }
.gw-footer-bottom { display: flex; justify-content: space-between; gap: 32px; width: min(var(--gw-container), calc(100% - 56px)); margin: 52px auto 0; padding-top: 20px; border-top: 1px solid #314550; color: #81949f; font: 600 .69rem/1.4 var(--gw-mono); text-transform: uppercase; }

/* Catalog, detail and content pages */
.gw-page-head { position: relative; padding: clamp(64px, 8vw, 110px) 0 56px; border-bottom: 1px solid var(--gw-line); }
.gw-page-head::after { position: absolute; right: 0; bottom: -1px; width: 34%; height: 5px; content: ""; background: var(--gw-blue); }
.gw-page-head h1 { max-width: 1020px; margin: 0; font-size: clamp(3.2rem, 6vw, 6rem); line-height: .88; text-transform: uppercase; }
.gw-catalog-layout { display: grid; grid-template-columns: 270px 1fr; gap: 24px; padding: 44px 0 104px; }
.gw-filters { align-self: start; position: sticky; top: calc(var(--gw-header) + 20px); display: grid; gap: 10px; padding: 22px; border: 1px solid var(--gw-ink); background: var(--gw-signal); }
.gw-filters label { margin-top: 8px; font: 700 .78rem/1.3 var(--gw-mono); text-transform: uppercase; }
.gw-filters input { width: 100%; min-height: 48px; padding: 10px 12px; border: 1px solid var(--gw-ink); border-radius: 0; background: #fff; color: var(--gw-ink); font: inherit; }
.gw-filters .gw-button { width: 100%; margin-top: 12px; }
.gw-result-count { margin-top: 0; color: var(--gw-muted); font: 650 .78rem/1.4 var(--gw-mono); text-transform: uppercase; }
.gw-product-card { position: relative; overflow: hidden; padding: 24px; border-color: var(--gw-ink); }
.gw-product-card::before { position: absolute; z-index: 2; top: 0; left: 0; width: 5px; height: 100%; content: ""; background: var(--gw-blue); }
.gw-product-image-link { display: block; margin: -24px -24px 22px; border-bottom: 1px solid var(--gw-line); background: #f7f8f4; }
.gw-product-image-link .gw-catalog-image { transition: transform .2s ease; }
.gw-product-image-link:hover .gw-catalog-image { transform: scale(1.025); }
.gw-product-card h2 { margin-bottom: 24px; font-size: clamp(1.8rem, 3vw, 2.5rem); text-transform: uppercase; }
.gw-product-summary { min-height: 3em; color: var(--gw-muted); }
.gw-product-card__actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 16px; border-top: 1px solid var(--gw-line); }
.gw-product-card__actions > a { min-height: 44px; padding-top: 15px; font: 750 .72rem/1.2 var(--gw-mono); text-transform: uppercase; }
.gw-spec-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--gw-line); border-left: 1px solid var(--gw-line); }
.gw-spec-mini div { min-width: 0; padding: 14px; border-right: 1px solid var(--gw-line); border-bottom: 1px solid var(--gw-line); }
.gw-spec-mini dt { color: var(--gw-muted); font: 600 .69rem/1.35 var(--gw-mono); text-transform: uppercase; }
.gw-spec-mini dd { margin: 6px 0 0; font-weight: 800; font-variant-numeric: tabular-nums; }
.gw-compare { display: flex; align-items: center; gap: 10px; min-height: 44px; margin-top: 16px; font-weight: 650; cursor: pointer; }
.gw-compare input { width: 20px; height: 20px; accent-color: var(--gw-blue); }
.gw-compare-bar { position: fixed; z-index: 50; left: 50%; bottom: 20px; transform: translateX(-50%); display: flex; align-items: center; gap: 24px; padding: 12px 12px 12px 20px; border: 1px solid #fff; background: var(--gw-ink); color: #fff; box-shadow: 10px 10px 0 rgba(8, 119, 185, .28); }
.gw-compare-bar[hidden] { display: none; }
.gw-catalog-image { display: block; width: 100%; height: auto; aspect-ratio: 45/32; object-fit: contain; background: #fff; }
.gw-product-photo { display: block; width: 100%; height: auto; aspect-ratio: 4/3; object-fit: contain; background: #fff; }
.gw-product-intro { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr); gap: 1px; margin: 44px 0 20px; border: 1px solid var(--gw-ink); background: var(--gw-ink); }
.gw-product-intro > * { min-width: 0; background: #fff; }
.gw-product-intro .gw-product-visual { grid-template-columns: 1fr; margin: 0; border: 0; }
.gw-product-overview { display: flex; flex-direction: column; justify-content: center; padding: clamp(28px, 5vw, 64px); }
.gw-product-overview h2 { margin: 0 0 22px; font-size: clamp(2.2rem, 4vw, 4.4rem); line-height: .96; text-transform: uppercase; }
.gw-product-overview p { max-width: 62ch; }
.gw-product-overview .gw-actions { margin-top: 22px; }
.gw-product-visual { display: grid; grid-template-columns: minmax(0, 680px) 1fr; align-items: center; gap: 42px; margin: 0 0 56px; padding: 28px; border: 1px solid var(--gw-ink); background: #fff; }
.gw-product-visual p { max-width: 34ch; color: var(--gw-muted); font-family: var(--gw-mono); font-size: .78rem; }
.gw-product-copy { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(310px, .75fr); align-items: start; gap: clamp(32px, 6vw, 96px); }
.gw-product-copy > div:first-child p { max-width: 72ch; }
.gw-product-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; border: 1px solid var(--gw-ink); background: var(--gw-ink); }
.gw-product-gallery figure { margin: 0; padding: 12px; background: #fff; }
.gw-related-products { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1px; border: 1px solid var(--gw-ink); background: var(--gw-ink); }
.gw-related-products a { display: grid; min-height: 144px; padding: 18px; background: #fff; color: var(--gw-ink); }
.gw-related-products a:hover { background: var(--gw-signal); }
.gw-related-products span { color: var(--gw-blue); font: 700 .68rem/1.3 var(--gw-mono); text-transform: uppercase; }
.gw-related-products strong { align-self: center; font: 850 1.35rem/1 var(--gw-display); }
.gw-related-products span:last-child { align-self: end; justify-self: end; font-size: 1.2rem; }
.gw-product-links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; padding-top: 0; border: 1px solid var(--gw-ink); background: var(--gw-ink); }
.gw-product-links a { display: flex; align-items: center; min-height: 92px; padding: 20px; background: var(--gw-signal); color: var(--gw-ink); font: 800 .82rem/1.35 var(--gw-mono); text-transform: uppercase; }
.gw-spec-table th { width: 56%; }
.gw-spec-table td { font-weight: 800; font-variant-numeric: tabular-nums; }
.gw-detail-grid { align-items: start; padding-bottom: 56px; }
.gw-detail-grid > section > h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
.gw-limit { padding: 28px; border: 1px solid var(--gw-ink); border-top: 6px solid var(--gw-signal); background: var(--gw-ink); color: #fff; }
.gw-limit h2 { color: #fff; }
.gw-limit p { color: #c2ced4; }
.gw-limit a { color: var(--gw-signal); }
.gw-table-wrap { max-width: 100%; overflow-x: auto; border: 1px solid var(--gw-ink); border-radius: 0; background: #fff; }
table { width: 100%; border-collapse: collapse; background: #fff; font-variant-numeric: tabular-nums; }
th, td { padding: 14px 16px; border-right: 1px solid var(--gw-soft-line); border-bottom: 1px solid var(--gw-soft-line); text-align: left; }
th { color: var(--gw-ink); font-family: var(--gw-mono); font-size: .78rem; text-transform: uppercase; }
thead th { background: var(--gw-ink); color: #fff; }
.gw-table-note { max-width: 76ch; color: var(--gw-muted); font: 600 .75rem/1.5 var(--gw-mono); }
.gw-catalog-figure { overflow: hidden; margin: 0; padding: 0; }
.gw-catalog-figure > span { display: grid; gap: 4px; padding: 18px 20px; border-top: 1px solid var(--gw-line); }
.gw-catalog-figure strong { color: var(--gw-blue); font-family: var(--gw-mono); }
.gw-catalog-figure small { color: var(--gw-muted); font-size: .92rem; }
.gw-series-table { padding-top: 20px; padding-bottom: 104px; }
.gw-series-table table { min-width: 900px; }
.gw-prose { max-width: 820px; padding: 72px 0 104px; }
.gw-prose > .gw-main.gw-container { width: 100%; max-width: none; margin-inline: 0; }
.gw-prose h1 { font: 900 clamp(3rem, 7vw, 6.5rem)/.9 var(--gw-display); letter-spacing: -.045em; text-transform: uppercase; }
.gw-prose h2 { margin-top: 56px; font: 900 clamp(1.8rem, 4vw, 3.2rem)/1 var(--gw-display); text-transform: uppercase; }
.gw-prose p, .gw-prose li { max-width: 72ch; }
.gw-formula { padding: 22px; border: 1px solid var(--gw-ink); border-left: 8px solid var(--gw-blue); background: #fff; font: 700 1.08rem/1.5 var(--gw-mono); }
.gw-checklist { display: grid; gap: 0; margin: 32px 0; padding: 0; border-top: 1px solid var(--gw-ink); list-style: none; counter-reset: checklist; }
.gw-checklist li { position: relative; padding: 18px 18px 18px 62px; border-right: 1px solid var(--gw-ink); border-bottom: 1px solid var(--gw-ink); border-left: 1px solid var(--gw-ink); background: #fff; counter-increment: checklist; }
.gw-checklist li::before { position: absolute; left: 18px; color: var(--gw-blue); content: counter(checklist, decimal-leading-zero); font: 700 .75rem/1.7 var(--gw-mono); }

/* Tools and dialogs */
.gw-faq { display: grid; gap: 0; border-top: 1px solid var(--gw-ink); }
.gw-faq details { padding: 18px 20px; border-right: 1px solid var(--gw-ink); border-bottom: 1px solid var(--gw-ink); border-left: 1px solid var(--gw-ink); background: #fff; }
.gw-faq summary { min-height: 44px; font-weight: 750; cursor: pointer; }
.gw-glossary { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; padding-bottom: 80px; border: 1px solid var(--gw-ink); background: var(--gw-ink); }
.gw-glossary div { padding: 18px; background: #fff; }
.gw-glossary dt { font-weight: 850; }
.gw-glossary dd { margin: 6px 0 0; color: var(--gw-muted); }
.gw-calc { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; max-width: 860px; padding: 1px; border: 1px solid var(--gw-ink); background: var(--gw-ink); }
.gw-calc label { display: grid; gap: 8px; padding: 18px; background: #fff; font: 700 .78rem/1.4 var(--gw-mono); text-transform: uppercase; }
.gw-calc input { min-height: 48px; padding: 10px 12px; border: 1px solid var(--gw-line); border-radius: 0; font: 500 1rem/1 var(--gw-body); }
.gw-calc .gw-button { align-self: stretch; }
.gw-calc-result { display: block; max-width: 860px; margin-top: 18px; padding: 20px; border: 1px solid var(--gw-ink); border-left: 8px solid var(--gw-blue); background: #fff; font-weight: 800; }
.gw-cookie { position: fixed; z-index: 60; right: 18px; bottom: 18px; display: grid; gap: 16px; max-width: 680px; padding: 20px; border: 1px solid #fff; background: var(--gw-ink); color: #fff; box-shadow: 8px 8px 0 rgba(8, 119, 185, .32); }
.gw-cookie[hidden] { display: none; }
.gw-cookie p { margin: 0; }
.gw-cookie a { color: var(--gw-blue-light); }
.gw-cookie__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.gw-cookie__actions .gw-button { min-height: 46px; padding: 10px 16px; }
.gw-cookie__actions .gw-button--secondary { border-color: #82939e; color: #fff; }
.gw-cookie-settings { padding: 0; border: 0; background: transparent; color: #fff; font: inherit; text-decoration: underline; text-underline-offset: .2em; cursor: pointer; }
.gw-dialog { width: min(800px, calc(100% - 24px)); padding: 0; border: 1px solid var(--gw-ink); border-radius: 0; box-shadow: 16px 16px 0 rgba(8, 119, 185, .35); }
.gw-dialog::backdrop { background: rgba(7, 19, 29, .78); }
.gw-dialog-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 20px; border-bottom: 1px solid var(--gw-ink); background: var(--gw-signal); }
.gw-dialog-head h2 { margin: 0; font-family: var(--gw-display); text-transform: uppercase; }
.gw-dialog-close { width: 44px; height: 44px; border: 1px solid var(--gw-ink); border-radius: 0; background: var(--gw-ink); color: #fff; font-size: 1.5rem; cursor: pointer; }
.gw-dialog .gw-table-wrap { margin: 20px; }

@media (max-width: 1050px) {
  .gw-nav--desktop { display: none; }
  .gw-mobile-nav { display: block; }
  .gw-mobile-nav summary { display: flex; align-items: center; min-height: 48px; padding: 0 16px; border: 1px solid #526572; color: #fff; font-weight: 750; cursor: pointer; list-style: none; }
  .gw-mobile-nav summary::-webkit-details-marker { display: none; }
  .gw-mobile-nav summary::after { margin-left: 14px; content: "+"; color: var(--gw-signal); font: 700 1.2rem/1 var(--gw-mono); }
  .gw-mobile-nav[open] summary::after { content: "−"; }
  .gw-mobile-nav .gw-nav { position: absolute; top: 100%; right: 0; left: 0; border: 1px solid #526572; background: var(--gw-ink); }
  .gw-mobile-nav .gw-nav ul { display: grid; }
  .gw-mobile-nav .gw-nav a { width: 100%; min-height: 52px; border-bottom: 1px solid #314550; }
  .gw-hero-layout { grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr); gap: 32px; }
  .gw-section-heading--split { gap: 36px; }
  .gw-series-card { grid-template-columns: 1fr; }
  .gw-series-card__body { min-height: 230px; }
  .gw-footer-inner { grid-template-columns: 1fr 1fr; }
  .gw-footer-inner > div:last-child { grid-column: span 2; }
  .gw-product-intro { grid-template-columns: 1fr; }
  .gw-related-products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  :root { --gw-header: 68px; }
  .gw-container { width: min(100% - 32px, var(--gw-container)); }
  .gw-brand-copy small { display: none; }
  .gw-hero::after { top: auto; width: 100%; height: 28%; }
  .gw-hero-layout { grid-template-columns: 1fr; min-height: 0; }
  .gw-hero-copy { padding: 72px 0 28px; }
  .gw-hero h1 { font-size: clamp(3rem, 14vw, 5.6rem); }
  .gw-hero-showcase { min-height: 520px; margin: 10px 0 52px; }
  .gw-proof-strip dl { grid-template-columns: repeat(2, 1fr); }
  .gw-proof-strip dl > div { min-height: 90px; border-bottom: 1px solid rgba(7, 19, 29, .35); }
  .gw-section-heading--split { grid-template-columns: 1fr; align-items: start; gap: 22px; }
  .gw-series-grid { grid-template-columns: 1fr; }
  .gw-series-card,
  .gw-series-card:nth-child(1),
  .gw-series-card:nth-child(2),
  .gw-series-card:nth-child(3),
  .gw-series-card:nth-child(4),
  .gw-series-card:nth-child(5) { grid-template-columns: minmax(0, .9fr) minmax(190px, 1.1fr); grid-column: auto; }
  .gw-series-card__body,
  .gw-series-card:nth-child(3) .gw-series-card__body,
  .gw-series-card:nth-child(4) .gw-series-card__body,
  .gw-series-card:nth-child(5) .gw-series-card__body { min-height: 250px; padding: 22px; }
  .gw-process { grid-template-columns: repeat(2, 1fr); }
  .gw-process li { min-height: 220px; border-bottom: 1px solid #536772; }
  .gw-technical-note,
  .gw-source-panel { grid-template-columns: 1fr; align-items: start; }
  .gw-source-panel { padding: 36px 28px; }
  .gw-contact-strip { align-items: flex-start; flex-direction: column; }
  .gw-catalog-layout { grid-template-columns: 1fr; }
  .gw-filters { position: static; }
  .gw-grid--2,
  .gw-grid--3 { grid-template-columns: 1fr; }
  .gw-product-visual { grid-template-columns: 1fr; }
  .gw-product-visual p { max-width: none; }
  .gw-product-copy { grid-template-columns: 1fr; }
  .gw-product-gallery { grid-template-columns: 1fr; }
  .gw-related-products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gw-product-links { grid-template-columns: 1fr; }
  .gw-footer-inner { grid-template-columns: 1fr; gap: 38px; }
  .gw-footer-inner > div:last-child { grid-column: auto; }
  .gw-footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 520px) {
  .gw-container,
  .gw-footer-inner,
  .gw-footer-bottom { width: min(100% - 24px, var(--gw-container)); }
  .gw-brand-mark { width: 38px; height: 38px; }
  .gw-brand-copy strong { font-size: 16px; }
  .gw-mobile-nav summary { padding: 0 12px; }
  .gw-hero-copy { padding-top: 56px; }
  .gw-hero h1 { font-size: clamp(2.8rem, 15vw, 4.4rem); }
  .gw-hero-showcase { grid-template-columns: 1fr 1fr; grid-template-rows: minmax(300px, 1.2fr) minmax(190px, .8fr); min-height: 0; box-shadow: 10px 10px 0 rgba(0, 100, 157, .22); }
  .gw-hero-product--main { grid-column: 1 / 3; grid-row: auto; }
  .gw-actions { align-items: stretch; flex-direction: column; }
  .gw-button { width: 100%; }
  .gw-proof-strip dl > div { padding: 16px 14px; }
  .gw-proof-strip dt { font-size: .62rem; }
  .gw-proof-strip dd { font-size: 1.65rem; }
  .gw-section { padding: 72px 0; }
  .gw-section h2,
  .gw-contact-strip h2,
  .gw-source-panel h2 { font-size: clamp(2.2rem, 12vw, 3.5rem); }
  .gw-series-card,
  .gw-series-card:nth-child(1),
  .gw-series-card:nth-child(2),
  .gw-series-card:nth-child(3),
  .gw-series-card:nth-child(4),
  .gw-series-card:nth-child(5) { grid-template-columns: 1fr; }
  .gw-series-card__body,
  .gw-series-card:nth-child(3) .gw-series-card__body,
  .gw-series-card:nth-child(4) .gw-series-card__body,
  .gw-series-card:nth-child(5) .gw-series-card__body { min-height: 210px; }
  .gw-process { grid-template-columns: 1fr; }
  .gw-process li { min-height: 190px; border-left: 1px solid #536772; }
  .gw-process span { margin-bottom: 42px; }
  .gw-page-head h1 { font-size: clamp(2.8rem, 15vw, 4.6rem); }
  .gw-page-head::after { width: 55%; }
  .gw-spec-mini { grid-template-columns: 1fr; }
  .gw-product-image-link { margin: -24px -24px 18px; }
  .gw-product-visual { padding: 16px; }
  .gw-product-card__actions { align-items: stretch; flex-direction: column; }
  .gw-related-products { grid-template-columns: 1fr; }
  .gw-glossary,
  .gw-calc { grid-template-columns: 1fr; }
  .gw-cookie { right: 12px; bottom: 12px; left: 12px; grid-template-columns: 1fr; }
  .gw-compare-bar { width: calc(100% - 24px); justify-content: space-between; }
}

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