/* ============================================================
   PLASTICS — "Blueprint" theme
   A deliberately separate visual language from the dark-military
   rest of the site, to signal a complementary partner-brands
   section. Everything is scoped under `.plx` so it never leaks
   into the global style.css look. Fonts are reused from the
   already-loaded Google set (no extra CDN calls).
   ============================================================ */

.plx {
  --bg:        #0e2743;   /* true blueprint navy — the page canvas itself */
  --bg-2:      #f0f5fa;   /* shaded panel base — pairs with --panel in gradients */
  --panel:     #ffffff;
  --line:      rgba(30,68,115,.10);   /* blueprint grid — used INSIDE light panels */
  --line-2:    rgba(30,68,115,.17);
  --line-lt:   rgba(255,255,255,.055);  /* blueprint grid — drawn on the navy canvas itself */
  --line-lt2:  rgba(255,255,255,.11);
  --cyan:      #1786d7;   /* sharp blue accent */
  --cyan-br:   #0a64ab;   /* readable accent text — used on light panels */
  --cyan-dim:  rgba(23,134,215,.09);
  --copper:    #b6742f;   /* secondary accent — drafting-pencil warm tone, used for callouts */
  --copper-br: #8a5620;
  --copper-dim: rgba(182,116,47,.10);
  --ink:       #2a3845;   /* body text — used on light panels */
  --ink-dim:   #5f6e7d;   /* muted — used on light panels */
  --white:     #11212f;   /* darkest — headings on light panels */
  --navy:      #0f2c4a;   /* inverted blueprint panel (CTA band) */
  --hd:        #f4f9fd;   /* headings sitting directly on the navy canvas */
  --tx:        #cfe0f0;   /* body copy sitting directly on the navy canvas */
  --tx-dim:    #8ea6bd;   /* muted copy sitting directly on the navy canvas */
  --ac:        #7cc4f4;   /* accent text/lines sitting directly on the navy canvas */
  --copper-lt: #e3ac6c;   /* copper accent text sitting directly on the navy canvas */
  --shadow:    rgba(28,55,92,.16);
  --shadow-2:  rgba(28,55,92,.26);
  --radius:    4px;
  --cut:       18px;      /* corner chamfer used on panels for a cut-drafting-sheet look */

  /* frosted "glass" panel system — info boxes now read as tinted panes of
     glass set into the blueprint sheet rather than opaque white cards */
  --glass:        linear-gradient(165deg, rgba(41,84,132,.55) 0%, rgba(12,34,59,.6) 100%);
  --glass-soft:    rgba(30,68,115,.28);
  --glass-border:  rgba(124,196,244,.28);
  --glass-hi:      rgba(255,255,255,.09);

  /* the sheet itself paints nothing — the backdrop lives on ::before below */
  background: none;
  color: var(--tx);
  font-family: 'Saira', sans-serif;
  position: relative;
  overflow-x: clip;
}

/* HUD plate backdrop for the whole polymer section.
   This is a `position: fixed` LAYER, not `background-attachment: fixed` on the
   sheet. Both look identical, but a fixed background attachment forces the
   browser to repaint the full viewport on every scroll frame — and with the
   glass panels' backdrop-filter re-blurring on top of it, that was the scroll
   lag. A fixed element gets its own compositor layer instead: painted once,
   then just held in place while the page scrolls over it.
   No drawn grid on top: the plate carries its own linework, and a second grid
   over it only cross-hatched into moire. */
.plx::before {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    /* cyan wash up top, deepest navy toward the bottom — a tonal arc over the plate */
    radial-gradient(100% 46% at 50% 0%, rgba(23,134,215,.16), transparent 70%),
    linear-gradient(180deg, rgba(22,58,94,.34) 0%, rgba(16,48,79,.34) 48%, rgba(10,31,54,.5) 100%),
    url("../images/plastics-backdrop-hud.webp") center / cover no-repeat;
  background-color: var(--bg);
}

/* The paper-grain dot screen that used to live on .plx::after is gone: it was a
   full-page-height overlay painted ON TOP of every card, which forced the glass
   panels' backdrop-filter to composite through one more layer. The HUD plate has
   its own grain baked in, so the texture it provided is still there. */

/* ---------------- nav bar on the blueprint page ----------------
   White drafting-paper bar instead of the site's flat gun-black one, so it
   reads as the top edge of this page's blueprint sheet rather than a leftover
   piece of the dark-military chrome. plastics.css loads only on the plastics
   pages, so this override is scoped to them. The .scrolled selector has to be
   matched here too, or style.css's `header.scrolled` outranks us on scroll. */
header, header.scrolled {
  background: #fff;
  border-bottom: 1px solid rgba(15, 44, 74, .14);
  box-shadow: 0 8px 26px -20px rgba(6, 22, 40, .6);
}

/* the dark-background wordmark is unreadable on white — swap in the
   light-background lockup. Header only; the footer stays on navy. */
header .logo-img { background-image: url('../images/Plas%20CHANGE.png'); }

/* nav chips flip to blueprint ink on paper: navy type, cyan hairline,
   filling solid blue on hover/active */
header .nav-links a {
  color: #0f2c4a;
  background: rgba(23, 134, 215, .06);
  box-shadow: inset 0 0 0 1px rgba(23, 134, 215, .38);
  text-shadow: none;
}
header .nav-links a:hover, header .nav-links a.active {
  background: #1786d7;
  color: #fff;
  box-shadow: inset 0 0 0 1px #1786d7;
}
/* Contact Us reads as an outline chip like the other unselected links,
   only filling in on hover — an always-on fill looked identical to the
   active-page indicator and made Contact Us look "active" on every page. */
