:root {
  --ink: #111315;
  --muted: #66706f;
  --line: rgba(17, 19, 21, 0.08);
  --paper: #f6f8fb;
  --white: #ffffff;
  --blue: #1769e0;
  --blue-2: #0b57d0;
  --blue-soft: #e7f0ff;
  --mist: #e9eef6;
  --green: #16764f;
  --amber: #c97800;
  --dark: #101315;
  --dark-2: #252b2f;
  --shadow: 0 28px 90px rgba(45, 55, 72, 0.14);
  --soft-shadow: 0 18px 56px rgba(45, 55, 72, 0.12);
  --bezier: cubic-bezier(0.32, 0.72, 0, 1);
  --max: 1220px;
  --font-body: "Aptos", "Avenir Next", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI Variable", system-ui, sans-serif;
  --font-display: "DIN Alternate", "Avenir Next", "SF Pro Display", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-technical: "SF Mono", "IBM Plex Mono", "Space Mono", "DIN Alternate", ui-monospace, monospace;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(23, 105, 224, 0.12), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(22, 118, 79, 0.08), transparent 26%),
    linear-gradient(180deg, #fbfcff 0%, #f4f7fb 46%, #eef3f8 100%);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-synthesis-weight: none;
  text-rendering: geometricPrecision;
  font-variant-numeric: tabular-nums;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  background-image:
    linear-gradient(rgba(17, 19, 21, 0.55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 19, 21, 0.55) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-stretch: normal;
  letter-spacing: 0;
  line-height: 1.08;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(23, 105, 224, 0.26);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  padding: 10px 16px;
  font-weight: 820;
  box-shadow: var(--soft-shadow);
  transition: transform 500ms var(--bezier);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 24px 24px 0;
  pointer-events: none;
}

.nav {
  width: min(var(--max), 100%);
  min-height: 66px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(210px, 245px) 1fr auto;
  align-items: center;
  gap: 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(24px);
  padding: 8px;
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding-left: 8px;
  font-size: 0.9rem;
  font-family: var(--font-technical);
  font-weight: 760;
  letter-spacing: 0;
}

.brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 999px;
  object-fit: contain;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(17, 19, 21, 0.08), 0 8px 22px rgba(45, 55, 72, 0.10);
}

.nav-links {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 999px;
  padding: 4px;
  background: rgba(17, 19, 21, 0.04);
}

.nav-links a {
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--muted);
  font-size: 0.82rem;
  font-family: var(--font-technical);
  font-weight: 760;
  letter-spacing: 0;
  transition: color 700ms var(--bezier), background 700ms var(--bezier), transform 700ms var(--bezier), box-shadow 700ms var(--bezier);
}

.nav-links a:hover,
.nav-links a.is-active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 6px 18px rgba(45, 55, 72, 0.09);
  transform: translateY(-1px);
}

.nav-links a:last-child {
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 1.05rem;
  cursor: pointer;
}

.wrap {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.section {
  position: relative;
  z-index: 2;
  min-height: 620px;
  display: grid;
  align-items: center;
  padding: 78px 0;
  overflow: hidden;
}

.section.white {
  background: rgba(255, 255, 255, 0.52);
}

.section.dark,
.section.charcoal {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 64%, #384149 100%);
  color: #fff;
}

.section.dark .section-note,
.section.dark .section-head p,
.section.charcoal .section-note,
.section.charcoal .section-head p {
  color: rgba(255, 255, 255, 0.66);
}

.section.dark .eyebrow,
.section.charcoal .eyebrow {
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.82);
}

.section.callout-section {
  background:
    radial-gradient(circle at 72% 18%, rgba(23, 105, 224, 0.15), transparent 28%),
    linear-gradient(180deg, #eef3f8 0%, #fbfcff 100%);
}

.bezel,
.product-card,
.blog-card,
.contact-card,
.side-panel,
.spec-rail article,
.process-grid > div {
  border-radius: 26px;
  background: rgba(17, 19, 21, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.80), var(--shadow);
  padding: 8px;
}

.bezel.dark {
  background: rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 30px 90px rgba(0, 0, 0, 0.18);
}

.core,
.product-card > *,
.blog-card > *,
.contact-card > form,
.spec-rail article > *,
.process-grid > div > * {
  position: relative;
  z-index: 1;
}

.core {
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.92);
}

