/*
 * DTC Single Product – front-end styles
 * Figma node 235:4906  |  Blue #4094d1  |  Font: Instrument Sans
 * Loaded for every singular 'product' page (PHP fallback + Elementor).
 */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;700&display=swap');

:root {
  --b: #4094d1;
  --b-light: #6ec1e4;
  --b14: rgba(64, 148, 209, 0.14);
  --b55: rgba(64, 148, 209, 0.55);
  --dark: #000;
  --mid: #223a5c;
  --card: #142236;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.65);
  --border: 1px solid #4094d1;
  --r20: 20px;
  --r8: 8px;
  --r4: 4px;
}

body.single-product {
  background: linear-gradient(
    180deg,
    #4094d1 2.64%,
    #223a5c 14.38%,
    #000 49.18%
  ) !important;
  background-attachment: scroll !important;
  color: var(--text);
  font-family: 'Instrument Sans', sans-serif;
  margin: 0;
}
body.single-product .site,
body.single-product #page,
body.single-product .site-content,
body.single-product #content,
body.single-product main,
body.single-product #main,
body.single-product .site-main,
body.single-product article,
body.single-product .entry-content,
body.single-product .hfeed {
  background: transparent !important;
}

.dsp *,
.dsp *::before,
.dsp *::after {
  box-sizing: border-box;
}

.dsp {
  width: 100%;
  overflow-x: hidden;
}
.dsp a {
  font-size: 16px;
  color: var(--b-light);
  text-decoration: none;
}
.dsp img {
  display: block;
  max-width: 100%;
  background: white;
  padding: 5px;
}
.dsp p {
  font-size: 16px;
}
.dsp-link {
  font-size: 16px;
  color: var(--b-light);
  text-decoration: underline;
}

.dsp-wrap {
  max-width: 95vw;
  margin: 0 auto;
}

/* Review banner */
.dsp-review {
  background: #4a1c00;
  color: #fde68a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 10px 24px;
  text-transform: uppercase;
}

/* ── HERO ──────────────────────────────────────────────────────── */
.dsp-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  column-gap: 40px;
  row-gap: 12px;
  padding: 10rem 0 3rem 0;
  width: 95vw;
  margin: 0 auto;
}
/* No featured image and no gallery: drop the image column, content spans full width. */
.dsp-hero--full {
  grid-template-columns: 1fr;
}
.dsp-hero--full .dsp-hero__content {
  grid-column: 1;
  grid-row: 1;
}
/* The <=960px hero stacking rules are NOT here - they live after the
   .dsp-hero__thumbs base rule further down. See the comment there. */
@media (max-width: 768px) {
  .dsp-wrap {
    max-width: 90vw;
  }
}

.dsp-hero__img-inner {
  grid-column: 1;
  grid-row: 1;
  background: #fff;
  border: var(--border);
  border-radius: var(--r20);
  width: 100%;
  min-height: 40rem;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}
.dsp-hero__img-inner img {
  width: 100%;
  height: 600px;
  object-fit: contain;
}
/* Product image video: shares the main hero frame with the featured image.
   Fills the whole frame (cover + stretch to the container height) so it reads
   edge-to-edge - no letterbox bars and no white frame showing through. The
   featured image stays `contain` above; only the video fills. */
.dsp-hero__video {
  width: 100%;
  min-height: 40rem;   /* match the image frame; also holds a video-only frame open */
  align-self: stretch; /* fill the full frame height (beats the container's center align) */
  object-fit: cover;   /* fill the frame instead of letterboxing */
  background: #000;
  display: block;
}
/* The theme sets `img { display:block }`, which beats the UA [hidden] rule, so
   the swapped-out element must be hidden explicitly (applies to both directions). */
.dsp-hero__img-inner img[hidden],
.dsp-hero__video[hidden] { display: none !important; }
/* Video thumbnail: the base .dsp-hero__thumb forces a white background, so the
   play control is a self-contained dark badge (visible on white) with a white
   triangle centered inside it. */
