.interior-page {
  --page-accent: var(--signal);
  background: #f2f5f7;
}

.interior-page main {
  min-height: 65vh;
}

.interior-hero {
  position: relative;
  isolation: isolate;
  min-height: 42rem;
  padding: calc(var(--header-height) + var(--space-7)) 0 var(--space-8);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 18%, rgba(29, 118, 219, 0.33), transparent 27rem),
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    var(--navy-deep);
  background-size: auto, 4rem 4rem, 4rem 4rem, auto;
}

.interior-hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -65% 45%;
  z-index: -1;
  aspect-ratio: 1;
  border: 1px solid rgba(244, 200, 61, 0.32);
  border-radius: 50%;
  box-shadow:
    0 0 0 4rem rgba(13, 89, 173, 0.08),
    0 0 0 8rem rgba(13, 89, 173, 0.05);
}

.interior-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.54;
  background:
    linear-gradient(118deg, transparent 24%, rgba(255, 255, 255, 0.055) 46%, transparent 58%),
    radial-gradient(circle at 18% 78%, rgba(244, 200, 61, 0.08), transparent 18rem);
  content: "";
  pointer-events: none;
}

.interior-hero__cursor-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.32;
  pointer-events: none;
}

.interior-hero__laser {
  position: absolute;
  top: 12%;
  right: -16%;
  width: 56%;
  height: 1px;
  opacity: 0.62;
  background: linear-gradient(90deg, transparent, rgba(244, 200, 61, 0.82), transparent);
  filter: drop-shadow(0 0 0.65rem rgba(244, 200, 61, 0.45));
  pointer-events: none;
  transform: rotate(-18deg);
  transform-origin: center;
}

.interior-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(19rem, 0.72fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin-bottom: var(--space-5);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: var(--signal);
}

.interior-hero h1 {
  max-width: 13ch;
  margin-bottom: var(--space-5);
  color: transparent;
  font-size: clamp(2.8rem, 6vw, 6.35rem);
  letter-spacing: -0.065em;
  background: linear-gradient(112deg, #ffffff 12%, #e8f1fb 56%, #9fb8d3 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.interior-hero__lede {
  max-width: 42rem;
  margin-bottom: var(--space-6);
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.interior-hero .button--outline,
.empty-state .button--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.035);
}

.interior-hero .button--outline:hover,
.empty-state .button--outline:hover {
  color: var(--navy-deep);
  border-color: var(--white);
  background: var(--white);
}

.hero-art {
  position: relative;
  min-height: 0;
  aspect-ratio: var(--hero-ratio, 1 / 1);
  will-change: transform;
}

.hero-art__frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 1.1rem;
  background: #0c2748;
  box-shadow: var(--shadow-lg);
}

.hero-art__frame picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-art__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-art__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(3, 13, 32, 0.84));
  pointer-events: none;
}

.hero-art--contain .hero-art__frame img {
  object-fit: contain;
  padding: clamp(0.8rem, 2.4vw, 1.8rem);
}

.hero-art__scan {
  position: absolute;
  inset: -20% -55%;
  z-index: 2;
  opacity: 0.38;
  background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, 0.34) 49%, transparent 56%);
  mix-blend-mode: screen;
  pointer-events: none;
  transform: translateX(-34%);
}

.hero-art__reticle {
  position: absolute;
  z-index: 2;
  width: 7.5rem;
  aspect-ratio: 1;
  border: 1px solid rgba(244, 200, 61, 0.5);
  border-radius: 50%;
  opacity: 0.65;
  pointer-events: none;
}

.hero-art__reticle::before,
.hero-art__reticle::after {
  position: absolute;
  background: rgba(244, 200, 61, 0.45);
  content: "";
}

.hero-art__reticle::before {
  top: 50%;
  left: -1.3rem;
  width: calc(100% + 2.6rem);
  height: 1px;
}

.hero-art__reticle::after {
  top: -1.3rem;
  left: 50%;
  width: 1px;
  height: calc(100% + 2.6rem);
}

.hero-art__reticle--one {
  top: 16%;
  right: 11%;
}

.hero-art__reticle--two {
  bottom: 12%;
  left: 9%;
  width: 3.4rem;
  opacity: 0.32;
}

.hero-art__label {
  position: absolute;
  right: -1.1rem;
  bottom: 2rem;
  z-index: 2;
  width: min(16rem, 85%);
  padding: 1rem 1.15rem;
  color: var(--navy);
  background: var(--signal);
  box-shadow: var(--shadow-lg);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.45;
  text-transform: uppercase;
}