header .nav-links a.nav-quote {
  color: #1786d7 !important;
}
header .nav-links a.nav-quote:hover {
  background: #1786d7;
  color: #fff !important;
  box-shadow: inset 0 0 0 1px #1786d7;
}
header .nav-tel { color: #0f2c4a; }
header .burger span { background: #0f2c4a; }
@media (max-width: 1000px) {
  header.open .nav-links {
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid rgba(15, 44, 74, .14);
  }
}

/* ---------------- go-back / back-to-top chrome ----------------
   These two buttons are appended site-wide by js/main.js and default to
   Impact red; recolor to cyan here so they match the blueprint palette
   instead of clashing with it. */
#toTop, #goBack {
  background: #1786d7;
  box-shadow: 0 10px 26px rgba(2,10,20,.5), 0 0 0 1px rgba(124,196,244,.3), 0 0 22px -6px rgba(23,134,215,.55);
}
#toTop:hover, #goBack:hover { background: #2496e6; }

.plx-wrap { max-width: 1180px; margin-inline: auto; padding-inline: clamp(18px, 4vw, 40px); position: relative; z-index: 1; }

/* ---------------- shared type ---------------- */
.plx .mono { font-family: 'Share Tech Mono', monospace; }
/* dimension-line kicker — reads like a callout pulled off a drawing's
   extension line, with tick terminators instead of a plain dash */
.plx .kick {
  font-family: 'Share Tech Mono', monospace;
  font-size: .74rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--ac); display: inline-flex; align-items: center; gap: .7em;
}
.plx .kick::before {
  content: ""; width: 26px; height: 1px; background: var(--cyan); display: inline-block;
  position: relative;
}
.plx .kick::after {
  content: ""; width: 5px; height: 5px; border: 1.5px solid var(--cyan); border-radius: 50%;
  display: inline-block; order: -1; margin-right: -.55em; background: var(--bg);
}

.plx h1, .plx h2, .plx h3 { font-family: 'Saira Condensed', sans-serif; color: var(--white); font-weight: 600; line-height: 1.02; letter-spacing: .005em; margin: 0; }
.plx h1 em, .plx h2 em { font-style: normal; color: var(--ac); }

/* ============================================================
   HERO  (landing + brand pages)
   ============================================================ */
.plx-hero { padding: clamp(56px, 9vw, 104px) 0 clamp(40px, 6vw, 70px); position: relative; }
.plx .crumb {
  font-family: 'Share Tech Mono', monospace; font-size: .72rem; letter-spacing: .14em;
  color: var(--tx-dim); margin-bottom: 1.6rem;
}
.plx .crumb a { color: var(--tx-dim); text-decoration: none; }
.plx .crumb a:hover { color: var(--ac); }
.plx .crumb b { color: var(--ac); font-weight: 400; }

.plx-hero h1 { font-size: clamp(2.6rem, 6.6vw, 5.2rem); margin: 1rem 0 0; color: var(--hd); }
.plx-hero .sub { max-width: 60ch; margin-top: 1.4rem; font-size: clamp(1rem, 1.5vw, 1.18rem); color: var(--tx); line-height: 1.62; font-weight: 500; }

/* corner-tick frame around the hero text block */
.plx-frame { position: relative; display: inline-block; padding: clamp(20px,3vw,34px) clamp(22px,3.4vw,40px); }
.plx-frame::before, .plx-frame::after,
.plx-frame > .c1, .plx-frame > .c2 {
  content: ""; position: absolute; width: 18px; height: 18px; border: 1.5px solid var(--cyan);
}
.plx-frame::before { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.plx-frame::after  { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.plx-frame > .c1   { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.plx-frame > .c2   { bottom: 0; right: 0; border-left: 0; border-top: 0; }

/* ruler-style divider — graduated ticks along the full width like the edge
   of a drafting scale, with a bright cyan mark over the first span */
.plx-rule {
  height: 7px; position: relative; margin: 0;
  background: repeating-linear-gradient(90deg, var(--line-lt2) 0 1px, transparent 1px 8px) bottom / 100% 7px no-repeat,
              repeating-linear-gradient(90deg, var(--line-lt) 0 1px, transparent 1px 32px) bottom / 100% 4px no-repeat;
}
.plx-rule::before { content: ""; position: absolute; left: 0; bottom: 0; width: 70px; height: 2px; background: var(--cyan); }

/* ============================================================
   BRAND SELECTOR GRID  (landing page)
   ============================================================ */
.plx-grid-sec { padding: clamp(46px,7vw,86px) 0 clamp(60px,9vw,110px); }
.plx-grid-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 2.6rem; }
.plx-grid-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.7rem); color: var(--hd); }
.plx-grid-head .note { font-family: 'Share Tech Mono', monospace; font-size: .72rem; letter-spacing: .12em; color: var(--tx-dim); max-width: 30ch; text-align: right; }

.plx-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
/* two-up row (SKB · Pelican) — fewer cards, so make them bigger */
.plx-grid--two { grid-template-columns: repeat(2, 1fr); }
.plx-grid--two .plx-card { min-height: 320px; padding: 32px 32px 26px; }
.plx-grid--two .plx-card .logo-box { min-height: 130px; }
.plx-grid--two .plx-card .logo-box img { max-height: 80px; }
.plx-grid--two .plx-card .meta .nm { font-size: 1.3rem; }

