:root {
  --ink: #102a35;
  --ink-soft: #29424b;
  --deep: #0e2833;
  --deep-2: #153943;
  --teal: #1c6b67;
  --teal-soft: #dcebe7;
  --accent: #d8ebe5;
  --accent-strong: #68a39a;
  --copper: #b9885d;
  --paper: #fffdf8;
  --wash: #f4f1e9;
  --wash-2: #e9e4d8;
  --muted: #52636a;
  --line: #d6d1c6;
  --shadow: 0 24px 70px rgba(14, 40, 51, 0.12);
  --radius-sm: 3px;
  --radius: 4px;
  --radius-lg: 5px;
  --shell: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Aptos", "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button,
summary,
select {
  cursor: pointer;
}

button {
  border: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

h1 {
  font-size: clamp(2.7rem, 5vw, 5.2rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.45rem);
}

h3 {
  font-size: 1.2rem;
}

::selection {
  background: var(--accent);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--accent-strong);
  outline-offset: 4px;
}

.shell,
.container {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.page-content {
  overflow: clip;
}

.section {
  padding: 112px 0;
}

.section-tint {
  background: var(--wash);
}

.section-dark {
  background: var(--deep);
  color: #fff;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--accent);
}

.section-heading {
  max-width: 730px;
  margin-bottom: 50px;
}

.section-heading h2 {
  margin-bottom: 20px;
}

.section-heading > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading-center {
  margin-inline: auto;
  text-align: center;
}

.section-heading-center > p:last-child {
  margin-inline: auto;
}

.section-dark .section-heading > p:last-child {
  color: #b9cbce;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 50px;
}

.section-heading-row .section-heading {
  margin-bottom: 0;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.1;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button-primary:hover,
.button--primary:hover {
  background: var(--teal);
}

.button-secondary,
.button--secondary {
  border-color: #b8c8c4;
  background: #fff;
  color: var(--ink);
}

.button-secondary:hover,
.button--secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.button-accent {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(190, 231, 82, 0.18);
}

.button-accent:hover {
  background: #e4ff9e;
}

.button-ghost-light {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.button-ghost-light:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.button-large,
.button--large {
  min-height: 56px;
  padding-inline: 26px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--teal);
  font-weight: 800;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(2px, -2px);
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-150%);
}

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

/* Header */
.site-utility {
  border-bottom: 1px solid rgba(16, 42, 53, 0.12);
  background: var(--wash);
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.045em;
}

.site-utility__inner {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-utility__inner span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.site-utility__inner i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(28, 107, 103, 0.12);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(7, 29, 35, 0.1);
  background: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.site-brand {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
}

.site-brand__mark {
  position: relative;
  width: 36px;
  height: 36px;
  border: 1px solid var(--teal);
  background:
    radial-gradient(circle at 7px 10px, var(--teal) 0 2px, transparent 2.5px),
    radial-gradient(circle at 28px 25px, var(--teal) 0 2px, transparent 2.5px);
}

.site-brand__mark::before,
.site-brand__mark::after {
  position: absolute;
  right: 7px;
  left: 7px;
  height: 1px;
  background: var(--teal);
  content: "";
}

.site-brand__mark::before {
  top: 10px;
}

.site-brand__mark::after {
  bottom: 10px;
}

.site-brand__text {
  display: grid;
  line-height: 1.15;
}

.site-brand__text strong {
  font-size: 1.06rem;
  letter-spacing: -0.01em;
}

.site-brand__text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.primary-navigation__list {
  display: flex;
  align-items: center;
  gap: 23px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-navigation__link {
  position: relative;
  padding: 28px 0 25px;
  color: #30464b;
  font-size: 0.78rem;
  font-weight: 700;
}

.primary-navigation__link::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 2px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-navigation__link:hover,
.primary-navigation__link[aria-current="page"] {
  color: var(--teal);
}

.primary-navigation__link:hover::after,
.primary-navigation__link[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-quote-link {
  min-height: 46px;
  padding: 11px 18px;
  color: #fff;
}

.navigation-toggle {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 8px;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
}

.navigation-toggle__icon {
  display: grid;
  width: 24px;
  gap: 5px;
}

.navigation-toggle__icon span {
  height: 2px;
  background: currentColor;
}

/* Footer */
.site-footer {
  padding-top: 74px;
  background: #061f25;
  color: #fff;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.7fr;
  gap: 70px;
  padding-bottom: 58px;
}

.site-footer h2 {
  margin-bottom: 20px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer__brand {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.site-footer__intro > p:last-child {
  max-width: 360px;
  color: #b5c6c9;
}

.site-footer address {
  display: grid;
  gap: 7px;
  color: #c9d7d9;
  font-style: normal;
}

.site-footer address strong {
  margin-bottom: 4px;
  color: #fff;
}

.site-footer address a:hover,
.site-footer__navigation a:hover,
.site-footer__legal a:hover,
.cookie-settings-button:hover {
  color: var(--accent);
}

.site-footer__navigation ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__navigation a {
  color: #c9d7d9;
}

.site-footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #94aaae;
  font-size: 0.8rem;
}

.site-footer__legal p {
  margin: 0;
}

.site-footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.cookie-settings-button {
  padding: 0;
  background: transparent;
  color: inherit;
}

/* Consent */
.cookie-banner {
  position: fixed;
  z-index: 180;
  right: 20px;
  bottom: 20px;
  left: 20px;
  max-width: 920px;
  margin-inline: auto;
  padding: 20px;
  border: 1px solid #c8d6d2;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.cookie-banner__content {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
}

.cookie-banner h2 {
  margin-bottom: 7px;
  font-size: 1.04rem;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
}

/* Home hero */
.home-hero {
  position: relative;
  overflow: hidden;
  min-height: 670px;
  padding: 92px 0 84px;
  background:
    radial-gradient(circle at 85% 0%, rgba(25, 116, 107, 0.42), transparent 34%),
    linear-gradient(135deg, #061d22 0%, #082e35 62%, #0b3d42 100%);
  color: #fff;
}

.hero-circuit {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(216, 255, 120, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 255, 120, 0.22) 1px, transparent 1px),
    radial-gradient(circle, rgba(216, 255, 120, 0.75) 1.5px, transparent 2px);
  background-position: center, center, 0 0;
  background-size: 64px 64px, 64px 64px, 128px 128px;
  mask-image: linear-gradient(90deg, transparent 0, #000 35%, #000 100%);
}

.home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: 70px;
}

.home-hero-copy h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(3.2rem, 5.5vw, 5.55rem);
}

.hero-lead {
  max-width: 670px;
  color: #c8d9db;
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.6;
}

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

.hero-note {
  max-width: 650px;
  margin: 23px 0 0;
  color: #9fb6b9;
  font-size: 0.84rem;
}

.hero-product {
  position: relative;
  min-height: 480px;
}

.hero-product-card {
  position: absolute;
  z-index: 2;
  top: 38px;
  right: 0;
  width: min(100%, 480px);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.3);
  transform: rotate(1.2deg);
}

.hero-product-card img {
  width: 100%;
  height: 315px;
  object-fit: contain;
  filter: drop-shadow(0 26px 25px rgba(7, 29, 35, 0.18));
}

.hero-product-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--ink);
}

.hero-product-label span {
  color: var(--teal);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.hero-product-label strong {
  font-size: 0.72rem;
}

.hero-product-orbit {
  position: absolute;
  border: 1px solid rgba(216, 255, 120, 0.28);
  border-radius: 50%;
}

.orbit-one {
  inset: 0 20px 8px 10px;
}

.orbit-two {
  inset: 60px -35px 70px 80px;
}

.hero-float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: rgba(5, 28, 33, 0.88);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  color: #dce8e9;
  font-size: 0.74rem;
  backdrop-filter: blur(12px);
}

.hero-float-top {
  top: 10px;
  left: -15px;
}

.hero-float-bottom {
  right: 14px;
  bottom: 4px;
  display: grid;
  gap: 0;
}

.hero-float-bottom span {
  color: #8da6aa;
  font-size: 0.62rem;
  text-transform: uppercase;
}

.hero-float-bottom strong {
  color: #fff;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(216, 255, 120, 0.12);
}

.signal-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

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

.signal-strip-grid > div {
  display: flex;
  min-height: 94px;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
}

.signal-strip-grid > div:first-child {
  border-left: 1px solid var(--line);
}

.signal-strip strong {
  color: var(--teal);
  font-family: Consolas, monospace;
  font-size: 0.72rem;
}

.signal-strip span {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.35;
}

.intro-grid,
.split-content {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}

.intro-grid .section-heading,
.split-content .section-heading {
  margin-bottom: 0;
}

.principle-list {
  border-top: 1px solid var(--line);
}

.principle-row {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.principle-row > span {
  color: var(--teal);
  font-family: Consolas, monospace;
  font-size: 0.72rem;
}

.principle-row h3 {
  margin-bottom: 8px;
}

.principle-row p {
  margin: 0;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  border-color: #a8c4bd;
  box-shadow: 0 20px 45px rgba(7, 29, 35, 0.08);
  transform: translateY(-5px);
}

.card-number {
  margin-bottom: 62px;
  color: var(--teal);
  font-family: Consolas, monospace;
  font-size: 0.72rem;
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 1.34rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.service-card small {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 750;
}

.section-link-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.capability-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.capability-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.capability-image {
  display: grid;
  height: 230px;
  place-items: center;
  overflow: hidden;
  padding: 22px;
  background:
    linear-gradient(rgba(13, 111, 103, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 111, 103, 0.05) 1px, transparent 1px),
    var(--wash);
  background-size: 28px 28px;
}

.capability-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 260ms ease;
}

.capability-card:hover .capability-image img {
  transform: scale(1.04) rotate(-1deg);
}

.capability-body {
  padding: 25px;
}

.micro-label {
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.capability-body h3 {
  margin-bottom: 12px;
  font-size: 1.38rem;
}

.capability-body > p:not(.micro-label) {
  min-height: 74px;
  color: var(--muted);
  font-size: 0.88rem;
}

.capability-body span {
  display: block;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 750;
}

.process-section {
  position: relative;
  overflow: hidden;
  background: var(--deep);
  color: #fff;
}

.process-section::after {
  position: absolute;
  right: -160px;
  bottom: -250px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(216, 255, 120, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(216, 255, 120, 0.03), 0 0 0 140px rgba(216, 255, 120, 0.025);
  content: "";
}

.process-section .section-heading > p:last-child {
  color: #b5c7ca;
}

.workflow-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
}

.workflow-card {
  min-height: 290px;
  padding: 28px;
  background: var(--deep-2);
}

.workflow-step {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 66px;
  place-items: center;
  border: 1px solid rgba(216, 255, 120, 0.45);
  border-radius: 50%;
  color: var(--accent);
  font-family: Consolas, monospace;
  font-size: 0.7rem;
}

.workflow-card h3 {
  margin-bottom: 12px;
  color: #fff;
}

.workflow-card p {
  margin: 0;
  color: #afc3c6;
  font-size: 0.86rem;
}

.section-tint .workflow-grid {
  border-color: var(--line);
  background: var(--line);
}

.section-tint .workflow-card {
  background: #fff;
}

.section-tint .workflow-step {
  border-color: #bdd1cc;
  color: var(--teal);
}

.section-tint .workflow-card h3 {
  color: var(--ink);
}

.section-tint .workflow-card p {
  color: var(--muted);
}

.quality-home-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
  align-items: start;
}

.quality-list {
  border-top: 1px solid var(--line);
}

.quality-list article {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 20px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.quality-list article > span {
  color: var(--teal);
  font-family: Consolas, monospace;
  font-size: 0.7rem;
}

.quality-list h3 {
  margin-bottom: 8px;
}

.quality-list p {
  margin: 0;
  color: var(--muted);
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.application-grid article {
  min-height: 190px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.application-index {
  display: block;
  margin-bottom: 34px;
  color: var(--copper);
  font-family: Consolas, monospace;
  font-size: 0.72rem;
}

.application-grid h3 {
  margin-bottom: 10px;
}

.application-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.faq-section {
  background: #fbfcfb;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
}

.faq-grid .section-heading {
  position: sticky;
  top: 118px;
  align-self: start;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 2px;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--teal);
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 720px;
  padding: 0 50px 24px 2px;
  color: var(--muted);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 82px 0;
  background:
    radial-gradient(circle at 90% 20%, rgba(216, 255, 120, 0.19), transparent 25%),
    var(--deep);
  color: #fff;
}

.cta-band::after {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: linear-gradient(90deg, transparent 49%, var(--accent) 50%, transparent 51%);
  background-size: 64px 100%;
  content: "";
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 80px;
}

.cta-band h2 {
  max-width: 730px;
  margin-bottom: 16px;
}

.cta-band p:last-child {
  max-width: 700px;
  margin-bottom: 0;
  color: #b5c7ca;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

/* Interior hero */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  background:
    radial-gradient(circle at 82% 12%, rgba(29, 123, 113, 0.32), transparent 29%),
    linear-gradient(135deg, #061f25, #0a343b);
  color: #fff;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 80px;
}

.page-hero-copy h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 5vw, 5.1rem);
}

.page-hero-lead {
  max-width: 680px;
  color: #c3d4d6;
  font-size: 1.18rem;
}

.technical-visual {
  position: relative;
  min-height: 360px;
}

.visual-grid {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background-image:
    linear-gradient(rgba(216, 255, 120, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 255, 120, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  transform: rotate(-10deg);
}

.visual-board {
  position: absolute;
  border: 1px solid rgba(216, 255, 120, 0.54);
  border-radius: 16px;
  background: rgba(7, 72, 68, 0.84);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28);
}

.visual-board-back {
  inset: 70px 40px 40px 80px;
  transform: rotate(8deg);
}

.visual-board-front {
  inset: 45px 70px 70px 40px;
  transform: rotate(-7deg);
}

.chip {
  position: absolute;
  border: 1px solid rgba(216, 255, 120, 0.6);
  background: #09292e;
}

.chip-a { top: 25%; left: 18%; width: 22%; height: 24%; }
.chip-b { right: 14%; bottom: 18%; width: 18%; height: 18%; }
.chip-c { top: 18%; right: 20%; width: 9%; height: 9%; }

.trace {
  position: absolute;
  height: 1px;
  background: var(--accent);
  opacity: 0.65;
}

.trace::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.trace-a { top: 22%; left: 6%; width: 42%; transform: rotate(18deg); }
.trace-b { top: 58%; left: 28%; width: 54%; transform: rotate(-13deg); }
.trace-c { bottom: 15%; left: 8%; width: 34%; transform: rotate(8deg); }

.visual-label {
  position: absolute;
  right: 0;
  bottom: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(5, 29, 34, 0.86);
  color: var(--accent);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.technical-visual-stack .visual-board-back { transform: translateY(-10px) rotate(12deg); }
.technical-visual-stack .visual-board-front { transform: translateY(14px) rotate(-4deg); }
.technical-visual-signal .visual-grid { border-radius: 24px; transform: rotate(4deg); }
.technical-visual-quality .visual-board-front { clip-path: polygon(50% 0, 94% 18%, 86% 76%, 50% 100%, 14% 76%, 6% 18%); }

/* About */
.prose-block {
  color: var(--muted);
  font-size: 1.08rem;
}

.prose-block p {
  margin-bottom: 22px;
}

.fact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.fact-row span,
.tag-cloud span {
  padding: 8px 12px;
  border: 1px solid #bed1cc;
  border-radius: 999px;
  background: #fff;
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 750;
}

.principle-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.principle-card-grid article {
  min-height: 290px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.principle-card-grid span {
  display: block;
  margin-bottom: 76px;
  color: var(--teal);
  font-family: Consolas, monospace;
  font-size: 0.72rem;
}

.principle-card-grid h3 {
  font-size: 1.35rem;
}

.principle-card-grid p {
  margin: 0;
  color: var(--muted);
}

.positioning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.positioning-panel {
  min-height: 440px;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--wash);
}

.positioning-panel-dark {
  border-color: transparent;
  background: var(--deep);
  color: #fff;
}

.check-list,
.plain-list {
  display: grid;
  gap: 15px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 10px;
  height: 10px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  content: "";
}

.check-list-light {
  color: #c6d6d8;
}

.check-list-light li::before {
  border-color: var(--accent);
}

.plain-list {
  color: var(--muted);
}

.plain-list li {
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}

.contact-person-card {
  display: grid;
  grid-template-columns: 155px 1fr;
  align-items: center;
  gap: 50px;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
}

.contact-person-initials {
  display: grid;
  width: 155px;
  height: 155px;
  place-items: center;
  border-radius: 50%;
  background:
    linear-gradient(rgba(216, 255, 120, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 255, 120, 0.18) 1px, transparent 1px),
    var(--deep);
  background-size: 20px 20px;
  color: var(--accent);
  font-size: 2.2rem;
  font-weight: 900;
}

.contact-person-card h2 {
  margin-bottom: 12px;
}

.contact-person-card p:not(.eyebrow) {
  max-width: 750px;
  color: var(--muted);
}

.about-portrait-placeholder {
  width: 155px;
  aspect-ratio: 4 / 5;
  border: 1px dashed #aab8c4;
  border-radius: var(--radius);
  background: #eef3f7;
}

.contact-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  color: var(--teal);
  font-weight: 750;
}

/* Capability page */
.capability-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.capability-detail-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.capability-detail-image {
  position: relative;
  display: grid;
  height: 300px;
  place-items: center;
  overflow: hidden;
  padding: 28px;
  background:
    linear-gradient(rgba(13, 111, 103, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 111, 103, 0.05) 1px, transparent 1px),
    var(--wash);
  background-size: 30px 30px;
}

.capability-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: normal;
}

.capability-detail-image span {
  position: absolute;
  top: 18px;
  left: 18px;
  color: var(--teal);
  font-family: Consolas, monospace;
  font-size: 0.72rem;
}

.capability-detail-body {
  padding: 30px;
}

.capability-detail-body h2 {
  margin-bottom: 14px;
  font-size: 1.65rem;
}

.capability-detail-body > p {
  color: var(--muted);
}

.capability-detail-body dl {
  margin: 24px 0 16px;
  padding: 18px 0;
  border-block: 1px solid var(--line);
}

.capability-detail-body dt {
  margin-bottom: 5px;
  color: var(--teal);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.capability-detail-body dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 700;
}

.capability-detail-body small {
  color: var(--muted);
}

.capability-image-source {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.published-capability-section .section-heading {
  max-width: 820px;
}

.published-capability-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.published-capability-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  text-align: left;
}

.published-capability-table th,
.published-capability-table td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.published-capability-table thead th {
  background: var(--deep);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.published-capability-table thead th:first-child,
.published-capability-table tbody th {
  width: 34%;
}

.published-capability-table tbody th {
  color: var(--teal);
  font-size: 0.83rem;
}

.published-capability-table tbody td {
  color: var(--ink-soft);
  font-size: 0.86rem;
}

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

.capability-source-note {
  max-width: 900px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.7;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: 10px;
}

.review-table-wrap .section-heading {
  max-width: 780px;
}

.review-table {
  border-top: 1px solid var(--line);
}

.review-table > div {
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  gap: 40px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.review-table strong {
  color: var(--teal);
}

.review-table span {
  color: var(--muted);
}

/* Services */
.service-detail-list {
  border-top: 1px solid var(--line);
}

.service-detail-list article {
  display: grid;
  grid-template-columns: 80px 1fr 0.65fr;
  align-items: start;
  gap: 40px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

.service-detail-number {
  color: var(--teal);
  font-family: Consolas, monospace;
  font-size: 0.72rem;
}

.service-detail-list h2 {
  margin-bottom: 12px;
  font-size: 1.8rem;
}

.service-detail-list p {
  margin: 0;
  color: var(--muted);
}

.service-detail-list article > strong {
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.5;
}

.stage-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
}

.stage-intro h2 {
  margin-bottom: 20px;
}

.stage-intro > p:last-child {
  color: var(--muted);
}

.stage-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.stage-cards article {
  min-height: 220px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.stage-cards span {
  display: block;
  margin-bottom: 42px;
  color: var(--teal);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.stage-cards h3 {
  margin-bottom: 10px;
}

.stage-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

/* Quality */
.quality-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.quality-detail-grid article {
  min-height: 310px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.quality-detail-grid span {
  display: block;
  margin-bottom: 72px;
  color: var(--teal);
  font-family: Consolas, monospace;
  font-size: 0.72rem;
}

.quality-detail-grid h2 {
  margin-bottom: 14px;
  font-size: 1.45rem;
}

.quality-detail-grid p {
  margin: 0;
  color: var(--muted);
}

.inspection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.inspection-grid article {
  min-height: 225px;
  padding: 28px;
  background: var(--deep-2);
}

.inspection-grid span {
  display: block;
  margin-bottom: 45px;
  color: var(--accent);
  font-family: Consolas, monospace;
  font-size: 0.7rem;
}

.inspection-grid h3 {
  color: #fff;
}

.inspection-grid p {
  margin: 0;
  color: #afc3c6;
  font-size: 0.86rem;
}

.callout-prose {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--wash);
}

.callout-prose h3 {
  color: var(--ink);
}

.fine-print {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
}

/* Resources */
.resource-feature-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
}

.resource-checklist,
.resource-aside {
  padding: 42px;
  border-radius: var(--radius-lg);
}

.resource-checklist {
  border: 1px solid var(--line);
}

.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--line);
}

.checklist-grid > div {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  padding: 18px;
  background: var(--wash);
}

.checklist-grid span {
  color: var(--teal);
  font-family: Consolas, monospace;
  font-size: 0.68rem;
}

.checklist-grid p {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
}

.resource-aside {
  display: flex;
  flex-direction: column;
  background: var(--deep);
  color: #fff;
}

.resource-aside h2 {
  font-size: 2rem;
}

.resource-aside > p:not(.eyebrow) {
  color: #b6c8ca;
}

.resource-aside .button {
  align-self: flex-start;
  margin-top: auto;
}

.resource-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.resource-card-grid article {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.resource-card-grid span {
  display: block;
  margin-bottom: 60px;
  color: var(--teal);
  font-family: Consolas, monospace;
  font-size: 0.7rem;
}

.resource-card-grid p {
  color: var(--muted);
}

.faq-wide .section-heading {
  max-width: 680px;
}

/* Contact and quote */
.contact-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 60px;
}

.contact-sidebar {
  position: sticky;
  top: 118px;
}

.contact-sidebar .section-heading {
  margin-bottom: 20px;
}

.contact-sidebar > p {
  color: var(--muted);
}

.contact-address {
  display: grid;
  margin-top: 32px;
  border-top: 1px solid var(--line);
  font-style: normal;
}

.contact-address > * {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-address span {
  color: var(--muted);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.contact-address strong {
  color: var(--ink);
  font-size: 0.94rem;
  overflow-wrap: anywhere;
}

.contact-address a:hover strong {
  color: var(--teal);
}

.contact-note {
  margin-top: 28px;
  padding: 20px;
  border-left: 3px solid var(--accent-strong);
  background: var(--wash);
}

.contact-note p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.business-identity-card {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  background: #fff;
  overflow-wrap: anywhere;
}

.business-identity-card .eyebrow {
  margin-bottom: 10px;
}

.business-identity-card h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.45;
}

.business-identity-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.65;
}

.business-identity-card__zh {
  margin-top: 4px !important;
  color: var(--ink) !important;
}

.quote-form-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 18px 60px rgba(7, 29, 35, 0.07);
}

.quote-form {
  padding: 42px;
}

.quote-form__heading {
  max-width: 700px;
  margin-bottom: 34px;
}

.quote-form__heading h2 {
  margin-bottom: 14px;
  font-size: 2.2rem;
}

.quote-form__heading > p:last-child {
  color: var(--muted);
}

.quote-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field--wide {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.form-field__optional {
  color: var(--muted);
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #bdccc8;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.form-field input,
.form-field select {
  min-height: 50px;
  padding: 10px 13px;
}

.form-field textarea {
  min-height: 150px;
  padding: 13px;
  resize: vertical;
}

.form-field--file input[type="file"] {
  min-height: 54px;
  padding: 8px;
  border-style: dashed;
  background: var(--wash);
  cursor: pointer;
}

.form-field--file input[type="file"]::file-selector-button {
  min-height: 34px;
  margin-right: 12px;
  padding: 7px 11px;
  border: 0;
  border-radius: 1px;
  background: var(--teal-soft);
  color: var(--teal);
  font-weight: 800;
  cursor: pointer;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(13, 111, 103, 0.13);
}

.form-field__help {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.form-field__help--confidential {
  padding: 10px 12px;
  border-left: 3px solid var(--teal);
  background: rgba(28, 107, 103, 0.07);
  color: var(--ink-soft);
  line-height: 1.5;
}

.form-field__help--confidential strong {
  color: var(--teal);
}

.form-confidentiality-note {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.form-confidentiality-note span {
  color: var(--teal);
  font-weight: 900;
}

.quote-form__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}

.quote-form__fallback {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.quote-form__fallback a {
  color: var(--teal);
  font-weight: 800;
}

.quote-form__status,
.quote-form__noscript {
  margin: 18px 0 0;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
}

.quote-form button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.quote-page-section {
  background: var(--wash);
}

.quote-page-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: start;
  gap: 22px;
}

.quote-help-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--deep);
  color: #fff;
}

.quote-help-card h2 {
  font-size: 2rem;
}

.quote-help-card > p:last-child {
  margin: 30px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #b9cbce;
  font-size: 0.82rem;
}

/* Legal and status */
.legal-page {
  max-width: 840px;
  padding-block: 90px 120px;
  color: var(--muted);
}

.legal-page > p:first-child {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.legal-page h2 {
  margin: 48px 0 14px;
  color: var(--ink);
  font-size: 1.55rem;
}

.legal-page h3 {
  margin: 28px 0 8px;
  color: var(--ink-soft);
}

.legal-page li {
  margin-bottom: 7px;
}

.legal-page a {
  color: var(--teal);
  text-decoration: underline;
}

.cookie-table-wrap {
  margin-top: 22px;
  overflow-x: auto;
  border: 1px solid #cfdbd8;
  border-radius: 10px;
}

.cookie-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.cookie-table th,
.cookie-table td {
  padding: 14px 16px;
  border-right: 1px solid #dbe4e2;
  border-bottom: 1px solid #dbe4e2;
  text-align: left;
  vertical-align: top;
}

.cookie-table th:last-child,
.cookie-table td:last-child {
  border-right: 0;
}

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

.cookie-table thead th {
  background: #eef4f2;
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cookie-table tbody th {
  width: 21%;
  background: #f9fbfa;
  color: var(--ink-soft);
  font-weight: 700;
}

.cookie-table code {
  white-space: nowrap;
  font-size: 0.82rem;
}

.status-page {
  min-height: 64vh;
  padding-block: 130px;
}

.status-page h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5vw, 5rem);
}

.status-page > p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.08rem;
}

.status-reference {
  display: inline-block;
  margin: 12px 0 26px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: var(--wash);
  color: var(--ink-soft) !important;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.82rem !important;
}

/* Sign-in protected owner inquiry inbox */
.owner-inbox {
  min-height: 70vh;
  padding-block: 82px 120px;
}

.owner-inbox__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.owner-inbox h1 {
  margin-bottom: 14px;
  font-size: clamp(3rem, 5vw, 5rem);
}

.owner-inbox__header p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.owner-inbox__notice {
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--wash);
  color: var(--muted);
}

.owner-inquiry-list {
  display: grid;
  gap: 22px;
}

.owner-inquiry {
  padding: 30px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 35px rgba(14, 40, 51, 0.06);
}

.owner-inquiry__meta,
.owner-inquiry__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 18px;
  color: var(--muted);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.68rem;
}

.owner-inquiry__meta {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.owner-inquiry__meta strong {
  color: var(--ink-soft);
}

.owner-inquiry__status {
  padding: 4px 8px;
  background: var(--teal-soft);
  color: var(--teal);
  font-weight: 800;
  text-transform: uppercase;
}

.owner-inquiry__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 26px;
}

.owner-inquiry__heading h2 {
  margin-bottom: 8px;
  font-size: 2rem;
}

.owner-inquiry__heading p {
  margin: 0;
  color: var(--muted);
}

.owner-inquiry__heading a:not(.button) {
  color: var(--teal);
}

.owner-inquiry__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  border: 1px solid var(--line);
}

.owner-inquiry__facts div {
  min-width: 0;
  padding: 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.owner-inquiry__facts div:nth-child(3n) {
  border-right: 0;
}

.owner-inquiry__facts div:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.owner-inquiry__facts dt {
  margin-bottom: 5px;
  color: var(--teal);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.owner-inquiry__facts dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 0.82rem;
  font-weight: 700;
}

.owner-inquiry__message {
  padding-block: 24px;
}

.owner-inquiry__message h3 {
  margin-bottom: 8px;
  font-size: 0.82rem;
}

.owner-inquiry__message p {
  margin: 0;
  color: var(--muted);
  white-space: pre-wrap;
}

.owner-inquiry__footer {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.owner-inquiry__footer .editorial-text-link {
  margin: 0;
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
}

/* Final A+C homepage */
.home-final {
  background: var(--paper);
}

.conversion-hero {
  position: relative;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(16, 42, 53, 0.035) 50%, transparent calc(50% + 1px)),
    var(--wash);
}

.conversion-hero__grid {
  display: grid;
  min-height: 700px;
  grid-template-columns: minmax(0, 0.96fr) minmax(520px, 0.84fr);
  align-items: center;
  gap: clamp(54px, 6vw, 96px);
  padding-block: 70px;
}

.conversion-hero__copy {
  min-width: 0;
}

.editorial-eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 24px;
  color: var(--teal);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.editorial-eyebrow::before {
  width: 32px;
  height: 1px;
  background: currentColor;
  content: "";
}

.editorial-eyebrow--light {
  color: #9cc5be;
}

.conversion-hero h1 {
  max-width: 740px;
  margin-bottom: 28px;
  font-size: clamp(3.35rem, 5.35vw, 5.15rem);
  letter-spacing: -0.052em;
  line-height: 0.98;
}

.conversion-hero__lead {
  max-width: 650px;
  margin-bottom: 31px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.62;
}

.conversion-hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.conversion-hero__actions .button {
  min-height: 56px;
  padding-inline: 22px;
}

.editorial-email-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-block: 11px 8px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.82rem;
  font-weight: 750;
}

.editorial-email-link:hover {
  color: var(--teal);
  border-color: var(--teal);
}

.conversion-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.conversion-capabilities a {
  padding: 7px 13px;
  border: 1px solid rgba(16, 42, 53, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.5);
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 750;
}

.conversion-capabilities a:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.conversion-proof-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 29px 0 0;
  padding: 21px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.conversion-proof-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 7px;
  padding-right: 15px;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.45;
}