.product-showcase {
  padding-block: clamp(2.8rem, 5vw, 4.5rem);
  overflow: hidden;
  border-bottom: 1px solid rgba(7, 52, 99, 0.14);
  background:
    linear-gradient(rgba(7, 52, 99, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 52, 99, 0.045) 1px, transparent 1px),
    #e9eff4;
  background-size: 3.5rem 3.5rem;
}

.product-showcase__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.72fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.75rem;
}

.product-showcase__header h2 {
  max-width: 19ch;
  margin: 0;
  color: var(--navy-deep);
}

.product-showcase__header > p {
  max-width: 42rem;
  margin: 0;
  color: var(--ink-soft);
}

.product-showcase__rail {
  display: grid;
  grid-auto-columns: minmax(16.5rem, 21rem);
  grid-auto-flow: column;
  gap: 0.9rem;
  padding: 0.2rem 0 1.15rem;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scrollbar-color: var(--cobalt) rgba(7, 52, 99, 0.12);
  scrollbar-width: thin;
  scroll-padding-inline: 0.2rem;
  scroll-snap-type: inline mandatory;
}

.product-showcase__card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(7, 52, 99, 0.15);
  border-top: 3px solid var(--signal);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0.7rem 2rem rgba(4, 20, 43, 0.08);
  scroll-snap-align: start;
}

.product-showcase__card > a {
  display: block;
  height: 100%;
}

.product-showcase__image {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(7, 52, 99, 0.12);
  background:
    radial-gradient(circle at 68% 28%, rgba(18, 101, 195, 0.18), transparent 42%),
    linear-gradient(145deg, #f7fafc, #dce6ef);
}

.product-showcase__image::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  content: "";
  pointer-events: none;
}

.product-showcase__image img {
  width: 100%;
  height: 100%;
  padding: clamp(0.65rem, 1.8vw, 1.15rem);
  object-fit: contain;
  transition: transform 220ms cubic-bezier(0.2, 0, 0, 1);
}

.product-showcase__card:hover .product-showcase__image img,
.product-showcase__card:focus-within .product-showcase__image img {
  transform: translateY(-0.2rem) scale(1.025);
}

.product-showcase__body {
  padding: 1rem 1.1rem 1.15rem;
}

.product-showcase__body .eyebrow {
  margin-bottom: 0.45rem;
}

.product-showcase__body h3,
.product-showcase__body .card-heading {
  margin: 0;
  color: var(--navy-deep);
  font-size: 1.2rem;
}

.product-showcase__body > p:not(.eyebrow):not(.card-heading) {
  min-height: 2.7em;
  margin: 0.5rem 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.product-showcase__body .index-card__link {
  display: inline-block;
  margin-top: 0.8rem;
}

@media (min-width: 961px) {
  .product-showcase__rail--fit {
    grid-template-columns: repeat(var(--product-count), minmax(0, 1fr));
    grid-auto-columns: auto;
    grid-auto-flow: row;
    overflow-x: visible;
  }
}

.page-strip {
  color: var(--white);
  background: var(--cobalt);
}

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

.page-strip__item {
  min-height: 8.5rem;
  padding: 1.55rem;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.page-strip__item:last-child {
  border-right: 0;
}

.page-strip__item strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--signal);
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 1;
}

.page-strip__label {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.page-strip__number,
.page-strip__suffix {
  color: inherit;
  font: inherit;
}

.page-strip__suffix {
  margin-left: 0.15em;
}

.page-section {
  position: relative;
  isolation: isolate;
  padding-block: clamp(5rem, 9vw, 9rem);
  overflow: hidden;
  background:
    linear-gradient(rgba(7, 52, 99, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 52, 99, 0.035) 1px, transparent 1px),
    var(--white);
  background-size: 4rem 4rem;
}

.page-section::before,
.page-section::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.page-section::before {
  top: -14rem;
  right: -12rem;
  width: 30rem;
  aspect-ratio: 1;
  border: 1px solid rgba(11, 78, 162, 0.1);
  box-shadow:
    0 0 0 4rem rgba(11, 78, 162, 0.025),
    0 0 0 8rem rgba(11, 78, 162, 0.018);
}

.page-section::after {
  bottom: -12rem;
  left: -8rem;
  width: 24rem;
  aspect-ratio: 1;
  opacity: 0.62;
  background: radial-gradient(circle, rgba(244, 200, 61, 0.12), transparent 66%);
  filter: blur(1rem);
}

.page-section--mist {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.9), transparent 20rem),
    linear-gradient(125deg, rgba(11, 78, 162, 0.04), transparent 42%),
    #eaf0f5;
}