.dsp-hero__thumb--video { position: relative; flex: 0 0 80px; width: 80px; height: 80px; }
.dsp-hero__thumb-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(17, 43, 88, 0.92);
  box-shadow: 0 1px 4px rgba(0, 0, 0, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.dsp-hero__thumb-play::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 9px;
  border-color: transparent transparent transparent #fff;
  margin-left: 2px;
}
@media (max-width: 768px) {
  .dsp-hero__video { min-height: 400px; }
}
.dsp-hero__content {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .dsp-hero__content {
    padding: 20px;
  }
  .dsp-hero__img-inner img {
    width: 100%;
    height: 400px;
    object-fit: contain;
  }
  .dsp-hero__img-inner {
    min-height: auto;
  }
}
.dsp-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-self: flex-start;
}
.dsp-hero__badge {
  display: inline-block;
  background: #223a5c99;
  border: var(--border);
  border-radius: var(--r4);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0px 10px 0px 10px;
}
.dsp-hero__title {
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  text-transform: uppercase;
  margin: 0;
}
.dsp-hero__overview {
  font-size: clamp(1rem, 1.3vw, 1.25rem) !important;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
  max-width: 640px;
}
.dsp-hero__cta {
  display: inline-flex !important;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  padding: 0 16px 0 24px;
  min-height: 37px;
  background: linear-gradient(135deg, rgba(64, 148, 209, 0.35) 0%, rgba(37, 37, 37, 0.25) 100%);
  border: 1px solid var(--b) !important;
  border-radius: var(--r4);
  box-shadow: rgba(64, 148, 209, 0.55) 0px 0px 60px 0px;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: normal;
  text-transform: uppercase;
  text-decoration: none !important;
  white-space: nowrap;
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}
.dsp-hero__cta:hover {
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: rgba(64, 148, 209, 0.75) 0px 0px 70px 0px;
}

/* ── FEATURED STORY PANELS ─────────────────────────────────────── */
.dsp-stories {
  padding: 0 0 30px 0;
}
.dsp-stories__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.dsp-story {
  border: 1px solid var(--b);
  border-radius: var(--r20);
  overflow: hidden;
}
.dsp-story--full {
  grid-column: 1 / -1;
}
.dsp-story__bar {
  height: 3px;
  background: linear-gradient(90deg, var(--b) 0%, rgba(64, 148, 209, 0.1) 100%);
}
.dsp-story__body {
  padding: 28px 30px 30px;
}
.dsp-story__sub {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4094d1;
  border: 1px solid #4094d1;
  border-radius: var(--r4);
  padding: 3px 10px;
  margin-bottom: 14px;
}
.dsp-story__head {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem) !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  color: #fff !important;
  margin: 0 !important;
  line-height: 1.2 !important;
}
.dsp-story__meta {
  margin-bottom: 14px;
}
.dsp-story__text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #fff;
}
.dsp-story__text p {
  margin: 0;
}
@media (max-width: 960px) {
  .dsp-stories__grid {
    grid-template-columns: 1fr;
  }
  .dsp-story--full {
    grid-column: 1;
  }
}

/* ── BENEFITS ──────────────────────────────────────────────────── */
.dsp-benefits {
  padding-bottom: 40px;
}
.dsp-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 960px) {
  .dsp-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .dsp-benefits__grid {
    grid-template-columns: 1fr;
  }
}
.dsp-benefit {
  background: var(--b14);
  border: var(--border);
  border-radius: var(--r20);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow:
    inset 0 0 40px rgba(64, 148, 209, 0.16),
    0 0 28px rgba(64, 148, 209, 0.18);
  background: linear-gradient(
    90deg,
    rgba(64, 148, 209, 0.14) 0%,
    rgba(34, 58, 92, 0.14) 100%
  );
}
.dsp-benefit__dot {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 40% 35%,
    #8dd0f7,
    #4094d1 45%,
    #1a5c9e 80%
  );
  box-shadow: 0 0 12px rgba(64, 148, 209, 0.7);
  flex-shrink: 0;
}
.dsp-benefit__title {
  font-size: clamp(1rem, 1.4vw, 1.25rem) !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.35;
}
.dsp-benefit__text {
  font-size: clamp(0.875rem, 1.1vw, 1rem) !important;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text);
  margin: 0;
}