.conversion-proof-list li + li {
  padding-left: 15px;
  border-left: 1px solid var(--line);
}

.conversion-proof-list span {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 0.65rem;
}

.conversion-hero__form {
  position: relative;
  min-width: 0;
  padding: 25px;
  background:
    linear-gradient(rgba(104, 163, 154, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(104, 163, 154, 0.1) 1px, transparent 1px),
    var(--deep);
  background-size: 28px 28px;
  box-shadow: 0 30px 70px rgba(14, 40, 51, 0.16);
}

.review-desk-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 1px 18px;
  color: #aac9c4;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.conversion-hero__form .quote-form-shell {
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--paper);
  box-shadow: none;
}

.quote-form--compact {
  padding: 28px;
}

.quote-form--compact .quote-form__heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 16px;
  margin-bottom: 22px;
}

.quote-form--compact .quote-form__heading::after {
  color: rgba(16, 42, 53, 0.22);
  content: "01";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  line-height: 1;
}

.quote-form--compact .quote-form__heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -7px;
  font-size: 0.58rem;
}

.quote-form--compact .quote-form__heading h2 {
  margin: 0;
  font-size: 1.8rem;
}

.quote-form--compact .quote-form__heading > p:last-child {
  display: none;
}

.quote-form--compact .quote-form__grid {
  gap: 14px;
}