.eyebrow,
.badge,
.tag {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  min-height: 28px;
  border-radius: 999px;
  background: rgba(23, 105, 224, 0.10);
  color: var(--blue-2);
  padding: 6px 11px;
  font-size: 0.64rem;
  font-family: var(--font-technical);
  font-weight: 780;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  display: none;
}

.button,
.pill-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  padding: 8px 20px;
  font-family: var(--font-technical);
  font-weight: 780;
  cursor: pointer;
  transition: transform 700ms var(--bezier), box-shadow 700ms var(--bezier), background 700ms var(--bezier), color 700ms var(--bezier);
}

.button::after,
.pill-button .icon {
  content: "↗";
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  transition: transform 700ms var(--bezier), background 700ms var(--bezier);
}

.button.light,
.button.secondary,
.pill-button.light {
  background: #fff;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(17, 19, 21, 0.08);
}

.button.light::after,
.button.secondary::after,
.pill-button.light .icon {
  background: rgba(23, 105, 224, 0.10);
  color: var(--blue-2);
}

.button.primary {
  background: var(--blue);
  color: #fff;
}

.button.primary:hover {
  background: var(--blue-2);
}

.button:hover,
.pill-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(17, 19, 21, 0.16);
}

.button:hover::after,
.pill-button:hover .icon {
  transform: translate(3px, -1px);
}

.button:active,
.pill-button:active {
  transform: scale(0.98);
}

.hero {
  z-index: 2;
  min-height: 660px;
  padding: 68px 0 62px;
}

.home-hero-copy {
  grid-column: 1 / span 6;
  align-self: center;
  padding-bottom: 0;
}

.hero h1 {
  max-width: 660px;
  margin-top: 18px;
  font-size: 4rem;
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-copy,
.lead {
  max-width: 580px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 560;
  letter-spacing: 0;
}

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

.home-stage {
  grid-column: 7 / span 6;
  position: relative;
  min-height: 520px;
}

.stage-main,
.stage-side,
.stage-spec {
  position: absolute;
}

.stage-main {
  left: 54px;
  top: 6px;
  width: 350px;
  transform: rotate(-2deg);
}

.stage-side {
  right: 0;
  top: 82px;
  width: 242px;
  transform: rotate(3deg);
}

.stage-spec {
  left: 0;
  bottom: 12px;
  width: 470px;
  transform: rotate(0.5deg);
}

.stage-main img {
  width: 100%;
  height: 390px;
  object-fit: cover;
}

.stage-side img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.spec-panel {
  padding: 24px;
}

.spec-panel h3 {
  font-size: 1.1rem;
  letter-spacing: 0;
}

.spec-panel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 18px;
  background: rgba(17, 19, 21, 0.08);
}

.spec-panel-grid div {
  background: #fff;
  padding: 14px;
}

.spec-panel-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-family: var(--font-technical);
  font-weight: 780;
  letter-spacing: 0;
  text-transform: uppercase;
}

.spec-panel-grid strong {
  display: block;
  margin-top: 7px;
  font-size: 0.82rem;
}

.home-trust-photo,
.workflow-photo {
  grid-column: 1 / span 5;
}

.home-trust-photo img,
.workflow-photo img {
  width: 100%;
  height: 585px;
  object-fit: cover;
}

.home-trust-copy,
.workflow-copy {
  grid-column: 6 / span 7;
  padding-left: 34px;
}

.section-title,
.section-head h2,
.editorial-grid h2,
.process-layout h2,
.inquiry-band h2 {
  max-width: 760px;
  margin-top: 16px;
  font-size: 2.82rem;
  font-weight: 760;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-note,
.section-head p,
.page-hero p,
.inquiry-band > div > p {
  max-width: 650px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 540;
  letter-spacing: 0;
}

.metric-cascade,
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.metrics {
  grid-template-columns: repeat(4, 1fr);
}

.metric {
  min-height: 178px;
  border-radius: 22px;
  background: #fff;
  padding: 24px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.92);
}