/* ── HERO THUMBNAILS ────────────────────────────────────────────── */
.dsp-hero__thumbs {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* ── HERO: stack to one column on tablet/mobile ──────────────────
   ⚠ THIS BLOCK MUST STAY BELOW the .dsp-hero__content and .dsp-hero__thumbs
   base rules above. @media adds NO specificity, so at equal specificity the
   LAST declaration wins. It used to sit up next to `.dsp-hero` (~line 116),
   which put it BEFORE those two base rules - so `grid-column: 2 / grid-row: 1`
   on the content and `grid-row: 2` on the thumbs quietly beat it and the
   stacking never happened. The visible symptom was the product image
   vanishing on mobile: the content stayed pinned to column 2, which created
   an implicit auto track that took its min-content width, leaving the 1fr
   column holding the image just 2px wide (its borders).
   Do not move this back up. */
@media (max-width: 960px) {
  .dsp-hero {
    grid-template-columns: 1fr;
    padding: 5rem 0 2rem 0;
    row-gap: 0;
  }
  /* Thumbs sit directly under the main image (row 2), with the copy below them
     (row 3) - the thumbs switch that image, so they have to stay next to it.
     This mirrors the desktop placement, where the thumbs are already row 2 of
     the image column. */
  .dsp-hero__thumbs {
    grid-column: 1;
    grid-row: 2;
    margin-top: 12px;
  }
  .dsp-hero__content {
    grid-column: 1;
    grid-row: 3;
  }
}
.dsp-hero__thumbs::-webkit-scrollbar {
  display: none;
}
.dsp-hero__thumb {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  padding: 6px;
  background: #fff !important;
  background-image: none !important;
  border: 1.5px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
  box-sizing: border-box;
  transition: border-color 0.2s;
  box-shadow: 0 0 0 0.5px rgba(64, 148, 209, 0.3);
}
.dsp-hero__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.dsp-hero__thumb:hover {
  border-color: rgba(64, 148, 209, 0.5);
}
.dsp-hero__thumb.is-active {
  border-color: var(--b);
}

/* ── LEARN MORE / TABS ─────────────────────────────────────────── */
.dsp-tabs {
  padding: 0 0 40px;
}
.dsp-tabs__panel {
  background: radial-gradient(
    26.66% 94.68% at 100% 94.68%,
    #4094d1 4.14%,
    #07102a 67.97%
  );
  border: var(--border);
  border-radius: var(--r20);
  padding: 24px;
}
@media (max-width: 768px) {
  .dsp-tabs__panel {
    padding: 24px 16px 32px;
  }
}
.dsp-tabs__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.dsp-tabs__heading {
  font-size: clamp(2rem, 3vw, 2.5rem) !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  margin: 0 !important;
  line-height: 1;
}
.dsp-tabs__heading-more {
  color: var(--b);
}
.dsp-tabs__nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.dsp-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--b14);
  border: 0.5px solid var(--b);
  border-radius: var(--r4);
  color: #fff;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  cursor: pointer;
  transition: background 0.2s;
  background-image: none !important;
  white-space: nowrap;
}
.dsp-tab-btn svg {
  flex-shrink: 0;
  opacity: 0.7;
}
.dsp-tab-btn.is-active {
  background: var(--b);
}
.dsp-tab-btn.is-active svg {
  opacity: 1;
}
.dsp-tab-btn:hover {
  background: var(--b);
}
.dsp-tab-panel {
  display: none;
}
.dsp-tab-panel.is-active {
  display: block;
}
@media (max-width: 768px) {
  .dsp-tabs__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .dsp-tabs__nav {
    justify-content: flex-start;
  }
}