.quote-form--compact .form-field {
  gap: 5px;
}

.quote-form--compact .form-field label {
  font-size: 0.64rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.quote-form--compact .form-field input,
.quote-form--compact .form-field select,
.quote-form--compact .form-field textarea {
  border-color: #ccd4cf;
  border-radius: 1px;
  background: #fff;
  font-size: 0.78rem;
}

.quote-form--compact .form-field input,
.quote-form--compact .form-field select {
  min-height: 43px;
}

.quote-form--compact .form-field textarea {
  min-height: 74px;
}

.quote-form--compact .form-confidentiality-note {
  margin-top: 15px;
  font-size: 0.67rem;
}

.quote-form--compact .quote-form__actions {
  margin: 16px -28px -28px;
  padding: 16px 28px;
  background: #edf3ef;
}

.quote-form--compact .quote-form__actions .button {
  width: 100%;
  min-height: 48px;
}

.quote-form--compact .quote-form__fallback,
.quote-form--compact .form-field__help {
  display: none;
}

.quote-form--compact .form-field__help--confidential {
  display: block;
  padding: 8px 10px;
  font-size: 0.66rem;
}

.editorial-proof-band {
  border-bottom: 1px solid var(--line);
  background: var(--wash);
}

.editorial-proof-band__grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
}