.plx-card {
  position: relative; display: flex; flex-direction: column;
  min-height: 260px; padding: 26px 30px 22px 26px;
  background: var(--glass);
  backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--glass-border);
  clip-path: polygon(0 0, calc(100% - var(--cut)) 0, 100% var(--cut), 100% 100%, 0 100%);
  filter: drop-shadow(0 1px 1px rgba(0,0,0,.2)) drop-shadow(0 16px 22px rgba(3,12,24,.4));
  text-decoration: none; color: inherit; overflow: hidden;
  transition: border-color .25s, transform .25s, filter .25s;
}
/* folded top-right corner over the chamfer, tagged with the accent color */
.plx-card::before {
  content: ""; position: absolute; top: 0; right: 0; width: var(--cut); height: var(--cut);
  background: linear-gradient(135deg, transparent 49.5%, var(--cyan) 50.5%);
  opacity: .8; transition: opacity .25s, background .25s;
}
.plx-card::after { /* single corner tick, bottom-left, to balance the folded corner */
  content: ""; position: absolute; bottom: 10px; left: 10px; width: 13px; height: 13px;
  border-left: 1.5px solid var(--cyan); border-bottom: 1.5px solid var(--cyan); opacity: .5; transition: opacity .25s;
}
.plx-card:hover {
  border-color: var(--cyan); transform: translateY(-5px);
  filter: drop-shadow(0 1px 1px rgba(28,55,92,.10)) drop-shadow(0 22px 30px rgba(28,55,92,.24)) drop-shadow(0 8px 14px rgba(23,134,215,.22));
}
.plx-card:hover::after { opacity: 1; }
/* alternate the folded-corner tag between the two accents so the grid reads
   less uniform, like different sheets pulled from the same drafting set */
.plx-card:nth-of-type(3n+2)::before { background: linear-gradient(135deg, transparent 49.5%, var(--copper) 50.5%); }

.plx-card .idx { font-family: 'Share Tech Mono', monospace; font-size: .72rem; letter-spacing: .12em; color: var(--ac); }
/* the logo sits in a recessed drawing "stage" instead of floating in blank white */
.plx-card .logo-box {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 18px 6px 14px; min-height: 92px;
  margin-top: 14px; border: 1px solid var(--line-lt); border-radius: 3px;
  background:
    repeating-linear-gradient(0deg,  transparent 0 23px, var(--line-lt) 23px 24px),
    repeating-linear-gradient(90deg, transparent 0 23px, var(--line-lt) 23px 24px),
    radial-gradient(85% 75% at 50% 45%, rgba(6,20,36,.4) 30%, rgba(6,20,36,.65) 100%);
  box-shadow: inset 0 2px 6px rgba(0,0,0,.25);
}
/* uniform monochrome treatment so the different-colored logos read as one cohesive
   set — inverted to white now that the stage they sit in reads dark */
.plx-card .logo-box img { max-width: 82%; max-height: 60px; object-fit: contain; filter: brightness(0) invert(1); opacity: .72; transition: filter .25s, opacity .25s, transform .25s; }
.plx-card:hover .logo-box img { opacity: 1; transform: scale(1.04); }

/* text wordmark used where no logo file exists (Loadmaster) */
.plx-wordmark { font-family: 'Saira Condensed', sans-serif; font-weight: 800; letter-spacing: .02em; font-size: 2.1rem; color: var(--hd); text-transform: uppercase; line-height: 1; }
.plx-wordmark small { display: block; font-family: 'Share Tech Mono', monospace; font-size: .58rem; letter-spacing: .3em; color: var(--ac); font-weight: 400; margin-top: .5em; }

.plx-card .meta { border-top: 1px solid var(--line-lt2); padding-top: 12px; margin-top: auto; }
.plx-card .meta .nm { font-family: 'Saira Condensed', sans-serif; font-weight: 700; font-size: 1.12rem; color: var(--hd); text-transform: uppercase; letter-spacing: .04em; }
.plx-card .meta .ds { font-size: .85rem; color: var(--tx-dim); margin-top: 2px; font-weight: 500; }
.plx-card .go { display: inline-flex; align-items: center; gap: .5em; margin-top: 12px; font-family: 'Share Tech Mono', monospace; font-size: .72rem; letter-spacing: .14em; color: var(--ac); }
.plx-card .go svg { transition: transform .25s; }
.plx-card:hover .go svg { transform: translateX(4px); }

/* availability footnote — a hairline-separated strip pinned to the bottom of a
   brand card, for lines we only distribute inside Canada */
.plx-avail {
  display: flex; align-items: center; gap: .55em;
  margin-top: 1.3rem; padding-top: 11px;
  border-top: 1px solid var(--line-lt2);
  font-family: 'Share Tech Mono', monospace;
  font-size: .66rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--copper-lt);
}
.plx-avail::before {
  content: ""; flex: none; width: 6px; height: 6px; border-radius: 1px;
  background: var(--copper-lt); transform: rotate(45deg);
}
.plx-card .plx-avail { margin-top: 14px; }

