/* ── Undo Tailwind preflight within imported page ── */
.imported-page :where(*, *::before, *::after) {
    box-sizing: border-box;
}
.imported-page :where(h1, h2, h3, h4, h5, h6) {
    font-size: revert;
    font-weight: revert;
}
.imported-page :where(p) {
    margin: revert;
}
.imported-page :where(a) {
    color: revert;
    text-decoration: revert;
}
.imported-page :where(ul, ol) {
    list-style: revert;
    margin: revert;
    padding: revert;
}
.imported-page :where(img) {
    display: revert;
    max-width: 100%;
}
.imported-page :where(blockquote, figure, figcaption, hr, pre) {
    margin: revert;
}
.imported-page :where(table) {
    border-collapse: revert;
    border-spacing: revert;
}
/* Source: style.css */
/* ============================================================
   ATOMIC DISTRIBUTION — Global Stylesheet
   ============================================================ */

/* ----- RESET & BASE ----- */
.imported-page *,
.imported-page *::before,
.imported-page *::after { box-sizing: border-box; margin: 0; padding: 0; }
.imported-page { scroll-behavior: smooth; }
.imported-page {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: #e0e0e0;
  background: #111;
}
.imported-page a { text-decoration: none; color: inherit; }
.imported-page img { display: block; max-width: 100%; }