.editorial-proof-band__grid > div {
  display: flex;
  min-height: 142px;
  flex-direction: column;
  justify-content: center;
  padding: 26px 30px;
  border-right: 1px solid var(--line);
}

.editorial-proof-band__grid > div:first-child {
  padding-left: 0;
}

.editorial-proof-band__grid > div:last-child {
  border-right: 0;
}

.editorial-proof-band__grid span,
.editorial-proof-band__grid small {
  margin-bottom: 12px;
  color: var(--teal);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.editorial-proof-band__grid strong {
  max-width: 230px;
  font-size: 0.81rem;
  line-height: 1.45;
}

.editorial-proof-band__intro strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  font-weight: 400;
  line-height: 1.2;
}

.editorial-process {
  background: var(--paper);
}

.editorial-heading-row {
  display: grid;
  grid-template-columns: 0.28fr 1fr;
  gap: 40px;
  margin-bottom: 55px;
}

.editorial-heading-row > p {
  color: var(--teal);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.editorial-heading-row h2 {
  max-width: 850px;
  margin-bottom: 19px;
  font-size: clamp(2.75rem, 4vw, 4.25rem);
}

.editorial-heading-row div > p {
  max-width: 690px;
  color: var(--muted);
}

.editorial-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}

.editorial-steps article {
  position: relative;
  min-height: 280px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.editorial-steps article:last-child {
  border-right: 0;
}

.editorial-steps span {
  display: block;
  margin-bottom: 66px;
  color: var(--teal);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.editorial-steps h3 {
  margin-bottom: 13px;
  font-size: 1.08rem;
}

.editorial-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.section-warm {
  border-block: 1px solid var(--line);
  background: var(--wash);
}

.editorial-capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.editorial-capability-grid article {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 310px;
  background: var(--paper);
}

.editorial-capability-image {
  position: relative;
  display: grid;
  min-height: 100%;
  place-items: center;
  overflow: hidden;
  padding: 26px;
  background:
    linear-gradient(rgba(28, 107, 103, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 107, 103, 0.055) 1px, transparent 1px),
    #eef1eb;
  background-size: 26px 26px;
}

.editorial-capability-image img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  mix-blend-mode: normal;
}

.editorial-capability-image span {
  position: absolute;
  top: 16px;
  left: 17px;
  color: var(--teal);
  font-family: Consolas, monospace;
  font-size: 0.62rem;
}

.editorial-capability-body {
  display: flex;
  flex-direction: column;
  padding: 31px;
}

.editorial-capability-body h3 {
  margin-bottom: 13px;
  font-size: 1.35rem;
}

.editorial-capability-body p {
  color: var(--muted);
  font-size: 0.84rem;
}

.editorial-capability-body small {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.67rem;
  font-weight: 700;
  line-height: 1.5;
}

.editorial-partner-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 100px;
}