.metric > strong,
.metric strong {
  display: block;
  font-family: var(--font-display);
  color: var(--blue-2);
  font-size: 2.48rem;
  font-weight: 720;
  line-height: 1;
  letter-spacing: 0;
}

.metric:nth-child(2) strong {
  color: var(--green);
}

.metric:nth-child(3) strong {
  color: var(--amber);
}

.metric:nth-child(4) strong {
  color: var(--ink);
}

.metric span,
.metric p {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 670;
}

.materials-head {
  grid-column: 1 / span 5;
  align-self: start;
}

.material-gallery {
  grid-column: 6 / span 7;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 18px;
}

.material-gallery > .bezel:first-child {
  transform: translateY(48px);
}

.material-gallery img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.material-gallery .stack {
  display: grid;
  gap: 18px;
}

.material-gallery .stack img {
  height: 240px;
}

.spec-list,
.list {
  display: grid;
  gap: 14px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.spec-row,
.list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(17, 19, 21, 0.08);
}

.list li {
  grid-template-columns: 18px 1fr;
  color: var(--muted);
  font-weight: 670;
  padding: 0;
  border-top: 0;
}

.list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--green);
}

.spec-row span,
.spec-rail article > span {
  font-family: var(--font-technical);
  color: var(--blue-2);
  font-weight: 900;
}

.spec-row h3,
.spec-rail h3,
.process-grid h3,
.product-card h2,
.product-card h3,
.blog-card h2,
.blog-card h3 {
  margin-bottom: 8px;
  font-size: 1.24rem;
  letter-spacing: 0;
  line-height: 1.12;
  font-weight: 760;
}

.spec-row p,
.spec-rail p,
.process-grid p,
.product-card p,
.blog-card p,
.side-panel p,
.detail-body,
.contact-lines p {
  color: var(--muted);
  font-weight: 590;
}

.home-products-copy,
.products-copy {
  grid-column: 1 / span 4;
  align-self: start;
}

.home-product-feature,
.product-feature {
  grid-column: 5 / span 4;
  transform: translateY(34px) rotate(-1deg);
}

.home-product-stack,
.product-stack {
  grid-column: 9 / span 4;
  display: grid;
  gap: 20px;
}

.home-product-card img,
.product-card img,
.blog-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--mist);
  transition: transform 900ms var(--bezier), filter 900ms var(--bezier);
}

.home-product-feature img {
  height: 455px;
  aspect-ratio: auto;
}

.home-product-card:hover img,
.product-card:hover img,
.blog-card:hover img {
  transform: scale(1.035);
  filter: contrast(1.04) saturate(1.04);
}

.product-grid,
.blog-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.product-card,
.blog-card,
.contact-card,
.process-grid > div,
.spec-rail article {
  position: relative;
  overflow: hidden;
  transition: transform 900ms var(--bezier), box-shadow 900ms var(--bezier);
}

.product-card,
.blog-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.product-card::before,
.blog-card::before,
.contact-card::before,
.process-grid > div::before,
.spec-rail article::before {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 0;
  border-radius: 20px;
  background: #fff;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.92);
}

.section.dark .product-card::before,
.section.dark .blog-card::before {
  background: #fff;
}

.product-card:hover,
.blog-card:hover {
  transform: translateY(-8px) rotate(-0.4deg);
}

.product-card-body,
.blog-card-body,
.product-body {
  padding: 24px;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 34px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.78rem;
  font-family: var(--font-technical);
  font-weight: 760;
}

.card-meta > span:not(.tag) {
  min-width: 0;
  color: var(--muted);
  line-height: 1.25;
  text-align: right;
}

.text-link {
  display: inline-flex;
  width: max-content;
  align-items: center;
  margin-top: 18px;
  color: var(--blue-2);
  font-family: var(--font-technical);
  font-weight: 860;
}

.text-link::after {
  content: "↗";
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  margin-left: 8px;
  border-radius: 999px;
  background: rgba(23, 105, 224, 0.10);
  transition: transform 700ms var(--bezier);
}

.text-link:hover::after {
  transform: translate(3px, -1px);
}

.workflow-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 36px;
}

.workflow-card {
  min-height: 260px;
  padding: 24px;
}