/* ---- featured flagship brand card (Gemstar) ---- */
.plx-flagcard {
  position: relative; display: grid; grid-template-columns: 1fr 1.35fr; gap: clamp(22px,3.5vw,50px); align-items: center;
  border: 1px solid var(--cyan); border-left-width: 4px; border-radius: var(--radius);
  overflow: hidden; text-decoration: none; color: inherit;
  padding: clamp(20px,2.6vw,30px);
  background:
    radial-gradient(130% 130% at 16% 28%, rgba(23,134,215,.16), transparent 55%),
    var(--glass);
  backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow:
    inset 0 1px 0 var(--glass-hi),
    0 4px 14px -6px rgba(0,0,0,.3),
    0 34px 64px -30px rgba(0,0,0,.55),
    -12px 0 30px -22px rgba(23,134,215,.5);
  transition: transform .25s, box-shadow .25s;
}
.plx-flagcard::before { content: ""; position: absolute; top: 11px; left: 11px; width: 16px; height: 16px; border-left: 1.5px solid var(--cyan); border-top: 1.5px solid var(--cyan); z-index: 2; }
.plx-flagcard::after  { content: ""; position: absolute; bottom: 11px; right: 11px; width: 16px; height: 16px; border-right: 1.5px solid var(--cyan); border-bottom: 1.5px solid var(--cyan); z-index: 2; }
.plx-flagcard:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 var(--glass-hi),
    0 4px 14px -6px rgba(0,0,0,.3),
    0 44px 76px -32px rgba(0,0,0,.6),
    -12px 0 34px -20px rgba(23,134,215,.65);
}

/* no frame — photo sits directly on the page, cropped in tight and
   bottom-anchored so it fills the space instead of floating small */
.plx-flagcard-media { position: relative; width: 100%; aspect-ratio: 3 / 2; overflow: hidden; }
/* cut-out PNG with real transparency — contained and drop-shadowed so the case
   floats on the glass card, matching the feature-media treatment on the brand
   pages. No multiply here; that would mud out the desert-tan shell. */
.plx-flagcard-media img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; object-position: 50% 50%; padding: clamp(8px,1.4vw,18px); filter: drop-shadow(0 20px 24px rgba(2,10,20,.5)) drop-shadow(0 0 34px rgba(23,134,215,.14)); transition: transform .3s; }
.plx-flagcard:hover .plx-flagcard-media img { transform: scale(1.035); }

.plx-flag-badge { position: absolute; top: 14px; left: 14px; z-index: 3; display: inline-flex; align-items: center; gap: .5em; font-family: 'Share Tech Mono', monospace; font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: #fff; background: var(--cyan); padding: 6px 12px; border-radius: 2px; font-weight: 700; box-shadow: 0 7px 16px -6px rgba(23,134,215,.6); }
.plx-flag-badge .star { color: #fff; font-size: .95em; line-height: 1; }
.plx-flagcard-spec { position: absolute; bottom: 13px; left: 16px; z-index: 3; font-family: 'Share Tech Mono', monospace; font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ac); opacity: .85; }

/* the copy half sits on its own plaque. On the plain navy sheet the glass card
   was enough, but over the HUD plate the linework ran straight through the
   words — this gives them a solid plate to sit on. */
.plx-flagcard-body {
  background: linear-gradient(165deg, rgba(11,32,55,.95) 0%, rgba(7,22,39,.97) 100%);
  border: 1px solid var(--glass-border);
  border-left: 3px solid var(--cyan);
  border-radius: var(--radius);
  padding: clamp(18px,2.2vw,26px) clamp(18px,2.4vw,28px) clamp(22px,2.6vw,30px);
  box-shadow: inset 0 1px 0 var(--glass-hi), 0 18px 34px -22px rgba(0,0,0,.7);
}

.plx-flagcard-logo { display: block; height: 44px; width: auto; max-width: 230px; margin: 1.3rem 0 0; filter: brightness(0) invert(1); opacity: .92; }
.plx-flagcard-body .plx-flagcard-logo { margin-top: 0; }
.plx-flagcard-tag { font-family: 'Saira Condensed', sans-serif; font-weight: 600; color: var(--hd); font-size: clamp(1.3rem,2.2vw,1.8rem); line-height: 1.1; margin: 1.1rem 0 0; max-width: 22ch; }
.plx-flagcard-sub { color: var(--tx); font-size: .92rem; line-height: 1.55; margin: .8rem 0 0; max-width: 42ch; font-weight: 500; }
.plx-flagcard .plx-btn { margin-top: 1.7rem; }
.plx-flagcard .plx-btn svg { transition: transform .25s; }
.plx-flagcard:hover .plx-btn svg { transform: translateX(4px); }

/* ============================================================
   BRAND PAGE CONTENT
   ============================================================ */
.plx-brandhero { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px,5vw,64px); align-items: center; }
.plx-brandhero .logo-plate {
  display: flex; align-items: center; justify-content: center; padding: clamp(30px,5vw,56px);
  background: var(--glass);
  backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--glass-border); border-radius: var(--radius); position: relative;
}
.plx-brandhero .logo-plate::before { content: ""; position: absolute; top: 12px; left: 12px; width: 18px; height: 18px; border-left: 1.5px solid var(--cyan); border-top: 1.5px solid var(--cyan); }
.plx-brandhero .logo-plate::after  { content: ""; position: absolute; bottom: 12px; right: 12px; width: 18px; height: 18px; border-right: 1.5px solid var(--cyan); border-bottom: 1.5px solid var(--cyan); }
.plx-brandhero .logo-plate img { max-width: 100%; max-height: 120px; object-fit: contain; filter: brightness(0) invert(1); opacity: .92; }

.plx-tag { font-family: 'Share Tech Mono', monospace; font-size: .74rem; letter-spacing: .14em; color: var(--ac); margin: 1rem 0 0; }
.plx-partner-note { font-family: 'Share Tech Mono', monospace; font-size: .68rem; letter-spacing: .08em; color: var(--tx-dim); margin-top: 2rem; line-height: 1.6; border-left: 2px solid var(--line-lt2); padding-left: 12px; max-width: 52ch; }