.editorial-partner-grid > div:first-child {
  position: sticky;
  top: 120px;
}

.editorial-partner-grid h2 {
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 3.8vw, 4rem);
}

.editorial-partner-grid > div:first-child > p:not(.editorial-eyebrow) {
  color: var(--muted);
}

.editorial-text-link {
  display: inline-flex;
  gap: 11px;
  margin-top: 20px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 800;
}

.editorial-service-list {
  border-top: 1px solid var(--line);
}

.editorial-service-list article {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 33px 0;
  border-bottom: 1px solid var(--line);
}

.editorial-service-list > article > span {
  color: var(--teal);
  font-family: Consolas, monospace;
  font-size: 0.64rem;
}

.editorial-service-list h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.editorial-service-list p {
  margin: 0;
  color: var(--muted);
}

.relationship-section {
  background: var(--paper);
}

.relationship-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.62fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 54px;
}

.relationship-heading h2 {
  max-width: 860px;
  margin-bottom: 0;
  font-size: clamp(2.7rem, 4vw, 4.25rem);
}

.relationship-heading > p {
  margin-bottom: 3px;
  color: var(--muted);
}

.relationship-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: stretch;
  gap: 24px;
}

.relationship-photo,
.experience-media figure,
.editorial-quality__photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--wash-2);
}