.workflow-card span {
  color: var(--blue-2);
  font-size: 0.68rem;
  font-family: var(--font-technical);
  font-weight: 860;
  letter-spacing: 0;
  text-transform: uppercase;
}

.workflow-card h3 {
  margin-top: 46px;
  font-size: 1.35rem;
}

.rfq-copy {
  grid-column: 1 / span 5;
}

.rfq-image {
  grid-column: 6 / span 3;
  transform: rotate(-1.5deg);
}

.rfq-image img {
  width: 100%;
  height: 555px;
  object-fit: cover;
}

.rfq-form {
  grid-column: 9 / span 4;
}

.page-hero {
  position: relative;
  z-index: 2;
  min-height: 400px;
  display: grid;
  align-items: end;
  padding: 104px 0 54px;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(251, 252, 255, 0.98) 0%, rgba(246, 248, 251, 0.92) 44%, rgba(238, 243, 248, 0.42) 78%, rgba(17, 19, 21, 0.10) 100%),
    radial-gradient(circle at 78% 24%, rgba(23, 105, 224, 0.14), transparent 32%),
    url("https://storage.googleapis.com/cg-webase/media/1781181167640-7f601ed9.webp") center right / cover;
}

.page-hero h1 {
  max-width: 980px;
  margin-top: 18px;
  font-size: 3.55rem;
  font-weight: 760;
  line-height: 1.1;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 760px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 560;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
}

.split > img,
.detail-hero-img {
  width: 100%;
  border-radius: 26px;
  object-fit: cover;
  background: rgba(17, 19, 21, 0.045);
  padding: 8px;
  box-shadow: var(--shadow);
}

.split > img {
  aspect-ratio: 5 / 4;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.52fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 44px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.12fr);
  gap: 58px;
  align-items: start;
}

.spec-rail {
  display: grid;
  gap: 16px;
}

.spec-rail article {
  min-height: 148px;
  padding: 32px 32px 32px 88px;
}

.spec-rail article > span {
  position: absolute;
  left: 32px;
  top: 32px;
  z-index: 2;
}

.inquiry-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.58fr);
  gap: 44px;
  align-items: center;
}

form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  font-family: var(--font-technical);
  font-weight: 780;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 18px;
  background: #f3f6fa;
  color: var(--ink);
  font: inherit;
  font-family: var(--font-body);
  font-weight: 700;
  padding: 14px 16px;
  box-shadow: inset 0 0 0 1px rgba(17, 19, 21, 0.08), inset 0 1px 1px rgba(255, 255, 255, 0.82);
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(23, 105, 224, 0.18);
}

textarea {
  min-height: 152px;
  resize: vertical;
}

.contact-card {
  padding: 8px;
}

.contact-card form {
  border-radius: 20px;
  background: #fff;
  padding: 28px;
}

.contact-lines {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-lines p {
  border-top: 1px solid rgba(17, 19, 21, 0.08);
  padding-top: 16px;
}

.contact-lines strong {
  display: block;
  color: var(--ink);
  font-size: 0.78rem;
  font-family: var(--font-technical);
  letter-spacing: 0;
  text-transform: uppercase;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(310px, 0.28fr);
  gap: 46px;
  align-items: start;
}

.detail-hero-img {
  aspect-ratio: 16 / 9;
  margin-bottom: 32px;
}

.detail-body {
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 580;
}

.detail-body h2,
.detail-body h3 {
  margin: 38px 0 14px;
  color: var(--ink);
}

.detail-body p + p {
  margin-top: 14px;
}

.side-panel {
  position: sticky;
  top: 116px;
  padding: 36px;
}

.side-panel::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 20px;
  background: #fff;
}

.side-panel > * {
  position: relative;
  z-index: 1;
}

.side-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
}

.side-list li {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.side-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--green);
}