/* Accordion — details/summary style */
.dsp-n-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dsp-n-acc__item {
  background: var(--b14);
  border: 0.5px solid var(--b);
  border-radius: var(--r8);
  overflow: hidden;
}
.dsp-n-acc__item[open] {
  border-color: var(--b);
}
.dsp-n-acc__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.dsp-n-acc__summary::-webkit-details-marker {
  display: none;
}
.dsp-n-acc__dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.2s, box-shadow 0.2s;
}
.dsp-n-acc__item[open] .dsp-n-acc__dot {
  background: var(--b);
  border-color: var(--b);
  box-shadow: 0 0 8px rgba(64, 148, 209, 0.65);
}
.dsp-n-acc__title {
  font-family: 'Instrument Sans', sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  flex: 1;
}
.dsp-n-acc__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.dsp-n-acc__icon--open {
  display: none;
}
.dsp-n-acc__icon--closed {
  display: flex;
}
.dsp-n-acc__item[open] .dsp-n-acc__icon--open {
  display: flex;
}
.dsp-n-acc__item[open] .dsp-n-acc__icon--closed {
  display: none;
}
.dsp-n-acc__body {
  padding: 0 24px 24px;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  border-top: 0.5px solid rgba(64, 148, 209, 0.3);
  padding-top: 16px;
}
.dsp-n-acc__body p {
  margin: 0 0 0.75em;
}
.dsp-n-acc__body p:last-child {
  margin-bottom: 0;
}
.dsp-n-acc__body a {
  color: var(--b);
  text-decoration: underline;
}
.dsp-n-acc__body a:hover {
  color: #fff;
}
/* Specs inner group tabs — folder style */
.dsp-specs__group-nav {
  display: flex;
  gap: 4px;
  margin-bottom: 0;
  align-items: flex-end;
  border-bottom: 0.5px solid rgba(64, 148, 209, 0.45);
}
.dsp-specs__group-btn {
  position: relative;
  background: rgba(64, 148, 209, 0.05);
  border: 0.5px solid rgba(64, 148, 209, 0.2);
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 16px 8px;
  cursor: pointer;
  margin-bottom: -0.5px;
  background-image: none !important;
  transition: color 0.2s, background 0.2s;
  overflow: hidden;
}
.dsp-specs__group-btn::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background 0.2s;
}
.dsp-specs__group-btn:hover {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(64, 148, 209, 0.1);
}
.dsp-specs__group-btn:hover::before {
  background: rgba(64, 148, 209, 0.5);
}
.dsp-specs__group-btn.is-active {
  background: rgba(64, 148, 209, 0.12);
  border-color: rgba(64, 148, 209, 0.45);
  color: #fff;
  z-index: 1;
}
.dsp-specs__group-btn.is-active::before {
  background: var(--b);
}
.dsp-specs__group-panel {
  display: none;
  border: 0.5px solid rgba(64, 148, 209, 0.45);
  border-top: none;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}
.dsp-specs__group-panel.is-active {
  display: block;
}

/* Specs table — elevated */
.dsp-specs {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
}
.dsp-specs tr {
  border-bottom: 0.5px solid rgba(64, 148, 209, 0.15);
}
.dsp-specs tr:first-child {
  border-top: 0.5px solid rgba(64, 148, 209, 0.15);
}
.dsp-specs tr:nth-child(even) {
  background: rgba(64, 148, 209, 0.05);
}
.dsp-specs th {
  padding: 14px 20px;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--b);
  width: 26%;
  vertical-align: top;
  text-align: start;
}
.dsp-specs td {
  padding: 14px 20px;
  text-align: start;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  vertical-align: top;
}

/* Single-column specs: value spans full width */
.dsp-specs--one-col td {
  width: 100%;
}

/* Variant comparison */
.dsp-variant-comparison {
  overflow-x: auto;
}
.dsp-variant-comparison table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(0.8rem, 1vw, 1rem);
}
.dsp-variant-comparison th,
.dsp-variant-comparison td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 0.5px solid var(--b);
  color: var(--text);
  vertical-align: top;
}
.dsp-variant-comparison thead th {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--b);
  font-size: 0.875em;
}
.dsp-variant-comparison tbody th {
  font-weight: 700;
  font-size: 0.875em;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--b);
  width: 22%;
}
.dsp-variant-comparison tbody td {
  font-weight: 400;
}
.dsp-variant-comparison__variant-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: var(--r4);
  display: block;
  margin-bottom: 6px;
}