/* ----- TYPOGRAPHY UTILITIES ----- */
.imported-page.eyebrow,
.imported-page .eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e63c2f;
  margin-bottom: 12px;
  display: block;
}
.imported-page.section-title,
.imported-page .section-title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}
.imported-page.section-title--light,
.imported-page .section-title--light { color: #fff; }
.imported-page.section-title--dark,
.imported-page .section-title--dark { color: #111; }

/* ----- BUTTONS ----- */
.imported-page.btn,
.imported-page .btn {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 28px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
}
.imported-page.btn--outline-white,
.imported-page .btn--outline-white {
  border-color: transparent;
  color: #fff;
  background:
    linear-gradient(#111, #111) padding-box,
    linear-gradient(100deg, #e63c2f 0%, #f5a623 24%, #86c74b 48%, #39bce5 72%, #8c48c6 100%) border-box;
}
.imported-page.btn--outline-white:hover,
.imported-page .btn--outline-white:hover {
  color: #111;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(100deg, #e63c2f 0%, #f5a623 24%, #86c74b 48%, #39bce5 72%, #8c48c6 100%) border-box;
}

/* Bottom call-to-action buttons intentionally match the black hero-button treatment. */
.imported-page.cta-banner .btn--outline-white,
.imported-page .cta-banner .btn--outline-white {
  color: #fff;
  background:
    linear-gradient(#111, #111) padding-box,
    linear-gradient(100deg, #e63c2f 0%, #f5a623 24%, #86c74b 48%, #39bce5 72%, #8c48c6 100%) border-box !important;
}
.imported-page.cta-banner .btn--outline-white:hover,
.imported-page .cta-banner .btn--outline-white:hover {
  color: #111;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(100deg, #e63c2f 0%, #f5a623 24%, #86c74b 48%, #39bce5 72%, #8c48c6 100%) border-box !important;
}
.imported-page.btn--outline-dark,
.imported-page .btn--outline-dark {
  border-color: transparent;
  color: #111;
  background:
    linear-gradient(#f4f4f4, #f4f4f4) padding-box,
    linear-gradient(100deg, #e63c2f 0%, #f5a623 24%, #86c74b 48%, #39bce5 72%, #8c48c6 100%) border-box;
}
.imported-page.btn--outline-dark:hover,
.imported-page .btn--outline-dark:hover {
  color: #fff;
  background:
    linear-gradient(#111, #111) padding-box,
    linear-gradient(100deg, #e63c2f 0%, #f5a623 24%, #86c74b 48%, #39bce5 72%, #8c48c6 100%) border-box;
}
.imported-page.btn--solid-white,
.imported-page .btn--solid-white {
  background: #fff;
  color: #111;
  border-color: #fff;
}
.imported-page.btn--solid-white:hover,
.imported-page .btn--solid-white:hover { background: transparent; color: #fff; }

/* ----- HEADER ----- */
.imported-page.site-header,
.imported-page .site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #0d0d0d;
  border-bottom: 1px solid #222;
  height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5.5vw;
}
.imported-page.header-logo,
.imported-page .header-logo {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.imported-page.header-logo img,
.imported-page .header-logo img {
  height: 88px;
  width: 118px;
  object-fit: contain;
}
.imported-page.header-nav,
.imported-page .header-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
}
.imported-page.header-nav a,
.imported-page .header-nav a {
  font-size: 15px;
  font-weight: 500;
  color: #ccc;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.imported-page.header-nav a:hover,
.imported-page .header-nav a:hover,
.imported-page.header-nav a.active,
.imported-page .header-nav a.active { color: #fff; }
.imported-page.header-nav a:not(.btn--nav-cta),
.imported-page .header-nav a:not(.btn--nav-cta) { position: relative; }
.imported-page.header-nav a.active:not([href="index.html"])::after,
.imported-page .header-nav a.active:not([href="index.html"])::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px;
  height: 2px;
  background: linear-gradient(90deg, #e63c2f 0%, #f5a623 24%, #86c74b 48%, #39bce5 72%, #8c48c6 100%);
}
.imported-page.header-nav .btn--nav-cta,
.imported-page .header-nav .btn--nav-cta {
  border: 2px solid transparent;
  color: #fff;
  padding: 11px 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
  background:
    linear-gradient(#0d0d0d, #0d0d0d) padding-box,
    linear-gradient(100deg, #e63c2f 0%, #f5a623 24%, #86c74b 48%, #39bce5 72%, #8c48c6 100%) border-box;
}
.imported-page.header-nav .btn--nav-cta:hover,
.imported-page .header-nav .btn--nav-cta:hover {
  color: #111;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(100deg, #e63c2f 0%, #f5a623 24%, #86c74b 48%, #39bce5 72%, #8c48c6 100%) border-box;
}

/* Mobile hamburger (hidden on desktop) */
.imported-page.hamburger,
.imported-page .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.imported-page.hamburger span,
.imported-page .hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform 0.2s, opacity 0.2s;
}

/* ----- FOOTER (full 4-column) ----- */
.imported-page.site-footer,
.imported-page .site-footer {
  background: #0a0a0a;
  border-top: 1px solid #1e1e1e;
  padding: 64px 48px 0;
}
.imported-page.footer-grid,
.imported-page .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #1e1e1e;
}
.imported-page.footer-brand-desc,
.imported-page .footer-brand-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 300px;
}
.imported-page.footer-social,
.imported-page .footer-social {
  display: flex;
  gap: 10px;
}
.imported-page.footer-social a,
.imported-page .footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.imported-page.footer-social a:hover,
.imported-page .footer-social a:hover { border-color: #555; background: #1a1a1a; }
.imported-page.footer-social svg,
.imported-page .footer-social svg { width: 15px; height: 15px; fill: #888; }
.imported-page.footer-col h4,
.imported-page .footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.imported-page.footer-col ul,
.imported-page .footer-col ul { list-style: none; }
.imported-page.footer-col ul li,
.imported-page .footer-col ul li { margin-bottom: 10px; }
.imported-page.footer-col ul li a,
.imported-page .footer-col ul li a {
  font-size: 15px;
  color: #666;
  transition: color 0.2s;
}
.imported-page.footer-col ul li a:hover,
.imported-page .footer-col ul li a:hover { color: #ccc; }
.imported-page.footer-col ul li span,
.imported-page .footer-col ul li span {
  display: inline;
  font-family: inherit;
  font-size: 15px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: normal;
  color: #666 !important;
  text-transform: none !important;
  cursor: default;
}
.imported-page.footer-contact-row,
.imported-page .footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.imported-page.footer-contact-row svg,
.imported-page .footer-contact-row svg {
  width: 15px;
  height: 15px;
  fill: #555;
  flex-shrink: 0;
  margin-top: 3px;
}
.imported-page.footer-contact-row span,
.imported-page .footer-contact-row span { font-size: 15px; color: #666; line-height: 1.5; }
.imported-page.footer-bottom,
.imported-page .footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.imported-page.footer-bottom p,
.imported-page .footer-bottom p { font-size: 13px; color: #444; }
.imported-page.footer-bottom p a,
.imported-page .footer-bottom p a { color: #777; transition: color 0.2s; }
.imported-page.footer-bottom p a:hover,
.imported-page .footer-bottom p a:hover { color: #aaa; }
.imported-page.footer-bottom-links,
.imported-page .footer-bottom-links { display: flex; gap: 24px; }
.imported-page.footer-bottom-links a,
.imported-page .footer-bottom-links a { font-size: 13px; color: #444; transition: color 0.2s; }
.imported-page.footer-bottom-links a:hover,
.imported-page .footer-bottom-links a:hover { color: #999; }

/* ----- FOOTER (minimal — Contact page) ----- */
.imported-page.site-footer--minimal,
.imported-page .site-footer--minimal {
  background: #0a0a0a;
  border-top: 1px solid #1e1e1e;
  padding: 40px 48px;
  text-align: center;
}
.imported-page.site-footer--minimal img,
.imported-page .site-footer--minimal img {
  height: 64px;
  width: auto;
  margin: 0 auto 16px;
}
.imported-page.site-footer--minimal p,
.imported-page .site-footer--minimal p { font-size: 13px; color: #444; }

/* ----- PAGE HERO (inner pages) ----- */
.imported-page.page-hero,
.imported-page .page-hero {
  position: relative;
  height: 340px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0d0d0d;
}
.imported-page.page-hero__bg,
.imported-page .page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.45;
}
.imported-page.page-hero__overlay,
.imported-page .page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.5) 60%, rgba(13,13,13,0.2) 100%);
}
.imported-page.page-hero__content,
.imported-page .page-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
}
.imported-page.page-hero__content h1,
.imported-page .page-hero__content h1 {
  font-size: 44px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 10px;
}
.imported-page.page-hero__content p,
.imported-page .page-hero__content p {
  font-size: 18px;
  color: #bbb;
}

/* ----- CTA BANNER (shared) ----- */
.imported-page.cta-banner,
.imported-page .cta-banner {
  background: linear-gradient(90deg, #c0392b 0%, #e67e22 20%, #27ae60 40%, #2980b9 60%, #8e44ad 80%, #c0392b 100%);
  padding: 48px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.imported-page.cta-banner__left,
.imported-page .cta-banner__left { display: flex; align-items: center; gap: 22px; }
.imported-page.cta-banner__icon,
.imported-page .cta-banner__icon {
  width: 54px;
  height: 54px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.imported-page.cta-banner__icon svg,
.imported-page .cta-banner__icon svg { width: 24px; height: 24px; fill: #fff; }
.imported-page.cta-banner__text h2,
.imported-page .cta-banner__text h2 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.imported-page.cta-banner__text p,
.imported-page .cta-banner__text p { font-size: 15px; color: rgba(255,255,255,0.85); }

/* ----- MOBILE STICKY CLICK-TO-CALL ----- */
.imported-page.mobile-call-bar,
.imported-page .mobile-call-bar { display: none; }

/* ----- RESPONSIVE ----- */
@media (max-width: 1024px) {

  .imported-page.footer-grid,
.imported-page .footer-grid { grid-template-columns: 1fr 1fr; }

}
@media (max-width: 900px) {

  .imported-page.site-header,
.imported-page .site-header { height: 76px; padding: 0 20px; }
  .imported-page.header-logo img,
.imported-page .header-logo img { height: 64px; width: 86px; }

}
@media (max-width: 768px) {

  .imported-page { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .imported-page.mobile-call-bar,
.imported-page .mobile-call-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: max(10px, env(safe-area-inset-bottom));
    z-index: 1000;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    border: 2px solid transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    background:
      linear-gradient(#101111, #101111) padding-box,
      linear-gradient(100deg, #e63c2f 0%, #f5a623 24%, #86c74b 48%, #39bce5 72%, #8c48c6 100%) border-box;
    box-shadow: 0 10px 28px rgba(0,0,0,.4);
    opacity: 0;
    pointer-events: none;
    transform: translateY(120%);
    transition: opacity .25s ease, transform .25s ease;
  }
  .imported-page.mobile-call-bar.is-visible,
.imported-page .mobile-call-bar.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .imported-page.mobile-call-bar svg,
.imported-page .mobile-call-bar svg { width: 19px; height: 19px; fill: currentColor; }
  .imported-page.site-header,
.imported-page .site-header { height: 76px; padding: 0 20px; }
  .imported-page.header-logo img,
.imported-page .header-logo img { height: 64px; width: 86px; }
  .imported-page.header-nav,
.imported-page .header-nav { display: none; }
  .imported-page.header-nav.open,
.imported-page .header-nav.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #0d0d0d;
    padding: 20px 24px 28px;
    border-bottom: 1px solid #222;
    gap: 18px;
    z-index: 199;
  }
  .imported-page.hamburger,
.imported-page .hamburger { display: flex; }
  .imported-page.page-hero,
.imported-page .page-hero { height: 240px; }
  .imported-page.page-hero__content,
.imported-page .page-hero__content { padding: 0 24px; }
  .imported-page.page-hero__content h1,
.imported-page .page-hero__content h1 { font-size: 30px; }

  /* Balanced stacked CTA: icon and copy share a row; the call button starts cleanly below. */
  .imported-page.cta-banner,
.imported-page .cta-banner {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: start;
    gap: 0 18px;
    padding: 42px 24px 38px;
  }
  .imported-page.cta-banner__left,
.imported-page .cta-banner__left { display: contents; }
  .imported-page.cta-banner__icon,
.imported-page .cta-banner__icon {
    grid-column: 1;
    grid-row: 1;
    width: 68px;
    height: 68px;
    align-self: center;
  }
  .imported-page.cta-banner__icon svg,
.imported-page .cta-banner__icon svg { width: 30px; height: 30px; }
  .imported-page.cta-banner__text,
.imported-page .cta-banner__text { grid-column: 2; grid-row: 1; min-width: 0; }
  .imported-page.cta-banner__text h2,
.imported-page .cta-banner__text h2 { font-size: clamp(27px, 7.2vw, 38px); line-height: 1.12; margin-bottom: 12px; }
  .imported-page.cta-banner__text p,
.imported-page .cta-banner__text p { font-size: 17px; line-height: 1.55; }
  .imported-page.cta-banner .btn,
.imported-page .cta-banner .btn {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: stretch;
    width: 100%;
    margin-top: 26px;
    padding: 17px 28px;
    text-align: center;
  }

  .imported-page.site-footer,
.imported-page .site-footer { padding: 42px 24px 0; }
  .imported-page.footer-grid,
.imported-page .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 24px;
    padding-bottom: 32px;
  }
  .imported-page.footer-col-brand,
.imported-page .footer-col-brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .imported-page.footer-col-brand > a,
.imported-page .footer-col-brand > a { align-self: center; display: block; }
  .imported-page.footer-col-brand > a img,
.imported-page .footer-col-brand > a img { display: block; margin-left: auto !important; margin-right: auto !important; object-position: center !important; }
  .imported-page.footer-brand-desc,
.imported-page .footer-brand-desc { max-width: 360px; margin: 12px auto 18px; }
  .imported-page.footer-social,
.imported-page .footer-social { justify-content: center; }
  .imported-page.footer-col h4,
.imported-page .footer-col h4 { margin-bottom: 12px; }
  .imported-page.footer-col ul li,
.imported-page .footer-col ul li { margin-bottom: 7px; }
  .imported-page.footer-grid > .footer-col:not(:last-child),
.imported-page .footer-grid > .footer-col:not(:last-child) { text-align: center; }
  .imported-page.footer-col:last-child,
.imported-page .footer-col:last-child { grid-column: 1 / -1; text-align: center; }
  .imported-page.footer-col:last-child .footer-contact-row,
.imported-page .footer-col:last-child .footer-contact-row { justify-content: center; margin-bottom: 8px; }
  .imported-page.site-footer--minimal,
.imported-page .site-footer--minimal { padding: 32px 24px; }
  .imported-page.footer-bottom,
.imported-page .footer-bottom {
    display: block;
    padding: 16px 0 20px;
    text-align: center;
  }
  .imported-page.footer-bottom p,
.imported-page .footer-bottom p {
    white-space: nowrap;
    font-size: clamp(7.5px, 2.1vw, 10px);
    letter-spacing: 0;
    line-height: 1.25;
  }
  .imported-page.footer-bottom-links,
.imported-page .footer-bottom-links { display: none; }

}
@media (max-width: 480px) {

  .imported-page.section-title,
.imported-page .section-title { font-size: 26px; }
  .imported-page.page-hero__content h1,
.imported-page .page-hero__content h1 { font-size: 24px; }
  .imported-page.cta-banner,
.imported-page .cta-banner { grid-template-columns: 60px minmax(0, 1fr); gap: 0 14px; padding: 34px 22px 32px; }
  .imported-page.cta-banner__icon,
.imported-page .cta-banner__icon { width: 58px; height: 58px; }
  .imported-page.cta-banner__icon svg,
.imported-page .cta-banner__icon svg { width: 26px; height: 26px; }
  .imported-page.cta-banner__text h2,
.imported-page .cta-banner__text h2 { font-size: 27px; }
  .imported-page.cta-banner__text p,
.imported-page .cta-banner__text p { font-size: 16px; }
  .imported-page.cta-banner .btn,
.imported-page .cta-banner .btn { width: 100%; margin-top: 22px; }
  .imported-page.footer-grid,
.imported-page .footer-grid { gap: 26px 18px; }

}


/* ============================================================
       ATOMIC DISTRIBUTION — PRODUCTS PAGE
       Existing approved image assets are deliberately used unchanged.
       ============================================================ */
    .imported-page {
      --black: #080909;
      --page: #121313;
      --card: #1c1d1d;
      --card-line: #545555;
      --copy: #f2f2f2;
      --muted: #d1d1d1;
      --rainbow: linear-gradient(100deg, #e63c2f 0%, #f5a623 24%, #86c74b 48%, #39bce5 72%, #8c48c6 100%);
    }

    /* ----- Hero ----- */
    .imported-page.products-hero,
.imported-page .products-hero {
      position: relative;
      min-height: 390px;
      overflow: hidden;
      display: flex;
      align-items: center;
      background: #080909;
    }
    .imported-page.products-hero__image,
.imported-page .products-hero__image {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
    .imported-page.products-hero::after,
.imported-page .products-hero::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(90deg, rgba(4,4,4,.94) 0%, rgba(4,4,4,.86) 35%, rgba(4,4,4,.22) 65%, rgba(4,4,4,.06) 100%);
      pointer-events: none;
    }
    .imported-page.products-hero__hex,
.imported-page .products-hero__hex {
      position: absolute;
      inset: 0 auto 0 0;
      width: 245px;
      opacity: .17;
      z-index: 2;
      background-image:
        linear-gradient(30deg, transparent 49%, rgba(160,160,160,.45) 50%, transparent 51%),
        linear-gradient(150deg, transparent 49%, rgba(160,160,160,.45) 50%, transparent 51%),
        linear-gradient(90deg, transparent 49%, rgba(160,160,160,.35) 50%, transparent 51%);
      background-size: 54px 94px;
      background-position: 6px 14px;
      mask-image: linear-gradient(90deg, #000 0%, rgba(0,0,0,.7) 63%, transparent 100%);
    }
    .imported-page.products-hero__content,
.imported-page .products-hero__content {
      position: relative;
      z-index: 3;
      width: min(100% - 12vw, 1240px);
      margin: 0 auto;
      padding: 46px 0;
    }
    .imported-page.products-hero__content .eyebrow,
.imported-page .products-hero__content .eyebrow { color: #39bce5; margin-bottom: 10px; }
    .imported-page.products-hero__content h1,
.imported-page .products-hero__content h1 {
      color: #fff;
      font-size: clamp(35px, 4.2vw, 50px);
      font-weight: 850;
      letter-spacing: -.8px;
      line-height: 1.1;
      margin: 0 0 20px;
      max-width: 540px;
    }
    .imported-page.products-hero__content p,
.imported-page .products-hero__content p {
      color: #fff;
      font-size: 17px;
      line-height: 1.6;
      max-width: 480px;
      margin: 0 0 26px;
    }

    /* ----- Product catalogue ----- */
    .imported-page.catalogue,
.imported-page .catalogue {
      background: radial-gradient(ellipse at top, #252626 0%, #171818 45%, #111212 100%);
      padding: 22px max(5vw, 28px) 42px;
    }
    .imported-page.catalogue__heading,
.imported-page .catalogue__heading { text-align: center; margin: 0 0 16px; }
    .imported-page.catalogue__heading .eyebrow,
.imported-page .catalogue__heading .eyebrow { color: #39bce5; margin-bottom: 2px; }
    .imported-page.catalogue__heading h2,
.imported-page .catalogue__heading h2 { color: #fff; font-size: clamp(26px, 3vw, 34px); line-height: 1.2; margin: 0; }
    .imported-page.catalogue-grid,
.imported-page .catalogue-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      max-width: 1420px;
      margin: 0 auto;
    }
    .imported-page.catalogue-card,
.imported-page .catalogue-card {
      display: flex;
      flex-direction: column;
      min-width: 0;
      padding: 18px 18px 16px;
      background: rgba(27,28,28,.94);
      border: 1px solid var(--card-line);
      border-radius: 5px;
      color: var(--copy);
    }
    .imported-page.catalogue-card__heading,
.imported-page .catalogue-card__heading {
      display: flex;
      align-items: center;
      min-height: 56px;
      gap: 12px;
      margin: 0 0 14px;
    }
    .imported-page.catalogue-card__symbol,
.imported-page .catalogue-card__symbol {
      width: 50px;
      height: 50px;
      flex: 0 0 50px;
      display: grid;
      place-items: center;
      clip-path: polygon(25% 4%, 75% 4%, 98% 50%, 75% 96%, 25% 96%, 2% 50%);
      background: currentColor;
      padding: 2px;
    }
    .imported-page.catalogue-card__symbol > span,
.imported-page .catalogue-card__symbol > span {
      display: grid;
      place-items: center;
      width: 100%;
      height: 100%;
      background: #1b1c1c;
      clip-path: inherit;
    }
    .imported-page.catalogue-card__symbol svg,
.imported-page .catalogue-card__symbol svg { width: 25px; height: 25px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
    .imported-page.catalogue-card__title,
.imported-page .catalogue-card__title { min-width: 0; }
    .imported-page.catalogue-card__title h3,
.imported-page .catalogue-card__title h3 {
      color: #fff;
      font-size: clamp(18px, 1.7vw, 23px);
      font-weight: 850;
      letter-spacing: 1.3px;
      line-height: 1.02;
      margin: 0 0 4px;
      text-transform: uppercase;
    }
    .imported-page.catalogue-card__title p,
.imported-page .catalogue-card__title p { color: currentColor; font-size: 13px; font-weight: 700; line-height: 1.25; margin: 0; }
    .imported-page.catalogue-card__image,
.imported-page .catalogue-card__image {
      display: block;
      width: 100%;
      height: 126px;
      object-fit: cover;
      margin: 0 0 13px;
      border-radius: 3px;
    }
    /* Supplied source images are shown in full, with no pixel alteration or crop. */
    .imported-page.catalogue-card__image--supplied,
.imported-page .catalogue-card__image--supplied {
      display: block;
      width: 100%;
      height: auto;
      aspect-ratio: 2.31 / 1;
      object-fit: cover;
      object-position: center;
      background: transparent;
      image-rendering: auto;
    }
    /* Preserve the complete height of the supplied laboratory beakers. */
    .imported-page.catalogue-card__image--additives-full,
.imported-page .catalogue-card__image--additives-full {
      aspect-ratio: 2.073 / 1;
      object-fit: contain;
      object-position: center;
      background: #202121;
    }
    .imported-page.catalogue-card__summary,
.imported-page .catalogue-card__summary {
      color: #f0f0f0;
      font-size: 15px;
      line-height: 1.48;
      margin: 0 0 11px;
    }
    .imported-page.catalogue-card__list,
.imported-page .catalogue-card__list {
      margin: 0 0 13px;
      padding: 0;
      list-style: none;
    }
    .imported-page.catalogue-card__list li,
.imported-page .catalogue-card__list li {
      position: relative;
      padding: 2px 0 2px 14px;
      color: #e5e5e5;
      font-size: 14px;
      line-height: 1.42;
    }
    .imported-page.catalogue-card__list li::before,
.imported-page .catalogue-card__list li::before {
      content: '';
      position: absolute;
      left: 0;
      top: .63em;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: currentColor;
    }
    .imported-page.catalogue-card .btn,
.imported-page .catalogue-card .btn { margin: auto auto 0; min-width: 158px; padding: 9px 16px; font-size: 11px; text-align: center; }

    .imported-page.card--lime,
.imported-page .card--lime { color: #8fce4b; }
    .imported-page.card--blue,
.imported-page .card--blue { color: #32b9ea; }
    .imported-page.card--purple,
.imported-page .card--purple { color: #ba66dd; }
    .imported-page.card--orange,
.imported-page .card--orange { color: #f28d33; }
    .imported-page.card--yellow,
.imported-page .card--yellow { color: #f6d12a; }

    /* Returnable Packaging: the three individual supplied source images. */
    .imported-page.packaging-card__image-grid,
.imported-page .packaging-card__image-grid,
.imported-page.packaging-card__labels,
.imported-page .packaging-card__labels,
.imported-page.packaging-card__pack-copy,
.imported-page .packaging-card__pack-copy {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 9px;
    }
    .imported-page.catalogue-card#returnable-packaging .catalogue-card__heading,
.imported-page .catalogue-card#returnable-packaging .catalogue-card__heading { margin-bottom: 10px; }
    .imported-page.packaging-card__image-grid,
.imported-page .packaging-card__image-grid { margin: 0 0 7px; }
    .imported-page.packaging-card__image-grid img,
.imported-page .packaging-card__image-grid img {
      display: block;
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: contain;
      background: #171818;
      border-radius: 3px;
    }
    .imported-page.packaging-card__labels,
.imported-page .packaging-card__labels { margin: 0 0 6px; }
    .imported-page.packaging-card__labels span,
.imported-page .packaging-card__labels span {
      color: #8fce4b;
      font-size: 13px;
      font-weight: 800;
      line-height: 1.22;
      text-align: center;
    }
    .imported-page.packaging-card__pack-copy,
.imported-page .packaging-card__pack-copy { margin: 0 0 12px; }
    .imported-page.packaging-card__pack-copy p,
.imported-page .packaging-card__pack-copy p { color: #f0f0f0; font-size: 13.5px; line-height: 1.42; text-align: center; margin: 0; }

    /* ----- CTA & reference-matched minimal footer ----- */
    .imported-page.cta-banner,
.imported-page .cta-banner {
      min-height: 132px;
      padding: 30px max(8vw, 48px);
      background: linear-gradient(100deg, #ef4431 0%, #f4a825 22%, #90c54b 43%, #32bae6 65%, #5e74d4 82%, #8d41b0 100%);
    }
    .imported-page.cta-banner__left,
.imported-page .cta-banner__left { gap: 22px; }
    .imported-page.cta-banner__icon,
.imported-page .cta-banner__icon { width: 62px; height: 62px; border-color: rgba(255,255,255,.82); }
    .imported-page.cta-banner__icon svg,
.imported-page .cta-banner__icon svg { width: 30px; height: 30px; }
    .imported-page.cta-banner__text h2,
.imported-page .cta-banner__text h2 { font-size: clamp(22px, 2.4vw, 30px); margin: 0 0 3px; }
    .imported-page.cta-banner__text p,
.imported-page .cta-banner__text p { font-size: 16px; }
    .imported-page.cta-banner .btn--outline-white,
.imported-page .cta-banner .btn--outline-white { background: linear-gradient(#111, #111) padding-box, linear-gradient(100deg, #e63c2f 0%, #f5a623 24%, #86c74b 48%, #39bce5 72%, #8c48c6 100%) border-box; }
    .imported-page.cta-banner .btn--outline-white:hover,
.imported-page .cta-banner .btn--outline-white:hover { background: linear-gradient(#fff, #fff) padding-box, linear-gradient(100deg, #e63c2f 0%, #f5a623 24%, #86c74b 48%, #39bce5 72%, #8c48c6 100%) border-box; }
    .imported-page.products-footer,
.imported-page .products-footer { padding: 22px 24px; background: #111212; text-align: center; }
    .imported-page.products-footer p,
.imported-page .products-footer p { margin: 0; color: #aaa; font-size: 13px; }

    /* ----- Responsive ----- */
    @media (max-width: 900px) {

      .imported-page.products-hero,
.imported-page .products-hero { min-height: 390px; }
      .imported-page.products-hero__content,
.imported-page .products-hero__content { width: calc(100% - 48px); }
      .imported-page.catalogue,
.imported-page .catalogue { padding: 34px 24px 48px; }
      .imported-page.catalogue-grid,
.imported-page .catalogue-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    
}
    @media (max-width: 620px) {

      .imported-page.products-hero,
.imported-page .products-hero { min-height: 430px; }
      .imported-page.products-hero__image,
.imported-page .products-hero__image { object-position: 60% center; }
      .imported-page.products-hero::after,
.imported-page .products-hero::after { background: rgba(4,4,4,.66); }
      .imported-page.products-hero__content,
.imported-page .products-hero__content { width: calc(100% - 40px); }
      .imported-page.products-hero__content h1,
.imported-page .products-hero__content h1 { font-size: 34px; }
      .imported-page.catalogue-grid,
.imported-page .catalogue-grid { grid-template-columns: 1fr; }
      .imported-page.catalogue-card__image,
.imported-page .catalogue-card__image { height: 165px; }
      .imported-page.catalogue-card__image--supplied,
.imported-page .catalogue-card__image--supplied { height: auto; aspect-ratio: 2.31 / 1; }
      .imported-page.catalogue-card__image--additives-full,
.imported-page .catalogue-card__image--additives-full { aspect-ratio: 2.073 / 1; }
      .imported-page.packaging-card__pack-copy p,
.imported-page .packaging-card__pack-copy p { font-size: 13.5px; }
      .imported-page.cta-banner,
.imported-page .cta-banner { padding: 34px 24px; }
    
}
    .imported-page.btn--coming-soon,
.imported-page .btn--coming-soon { display:flex; align-items:center; justify-content:center; min-height:44px; border:1px solid #666; border-radius:4px; color:#bbb; text-transform:uppercase; letter-spacing:.08em; font-size:12px; font-weight:800; cursor:default; }
    .imported-page.repro-section,
.imported-page .repro-section { grid-column:1 / -1; display:grid; grid-template-columns:1.35fr 1fr 1fr auto; gap:22px; align-items:stretch; margin-top:18px; padding:24px 28px; border:1px solid #4c4d4d; border-radius:6px; background:#1a1b1b; text-align:left; }
    .imported-page.repro-section__intro,
.imported-page .repro-section__intro { display:grid; grid-template-columns:52px 1fr; gap:0 14px; align-items:start; align-self:center; }
    .imported-page.repro-section__icon,
.imported-page .repro-section__icon { grid-row:span 2; width:48px; height:48px; display:grid; place-items:center; color:#8bc34a; }
    .imported-page.repro-section__icon svg,
.imported-page .repro-section__icon svg { width:46px; height:46px; fill:none; stroke:currentColor; stroke-width:2.8; stroke-linecap:round; stroke-linejoin:round; }
    .imported-page.repro-section h3,
.imported-page .repro-section h3,
.imported-page.repro-section h4,
.imported-page .repro-section h4 { margin:0; color:#fff; text-transform:uppercase; font-weight:800; letter-spacing:.03em; }
    .imported-page.repro-section h3,
.imported-page .repro-section h3 { font-size:22px; line-height:1.15; }
    .imported-page.repro-section h4,
.imported-page .repro-section h4 { color:#9bc842; font-size:15px; margin-bottom:9px; }
    .imported-page.repro-section__tagline,
.imported-page .repro-section__tagline { margin:5px 0 0; color:#8fc94b; font-size:13px; font-weight:700; }
    .imported-page.repro-section__intro-copy,
.imported-page .repro-section__intro-copy { grid-column:1 / -1; margin:16px 0 0; color:#f0f0f0; font-size:15px; line-height:1.48; }
    .imported-page.repro-section__material,
.imported-page .repro-section__material { min-width:0; padding-left:20px; border-left:1px solid #555; display:flex; flex-direction:column; justify-content:flex-start; }
    .imported-page.repro-section > .btn,
.imported-page .repro-section > .btn { align-self:center; }
    .imported-page.repro-section__material:nth-of-type(3) h4,
.imported-page .repro-section__material:nth-of-type(3) h4 { color:#32abe0; }
    .imported-page.repro-section__material img,
.imported-page .repro-section__material img { display:block; width:100%; height:46px; object-fit:cover; border-radius:3px; margin:0 0 9px; }
    .imported-page.repro-section__material ul,
.imported-page .repro-section__material ul { margin:0; padding-left:17px; color:#dedede; font-size:14px; line-height:1.45; }
    .imported-page.repro-section__material li::marker,
.imported-page .repro-section__material li::marker { color:#8fc94b; }
    .imported-page.repro-section__material:nth-of-type(3) li::marker,
.imported-page .repro-section__material:nth-of-type(3) li::marker { color:#32abe0; }
    .imported-page.repro-section > .btn,
.imported-page .repro-section > .btn { min-width:110px; white-space:nowrap; }
    @media (max-width:900px) {
 .imported-page.repro-section,
.imported-page .repro-section { grid-template-columns:1fr 1fr; } .imported-page.repro-section__intro,
.imported-page .repro-section__intro { grid-column:1 / -1; } .imported-page.repro-section > .btn,
.imported-page .repro-section > .btn { grid-column:1 / -1; justify-self:center; } 
}
    @media (max-width:620px) {
 .imported-page.repro-section,
.imported-page .repro-section { grid-template-columns:1fr; padding:22px; } .imported-page.repro-section__material,
.imported-page .repro-section__material { padding:18px 0 0; border-left:0; border-top:1px solid #555; } .imported-page.repro-section > .btn,
.imported-page .repro-section > .btn { grid-column:auto; width:100%; } 
}