.relationship-photo {
  min-height: 610px;
}

.relationship-photo img,
.experience-media img,
.editorial-quality__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.relationship-photo figcaption,
.experience-media figcaption,
.editorial-quality__photo figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 12px 14px;
  background: rgba(8, 34, 41, 0.88);
  color: #fff;
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.relationship-photo figcaption span {
  display: block;
  margin-bottom: 3px;
  color: #a9d0c9;
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.relationship-roles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: start;
  gap: 14px;
}

.relationship-roles article {
  min-height: 370px;
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--wash);
}

.relationship-roles article > span {
  display: block;
  margin-bottom: 58px;
  color: var(--teal);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.relationship-roles h3 {
  margin-bottom: 22px;
  font-size: 1.38rem;
}

.relationship-roles ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.82rem;
  list-style: none;
}

.relationship-roles li {
  padding-bottom: 11px;
  border-bottom: 1px solid var(--line);
}

.relationship-note {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  padding: 24px 26px;
  border-left: 3px solid var(--teal);
  background: var(--teal-soft);
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.relationship-roles .editorial-text-link {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 8px;
}

.experience-section {
  border-block: 1px solid var(--line);
  background: var(--wash);
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(56px, 7vw, 100px);
}

.experience-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 3.8vw, 4rem);
}

.experience-copy > p:not(.editorial-eyebrow) {
  max-width: 630px;
  color: var(--muted);
}

.experience-path {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 38px;
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}

.experience-path div {
  min-height: 125px;
  padding: 21px;
  background: var(--paper);
}

.experience-path span {
  display: block;
  margin-bottom: 26px;
  color: var(--teal);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.6rem;
}