/* Downloads */
.dsp-downloads {
  display: grid;
  gap: 8px;
}
.dsp-download {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  border: 1px solid var(--b);
  border-radius: var(--r8);
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.2s;
}
.dsp-download:hover {
  border-color: #fff;
}
.dsp-download__info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 10px 20px;
  flex: 1;
}
.dsp-download__dot {
  flex-shrink: 0;
}
.dsp-download__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dsp-download__title {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.5;
}
.dsp-download__meta {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--b);
  line-height: 120%;
}
.dsp-download__action {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: rgba(64, 148, 209, 0.14);
  border-left: 1px solid var(--b);
  flex-shrink: 0;
  transition: background 0.2s;
}
.dsp-download:hover .dsp-download__action {
  background: rgba(64, 148, 209, 0.3);
}

/* ── VARIANT BLOCKS ────────────────────────────────────────────── */
.dsp-variants {
  padding: 0 0 60px;
}
.dsp-vblock {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.dsp-vblock--reverse {
  direction: rtl;
}
.dsp-vblock--reverse > * {
  direction: ltr;
}
@media (max-width: 960px) {
  .dsp-vblock,
  .dsp-vblock--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}
.dsp-vblock__img {
  /* padding: 20px 0 20px 20px; */
}
.dsp-vblock--reverse .dsp-vblock__img {
  /* padding: 20px 20px 20px 0; */
}
/* @media (max-width: 960px) {
  .dsp-vblock__img,
  .dsp-vblock--reverse .dsp-vblock__img {
    padding: 20px;
  }
} */
.dsp-vblock__img-inner {
  background: #deedf7;
  width: 100%;
  height: 100%;
  min-height: 380px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.dsp-vblock__img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dsp-vblock__content {
  padding: 60px 60px 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  align-items: flex-start;
}
.dsp-vblock--reverse .dsp-vblock__content {
  padding: 60px 48px 60px 60px;
}
@media (max-width: 768px) {
  .dsp-vblock__content,
  .dsp-vblock--reverse .dsp-vblock__content {
    padding: 40px 24px;
  }
  .dsp-vblock__img-inner img {
	width: 100%;
	height: 300px;
	object-fit: contain;
  }
  .dsp-vblock__img-inner {
	min-height: auto;
  }
}
.dsp-vblock__badge {
  display: inline-block;
  background: var(--b55);
  border: var(--border);
  border-radius: var(--r4);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0px 10px 0px 10px;
}
.dsp-vblock__name {
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.1;
}
.dsp-vblock__summary {
  font-size: clamp(0.875rem, 1.1vw, 1.125rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
  max-width: 540px;
}
.dsp-vblock__cta {
  display: inline-flex;
  align-items: center;
  height: 48px;
  border-radius: var(--r4);
  border: 0.5px solid var(--b);
  box-shadow: 0 0 55px 0 rgba(64, 148, 209, 0.4);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  align-self: flex-start;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  isolation: isolate;
}
.dsp-vblock__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #4094d1, #223a5c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 1;
}
.dsp-vblock__cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 18px rgba(64, 148, 209, 0.65),
    0 0 42px rgba(64, 148, 209, 0.45);
}
.dsp-vblock__cta:hover::before {
  transform: scaleX(1);
}
.dsp-vblock__cta-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #252525 6%,
    #283342 18%,
    #2c4150 30%,
    #335d7b 53%,
    #397ab6 77%,
    #4094d1 100%
  );
  opacity: 0.25;
}
.dsp-vblock__cta-label {
  position: relative;
  z-index: 2;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  padding: 0 48px 0 20px;
}
.dsp-vblock__cta-square {
  position: absolute;
  right: 10px;
  width: 30px;
  height: 30px;
  background: var(--b);
  border-radius: var(--r4);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── ARROW ANIMATION ───────────────────────────────────────────── */
@keyframes dtcArrowPremium {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(7px);
    opacity: 0.75;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.dsp-vblock__cta-square {
  animation: dtcArrowPremium 1.4s ease-in-out infinite;
}

/* ── VIDEO BUTTON + MODAL ──────────────────────────────────────── */
.dsp-hero__video-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  padding: 12px 22px;
  background-color: transparent;
  border: 1px solid var(--b);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  font-family: 'Instrument Sans', sans-serif;
  transition: background-color 0.2s ease;
}
.dsp-hero__video-btn:hover {
  background-color: rgba(64, 148, 209, 0.15);
  color: #fff;
}

dialog.dsp-video-modal {
  background: #ffffff;
  border: var(--border);
  border-radius: var(--r20);
  padding: 0;
  max-width: min(900px, 95vw);
  width: 100%;
  color: var(--text);
}
dialog.dsp-video-modal::backdrop {
  background: rgba(0, 0, 0, 0.85);
}
.dsp-video-modal__bar {
  display: flex;
  justify-content: flex-end;
  padding: 10px 14px 0;
  position: absolute;
  right: 0;
}
.dsp-video-modal__close {
  background: none;
  border: none !important;
  color: #fff !important;
  font-size: 28px !important;
  line-height: 1;
  cursor: pointer;
  padding: 8px 10px !important;
  transition: color 0.15s;
}
.dsp-video-modal__close:hover {
  color: #fff;
  background: #223a5c !important;
}
.dsp-video-modal__content {
  aspect-ratio: 16/9;
  width: 100%;
}
.dsp-video-modal__content iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── RELATED PRODUCTS ──────────────────────────────────────────── */
.dsp-related {
  padding-bottom: 40px;
}
.dsp-related__bar {
  background: linear-gradient(
    90deg,
    #252525 6%,
    #283342 18%,
    #335d7b 53%,
    #4094d1 100%
  );
  border-top: 0.5px solid var(--b);
  border-bottom: 0.5px solid var(--b);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  margin-bottom: 40px;
}
.dsp-related__bar p {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
.dsp-related__carousel {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 95vw;
  margin: 0 auto;
  box-sizing: border-box;
}
.dsp-related__track-wrap {
  flex: 1;
  overflow: hidden;
}
.dsp-related__track {
  display: flex;
  align-items: stretch;
  transition: transform 0.4s ease;
  will-change: transform;
  gap: 16px;
}
.dsp-related__slide {
  flex: 0 0 calc(25% - 12px);
  box-sizing: border-box;
  display: flex;
}
.dsp-related__slide .dsp-related-card {
  flex: 1;
  height: 100%;
}
@media (max-width: 1200px) {
  .dsp-related__slide {
    flex: 0 0 calc(33.3333% - 10.6667px);
  }
}
@media (max-width: 900px) {
  .dsp-related__slide {
    flex: 0 0 calc(50% - 8px);
  }
}
@media (max-width: 768px) {
  .dsp-related__carousel {
    flex-wrap: wrap;
    justify-content: center;
    width: 90vw;
    padding: 0 0 8px;
    gap: 16px;
  }
  /* Track goes first (full width row) */
  .dsp-related__track-wrap {
    order: -1;
    flex: 0 0 100%;
  }
  /* Arrows drop below the card, centered */
  .dsp-related__arrow {
    order: 1;
  }
  .dsp-related__slide {
    flex: 0 0 100%;
  }
}
.dsp-related__arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--b14);
  border: 0.5px solid var(--b);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
  background-image: none !important;
}
.dsp-related__arrow:hover {
  background: var(--b);
}
.dsp-related-card {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 20px;
  background: var(--b14);
  border: 1px solid var(--b);
  border-radius: var(--r20);
  padding: 20px;
  min-height: 15rem;
  text-decoration: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.dsp-related-card:hover {
  border-color: #fff;
  background: rgba(64, 148, 209, 0.2);
}
.dsp-related-card__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
  align-items: center;
  flex: 1;
}
@media (max-width: 500px) {
  .dsp-related-card__grid {
    grid-template-columns: 1fr;
  }
}
.dsp-related-card__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.dsp-related-card__cats {
  display: flex;
  flex-direction: row;
  align-self: flex-start;
  gap: 5px;
  flex-wrap: wrap;
}
.dsp-related-card__cat {
  display: inline-block;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  background: rgba(64, 148, 209, 0.55);
  border: 1px solid var(--b);
  border-radius: 4px;
  padding: 2px 10px;
  line-height: 1.8;
}
.dsp-related-card__title {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  color: #fff;
  line-height: 100% !important;
  margin: 0;
}
.dsp-related-card__img {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: white;
  border-radius: 8px;
}
.dsp-related-card__img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.dsp-related-card__footer {
  display: flex;
}
.dsp-related-card__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 16px 10px 24px;
  background: rgba(64, 148, 209, 0.7);
  border: 1px solid var(--b);
  border-radius: 6px;
  box-shadow: 0 0 55px 0 rgba(64, 148, 209, 0.55);
  font-family: 'Instrument Sans', sans-serif;
  text-transform: uppercase;
  color: #fff;
  transition: background 0.2s;
  overflow: hidden;
  line-height: 150%;
  position: relative;
}
.dsp-related-card__label{
  position: relative;
  z-index: 2;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
.dsp-related-card__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #4094d1, #000000);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 1;
}
.dsp-related-card:hover .dsp-related-card__btn {
  background: var(--b);
}
.dsp-related-card__btn:hover {
  box-shadow:
    0 0 18px rgba(64, 148, 209, 0.65),
    0 0 42px rgba(64, 148, 209, 0.45);
}