.page-section--dark {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 0, rgba(18, 102, 195, 0.28), transparent 25rem),
    var(--navy);
}

.page-section__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(18rem, 0.45fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
  margin-bottom: var(--space-7);
}

.page-section__intro h2 {
  max-width: 16ch;
  margin-bottom: 0;
}

.page-section__intro p {
  max-width: 38rem;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.page-section--dark .page-section__intro p {
  color: rgba(255, 255, 255, 0.68);
}

.page-section--dark .prose p,
.page-section--dark .prose li {
  color: rgba(255, 255, 255, 0.76);
}

.page-section--dark .prose blockquote {
  color: var(--white);
}

.page--privacy .page-section::before,
.page--privacy .page-section::after {
  display: none;
}

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

.index-card {
  position: relative;
  isolation: isolate;
  min-height: 25rem;
  padding: 2rem;
  overflow: hidden;
  background: var(--white);
}

.index-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(18, 102, 195, 0.16), transparent 45%);
  transition: opacity 220ms ease;
}

.index-card::after {
  position: absolute;
  inset: 1rem;
  z-index: 0;
  border: 1px solid transparent;
  content: "";
  pointer-events: none;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.index-card:hover::after {
  border-color: rgba(244, 200, 61, 0.54);
  box-shadow: inset 0 0 2rem rgba(244, 200, 61, 0.06);
}

.index-card--visual {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(3, 13, 32, 0.3), rgba(3, 13, 32, 0.96) 79%),
    var(--card-image) center / cover no-repeat,
    var(--navy);
}

.index-card--visual::before {
  opacity: 0.54;
  background:
    radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(244, 200, 61, 0.25), transparent 32%),
    linear-gradient(125deg, transparent 42%, rgba(255, 255, 255, 0.12), transparent 58%);
}

.index-card--visual:hover::before {
  opacity: 0.82;
}

.index-card--visual .index-card__number {
  color: var(--signal);
}

.index-card--visual p {
  color: rgba(255, 255, 255, 0.72);
}

.index-card--visual .index-card__link {
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 0.4);
}

.index-card:hover::before {
  opacity: 1;
}

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

.index-card__number {
  display: block;
  margin-bottom: 5rem;
  color: var(--cobalt);
  font-family: var(--font-mono);
  font-size: 0.76rem;
}

.index-card h3,
.index-card .card-heading {
  max-width: 15ch;
  margin-bottom: 1rem;
  font-size: 1.55rem;
}

.index-card p:not(.card-heading) {
  color: var(--muted);
}

.index-card__link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--cobalt);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(11, 78, 162, 0.3);
  text-underline-offset: 0.3rem;
}

.index-card__link::after {
  content: " ↗";
}

.index-grid > .index-card:last-child:nth-child(3n + 1) {
  grid-column: 1 / -1;
  min-height: 16rem;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.media-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 1.4rem 3.5rem rgba(3, 13, 32, 0.12);
  transition: transform 260ms var(--ease-out), border-color 260ms ease, box-shadow 260ms ease;
}

.media-card::after {
  position: absolute;
  inset: -35%;
  z-index: 2;
  opacity: 0;
  background: linear-gradient(112deg, transparent 40%, rgba(255, 255, 255, 0.2) 49%, transparent 57%);
  content: "";
  pointer-events: none;
  transform: translateX(-42%);
  transition: opacity 180ms ease, transform 650ms var(--ease-out);
}

.media-card:hover {
  border-color: rgba(244, 200, 61, 0.48);
  box-shadow: 0 1.8rem 4rem rgba(3, 13, 32, 0.2), 0 0 0 1px rgba(244, 200, 61, 0.12);
  transform: translateY(-0.35rem);
}

.media-card:hover::after {
  opacity: 0.6;
  transform: translateX(42%);
}

.media-card__image {
  aspect-ratio: 1.35;
  overflow: hidden;
}

.media-card__image img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  transition: transform 650ms var(--ease-out);
}

.media-card:hover img {
  transform: scale(1.035);
}

.media-card__body {
  padding: 1.5rem;
}