.experience-path strong {
  display: block;
  font-size: 0.83rem;
  line-height: 1.35;
}

.experience-media {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(210px, 0.72fr);
  align-items: end;
  gap: 14px;
  min-height: 620px;
}

.experience-media__primary {
  height: 620px;
}

.experience-media__secondary {
  height: 365px;
}

.experience-media figcaption,
.editorial-quality__photo figcaption {
  color: #c9dcda;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.editorial-quality {
  background:
    linear-gradient(rgba(104, 163, 154, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(104, 163, 154, 0.06) 1px, transparent 1px),
    var(--deep);
  background-size: 34px 34px;
  color: #fff;
}

.editorial-quality__heading {
  max-width: 820px;
  margin-bottom: 50px;
}

.editorial-quality__heading h2 {
  margin-bottom: 20px;
  font-size: clamp(2.65rem, 4vw, 4.2rem);
}

.editorial-quality__heading > p:last-child {
  max-width: 680px;
  color: #b8cbc8;
}

.editorial-quality__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-bottom: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.12);
}

.editorial-quality__layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: 1px;
  margin-bottom: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.12);
}

.editorial-quality__photo {
  min-height: 570px;
}

.editorial-quality__layout .editorial-quality__grid {
  grid-template-columns: 1fr;
  gap: 1px;
  margin: 0;
  border: 0;
}

.editorial-quality__layout .editorial-quality__grid article {
  min-height: 189px;
}

.editorial-quality__layout .editorial-quality__grid span {
  margin-bottom: 25px;
}

.editorial-quality__grid article {
  min-height: 250px;
  padding: 30px;
  background: rgba(14, 40, 51, 0.84);
}

.editorial-quality__grid span {
  display: block;
  margin-bottom: 52px;
  color: #8fb9b2;
  font-family: Consolas, monospace;
  font-size: 0.63rem;
}

.editorial-quality__grid h3 {
  color: #fff;
}

.editorial-quality__grid p {
  margin-bottom: 0;
  color: #adc1be;
  font-size: 0.82rem;
}

.home-final .faq-section {
  background: var(--paper);
}

@media (max-width: 1120px) {
  .primary-navigation__list { gap: 15px; }
  .primary-navigation__link { font-size: 0.78rem; }
  .site-brand__text small { display: none; }
  .home-hero-grid { gap: 36px; }
  .home-hero-copy h1 { font-size: clamp(3rem, 5.2vw, 4.7rem); }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .capability-grid { grid-template-columns: 1fr 1fr; }
  .intro-grid,
  .split-content { gap: 60px; }
  .conversion-hero__grid { grid-template-columns: minmax(0, 1fr) minmax(470px, 0.9fr); gap: 42px; }
  .conversion-proof-list { grid-template-columns: 1fr; gap: 10px; }
  .conversion-proof-list li + li { padding-left: 0; border-left: 0; }
  .editorial-partner-grid { gap: 60px; }
  .relationship-heading { gap: 45px; }
  .relationship-grid { grid-template-columns: 0.72fr 1.28fr; }
  .relationship-roles article { padding: 27px; }
  .experience-grid { gap: 50px; }
}