/* ── MISSION OUTCOME ─────────────────────────────────────────── */
/* No top padding: sit close under the Learn More section using its own bottom
   spacing, matching the tight gap the story cards have above Learn More. */
.dsp-mission-outcome {
  padding: 0 0 60px;
}
/* Glassy card matching the benefit/story panels, with a story-style top accent
   bar and a bordered eyebrow pill, so it reads as part of the same family. */
.dsp-mission-outcome__inner {
  position: relative;
  overflow: hidden;
  border: var(--border);
  border-radius: var(--r20);
  padding: 30px 32px;
  background: linear-gradient(
    90deg,
    rgba(64, 148, 209, 0.14) 0%,
    rgba(34, 58, 92, 0.14) 100%
  );
  box-shadow:
    inset 0 0 40px rgba(64, 148, 209, 0.16),
    0 0 28px rgba(64, 148, 209, 0.18);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dsp-mission-outcome__inner::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--b) 0%, rgba(64, 148, 209, 0.1) 100%);
}
.dsp-mission-outcome__label {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--b);
  text-transform: uppercase;
  border: 1px solid var(--b);
  border-radius: var(--r4);
  padding: 3px 10px;
}
.dsp-mission-outcome__text {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}
.dsp-mission-outcome__text strong {
  color: #fff;
  font-weight: 700;
}
@media (max-width: 768px) {
  .dsp-mission-outcome__inner {
    padding: 24px 22px;
  }
  .dsp-mission-outcome__text {
    font-size: 1rem;
  }
}