.plx-section { padding: clamp(44px,6vw,76px) 0; }
.plx-section h2 { font-size: clamp(1.6rem,3vw,2.4rem); color: var(--hd); }
.plx-lead { max-width: 68ch; font-size: clamp(1rem,1.4vw,1.14rem); line-height: 1.66; font-weight: 500; color: var(--tx); margin: 1.2rem 0 0; }

/* spec rows */
.plx-specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line-lt2); border: 1px solid var(--glass-border); border-radius: var(--radius); margin-top: 2.4rem; overflow: hidden;
  backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%); }
.plx-specs .row { background: var(--glass-soft); padding: 18px 20px; }
.plx-specs .row .k { font-family: 'Share Tech Mono', monospace; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ac); }
.plx-specs .row .v { color: var(--hd); font-size: .98rem; margin-top: 6px; line-height: 1.5; font-weight: 600; }

/* product family chips */
.plx-fams { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 14px; margin-top: 2.4rem; }
.plx-fam { background: var(--glass); backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%); border: 1px solid var(--glass-border); border-left: 3px solid var(--cyan); padding: 20px 20px 20px 18px; position: relative; }
.plx-fam:nth-of-type(even) { border-left-color: var(--copper); }
.plx-fam:nth-of-type(even) .no { color: var(--copper-lt); }
.plx-fam .no { font-family: 'Share Tech Mono', monospace; font-size: .7rem; color: var(--ac); letter-spacing: .12em; }
.plx-fam h4 { font-family: 'Saira Condensed', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; color: var(--hd); font-size: 1.16rem; margin: .5rem 0 .4rem; }
.plx-fam p { font-size: .9rem; color: var(--tx-dim); line-height: 1.55; margin: 0; font-weight: 500; }

/* ---------------- SKB MIL-STD series — photo cards ---------------- */
.plx-prodgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 2.2rem; }
.plx-prod { background: var(--glass); backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%); border: 1px solid var(--glass-border); border-top: 3px solid var(--cyan); overflow: hidden; display: flex; flex-direction: column; transition: border-color .25s, transform .25s, box-shadow .25s; }
.plx-prod:nth-of-type(even) { border-top-color: var(--copper); }
.plx-prod:nth-of-type(even) .tag { color: var(--copper-lt); }
.plx-prod:hover { border-left-color: var(--cyan); border-right-color: var(--cyan); border-bottom-color: var(--cyan); transform: translateY(-4px); box-shadow: 0 18px 34px -18px rgba(0,0,0,.5); }
.plx-prod-media { background: #ffffff; aspect-ratio: 1200 / 720; display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--glass-border); padding: 6px; }
.plx-prod-media img { width: 100%; height: 100%; object-fit: contain; }
.plx-prod-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.plx-prod .tag { font-family: 'Share Tech Mono', monospace; font-size: .66rem; letter-spacing: .12em; color: var(--ac); text-transform: uppercase; }
.plx-prod h4 { font-family: 'Saira Condensed', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; color: var(--hd); font-size: 1.32rem; margin: .45rem 0 .25rem; }
.plx-prod .desc { font-size: .89rem; color: var(--tx-dim); line-height: 1.5; margin: .2rem 0 1rem; font-weight: 500; }
.plx-prod .dl { border-top: 1px solid var(--line-lt2); padding-top: .85rem; margin-top: auto; display: grid; gap: .5rem; }
.plx-prod .dl .d { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.plx-prod .dl .d span { color: var(--ac); font-family: 'Share Tech Mono', monospace; font-size: .63rem; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.plx-prod .dl .d b { color: var(--hd); font-weight: 700; text-align: right; font-size: .88rem; }
.plx-prod .spec { margin-top: 1rem; display: inline-flex; align-items: center; gap: .55em; font-family: 'Share Tech Mono', monospace; font-size: .67rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ac); text-decoration: none; align-self: flex-start; border: 1px solid var(--glass-border); border-radius: 2px; padding: 8px 12px; transition: color .2s, border-color .2s, background .2s; }
.plx-prod .spec svg { transition: transform .2s; }
.plx-prod .spec:hover { color: var(--hd); border-color: var(--cyan); background: rgba(124,196,244,.14); }
.plx-prod .spec:hover svg { transform: translateY(2px); }
@media (max-width: 860px) { .plx-prodgrid { grid-template-columns: 1fr; } }

/* two-up photo row (Loadmaster lines) */
.plx-media-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 1.8rem; }
.plx-media-row .plx-media { margin-top: 0; }
.plx-media-row .plx-media img { aspect-ratio: 4 / 3; object-fit: cover; }
/* cut-out variant: transparent-background shots, usually much wider than 4:3.
   Fit the whole photo inside the same box so the row's captions stay aligned,
   and skip the multiply blend, which only exists for white-background studio
   shots and would crush a dark case against the navy. */
.plx-media-row .plx-media--cutout img {
  object-fit: contain; mix-blend-mode: normal;
  filter: drop-shadow(0 14px 24px rgba(2,10,20,.55));
}
@media (max-width: 700px) { .plx-media-row { grid-template-columns: 1fr; } }

/* product line block spacing */
.plx-line { margin-top: 3rem; }
.plx-line .lhead { display: flex; flex-wrap: wrap; align-items: baseline; gap: .6rem 1.2rem; }
.plx-line .lhead h3 { font-size: clamp(1.4rem, 2.8vw, 2.1rem); color: var(--hd); }

/* no frame — photo sits directly on the page, just a plain caption below.
   These have a white studio background baked in, so multiply blends the
   white against the navy page instead of showing it as a box. */
.plx-media { margin-top: 2.6rem; position: relative; }
.plx-media img { display: block; width: 100%; height: auto; mix-blend-mode: multiply; filter: drop-shadow(0 18px 26px rgba(2,10,20,.45)); }
.plx-media figcaption { font-family: 'Share Tech Mono', monospace; font-size: .68rem; letter-spacing: .14em; color: var(--tx-dim); padding: 12px 2px 0; }

/* impact-finished callout */
.plx-finish { display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: center; background: rgba(124,196,244,.1); border: 1px solid rgba(124,196,244,.30); border-radius: var(--radius); padding: clamp(22px,3vw,34px); margin-top: 2.6rem;
  backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%); }