.spec-table {
  width: 100%;
  border: 0;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.spec-table th,
.spec-table td {
  padding: 18px 20px;
  border: 0;
  border-bottom: 1px solid rgba(17, 19, 21, 0.08);
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 28%;
  background: rgba(23, 105, 224, 0.08);
  color: var(--ink);
  font-size: 0.78rem;
  font-family: var(--font-technical);
  font-weight: 860;
  letter-spacing: 0;
  text-transform: uppercase;
}

.spec-table td {
  color: var(--muted);
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: 0;
}

.footer {
  position: relative;
  z-index: 2;
  padding: 54px 0;
  background: linear-gradient(135deg, #101315 0%, #252b2f 100%);
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer strong,
.footer a {
  color: #fff;
}

[data-reveal] {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(42px);
  transition: opacity 900ms var(--bezier), transform 900ms var(--bezier), filter 900ms var(--bezier);
}

[data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }

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

@media (max-width: 1050px) {
  .nav {
    grid-template-columns: minmax(180px, 1fr) auto;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    justify-self: end;
  }

  .nav-links {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 98px;
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--soft-shadow);
    backdrop-filter: blur(24px);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a,
  .nav-links a:last-child {
    padding: 14px 16px;
    text-align: center;
  }

  .grid-12,
  .split,
  .inquiry-band,
  .detail-layout,
  .editorial-grid,
  .section-head {
    grid-template-columns: 1fr;
  }

  .home-hero-copy,
  .home-stage,
  .home-trust-photo,
  .home-trust-copy,
  .workflow-photo,
  .workflow-copy,
  .materials-head,
  .material-gallery,
  .home-products-copy,
  .home-product-feature,
  .home-product-stack,
  .rfq-copy,
  .rfq-image,
  .rfq-form {
    grid-column: auto;
    padding-left: 0;
  }

  .home-stage {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .stage-main,
  .stage-side,
  .stage-spec {
    position: static;
    width: auto;
    transform: none;
  }

  .stage-main img,
  .stage-side img,
  .home-trust-photo img,
  .workflow-photo img,
  .rfq-image img {
    height: 292px;
  }

  .material-gallery,
  .metric-cascade,
  .workflow-board,
  .spec-panel-grid {
    grid-template-columns: 1fr;
  }

  .material-gallery > .bezel:first-child,
  .home-product-feature,
  .product-feature,
  .rfq-image {
    transform: none;
  }

  .material-gallery img,
  .material-gallery .stack img,
  .home-product-card img,
  .home-product-feature img {
    height: 260px;
  }

  .product-grid,
  .product-grid.four,
  .blog-grid,
  .process-grid,
  .metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .side-panel {
    position: static;
  }

  .hero h1 {
    max-width: 720px;
    font-size: 3.45rem;
    line-height: 1.1;
  }

  .page-hero h1 {
    font-size: 3.1rem;
    line-height: 1.1;
  }

  .section-title,
  .section-head h2,
  .editorial-grid h2,
  .process-layout h2,
  .inquiry-band h2 {
    font-size: 2.58rem;
    line-height: 1.12;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 14px 0;
  }

  .nav {
    min-height: 62px;
  }

  .brand {
    font-size: 0.84rem;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .nav-links {
    left: 14px;
    right: 14px;
    top: 82px;
  }

  .wrap,
  .footer-inner {
    width: min(var(--max), calc(100% - 32px));
  }

  .section {
    min-height: auto;
    padding: 62px 0;
  }

  .hero {
    min-height: auto;
    padding: 68px 0 56px;
  }

  .hero h1 {
    font-size: 2.18rem;
    line-height: 1.14;
    letter-spacing: 0;
  }

  .page-hero {
    min-height: auto;
    padding: 96px 0 52px;
  }

  .page-hero h1 {
    font-size: 2.18rem;
    line-height: 1.14;
  }

  .section-title,
  .section-head h2,
  .editorial-grid h2,
  .process-layout h2,
  .inquiry-band h2 {
    font-size: 1.95rem;
    line-height: 1.16;
  }

  .hero-actions,
  .footer-inner {
    display: grid;
  }

  .button,
  .pill-button {
    width: 100%;
  }

  .product-grid,
  .product-grid.four,
  .blog-grid,
  .process-grid,
  .metrics,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .metrics {
    margin-top: 20px;
  }

  .spec-rail article {
    padding: 28px;
  }

  .spec-rail article > span {
    position: static;
    display: block;
    margin-bottom: 12px;
  }

  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
  }

  .product-card:hover,
  .blog-card:hover {
    transform: none;
  }
}