/* Custom tab — free WYSIWYG content (intro copy, comparison tables, lists) */
.dsp-custom-tab {
  font-family: 'Instrument Sans', sans-serif;
  color: var(--text, #fff);
  font-size: 0.95rem;
  line-height: 1.6;
}
.dsp-custom-tab > *:first-child { margin-top: 0; }
.dsp-custom-tab > *:last-child { margin-bottom: 0; }
.dsp-custom-tab p { margin: 0 0 1em; }
.dsp-custom-tab h2,
.dsp-custom-tab h3,
.dsp-custom-tab h4 {
  color: var(--b);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  margin: 1.4em 0 0.6em;
}
.dsp-custom-tab ul,
.dsp-custom-tab ol { margin: 0 0 1em; padding-left: 1.25em; }
.dsp-custom-tab li { margin: 0.35em 0; }
.dsp-custom-tab a { color: var(--b); text-decoration: underline; }
.dsp-custom-tab strong { font-weight: 700; }
/* Tables scroll horizontally on narrow viewports */
.dsp-custom-tab table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1em;
  display: block;
  overflow-x: auto;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
}
.dsp-custom-tab th,
.dsp-custom-tab td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 0.5px solid rgba(64, 148, 209, 0.25);
  vertical-align: top;
  color: var(--text, #fff);
}
.dsp-custom-tab thead th,
.dsp-custom-tab tr:first-child th {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--b);
  font-size: 0.8em;
  white-space: nowrap;
}
.dsp-custom-tab tbody tr:nth-child(even) { background: rgba(64, 148, 209, 0.05); }