.plx-finish .badge { font-family: 'Share Tech Mono', monospace; font-size: .64rem; letter-spacing: .14em; color: var(--ac); writing-mode: vertical-rl; transform: rotate(180deg); border-right: 1px solid rgba(124,196,244,.30); padding-right: 16px; }
.plx-finish h3 { font-size: 1.4rem; color: var(--hd); }
.plx-finish p { color: var(--tx); font-weight: 500; line-height: 1.6; margin: .6rem 0 0; font-size: .98rem; max-width: 60ch; }

/* CTA band — a deeper, richer navy than the page canvas so it still reads
   as the closing "stamp" at the bottom, even though the whole sheet is navy */
.plx-band {
  position: relative; margin-top: clamp(50px,8vw,90px);
  padding: 0; /* the shared section padding from style.css would inflate the navy slab */
  background:
    repeating-linear-gradient(0deg,  transparent 0 39px, rgba(255,255,255,.055) 39px 40px),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(255,255,255,.055) 39px 40px),
    radial-gradient(110% 140% at 85% 50%, rgba(23,134,215,.28), transparent 60%),
    linear-gradient(135deg, #0d2740 0%, var(--navy) 55%, #123655 100%);
  border-top: 1px solid rgba(23,134,215,.45);
  border-bottom: 1px solid rgba(23,134,215,.45);
  box-shadow: inset 0 12px 30px -18px rgba(0,0,0,.5), inset 0 -12px 30px -18px rgba(0,0,0,.5);
}
.plx-band::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--cyan); box-shadow: 0 0 24px 1px rgba(23,134,215,.6);
}
.plx-band .in { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.6rem; padding-block: clamp(64px,10vw,110px); }
.plx-band h2 { font-size: clamp(1.8rem,3.4vw,2.7rem); color: #fff; }
.plx-band p { color: rgba(205,223,238,.8); margin-top: .7rem; max-width: 46ch; line-height: 1.6; font-weight: 500; }
.plx-band .kick { color: #7cc4f4; }
.plx-band .kick::before { background: #7cc4f4; }

.plx-btn {
  display: inline-flex; align-items: center; gap: .6em; white-space: nowrap;
  font-family: 'Share Tech Mono', monospace; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 14px 24px 14px 26px; text-decoration: none;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  background: linear-gradient(180deg, #2496e6 0%, var(--cyan) 55%, #1379c4 100%);
  color: #fff; font-weight: 700; border: 1px solid var(--cyan-br);
  filter: drop-shadow(0 8px 14px rgba(23,134,215,.4));
  transition: background .2s, filter .2s, transform .2s;
}
.plx-btn:hover { filter: brightness(1.07) drop-shadow(0 12px 20px rgba(23,134,215,.5)); transform: translateY(-2px); }
.plx-btn.ghost { background: transparent; color: var(--cyan-br); filter: none; }
.plx-btn.ghost:hover { background: var(--cyan-dim); filter: none; }

.plx-back { display: inline-flex; align-items: center; gap: .5em; font-family: 'Share Tech Mono', monospace; font-size: .74rem; letter-spacing: .12em; color: var(--tx-dim); text-decoration: none; margin-bottom: 1.4rem; }
.plx-back:hover { color: var(--ac); }
.plx-back svg { transition: transform .2s; }
.plx-back:hover svg { transform: translateX(-4px); }

/* ============================================================
   FLAGSHIP PAGE  (Gemstar) — richer treatment within the same
   blueprint language. Scoped under `.plx-flag`.
   ============================================================ */

/* ---- hero ---- */
.plx-flaghero { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px,5vw,60px); align-items: center; }
.plx-flaghero h1 { font-size: clamp(3rem, 7.5vw, 6rem); margin-top: .8rem; color: var(--hd); }
.plx-flaghero .lead { max-width: 52ch; margin-top: 1.4rem; font-size: clamp(1.02rem,1.5vw,1.2rem); line-height: 1.6; color: var(--tx); font-weight: 500; }

.plx-made { display: inline-flex; align-items: center; gap: .6em; margin-top: 1.6rem; font-family: 'Share Tech Mono', monospace; font-size: .7rem; letter-spacing: .12em; color: var(--tx-dim); text-transform: uppercase; }
.plx-made b { color: var(--ac); font-weight: 400; }
.plx-made::before { content: ""; width: 16px; height: 11px; background: linear-gradient(180deg,#b22234 33%,#fff 33% 66%,#b22234 66%); border: 1px solid var(--line-lt2); }

.plx-ctarow { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 2rem; }

/* product "stage" — these photos are true cutouts (no background plank), so
   the case sits directly on the page with just a contact shadow for depth */
.plx-stage { position: relative; padding: clamp(16px,3vw,28px) 0; min-height: 320px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.plx-stage img { max-width: 100%; max-height: 340px; object-fit: contain; filter: drop-shadow(0 26px 30px rgba(2,10,20,.55)) drop-shadow(0 0 40px rgba(23,134,215,.15)); }
.plx-stage .tag { margin-top: 14px; font-family: 'Share Tech Mono', monospace; font-size: .62rem; letter-spacing: .14em; color: var(--tx-dim); }

/* ---- stat strip ---- */
.plx-stats { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--glass-border); border-radius: var(--radius); margin-top: clamp(34px,5vw,56px); overflow: hidden;
  backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%); }
.plx-stats .s { padding: 22px 24px; background: var(--glass-soft); border-left: 1px solid var(--line-lt2); }
.plx-stats .s:first-child { border-left: 0; }
.plx-stats .s .n { font-family: 'Saira Condensed', sans-serif; font-weight: 700; font-size: 1.7rem; color: var(--ac); line-height: 1; }
.plx-stats .s .l { font-family: 'Share Tech Mono', monospace; font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--tx-dim); margin-top: 8px; }

/* ---- value props ---- */
.plx-vps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 2.6rem; }
.plx-vp { border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 26px; background: var(--glass); backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%); }
.plx-vp .ic { width: 38px; height: 38px; color: var(--ac); }
.plx-vp h4 { font-family: 'Saira Condensed', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; color: var(--hd); font-size: 1.2rem; margin: 1rem 0 .5rem; }
.plx-vp p { font-size: .94rem; color: var(--tx-dim); line-height: 1.6; margin: 0; font-weight: 500; }

/* ---- alternating feature rows (the 3 case lines) ---- */
.plx-feat { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,64px); align-items: center; padding: clamp(30px,5vw,56px) 0; border-top: 1px solid var(--line-lt); }
.plx-feat.flip .plx-feat-media { order: 2; }
/* these three are true cutouts too — no plank, just the case and a contact shadow */
.plx-feat-media { position: relative; min-height: 300px; display: flex; align-items: center; justify-content: center; padding: clamp(16px,3vw,28px) 0; }
.plx-feat-media img { position: relative; z-index: 1; max-width: 100%; max-height: 300px; object-fit: contain; filter: drop-shadow(0 22px 26px rgba(2,10,20,.5)) drop-shadow(0 0 34px rgba(23,134,215,.14)); }
.plx-feat-media .num { position: absolute; top: 0; left: 4px; z-index: 0; font-family: 'Saira Condensed', sans-serif; font-weight: 800; font-size: 2.6rem; color: rgba(255,255,255,.07); line-height: 1; }
.plx-stage img, .plx-tech-media img { position: relative; z-index: 1; }
.plx-feat .reg { font-family: 'Share Tech Mono', monospace; font-size: .72rem; letter-spacing: .16em; color: var(--ac); }
.plx-feat h3 { font-family: 'Saira Condensed', sans-serif; font-weight: 700; font-size: clamp(1.9rem,3.4vw,2.7rem); color: var(--hd); text-transform: uppercase; letter-spacing: .01em; margin: .5rem 0 0; }
.plx-feat .desc { color: var(--tx); font-weight: 500; line-height: 1.62; margin: 1rem 0 0; max-width: 46ch; }
.plx-traits { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.4rem; }
.plx-traits span { display: inline-flex; align-items: center; gap: .5em; font-family: 'Share Tech Mono', monospace; font-size: .68rem; letter-spacing: .06em; color: var(--tx); border: 1px solid var(--line-lt2); border-radius: 2px; padding: 6px 11px; background: rgba(255,255,255,.05); transition: border-color .2s, color .2s, background .2s; }
.plx-traits span::before { content: ""; width: 5px; height: 5px; border-radius: 1px; background: var(--cyan); transform: rotate(45deg); flex: none; }
.plx-flagcard:hover .plx-traits span { border-color: rgba(23,134,215,.4); }