@media (max-width: 900px) {
  .section { padding: 86px 0; }
  .navigation-toggle { display: flex; }
  .primary-navigation {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 20px 30px rgba(7, 29, 35, 0.1);
  }
  .primary-navigation.is-open { display: block; }
  .primary-navigation__list { display: grid; gap: 0; }
  .primary-navigation__link { display: block; padding: 13px 4px; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
  .primary-navigation__link::after { display: none; }
  .primary-navigation__item--quote { padding-top: 16px; }
  .header-quote-link { width: 100%; }
  .home-hero-grid,
  .page-hero-grid { grid-template-columns: 1fr; }
  .home-hero { padding-top: 76px; }
  .hero-product { min-height: 450px; }
  .hero-product-card { right: 5%; width: 90%; }
  .signal-strip-grid { grid-template-columns: 1fr 1fr; }
  .signal-strip-grid > div:nth-child(odd) { border-left: 1px solid var(--line); }
  .intro-grid,
  .split-content,
  .quality-home-grid,
  .faq-grid,
  .stage-grid,
  .resource-feature-grid,
  .contact-grid,
  .quote-page-grid { grid-template-columns: 1fr; gap: 50px; }
  .faq-grid .section-heading,
  .contact-sidebar { position: static; }
  .workflow-grid { grid-template-columns: 1fr 1fr; }
  .application-grid,
  .principle-card-grid,
  .quality-detail-grid,
  .inspection-grid,
  .resource-card-grid { grid-template-columns: 1fr 1fr; }
  .cta-band-inner { grid-template-columns: 1fr; align-items: start; gap: 30px; }
  .cta-band-actions { justify-content: flex-start; }
  .technical-visual { min-height: 330px; }
  .capability-detail-grid { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
  .site-footer__intro { grid-column: 1 / -1; }
  .site-utility__inner > span:last-child { display: none; }
  .conversion-hero__grid { min-height: auto; grid-template-columns: 1fr; gap: 52px; padding-block: 58px; }
  .conversion-hero__copy { max-width: 760px; }
  .conversion-hero__form { width: min(100%, 720px); }
  .conversion-proof-list { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .conversion-proof-list li + li { padding-left: 15px; border-left: 1px solid var(--line); }
  .editorial-proof-band__grid { grid-template-columns: 1fr 1fr; }
  .editorial-proof-band__grid > div { min-height: 120px; border-bottom: 1px solid var(--line); }
  .editorial-proof-band__grid > div:nth-child(2) { border-right: 0; }
  .editorial-proof-band__grid > div:first-child { padding-left: 26px; }
  .editorial-heading-row { grid-template-columns: 1fr; gap: 15px; }
  .editorial-steps { grid-template-columns: 1fr 1fr; }
  .editorial-steps article:nth-child(2) { border-right: 0; }
  .editorial-steps article:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .editorial-capability-grid { grid-template-columns: 1fr; }
  .editorial-partner-grid { grid-template-columns: 1fr; gap: 52px; }
  .editorial-partner-grid > div:first-child { position: static; }
  .relationship-heading,
  .relationship-grid,
  .experience-grid,
  .editorial-quality__layout { grid-template-columns: 1fr; }
  .relationship-heading { gap: 22px; }
  .relationship-photo { min-height: 480px; }
  .experience-media { min-height: 520px; }
  .experience-media__primary { height: 520px; }
  .experience-media__secondary { height: 320px; }
  .editorial-quality__photo { min-height: 420px; }
  .editorial-quality__layout .editorial-quality__grid { grid-template-columns: repeat(3, 1fr); }
  .editorial-quality__layout .editorial-quality__grid article { min-height: 260px; }
  .editorial-quality__grid { grid-template-columns: 1fr; }
  .editorial-quality__grid article { min-height: auto; }
}

@media (max-width: 650px) {
  .shell,
  .container { width: min(calc(100% - 28px), var(--shell)); }
  .section { padding: 70px 0; }
  .site-header__inner { min-height: 70px; }
  .site-brand__mark { width: 38px; height: 38px; }
  .site-brand__text strong { font-size: 0.92rem; }
  .navigation-toggle__label { display: none; }
  .home-hero { min-height: auto; padding: 64px 0 55px; }
  .home-hero-copy h1 { font-size: clamp(2.75rem, 13.5vw, 4.1rem); }
  .hero-lead,
  .page-hero-lead { font-size: 1rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-product { min-height: 330px; }
  .hero-product-card { top: 35px; right: 0; width: 100%; padding: 14px; }
  .hero-product-card img { height: 220px; }
  .hero-float-card { font-size: 0.66rem; }
  .hero-float-top { left: 5px; }
  .hero-float-bottom { right: 4px; }
  .signal-strip-grid { grid-template-columns: 1fr; }
  .signal-strip-grid > div { min-height: 72px; border-left: 1px solid var(--line); }
  .section-heading { margin-bottom: 36px; }
  .section-heading-row { display: grid; align-items: start; }
  .service-grid,
  .capability-grid,
  .workflow-grid,
  .application-grid,
  .principle-card-grid,
  .positioning-grid,
  .quality-detail-grid,
  .inspection-grid,
  .resource-card-grid,
  .stage-cards { grid-template-columns: 1fr; }
  .service-card { min-height: 280px; }
  .card-number { margin-bottom: 45px; }
  .capability-body > p:not(.micro-label) { min-height: auto; }
  .workflow-card { min-height: 250px; }
  .workflow-step { margin-bottom: 48px; }
  .positioning-panel { min-height: auto; padding: 30px; }
  .contact-person-card { grid-template-columns: 1fr; gap: 25px; padding: 30px; }
  .contact-person-initials { width: 110px; height: 110px; }
  .about-portrait-placeholder { width: 180px; }
  .page-hero { padding: 70px 0; }
  .page-hero-copy h1 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .technical-visual { min-height: 260px; }
  .visual-board-back { inset: 55px 15px 20px 55px; }
  .visual-board-front { inset: 30px 45px 45px 15px; }
  .service-detail-list article { grid-template-columns: 46px 1fr; gap: 18px; }
  .service-detail-list article > strong { grid-column: 2; }
  .review-table > div { grid-template-columns: 1fr; gap: 6px; }
  .resource-checklist,
  .resource-aside { padding: 28px; }
  .checklist-grid { grid-template-columns: 1fr; }
  .quote-form { padding: 26px; }
  .quote-form__grid { grid-template-columns: 1fr; }
  .form-field--wide { grid-column: auto; }
  .quote-form__actions { align-items: stretch; flex-direction: column; }
  .quote-form__actions .button { width: 100%; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 35px; }
  .site-footer__intro { grid-column: auto; }
  .site-footer__legal { align-items: flex-start; flex-direction: column; }
  .cookie-banner { right: 10px; bottom: 10px; left: 10px; padding: 16px; }
  .cookie-banner__content { grid-template-columns: 1fr; gap: 16px; }
  .cookie-banner__actions { display: grid; grid-template-columns: 1fr; }
  .legal-page { padding-block: 70px 90px; }
  .site-utility__inner { min-height: 30px; justify-content: center; font-size: 0.61rem; }
  .conversion-hero__grid { gap: 38px; padding-block: 46px; }
  .conversion-hero h1 { font-size: clamp(2.9rem, 14vw, 4rem); }
  .conversion-hero__lead { font-size: 0.98rem; }
  .conversion-hero__actions { align-items: stretch; flex-direction: column; gap: 13px; }
  .conversion-hero__actions .button { width: 100%; }
  .editorial-email-link { align-self: flex-start; }
  .conversion-proof-list { grid-template-columns: 1fr; gap: 10px; }
  .conversion-proof-list li + li { padding-left: 0; border-left: 0; }
  .conversion-hero__form { padding: 12px; }
  .review-desk-label { padding: 3px 2px 13px; font-size: 0.51rem; }
  .review-desk-label span:last-child { display: none; }
  .quote-form--compact { padding: 21px; }
  .quote-form--compact .form-field input,
  .quote-form--compact .form-field select,
  .quote-form--compact .form-field textarea { font-size: 1rem; }
  .quote-form--compact .quote-form__actions { margin: 16px -21px -21px; padding: 15px 21px; }
  .editorial-proof-band__grid { grid-template-columns: 1fr; }
  .editorial-proof-band__grid > div { min-height: 105px; padding: 22px; border-right: 0; }
  .editorial-proof-band__grid > div:first-child { padding-left: 22px; }
  .editorial-heading-row h2 { font-size: 2.7rem; }
  .editorial-steps { grid-template-columns: 1fr; }
  .editorial-steps article { min-height: 230px; border-right: 0; border-bottom: 1px solid var(--line); }
  .editorial-steps article:last-child { border-bottom: 0; }
  .editorial-steps span { margin-bottom: 42px; }
  .editorial-capability-grid article { grid-template-columns: 1fr; }
  .editorial-capability-image { min-height: 240px; }
  .editorial-quality__grid span { margin-bottom: 30px; }
  .relationship-roles,
  .experience-path,
  .experience-media,
  .editorial-quality__layout .editorial-quality__grid { grid-template-columns: 1fr; }
  .relationship-photo { min-height: 360px; }
  .relationship-roles article { min-height: auto; padding: 27px; }
  .relationship-roles article > span { margin-bottom: 38px; }
  .experience-media { min-height: auto; }
  .experience-media__primary { height: 430px; }
  .experience-media__secondary { height: 260px; }
  .editorial-quality__photo { min-height: 290px; }
  .editorial-quality__layout .editorial-quality__grid article { min-height: auto; }
  .owner-inbox { padding-block: 60px 90px; }
  .owner-inbox__header,
  .owner-inquiry__heading { align-items: stretch; flex-direction: column; }
  .owner-inquiry { padding: 20px; }
  .owner-inquiry__facts { grid-template-columns: 1fr; }
  .owner-inquiry__facts div,
  .owner-inquiry__facts div:nth-child(3n),
  .owner-inquiry__facts div:nth-last-child(-n + 3) { border-right: 0; border-bottom: 1px solid var(--line); }
  .owner-inquiry__facts div:last-child { border-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