.media-card__body h3,
.media-card__body .card-heading {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.media-card__body p:not(.card-heading) {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.95rem;
}

.media-card .index-card__link {
  position: relative;
  z-index: 3;
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 0.42);
}

.media-card .button--outline,
.spec-panel .button--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(19rem, 0.28fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.prose {
  max-width: 48rem;
}

.prose h2 {
  margin-top: 4.5rem;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin-top: 2.2rem;
  font-size: 1.4rem;
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.prose ul {
  padding-left: 1.2rem;
}

.prose blockquote {
  margin: 3rem 0;
  padding: 1.5rem 0 1.5rem 1.5rem;
  border-left: 0.35rem solid var(--signal);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.25;
}

.spec-panel {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
  padding: 1.75rem;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0.8rem 0.8rem 0 var(--signal);
}

.spec-panel h2 {
  margin-bottom: 1.5rem;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.spec-panel dl {
  margin: 0;
}

.spec-panel div {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.spec-panel dt {
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.spec-panel dd {
  font-size: 0.9rem;
}

.engineering-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.38fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: start;
}

.spec-chip-grid {
  display: grid;
  margin-top: 2.5rem;
  border: 1px solid var(--line);
  background: var(--line);
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
}

.spec-chip-grid > div {
  min-height: 7rem;
  padding: 1.15rem;
  background:
    linear-gradient(135deg, rgba(11, 78, 162, 0.04), transparent 68%),
    var(--white);
}

.spec-chip-grid span,
.document-panel dt,
.dimension-panel dt {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spec-chip-grid strong {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.document-panel,
.dimension-panel {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    var(--navy);
  background-size: 2.5rem 2.5rem;
  box-shadow: 0.7rem 0.7rem 0 var(--signal);
}

.document-panel::before,
.dimension-panel::before {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 42%;
  height: 3px;
  background: var(--signal);
  content: "";
}

.document-panel h2,
.dimension-panel h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.document-panel > p:not(.eyebrow),
.dimension-panel > p {
  color: rgba(255, 255, 255, 0.7);
}

.document-panel dl,
.dimension-panel dl {
  margin: 1.75rem 0;
}

.document-panel dl > div,
.dimension-panel dl > div {
  display: grid;
  padding: 0.8rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  grid-template-columns: 0.8fr 1fr;
  gap: 1rem;
}

.document-panel dt,
.dimension-panel dt {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
}

.document-panel dd,
.dimension-panel dd {
  font-size: 0.9rem;
}

.document-panel .button {
  width: 100%;
  margin-top: 0.25rem;
}

.document-panel small {
  display: block;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  line-height: 1.55;
}

.engineering-table-shell {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid #b9c6d1;
  background: var(--white);
  box-shadow: 0 1.2rem 3rem rgba(3, 13, 32, 0.08);
  scrollbar-color: var(--cobalt) #dce4eb;
}

.engineering-table {
  width: 100%;
  min-width: 58rem;
  border-collapse: collapse;
  color: var(--ink);
}

.engineering-table caption {
  padding: 1rem 1.15rem;
  color: var(--navy);
  background: #dfe7ee;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.engineering-table th,
.engineering-table td {
  padding: 1rem 1.15rem;
  border-right: 1px solid #d4dde5;
  border-bottom: 1px solid #d4dde5;
  text-align: left;
  vertical-align: top;
}

.engineering-table thead th {
  color: var(--navy);
  background: #edf2f6;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.engineering-table tbody th {
  color: var(--navy);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  white-space: nowrap;
}

.engineering-table td {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.product-data-section .engineering-table-shell {
  border-color: rgba(255, 255, 255, 0.17);
  background: #071b35;
  box-shadow: 0 1.4rem 3.5rem rgba(0, 0, 0, 0.25);
}

.product-data-section .engineering-table caption,
.product-data-section .engineering-table thead th {
  color: var(--signal);
  background: #0a2a50;
}

.product-data-section .engineering-table th,
.product-data-section .engineering-table td {
  border-color: rgba(255, 255, 255, 0.12);
}

.product-data-section .engineering-table tbody th {
  color: var(--white);
}

.product-data-section .engineering-table td {
  color: rgba(255, 255, 255, 0.76);
}

.table-note {
  max-width: 55rem;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
}

.engineering-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.38fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: start;
}

.engineering-detail-grid > div > h2 {
  max-width: 15ch;
  margin-bottom: 2.25rem;
}

.spec-panel__links {
  display: grid;
  margin-top: 1.25rem;
}

.spec-panel__links a {
  padding: 0.85rem 0;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(244, 200, 61, 0.55);
  text-underline-offset: 0.3rem;
}

.spec-panel__links a:hover {
  color: var(--signal);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: clamp(2rem, 7vw, 7rem);
}

.contact-cards {
  display: grid;
  gap: 1px;
  align-self: start;
  background: var(--line);
  border: 1px solid var(--line);
}

.contact-card {
  padding: 1.5rem;
  background: var(--white);
}

.contact-card span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

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

.form-field label {
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 3.4rem;
  padding: 0.8rem 0.9rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #abb8c4;
  border-radius: 0;
}

.form-field textarea {
  min-height: 9rem;
  resize: vertical;
}

.legal-shell {
  max-width: 52rem;
  margin-inline: auto;
}

.legal-meta {
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.article-hero .interior-hero__grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 0.7fr);
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.article-body img {
  width: 100%;
  margin-block: 2rem;
  border-radius: var(--radius-md);
}

.empty-state {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  padding: calc(var(--header-height) + 5rem) var(--gutter) 6rem;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 34%, rgba(18, 102, 195, 0.42), transparent 29rem),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    var(--navy-deep);
  background-size: auto, 4rem 4rem, 4rem 4rem, auto;
}

.empty-state__inner {
  position: relative;
  z-index: 2;
  width: min(100%, 72rem);
  margin-inline: auto;
}

.empty-state__message {
  max-width: 48rem;
}

.empty-state__code {
  margin: 1rem 0;
  color: var(--signal);
  font-family: var(--font-mono);
  font-size: clamp(4rem, 18vw, 12rem);
  font-weight: 500;
  line-height: 0.8;
}

.empty-state h1 {
  max-width: 12ch;
  margin: 1.5rem 0 1rem;
  font-size: clamp(2rem, 5vw, 4rem);
}

.empty-state p {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.7);
}

.empty-state__ring {
  position: absolute;
  top: 10%;
  right: -12rem;
  z-index: 0;
  width: 42rem;
  aspect-ratio: 1;
  border: 1px solid rgba(244, 200, 61, 0.34);
  border-radius: 50%;
  box-shadow:
    0 0 0 5rem rgba(14, 86, 167, 0.09),
    0 0 0 10rem rgba(14, 86, 167, 0.045);
}

.empty-state__routes {
  display: grid;
  margin-top: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  grid-template-columns: repeat(4, 1fr);
}

.empty-state__routes a {
  min-height: 10rem;
  padding: 1.35rem;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
  transition: color 180ms ease, background 180ms ease, transform 180ms var(--ease-out);
}

.empty-state__routes a:last-child {
  border-right: 0;
}

.empty-state__routes a:hover {
  color: var(--navy-deep);
  background: var(--signal);
  transform: translateY(-0.2rem);
}

.empty-state__routes span,
.empty-state__routes strong,
.empty-state__routes small {
  display: block;
}

.empty-state__routes span {
  margin-bottom: 2.2rem;
  color: var(--signal);
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.empty-state__routes a:hover span {
  color: var(--navy-deep);
}

.empty-state__routes strong {
  margin-bottom: 0.3rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
}

.empty-state__routes small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.empty-state__routes a:hover small {
  color: rgba(3, 13, 32, 0.72);
}

.page-faq {
  background:
    radial-gradient(circle at 86% 12%, rgba(17, 101, 194, 0.12), transparent 24rem),
    #edf2f6;
}

.page-faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(22rem, 0.78fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.page-faq__grid > div:first-child {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.page-faq__grid h2 {
  max-width: 12ch;
}

.page-faq__grid > div:first-child > p:last-child {
  max-width: 30rem;
  color: var(--ink-soft);
}

.page-faq__list {
  border-top: 1px solid #bdc9d4;
}

.page-faq details {
  border-bottom: 1px solid #bdc9d4;
}

.page-faq summary {
  display: grid;
  min-height: 5.5rem;
  align-items: center;
  color: var(--navy);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  list-style: none;
}

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

.page-faq summary span {
  color: var(--cobalt);
  font-family: var(--font-mono);
  transition: transform 180ms ease;
}

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

.page-faq details p {
  max-width: 44rem;
  padding: 0 3rem 1.5rem 0;
  color: var(--ink-soft);
}

.page-cta {
  position: relative;
  isolation: isolate;
  padding-block: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 34%, rgba(20, 108, 205, 0.42), transparent 25rem),
    linear-gradient(118deg, #04142b, #082a52 62%, #071b35);
}

.page-cta__grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.42;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 3.5rem 3.5rem;
  mask-image: linear-gradient(90deg, #000, transparent 84%);
}

.page-cta__beam {
  position: absolute;
  top: 48%;
  right: -8%;
  z-index: -1;
  width: 62%;
  height: 1px;
  opacity: 0.75;
  background: linear-gradient(90deg, transparent, var(--signal), transparent);
  box-shadow: 0 0 1.2rem rgba(244, 200, 61, 0.45);
  transform: rotate(-13deg);
  transform-origin: center;
}

.page-cta__ring {
  position: absolute;
  z-index: -1;
  aspect-ratio: 1;
  border: 1px solid rgba(244, 200, 61, 0.28);
  border-radius: 50%;
  pointer-events: none;
}

.page-cta__ring--one {
  top: -16rem;
  right: -8rem;
  width: 39rem;
  box-shadow:
    0 0 0 4rem rgba(15, 91, 179, 0.08),
    0 0 0 8rem rgba(15, 91, 179, 0.045);
}

.page-cta__ring--two {
  right: 19%;
  bottom: -9rem;
  width: 17rem;
  opacity: 0.44;
}

.page-cta__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.page-cta h2 {
  max-width: 18ch;
  margin: 0;
  color: var(--white);
}

.page-cta p {
  max-width: 38rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.page-cta__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.25rem;
  margin-top: 1.5rem;
}

.page-cta__links a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(244, 200, 61, 0.55);
  text-underline-offset: 0.32rem;
}

.page-cta__links a:hover {
  color: var(--signal);
}

.index-card.index-card--visual p {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 960px) {
  .interior-hero__grid,
  .article-hero .interior-hero__grid,
  .detail-grid,
  .contact-grid,
  .engineering-overview,
  .engineering-detail-grid {
    grid-template-columns: 1fr;
  }

  .product-showcase__header {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .hero-art {
    width: min(100%, 46rem);
    min-height: 0;
  }

  .index-grid,
  .media-grid {
    grid-template-columns: 1fr 1fr;
  }

  .index-grid > .index-card:last-child:nth-child(3n + 1) {
    grid-column: auto;
  }

  .page-strip__grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-strip__item:nth-child(2) {
    border-right: 0;
  }

  .spec-panel {
    position: static;
  }

  .page-faq__grid {
    grid-template-columns: 1fr;
  }

  .page-faq__grid > div:first-child {
    position: static;
  }

  .empty-state__routes {
    grid-template-columns: 1fr 1fr;
  }

  .empty-state__routes a:nth-child(2) {
    border-right: 0;
  }

  .empty-state__routes a:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .document-panel,
  .dimension-panel {
    max-width: 40rem;
  }
}

@media (max-width: 640px) {
  .product-showcase__rail {
    grid-auto-columns: minmax(15.5rem, 82vw);
  }

  .interior-page {
    font-size: 16px;
  }

  .interior-hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 3rem);
  }

  .interior-hero h1 {
    font-size: clamp(2.65rem, 13vw, 4.3rem);
  }

  .hero-art {
    min-height: 0;
  }

  .hero-art__label {
    right: 0;
  }

  .page-section__intro,
  .page-cta__inner,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .page-section__intro {
    align-items: start;
  }

  .index-grid,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .index-grid > .index-card:last-child:nth-child(3n + 1) {
    grid-column: auto;
  }

  .form-field--wide {
    grid-column: auto;
  }

  .page-strip__item {
    min-height: 7rem;
    padding: 1.1rem;
  }

  .spec-chip-grid {
    grid-template-columns: 1fr;
  }

  .engineering-table {
    min-width: 49rem;
  }

  .hero-art__label {
    bottom: 1rem;
    width: min(14rem, 82%);
  }

  .hero-art__reticle {
    width: 4.5rem;
  }

  .empty-state {
    padding-top: calc(var(--header-height) + 3.5rem);
  }

  .empty-state__routes {
    grid-template-columns: 1fr;
  }

  .empty-state__routes a,
  .empty-state__routes a:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .empty-state__routes a:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-magnetic],
  .media-card img {
    transition: none;
    transform: none !important;
  }

  .hero-art__scan,
  .hero-art__reticle,
  .interior-hero__laser,
  .page-cta__beam,
  .page-cta__ring {
    animation: none !important;
    transform: none !important;
  }
}

/* ============================================================================
   Product banner — one verified family image at full size, followed by the
   documented configurations as a list. Replaces the pattern of repeating a
   single image across N cards. Pairs with productBanner() in components.mjs.
   ========================================================================= */

.product-banner {
  padding-block: clamp(2.8rem, 5vw, 4.5rem);
  border-bottom: 1px solid rgba(7, 52, 99, 0.14);
  background:
    linear-gradient(rgba(7, 52, 99, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 52, 99, 0.045) 1px, transparent 1px),
    #e9eff4;
  background-size: 3.5rem 3.5rem;
}

.product-banner__figure {
  position: relative;
  margin: 0 0 1.75rem;
  overflow: hidden;
  border: 1px solid rgba(7, 52, 99, 0.14);
  background:
    radial-gradient(circle at 68% 28%, rgba(18, 101, 195, 0.18), transparent 42%),
    linear-gradient(145deg, #f7fafc, #dce6ef);
}

/* Two failure modes to avoid at once:
     - width:100% alone upscales a ~900px render into a 1200px container (the defect the card
       grid had, at banner scale).
     - width:auto alone reserves no space while the lazy image is still loading, so the section
       below it jumps on load.
   --banner-max is emitted per image by productBanner() from the intrinsic width recorded in
   content-source/product-image-map.json, so the box is reserved AND never exceeds 1:1. */
.product-banner__figure img {
  display: block;
  width: 100%;
  max-width: min(100%, var(--banner-max, 100%));
  height: auto;
  margin-inline: auto;
  object-fit: contain;
}

.product-banner__figure figcaption {
  padding: 0.85rem 1.15rem;
  border-top: 1px solid rgba(7, 52, 99, 0.12);
  background: rgba(255, 255, 255, 0.62);
  color: rgba(7, 52, 99, 0.72);
  font-size: 0.85rem;
}

.product-banner__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: banner-item;
}

.product-banner__list li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.9rem 1rem 0.9rem 2.4rem;
  position: relative;
  border: 1px solid rgba(7, 52, 99, 0.14);
  background: rgba(255, 255, 255, 0.72);
  counter-increment: banner-item;
}

.product-banner__list li::before {
  content: counter(banner-item, decimal-leading-zero);
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  color: rgba(7, 52, 99, 0.42);
  font-size: 0.72rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
}

.product-banner__code {
  color: var(--navy, #073463);
  font-weight: 650;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}

.product-banner__detail {
  color: rgba(7, 52, 99, 0.7);
  font-size: 0.86rem;
}

.product-banner__meta {
  color: rgba(7, 52, 99, 0.9);
  font-size: 0.82rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

/* ============================================================================
   Category comparison table + cross-links to sibling categories.
   ========================================================================= */

.comparison-table th[scope="row"] a {
  color: inherit;
  text-decoration-color: rgba(7, 52, 99, 0.35);
  text-underline-offset: 0.22em;
}

.comparison-table th[scope="row"] a:hover,
.comparison-table th[scope="row"] a:focus-visible {
  color: var(--cobalt, #1265c3);
  text-decoration-color: currentColor;
}

.related-categories__block {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.related-categories__block h3 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
}

.related-categories__block > p {
  max-width: 46rem;
  margin-bottom: 1.25rem;
  color: rgba(7, 52, 99, 0.72);
}

.related-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.related-categories a {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  height: 100%;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(7, 52, 99, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.related-categories a:hover,
.related-categories a:focus-visible {
  border-color: var(--cobalt, #1265c3);
  background: #ffffff;
}

.related-categories strong {
  color: var(--navy, #073463);
  font-size: 0.98rem;
}

.related-categories span {
  color: rgba(7, 52, 99, 0.72);
  font-size: 0.86rem;
  line-height: 1.45;
}

@media (max-width: 640px) {
  .product-banner__figure img {
    max-height: 18rem;
  }

  .product-banner__list,
  .related-categories {
    grid-template-columns: 1fr;
  }
}

/* Source tables that split into design groups carry a single-cell label row (RT-IL publishes
   "Modular design" / "COB design"). Rendered as a spanning header so the columns stay aligned. */
.engineering-table__group th {
  padding-top: 1.15rem;
  border-bottom: 1px solid rgba(7, 52, 99, 0.18);
  color: var(--navy, #073463);
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-align: left;
  text-transform: uppercase;
}

.page-section--dark .engineering-table__group th {
  border-bottom-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.86);
}

/* Media variant of the approved spec-panel: same frame, image instead of a list. Used on
   generated project and location pages where the source supplies a supporting photograph. */
.spec-panel--media {
  padding: 0;
  overflow: hidden;
}

.spec-panel--media img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

/* ------------------------------------------------------------------ Blog hub: featured card + searchable archive (2026-07-30) */

.media-card--featured {
  margin-bottom: var(--space-5);
}

.media-card--featured > a {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: stretch;
}

.media-card--featured .media-card__image {
  height: 100%;
  min-height: 20rem;
}

.media-card--featured .media-card__image img {
  height: 100%;
  object-fit: cover;
}

.media-card--featured .media-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  padding: 2.5rem;
}

.media-card--featured .card-heading--featured {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.08;
}

.blog-archive__search {
  display: grid;
  grid-template-columns: minmax(0, 34rem) auto;
  gap: 0.75rem 1.25rem;
  align-items: center;
  margin-bottom: var(--space-4);
}

.blog-archive__search-label {
  grid-column: 1 / -1;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-deep);
}

.blog-archive__search input {
  width: 100%;
  padding: 0.85rem 1rem;
  font: inherit;
  font-size: 0.95rem;
  color: var(--navy-deep);
  background: var(--white);
  border: 1px solid rgba(7, 27, 53, 0.28);
  border-radius: 0;
  appearance: none;
}

.blog-archive__search input:focus-visible {
  outline: 2px solid var(--page-accent);
  outline-offset: 1px;
  border-color: var(--navy-deep);
}

.blog-archive__count {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(7, 27, 53, 0.62);
  white-space: nowrap;
}

.blog-archive__list {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.archive-row a {
  display: grid;
  grid-template-columns: 5.25rem minmax(0, 1fr) auto;
  gap: 1rem 1.25rem;
  align-items: center;
  padding: 0.85rem 1rem;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid rgba(7, 27, 53, 0.12);
  border-left: 3px solid transparent;
  transition: border-color 160ms ease, background 160ms ease;
}

.archive-row a:hover,
.archive-row a:focus-visible {
  border-left-color: var(--page-accent);
  background: #fbfcfd;
}

.archive-row img {
  width: 5.25rem;
  height: 3.4rem;
  object-fit: cover;
  display: block;
}

.archive-row__text {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.archive-row__title {
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.25;
  color: var(--navy-deep);
}

.archive-row__desc {
  font-size: 0.83rem;
  line-height: 1.45;
  color: rgba(7, 27, 53, 0.66);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.archive-row__meta {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(7, 27, 53, 0.5);
  white-space: nowrap;
}

.blog-archive__empty {
  padding: 1.5rem;
  border: 1px dashed rgba(7, 27, 53, 0.3);
  color: rgba(7, 27, 53, 0.7);
}

@media (max-width: 800px) {
  .media-card--featured > a {
    grid-template-columns: 1fr;
  }

  .media-card--featured .media-card__body {
    padding: 1.5rem;
  }

  .blog-archive__search {
    grid-template-columns: 1fr;
  }

  .archive-row a {
    grid-template-columns: 4rem minmax(0, 1fr);
  }

  .archive-row__meta {
    display: none;
  }
}

/* ------------------------------------------------------------------ Sticky aside panels (2026-07-30) */
/* On article/detail layouts the aside CTA panel follows the reader down the long main
   column. Only above the stacking breakpoint — when the grid collapses to one column the
   panel flows normally. */
@media (min-width: 961px) {
  .detail-grid > .spec-panel,
  .engineering-overview > .document-panel {
    position: sticky;
    top: calc(var(--header-height) + 1.25rem);
  }
}

.blog-archive__more {
  margin-top: var(--space-4);
}

.blog-archive__more[hidden] {
  display: none;
}

/* Sticky prerequisite: .page-section clips overflow for its decorative bleeds, but any
   clipping ancestor kills position:sticky inside it. Sections hosting a sticky aside keep
   the horizontal clip (what the decoration needs) and free the vertical axis. */
.page-section:has(.detail-grid > .spec-panel),
.page-section:has(.engineering-overview > .document-panel) {
  overflow-x: clip;
  overflow-y: visible;
}