/* spec-sheet link — bolder, reads as a real "download datasheet" button */
.plx-doclink { display: inline-flex; align-items: center; gap: .6em; margin-top: 1.7rem; font-family: 'Share Tech Mono', monospace; font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ac); text-decoration: none; border: 1.5px solid var(--cyan); border-radius: 3px; padding: 13px 20px; background: rgba(124,196,244,.12); box-shadow: inset 0 0 0 1px rgba(124,196,244,.1); transition: color .2s, background .2s, box-shadow .2s, transform .2s; }
.plx-doclink:hover { color: #fff; background: var(--cyan); transform: translateY(-2px); box-shadow: 0 12px 24px -12px rgba(23,134,215,.6); }
.plx-doclink svg { flex: none; width: 16px; height: 16px; }
.plx-doclink:hover svg { transform: translateY(1px); }

/* ---- robomold / tech band ---- */
.plx-tech { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px,5vw,60px); align-items: center; }
/* still a real studio photo on white seamless, so this one keeps the lit
   plate treatment (frame + grid + corner ticks) rather than sitting bare */
.plx-tech-media { position: relative; border: 1px solid rgba(124,196,244,.35); border-radius: var(--radius); padding: clamp(22px,3.5vw,40px); display:flex; align-items:center; justify-content:center; overflow:hidden;
  background: radial-gradient(120% 100% at 50% 32%, #ffffff 0%, #eef3f9 55%, #dbe3ee 100%); }
.plx-tech-media::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0 23px, var(--line) 23px 24px), repeating-linear-gradient(90deg, transparent 0 23px, var(--line) 23px 24px);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 50%, #000, transparent 75%); mask-image: radial-gradient(70% 60% at 50% 50%, #000, transparent 75%); opacity: .6;
}
.plx-tech-media .c1, .plx-tech-media .c2 { position: absolute; width: 18px; height: 18px; z-index: 2; }
.plx-tech-media .c1 { top: 12px; left: 12px; border-left: 1.5px solid var(--cyan); border-top: 1.5px solid var(--cyan); }
.plx-tech-media .c2 { bottom: 12px; right: 12px; border-right: 1.5px solid var(--cyan); border-bottom: 1.5px solid var(--cyan); }
.plx-tech-media img { max-width: 100%; max-height: 300px; object-fit: contain; filter: drop-shadow(0 20px 24px rgba(20,45,75,.26)); }

/* ---- industry chips ---- */
.plx-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 2rem; }
.plx-chips span { font-family: 'Share Tech Mono', monospace; font-size: .74rem; letter-spacing: .08em; color: var(--tx); border: 1px solid var(--glass-border); border-radius: 2px; padding: 10px 16px; background: var(--glass-soft); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); transition: border-color .2s, color .2s, background .2s; }
.plx-chips span:hover { border-color: var(--cyan); color: var(--ac); background: rgba(124,196,244,.14); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .plx-grid { grid-template-columns: repeat(2, 1fr); }
  .plx-brandhero { grid-template-columns: 1fr; }
  .plx-specs { grid-template-columns: 1fr; }
  .plx-flaghero { grid-template-columns: 1fr; }
  .plx-stats { grid-template-columns: repeat(2, 1fr); }
  .plx-stats .s:nth-child(3) { border-left: 0; }
  .plx-vps { grid-template-columns: 1fr; }
  .plx-feat { grid-template-columns: 1fr; }
  .plx-feat.flip .plx-feat-media { order: 0; }
  .plx-tech { grid-template-columns: 1fr; }
  .plx-flagcard { grid-template-columns: 1fr; }
}
/* ============================================================
   SHADE & DEPTH PASS — tonal hierarchy for every panel type.
   Plates get layered cool shadows + a top highlight; photo stages
   get a shaded floor; spec rows and stats get drawing-style accents.
   ============================================================ */
.plx-fam, .plx-vp {
  box-shadow: inset 0 1px 0 var(--glass-hi), 0 1px 2px rgba(0,0,0,.15), 0 14px 26px -16px rgba(0,0,0,.45);
}
.plx-prod {
  box-shadow: inset 0 1px 0 var(--glass-hi), 0 1px 2px rgba(0,0,0,.15), 0 16px 30px -18px rgba(0,0,0,.45);
}
.plx-prod:hover {
  box-shadow: inset 0 1px 0 var(--glass-hi), 0 24px 44px -20px rgba(0,0,0,.5), 0 8px 20px -8px rgba(23,134,215,.32);
}
.plx-specs { box-shadow: 0 14px 30px -20px rgba(0,0,0,.4); }
.plx-specs .row { transition: background .2s, box-shadow .2s; }
.plx-specs .row:hover { background: rgba(124,196,244,.1); box-shadow: inset 3px 0 0 var(--cyan); }
.plx-stats { box-shadow: 0 16px 32px -20px rgba(0,0,0,.4); }
.plx-stats .s { position: relative; }
.plx-stats .s::before { content: ""; position: absolute; top: 0; left: 24px; width: 26px; height: 3px; background: var(--cyan); }
/* Robomold tech photo is still a real studio shot on white — keeps the
   genuine light backdrop, framed with a cyan glow ring so it reads as lit */
.plx-tech-media {
  box-shadow: inset 0 1px 0 #fff, inset 0 -16px 28px -20px rgba(28,55,92,.16),
    0 0 0 1px rgba(124,196,244,.12), 0 0 34px -8px rgba(23,134,215,.4),
    0 20px 40px -24px rgba(0,0,0,.45);
}
.plx-finish { border-left: 4px solid var(--cyan); box-shadow: 0 16px 32px -22px rgba(0,0,0,.4); }
.plx-brandhero .logo-plate { box-shadow: inset 0 1px 0 var(--glass-hi), 0 18px 36px -22px rgba(0,0,0,.45); }
.plx-rule::before { box-shadow: 0 0 14px rgba(23,134,215,.55); }
.plx-chips span { box-shadow: 0 1px 2px rgba(28,55,92,.08); }

@media (max-width: 560px) {
  .plx-grid, .plx-grid--two { grid-template-columns: 1fr; }
  .plx-grid-head .note { text-align: left; }
  .plx-finish { grid-template-columns: 1fr; }
  .plx-finish .badge { writing-mode: horizontal-tb; transform: none; border-right: 0; border-bottom: 1px solid rgba(23,134,215,.30); padding: 0 0 10px; }
  .plx-stats { grid-template-columns: 1fr; }
  .plx-stats .s { border-left: 0; border-top: 1px solid var(--line-lt2); }
  .plx-stats .s:first-child { border-top: 0; }
}

/* ---------------- performance: glass on weak GPUs ----------------
   Every .plx-* panel is a backdrop-filter surface, and the plate behind them is
   a fixed layer — so each panel re-blurs its sampled region on every scroll
   frame. That is affordable on a desktop GPU and is not on a phone. Below,
   the blur is dropped and --glass is turned up to near-opaque instead, which
   keeps the panels legible for free. Desktop keeps the frosted look. */
@media (hover: none), (max-width: 860px) {
  .plx {
    --glass:      linear-gradient(165deg, rgba(20,48,80,.93) 0%, rgba(9,26,45,.95) 100%);
    --glass-soft: rgba(20,48,80,.90);
  }
  .plx [class^="plx-"],
  .plx [class*=" plx-"] { backdrop-filter: none; -webkit-backdrop-filter: none; }
}
